From 11d46098cb6711c529d653fdbb70400d46e5907e Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Wed, 21 Apr 2021 22:29:34 +0100 Subject: [PATCH 01/17] i can see clearly now the plating's gone --- code/__DEFINES/layers.dm | 2 + code/game/machinery/Beacon.dm | 3 +- code/game/machinery/hologram.dm | 2 +- code/game/machinery/magnet.dm | 3 +- code/game/machinery/navbeacon.dm | 3 +- code/game/objects/structures/safe.dm | 3 +- code/game/turfs/simulated/floor.dm | 2 + code/game/turfs/simulated/floor/plating.dm | 36 ++++++++++++++ .../game/turfs/simulated/floor/transparent.dm | 44 ++++++++++++++++++ .../atmospherics/machinery/atmospherics.dm | 3 ++ .../atmospherics/machinery/pipes/cap.dm | 3 +- .../atmospherics/machinery/pipes/manifold.dm | 2 + .../machinery/pipes/manifold4w.dm | 3 +- .../machinery/pipes/simple/pipe_simple.dm | 3 +- code/modules/power/cable.dm | 11 ++++- code/modules/power/terminal.dm | 2 + code/modules/recycling/disposal.dm | 13 +++++- icons/turf/floors/glass.dmi | Bin 0 -> 3595 bytes icons/turf/floors/reinf_glass.dmi | Bin 0 -> 9255 bytes paradise.dme | 1 + 20 files changed, 128 insertions(+), 11 deletions(-) create mode 100644 code/game/turfs/simulated/floor/transparent.dm create mode 100644 icons/turf/floors/glass.dmi create mode 100644 icons/turf/floors/reinf_glass.dmi diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index 9286ea2726d..8ac366023e8 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -26,11 +26,13 @@ #define DISPOSAL_PIPE_LAYER 2.3 #define GAS_PIPE_HIDDEN_LAYER 2.35 #define WIRE_LAYER 2.4 +#define TRANSPARENT_TURF_LAYER 2.41 #define WIRE_TERMINAL_LAYER 2.45 #define GAS_SCRUBBER_LAYER 2.46 #define GAS_PIPE_VISIBLE_LAYER 2.47 #define GAS_FILTER_LAYER 2.48 #define GAS_PUMP_LAYER 2.49 +#define HOLOPAD_LAYER 2.491 #define CONVEYOR_LAYER 2.495 #define LOW_OBJ_LAYER 2.5 #define LOW_SIGIL_LAYER 2.52 diff --git a/code/game/machinery/Beacon.dm b/code/game/machinery/Beacon.dm index 41612fb870b..83ff9fcf168 100644 --- a/code/game/machinery/Beacon.dm +++ b/code/game/machinery/Beacon.dm @@ -26,7 +26,8 @@ Beacon.syndicate = syndicate Beacon.area_bypass = area_bypass Beacon.cc_beacon = cc_beacon - hide(T.intact) + if(!istype(T, /turf/simulated/floor/transparent)) + hide(T.intact) /obj/machinery/bluespace_beacon/proc/destroy_beacon() QDEL_NULL(Beacon) diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm index c4d5c4984b9..da287020804 100644 --- a/code/game/machinery/hologram.dm +++ b/code/game/machinery/hologram.dm @@ -43,7 +43,7 @@ GLOBAL_LIST_EMPTY(holopads) use_power = IDLE_POWER_USE idle_power_usage = 5 active_power_usage = 100 - layer = TURF_LAYER+0.1 //Preventing mice and drones from sneaking under them. + layer = HOLOPAD_LAYER //Preventing mice and drones from sneaking under them. plane = FLOOR_PLANE max_integrity = 300 armor = list(melee = 50, bullet = 20, laser = 20, energy = 20, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 0) diff --git a/code/game/machinery/magnet.dm b/code/game/machinery/magnet.dm index 7bd89ac6dae..a9eb8b4de3c 100644 --- a/code/game/machinery/magnet.dm +++ b/code/game/machinery/magnet.dm @@ -32,7 +32,8 @@ /obj/machinery/magnetic_module/New() ..() var/turf/T = loc - hide(T.intact) + if(!istype(T, /turf/simulated/floor/transparent)) + hide(T.intact) center = T spawn(10) // must wait for map loading to finish diff --git a/code/game/machinery/navbeacon.dm b/code/game/machinery/navbeacon.dm index 48d87d0f330..ef3d6928aa1 100644 --- a/code/game/machinery/navbeacon.dm +++ b/code/game/machinery/navbeacon.dm @@ -26,7 +26,8 @@ set_codes() var/turf/T = loc - hide(T.intact) + if(!istype(T, /turf/simulated/floor/transparent)) + hide(T.intact) if(!codes || !codes.len) log_runtime(EXCEPTION("Empty codes datum at ([x],[y],[z])"), src, list("codes_txt: '[codes_txt]'")) if("patrol" in codes) diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index 5bfe4e8a880..252da89083a 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -368,7 +368,8 @@ GLOBAL_LIST_EMPTY(safes) /obj/structure/safe/floor/Initialize() . = ..() var/turf/T = loc - hide(T.intact) + if(!istype(T, /turf/simulated/floor/transparent)) + hide(T.intact) /obj/structure/safe/floor/hide(intact) invisibility = intact ? INVISIBILITY_MAXIMUM : 0 diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index 3ba2e638099..f2eaec50d35 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -30,6 +30,7 @@ GLOBAL_LIST_INIT(icons_to_ignore_at_floor_init, list("damaged1","damaged2","dama var/list/broken_states = list("damaged1", "damaged2", "damaged3", "damaged4", "damaged5") var/list/burnt_states = list("floorscorched1", "floorscorched2") var/list/prying_tool_list = list(TOOL_CROWBAR) //What tool/s can we use to pry up the tile? + var/keep_dir = TRUE var/footstep = FOOTSTEP_FLOOR var/barefootstep = FOOTSTEP_HARD_BAREFOOT @@ -130,6 +131,7 @@ GLOBAL_LIST_INIT(icons_to_ignore_at_floor_init, list("damaged1","damaged2","dama if(keep_icon) W.icon_regular_floor = old_icon W.icon_plating = old_plating + if(W.keep_dir) W.dir = old_dir W.update_icon() diff --git a/code/game/turfs/simulated/floor/plating.dm b/code/game/turfs/simulated/floor/plating.dm index 94d95c2af86..27f860e53ad 100644 --- a/code/game/turfs/simulated/floor/plating.dm +++ b/code/game/turfs/simulated/floor/plating.dm @@ -70,6 +70,42 @@ to_chat(user, "This section is too damaged to support a tile! Use a welder to fix the damage.") return TRUE + else if(istype(C, /obj/item/stack/sheet/glass)) + if(broken || burnt) + to_chat(user, "Repair the plating first!") + return TRUE + var/obj/item/stack/sheet/glass/R = C + if(R.get_amount() < 2) + to_chat(user, "You need two glass to make a glass floor!") + return TRUE + else + to_chat(user, "You begin swapping the plating for glass...") + if(do_after(user, 30 * C.toolspeed, target = src)) + if(R.get_amount() >= 2 && !istype(src, /turf/simulated/floor/transparent/glass)) + ChangeTurf(/turf/simulated/floor/transparent/glass) + playsound(src, C.usesound, 80, 1) + R.use(2) + to_chat(user, "You swap the plating for glass.") + return TRUE + + else if(istype(C, /obj/item/stack/sheet/rglass)) + if(broken || burnt) + to_chat(user, "Repair the plating first!") + return TRUE + var/obj/item/stack/sheet/rglass/R = C + if(R.get_amount() < 2) + to_chat(user, "You need two reinforced glass to make a reinforced glass floor!") + return TRUE + else + to_chat(user, "You begin swapping the plating for reinforced glass...") + if(do_after(user, 30 * C.toolspeed, target = src)) + if(R.get_amount() >= 2 && !istype(src, /turf/simulated/floor/transparent/glass/reinforced)) + ChangeTurf(/turf/simulated/floor/transparent/glass/reinforced) + playsound(src, C.usesound, 80, 1) + R.use(2) + to_chat(user, "You swap the plating for reinforced glass.") + return TRUE + /turf/simulated/floor/plating/screwdriver_act(mob/user, obj/item/I) . = TRUE if(!I.tool_use_check(user, 0)) diff --git a/code/game/turfs/simulated/floor/transparent.dm b/code/game/turfs/simulated/floor/transparent.dm new file mode 100644 index 00000000000..8e9b6d10e43 --- /dev/null +++ b/code/game/turfs/simulated/floor/transparent.dm @@ -0,0 +1,44 @@ +/turf/simulated/floor/transparent/glass + name = "glass floor" + desc = "Don't jump on it, or do, I'm not your mom." + icon = 'icons/turf/floors/glass.dmi' + icon_state = "unsmooth" + baseturf = /turf/space + broken_states = list("damaged1", "damaged2", "damaged3") + smooth = SMOOTH_MORE + canSmoothWith = list(/turf/simulated/floor/transparent) + footstep = FOOTSTEP_PLATING + light_power = 0.75 + light_range = 2 + layer = TRANSPARENT_TURF_LAYER + keep_dir = FALSE + intact = FALSE + +/turf/simulated/floor/transparent/glass/Initialize(mapload) + . = ..() + var/image/I = image('icons/turf/space.dmi', src, SPACE_ICON_STATE) + I.plane = PLANE_SPACE + underlays += I + dir = 2 + icon_state = "" //Prevents default icon appearing behind the glass + +/turf/simulated/floor/transparent/attackby(obj/item/C as obj, mob/user as mob, params) + if(!C || !user) + return + if(istype(C, /obj/item/crowbar)) + to_chat(user, "You begin removing the glass...") + playsound(src, C.usesound, 80, 1) + if(do_after(user, 30 * C.toolspeed, target = src)) + if(!istype(src, /turf/simulated/floor/transparent)) + return + if(istype(src, /turf/simulated/floor/transparent/glass/reinforced)) + new /obj/item/stack/sheet/rglass(src, 2) + else + new /obj/item/stack/sheet/glass(src, 2) + ChangeTurf(/turf/simulated/floor/plating) + + +/turf/simulated/floor/transparent/glass/reinforced + name = "reinforced glass floor" + desc = "Do jump on it, it can take it. Promise..." + icon = 'icons/turf/floors/reinf_glass.dmi' diff --git a/code/modules/atmospherics/machinery/atmospherics.dm b/code/modules/atmospherics/machinery/atmospherics.dm index 8a77e3908f1..8e965c88685 100644 --- a/code/modules/atmospherics/machinery/atmospherics.dm +++ b/code/modules/atmospherics/machinery/atmospherics.dm @@ -165,6 +165,9 @@ Pipelines + Other Objects -> Pipe network /obj/machinery/atmospherics/attackby(obj/item/W, mob/user) if(can_unwrench && istype(W, /obj/item/wrench)) var/turf/T = get_turf(src) + if(istype(T, /turf/simulated/floor/transparent)) + to_chat(user, "You must remove the glass first.") + return if(level == 1 && isturf(T) && T.intact) to_chat(user, "You must remove the plating first.") return 1 diff --git a/code/modules/atmospherics/machinery/pipes/cap.dm b/code/modules/atmospherics/machinery/pipes/cap.dm index 516660e72ba..bf3b7f43d2e 100644 --- a/code/modules/atmospherics/machinery/pipes/cap.dm +++ b/code/modules/atmospherics/machinery/pipes/cap.dm @@ -76,7 +76,8 @@ break var/turf/T = get_turf(src) // hide if turf is not intact - if(!istype(T)) return + if(!istype(T) || istype(T, /turf/simulated/floor/transparent)) + return hide(T.intact) update_icon() diff --git a/code/modules/atmospherics/machinery/pipes/manifold.dm b/code/modules/atmospherics/machinery/pipes/manifold.dm index ab7196e0864..b28f18f92ba 100644 --- a/code/modules/atmospherics/machinery/pipes/manifold.dm +++ b/code/modules/atmospherics/machinery/pipes/manifold.dm @@ -55,6 +55,8 @@ node3 = target break var/turf/T = src.loc // hide if turf is not intact + if(istype(T, /turf/simulated/floor/transparent)) + return hide(T.intact) update_icon() diff --git a/code/modules/atmospherics/machinery/pipes/manifold4w.dm b/code/modules/atmospherics/machinery/pipes/manifold4w.dm index 0ac16c2c69d..75f2db8aabf 100644 --- a/code/modules/atmospherics/machinery/pipes/manifold4w.dm +++ b/code/modules/atmospherics/machinery/pipes/manifold4w.dm @@ -162,7 +162,8 @@ break var/turf/T = src.loc // hide if turf is not intact - hide(T.intact) + if(!istype(T, /turf/simulated/floor/transparent)) + hide(T.intact) update_icon() /obj/machinery/atmospherics/pipe/manifold4w/visible diff --git a/code/modules/atmospherics/machinery/pipes/simple/pipe_simple.dm b/code/modules/atmospherics/machinery/pipes/simple/pipe_simple.dm index 92c421fbff9..a4ecfc583d9 100644 --- a/code/modules/atmospherics/machinery/pipes/simple/pipe_simple.dm +++ b/code/modules/atmospherics/machinery/pipes/simple/pipe_simple.dm @@ -68,7 +68,8 @@ break var/turf/T = loc // hide if turf is not intact - hide(T.intact) + if(!istype(T, /turf/simulated/floor/transparent)) + hide(T.intact) update_icon() /obj/machinery/atmospherics/pipe/simple/check_pressure(pressure) diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index 3c8db1f50df..b48c03376cf 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -35,6 +35,7 @@ By design, d1 is the smallest direction and d2 is the highest icon_state = "0-1" var/d1 = 0 var/d2 = 1 + plane = FLOOR_PLANE layer = WIRE_LAYER //Just below unary stuff, which is at 2.45 and above pipes, which are at 2.4 color = COLOR_RED @@ -68,9 +69,11 @@ By design, d1 is the smallest direction and d2 is the highest d2 = text2num(copytext( icon_state, dash+1 )) var/turf/T = get_turf(src) // hide if turf is not intact + LAZYADD(GLOB.cable_list, src) //add it to the global cable list + if(istype(T, /turf/simulated/floor/transparent)) + return if(level == 1) hide(T.intact) - LAZYADD(GLOB.cable_list, src) //add it to the global cable list /obj/structure/cable/Destroy() // called when a cable is deleted if(powernet) @@ -162,6 +165,9 @@ By design, d1 is the smallest direction and d2 is the highest // /obj/structure/cable/attackby(obj/item/W, mob/user) var/turf/T = get_turf(src) + if(istype(T, /turf/simulated/floor/transparent)) + to_chat(user, "You must remove the glass first.") + return if(T.intact) return @@ -204,6 +210,9 @@ By design, d1 is the smallest direction and d2 is the highest /obj/structure/cable/wirecutter_act(mob/user, obj/item/I) . = TRUE var/turf/T = get_turf(src) + if(istype(T, /turf/simulated/floor/transparent)) + to_chat(user, "You must remove the glass first.") + return if(T.intact) return if(!I.use_tool(src, user, 0, volume = I.tool_volume)) diff --git a/code/modules/power/terminal.dm b/code/modules/power/terminal.dm index 584079b3c45..b2284eba265 100644 --- a/code/modules/power/terminal.dm +++ b/code/modules/power/terminal.dm @@ -15,6 +15,8 @@ /obj/machinery/power/terminal/Initialize(mapload) . = ..() var/turf/T = get_turf(src) + if(istype(T, /turf/simulated/floor/transparent)) + return if(level == 1) hide(T.intact) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index adb27fccc82..f259ee40ac1 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -691,6 +691,7 @@ armor = list("melee" = 25, "bullet" = 10, "laser" = 10, "energy" = 100, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 30) damage_deflection = 10 flags_2 = RAD_PROTECT_CONTENTS_2 | RAD_NO_CONTAMINATE_2 + plane = FLOOR_PLANE layer = DISPOSAL_PIPE_LAYER // slightly lower than wires and other pipes var/base_icon_state // initial icon state on map @@ -757,6 +758,9 @@ // update the icon_state to reflect hidden status /obj/structure/disposalpipe/proc/update() var/turf/T = get_turf(src) + if(istype(T, /turf/simulated/floor/transparent)) + update_icon() + return hide(T.intact && !istype(T, /turf/space)) // space never hides pipes update_icon() @@ -889,15 +893,20 @@ /obj/structure/disposalpipe/attackby(obj/item/I, mob/user, params) var/turf/T = get_turf(src) - if(T.intact) - return // prevent interaction with T-scanner revealed pipes + if(T.intact || istype(T, /turf/simulated/floor/transparent)) + to_chat(user, "You must remove the plating first.") + return // prevent interaction with T-scanner revealed pipes and pipes under glass add_fingerprint(user) /obj/structure/disposalpipe/welder_act(mob/user, obj/item/I) . = TRUE + var/turf/T = get_turf(src) if(!I.tool_use_check(user, 0)) return + if(istype(T, /turf/simulated/floor/transparent)) + to_chat(user, "You must remove the glass first.") + return WELDER_ATTEMPT_SLICING_MESSAGE if(!I.use_tool(src, user, 30, volume = I.tool_volume)) return diff --git a/icons/turf/floors/glass.dmi b/icons/turf/floors/glass.dmi new file mode 100644 index 0000000000000000000000000000000000000000..2f25a8ec7eb3ce224c73dfb2559febdc1cd7dc22 GIT binary patch literal 3595 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 RVF}=$=REJZKf6nI{S&|1Sup?r literal 0 HcmV?d00001 diff --git a/icons/turf/floors/reinf_glass.dmi b/icons/turf/floors/reinf_glass.dmi new file mode 100644 index 0000000000000000000000000000000000000000..f206b4f3dfccb094d87f0c7c1f3d177e8461a49a GIT binary patch literal 9255 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 Date: Wed, 21 Apr 2021 23:42:20 +0100 Subject: [PATCH 02/17] bad code, but tidier code --- code/game/machinery/Beacon.dm | 2 +- code/game/machinery/magnet.dm | 2 +- code/game/machinery/navbeacon.dm | 2 +- code/game/objects/structures/safe.dm | 2 +- code/game/turfs/simulated/floor/plating.dm | 6 ++++-- code/game/turfs/simulated/floor/transparent.dm | 1 + code/game/turfs/turf.dm | 1 + code/modules/atmospherics/machinery/atmospherics.dm | 2 +- code/modules/atmospherics/machinery/pipes/cap.dm | 2 +- code/modules/atmospherics/machinery/pipes/manifold.dm | 2 +- code/modules/atmospherics/machinery/pipes/manifold4w.dm | 2 +- .../atmospherics/machinery/pipes/simple/pipe_simple.dm | 2 +- code/modules/power/cable.dm | 6 +++--- code/modules/power/terminal.dm | 2 +- code/modules/recycling/disposal.dm | 8 ++++---- 15 files changed, 23 insertions(+), 19 deletions(-) diff --git a/code/game/machinery/Beacon.dm b/code/game/machinery/Beacon.dm index 83ff9fcf168..94e3b354d47 100644 --- a/code/game/machinery/Beacon.dm +++ b/code/game/machinery/Beacon.dm @@ -26,7 +26,7 @@ Beacon.syndicate = syndicate Beacon.area_bypass = area_bypass Beacon.cc_beacon = cc_beacon - if(!istype(T, /turf/simulated/floor/transparent)) + if(!T.transparent_floor) hide(T.intact) /obj/machinery/bluespace_beacon/proc/destroy_beacon() diff --git a/code/game/machinery/magnet.dm b/code/game/machinery/magnet.dm index a9eb8b4de3c..c6ae20c6831 100644 --- a/code/game/machinery/magnet.dm +++ b/code/game/machinery/magnet.dm @@ -32,7 +32,7 @@ /obj/machinery/magnetic_module/New() ..() var/turf/T = loc - if(!istype(T, /turf/simulated/floor/transparent)) + if(!T.transparent_floor) hide(T.intact) center = T diff --git a/code/game/machinery/navbeacon.dm b/code/game/machinery/navbeacon.dm index ef3d6928aa1..c3d64752f4e 100644 --- a/code/game/machinery/navbeacon.dm +++ b/code/game/machinery/navbeacon.dm @@ -26,7 +26,7 @@ set_codes() var/turf/T = loc - if(!istype(T, /turf/simulated/floor/transparent)) + if(!T.transparent_floor) hide(T.intact) if(!codes || !codes.len) log_runtime(EXCEPTION("Empty codes datum at ([x],[y],[z])"), src, list("codes_txt: '[codes_txt]'")) diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index 252da89083a..b06df5ecc06 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -368,7 +368,7 @@ GLOBAL_LIST_EMPTY(safes) /obj/structure/safe/floor/Initialize() . = ..() var/turf/T = loc - if(!istype(T, /turf/simulated/floor/transparent)) + if(!T.transparent_floor) hide(T.intact) /obj/structure/safe/floor/hide(intact) diff --git a/code/game/turfs/simulated/floor/plating.dm b/code/game/turfs/simulated/floor/plating.dm index 27f860e53ad..96d7339b876 100644 --- a/code/game/turfs/simulated/floor/plating.dm +++ b/code/game/turfs/simulated/floor/plating.dm @@ -76,7 +76,7 @@ return TRUE var/obj/item/stack/sheet/glass/R = C if(R.get_amount() < 2) - to_chat(user, "You need two glass to make a glass floor!") + to_chat(user, "You need two sheets of glass to build a glass floor!") return TRUE else to_chat(user, "You begin swapping the plating for glass...") @@ -86,6 +86,7 @@ playsound(src, C.usesound, 80, 1) R.use(2) to_chat(user, "You swap the plating for glass.") + new /obj/item/stack/sheet/metal(src, 2) return TRUE else if(istype(C, /obj/item/stack/sheet/rglass)) @@ -94,7 +95,7 @@ return TRUE var/obj/item/stack/sheet/rglass/R = C if(R.get_amount() < 2) - to_chat(user, "You need two reinforced glass to make a reinforced glass floor!") + to_chat(user, "You need two sheets of reinforced glass to build a reinforced glass floor!") return TRUE else to_chat(user, "You begin swapping the plating for reinforced glass...") @@ -104,6 +105,7 @@ playsound(src, C.usesound, 80, 1) R.use(2) to_chat(user, "You swap the plating for reinforced glass.") + new /obj/item/stack/sheet/metal(src, 2) return TRUE /turf/simulated/floor/plating/screwdriver_act(mob/user, obj/item/I) diff --git a/code/game/turfs/simulated/floor/transparent.dm b/code/game/turfs/simulated/floor/transparent.dm index 8e9b6d10e43..ead098688ed 100644 --- a/code/game/turfs/simulated/floor/transparent.dm +++ b/code/game/turfs/simulated/floor/transparent.dm @@ -13,6 +13,7 @@ layer = TRANSPARENT_TURF_LAYER keep_dir = FALSE intact = FALSE + transparent_floor = TRUE /turf/simulated/floor/transparent/glass/Initialize(mapload) . = ..() diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index 4678bd94ce4..36381b72ecc 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -6,6 +6,7 @@ var/intact = TRUE var/turf/baseturf = /turf/space var/slowdown = 0 //negative for faster, positive for slower + var/transparent_floor = FALSE //true for transparent floors ///Properties for open tiles (/floor) /// All the gas vars, on the turf, are meant to be utilized for initializing a gas datum and setting its first gas values; the turf vars are never further modified at runtime; it is never directly used for calculations by the atmospherics system. diff --git a/code/modules/atmospherics/machinery/atmospherics.dm b/code/modules/atmospherics/machinery/atmospherics.dm index 8e965c88685..46c44ae2c0d 100644 --- a/code/modules/atmospherics/machinery/atmospherics.dm +++ b/code/modules/atmospherics/machinery/atmospherics.dm @@ -165,7 +165,7 @@ Pipelines + Other Objects -> Pipe network /obj/machinery/atmospherics/attackby(obj/item/W, mob/user) if(can_unwrench && istype(W, /obj/item/wrench)) var/turf/T = get_turf(src) - if(istype(T, /turf/simulated/floor/transparent)) + if(T.transparent_floor) to_chat(user, "You must remove the glass first.") return if(level == 1 && isturf(T) && T.intact) diff --git a/code/modules/atmospherics/machinery/pipes/cap.dm b/code/modules/atmospherics/machinery/pipes/cap.dm index bf3b7f43d2e..ef04c024708 100644 --- a/code/modules/atmospherics/machinery/pipes/cap.dm +++ b/code/modules/atmospherics/machinery/pipes/cap.dm @@ -76,7 +76,7 @@ break var/turf/T = get_turf(src) // hide if turf is not intact - if(!istype(T) || istype(T, /turf/simulated/floor/transparent)) + if(!istype(T) || T.transparent_floor) return hide(T.intact) update_icon() diff --git a/code/modules/atmospherics/machinery/pipes/manifold.dm b/code/modules/atmospherics/machinery/pipes/manifold.dm index b28f18f92ba..0acbcd9884d 100644 --- a/code/modules/atmospherics/machinery/pipes/manifold.dm +++ b/code/modules/atmospherics/machinery/pipes/manifold.dm @@ -55,7 +55,7 @@ node3 = target break var/turf/T = src.loc // hide if turf is not intact - if(istype(T, /turf/simulated/floor/transparent)) + if(T.transparent_floor) return hide(T.intact) update_icon() diff --git a/code/modules/atmospherics/machinery/pipes/manifold4w.dm b/code/modules/atmospherics/machinery/pipes/manifold4w.dm index 75f2db8aabf..c6daf11da6e 100644 --- a/code/modules/atmospherics/machinery/pipes/manifold4w.dm +++ b/code/modules/atmospherics/machinery/pipes/manifold4w.dm @@ -162,7 +162,7 @@ break var/turf/T = src.loc // hide if turf is not intact - if(!istype(T, /turf/simulated/floor/transparent)) + if(!T.transparent_floor) hide(T.intact) update_icon() diff --git a/code/modules/atmospherics/machinery/pipes/simple/pipe_simple.dm b/code/modules/atmospherics/machinery/pipes/simple/pipe_simple.dm index a4ecfc583d9..7e14946e61e 100644 --- a/code/modules/atmospherics/machinery/pipes/simple/pipe_simple.dm +++ b/code/modules/atmospherics/machinery/pipes/simple/pipe_simple.dm @@ -68,7 +68,7 @@ break var/turf/T = loc // hide if turf is not intact - if(!istype(T, /turf/simulated/floor/transparent)) + if(!T.transparent_floor) hide(T.intact) update_icon() diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index b48c03376cf..50d7ff6db8d 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -70,7 +70,7 @@ By design, d1 is the smallest direction and d2 is the highest var/turf/T = get_turf(src) // hide if turf is not intact LAZYADD(GLOB.cable_list, src) //add it to the global cable list - if(istype(T, /turf/simulated/floor/transparent)) + if(T.transparent_floor) return if(level == 1) hide(T.intact) @@ -165,7 +165,7 @@ By design, d1 is the smallest direction and d2 is the highest // /obj/structure/cable/attackby(obj/item/W, mob/user) var/turf/T = get_turf(src) - if(istype(T, /turf/simulated/floor/transparent)) + if(T.transparent_floor) to_chat(user, "You must remove the glass first.") return if(T.intact) @@ -210,7 +210,7 @@ By design, d1 is the smallest direction and d2 is the highest /obj/structure/cable/wirecutter_act(mob/user, obj/item/I) . = TRUE var/turf/T = get_turf(src) - if(istype(T, /turf/simulated/floor/transparent)) + if(T.transparent_floor) to_chat(user, "You must remove the glass first.") return if(T.intact) diff --git a/code/modules/power/terminal.dm b/code/modules/power/terminal.dm index b2284eba265..d8fc709a656 100644 --- a/code/modules/power/terminal.dm +++ b/code/modules/power/terminal.dm @@ -15,7 +15,7 @@ /obj/machinery/power/terminal/Initialize(mapload) . = ..() var/turf/T = get_turf(src) - if(istype(T, /turf/simulated/floor/transparent)) + if(T.transparent_floor) return if(level == 1) hide(T.intact) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index f259ee40ac1..2b3f4765c91 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -758,7 +758,7 @@ // update the icon_state to reflect hidden status /obj/structure/disposalpipe/proc/update() var/turf/T = get_turf(src) - if(istype(T, /turf/simulated/floor/transparent)) + if(T.transparent_floor) update_icon() return hide(T.intact && !istype(T, /turf/space)) // space never hides pipes @@ -893,8 +893,8 @@ /obj/structure/disposalpipe/attackby(obj/item/I, mob/user, params) var/turf/T = get_turf(src) - if(T.intact || istype(T, /turf/simulated/floor/transparent)) - to_chat(user, "You must remove the plating first.") + if(T.intact || T.transparent_floor) + to_chat(user, "You must remove the [T.transparent_floor ? "glass": "plating"] first.") return // prevent interaction with T-scanner revealed pipes and pipes under glass add_fingerprint(user) @@ -904,7 +904,7 @@ var/turf/T = get_turf(src) if(!I.tool_use_check(user, 0)) return - if(istype(T, /turf/simulated/floor/transparent)) + if(T.transparent_floor) to_chat(user, "You must remove the glass first.") return WELDER_ATTEMPT_SLICING_MESSAGE From ae3f42caa993705a3f04e76a972edcc9a6b8afa3 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Thu, 22 Apr 2021 08:56:20 +0100 Subject: [PATCH 03/17] made this work --- .../game/turfs/simulated/floor/transparent.dm | 32 ++++++++++++++----- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/code/game/turfs/simulated/floor/transparent.dm b/code/game/turfs/simulated/floor/transparent.dm index ead098688ed..cab4bad2390 100644 --- a/code/game/turfs/simulated/floor/transparent.dm +++ b/code/game/turfs/simulated/floor/transparent.dm @@ -27,19 +27,35 @@ if(!C || !user) return if(istype(C, /obj/item/crowbar)) - to_chat(user, "You begin removing the glass...") - playsound(src, C.usesound, 80, 1) - if(do_after(user, 30 * C.toolspeed, target = src)) - if(!istype(src, /turf/simulated/floor/transparent)) + var/obj/item/stack/R = user.get_inactive_hand() + if(istype(R, /obj/item/stack/sheet/metal)) + if(R.get_amount() < 2) //not enough metal in the stack + to_chat(user, "You also need to hold two sheets of metal to dismantle a glass floor!") return - if(istype(src, /turf/simulated/floor/transparent/glass/reinforced)) - new /obj/item/stack/sheet/rglass(src, 2) else - new /obj/item/stack/sheet/glass(src, 2) - ChangeTurf(/turf/simulated/floor/plating) + to_chat(user, "You begin replacing the glass...") + playsound(src, C.usesound, 80, 1) + if(do_after(user, 30 * C.toolspeed, target = src)) + if(!src.transparent_floor) + return + if(istype(src, /turf/simulated/floor/transparent/glass/reinforced)) + new /obj/item/stack/sheet/rglass(src, 2) + else + new /obj/item/stack/sheet/glass(src, 2) + R.use(2) + ChangeTurf(/turf/simulated/floor/plating) + else //not holding metal at all + to_chat(user, "You also need to hold two sheets of metal to dismantle a glass floor!") + return /turf/simulated/floor/transparent/glass/reinforced name = "reinforced glass floor" desc = "Do jump on it, it can take it. Promise..." icon = 'icons/turf/floors/reinf_glass.dmi' + thermal_conductivity = 0.025 + heat_capacity = 325000 + +/turf/simulated/floor/transparent/glass/reinforced/acid_act(acidpwr, acid_volume) + acidpwr = min(acidpwr, 50) + . = ..() From cce71b734d11770a14a5b6b1ad97b21a53bc9ec0 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Thu, 22 Apr 2021 10:20:45 +0100 Subject: [PATCH 04/17] no pipe interaction, metal swapping, transparency --- .../game/turfs/simulated/floor/transparent.dm | 4 ++-- .../atmospherics/machinery/atmospherics.dm | 11 +++++++---- icons/turf/floors/glass.dmi | Bin 3595 -> 3595 bytes 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/code/game/turfs/simulated/floor/transparent.dm b/code/game/turfs/simulated/floor/transparent.dm index cab4bad2390..58b9b718b71 100644 --- a/code/game/turfs/simulated/floor/transparent.dm +++ b/code/game/turfs/simulated/floor/transparent.dm @@ -8,8 +8,8 @@ smooth = SMOOTH_MORE canSmoothWith = list(/turf/simulated/floor/transparent) footstep = FOOTSTEP_PLATING - light_power = 0.75 - light_range = 2 + light_power = 0.45 + light_range = 3 layer = TRANSPARENT_TURF_LAYER keep_dir = FALSE intact = FALSE diff --git a/code/modules/atmospherics/machinery/atmospherics.dm b/code/modules/atmospherics/machinery/atmospherics.dm index 46c44ae2c0d..652766e6e25 100644 --- a/code/modules/atmospherics/machinery/atmospherics.dm +++ b/code/modules/atmospherics/machinery/atmospherics.dm @@ -163,14 +163,14 @@ Pipelines + Other Objects -> Pipe network //(De)construction /obj/machinery/atmospherics/attackby(obj/item/W, mob/user) + var/turf/T = get_turf(src) if(can_unwrench && istype(W, /obj/item/wrench)) - var/turf/T = get_turf(src) if(T.transparent_floor) to_chat(user, "You must remove the glass first.") return if(level == 1 && isturf(T) && T.intact) to_chat(user, "You must remove the plating first.") - return 1 + return var/datum/gas_mixture/int_air = return_air() var/datum/gas_mixture/env_air = loc.return_air() add_fingerprint(user) @@ -184,14 +184,14 @@ Pipelines + Other Objects -> Pipe network playsound(src.loc, W.usesound, 50, 1) to_chat(user, "You begin to unfasten \the [src]...") if(internal_pressure > 2*ONE_ATMOSPHERE) - to_chat(user, "As you begin unwrenching \the [src] a gush of air blows in your face... maybe you should reconsider?") + to_chat(user, "As you begin unwrenching \the [src] a gust of air blows in your face... maybe you should reconsider?") unsafe_wrenching = TRUE //Oh dear oh dear if(do_after(user, 40 * W.toolspeed, target = src) && !QDELETED(src)) user.visible_message( \ "[user] unfastens \the [src].", \ "You have unfastened \the [src].", \ - "You hear ratchet.") + "You hear ratcheting.") investigate_log("was REMOVED by [key_name(usr)]", "atmos") for(var/obj/item/clothing/shoes/magboots/usermagboots in user.get_equipped_items()) @@ -206,6 +206,9 @@ Pipelines + Other Objects -> Pipe network unsafe_pressure_release(user,internal_pressure) deconstruct(TRUE) else + if(T.transparent_floor) + to_chat(user, "You must remove the glass first.") + return return ..() //Called when an atmospherics object is unwrenched while having a large pressure difference diff --git a/icons/turf/floors/glass.dmi b/icons/turf/floors/glass.dmi index 2f25a8ec7eb3ce224c73dfb2559febdc1cd7dc22..5d1e0ceac13ff9954e7de2357f4380c21be6ed1d 100644 GIT binary patch delta 2918 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 D`l69z delta 2908 zcmai0d0bOh7C!I2Y=k8^%2JAwYDEf0V--aNlHyoI2Sf#>P&AGmTu@AvDvI!Kv{I|T ziZx)ZRf)BXDaC>chD9-!5$Xzp3W^9wE#j~Tvq+LRH!w55&irP1|K#0!&OP^>@B7Yq zIp}%Nv&fF1&u&m{zjtuq>}TPLL|~PJaw+G%hiz!z(KAOABokvMexJs1>zh1Y^Y&mx z*wmbF+)&>NCyb8dC!Qlmo?M&=XTU zr9HA)bJ)usHQA#bu-fUfZNU;rYXVvKJ{-OMD4;fpSQLAqX9X0){t7S>+UculljzK; z=m&8@>z03d>8aII`?zCeIUK%P9#amf0_p4dPz~ZcpNQaWbF!n0^!4~(M?yj z6H^vs)4&JY28;tBqlhTN8RbjhY*ywNhw)BA@S~e#sR;b zGg61#s_doxP|RtopDWI&+S$Ez<8kH$sREEMfNeL8j(u~VmIIDk5JXq^>B1^D$H0Av zp*AtW&JXNnwFiW6{v=-SD4)RumwT~@~HWkp3#Zd^^MFIj(=vMPD6ob<^*vZaks zZ+ya;BbxJ5AhF3q3cf(fm(=u?98*rE{ARPIKsqBn0+tYBd|+Kx7%7Awei0zpZFK7H zQ5?8JwXvK9$feG(>}?3h0KHw?ti8%C%A1y(ZHI_9Bf-N#U?jxIt1|*~{k^2O;z{wd zw9|yUgZ2thH+=9~JXNG|tD?jK7}$k1N0x(`CyOMC9JG@y^9qB1aRa}gCDSxul%O)U z_FdREJjVry{`Q@ji|tW$p*OlW+(^yvmklM!S~B)DO{?OU>Jy-y7#ib>f>+Idddoiw zwtM1Ke%7x9rPX6s22qPsh761=jL!k#&Yr-a^;02|Ykt<FU)Zs*N5LNC{9K8EJ|fGu5Bi z({}wOL<38E)<6y^Fsm3%`<_9*4NC$l08F`NiGXh4aJ3eB9S;Q!Dab*UBpTpp zkC?y1EtCWSr;sElD|y4$s0nTgAdQkg-rLSqc_UE);(xP*y2<$F3OAmFpQbA`Ppv7< zq7Nxb2=Qf^^od;*dUG}F9MM+V<66lUIe38xR+Jr-b=!k}hgV#q;hIaP0J%bfK>#hh z?)MXI!-gk>=U#{uVuCT52#+=!!Q|*9`gddK&t{xEslJV&_CYuQW#Mctu~%`N+kWm? zXQnz=QhenWo*z#rwaI-PC{Odo(Ja*fS4GO=JLaU%D0Qpia--noLw#wqK@d-82BeC)BxSp}K=tk+VK&sS&=n_ZYMzTWlqio|QiD$U?Skr$7p@&lUr<00>#Y+Zz+rwWG`NE^ z`n7NZ=2fb19r!F==nMXbEj#e&RdFsbhj7jJZ3api%Xg=xjvq1OCGghUSiCeuWA1UW zlmFksgNJXJh$igsVu85EORrGFIGJtKlTm1Nx)U7Kf#GDkgYClqW<>NLB?Z2CqVIJLRyGTbe36FDY`zzjMJeCqgd0E=E4R=2-TX#Lj zgL$0WsvDDX<3O@?spVm9=O(89IWn~}j}G)5GBxh!qjL$=<@;vM%lez^?4*Vdmsg~m z8?^b+H{7QNXGEx>=>=cj<*zy65;fgVn^ySwv;-n4l&$3y5_HJRkW&9bBJ%vsA$=HY z8{>&T?DHxGax*ErwMEhQ!N)(AS-RXj8(i9reJxxylq!?Z(%!0DEmqG^1K|s=BMwJh zwR@LoN@AW!hX-FIAzeq`C&PwSx{8wY2z3GM7!=8ShWjU!SQa-1 z)i4PcXnF;{aC{55RPSF_(p%NMb+|DjIJwJ;|6>(ZxwOSyee*;GSus>mQnC^)uHjc;d(l1;CkNnN|ASkyw^(lLGOzY zZIZF2d`WVlfmjt7UMj$C73QbSGnCOSuUFh3dz!$7{g8wjGbTN|S4$OGf_|#+!3aqW zL}m-t33T^|XyZ#B=pfA|8z?4=$>^JDiYsnSX^NbDmMlLdvr_X9d9jPCN97d($CkgN zEt52Rppru)!pV1%C4b=6bx$Ns59Yb8!?=BVP&qgI#l3g1@V=h{$pVu7u U?&7tqrGTIC1(Co1F;uqaZ-kPWCIA2c From ff4c9fac105999e0546c115fead709d8e76ebec9 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Thu, 22 Apr 2021 10:38:49 +0100 Subject: [PATCH 05/17] consistent space lighting --- code/game/turfs/simulated/floor.dm | 2 +- code/game/turfs/simulated/floor/transparent.dm | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index f2eaec50d35..abf1bfa3076 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -30,7 +30,7 @@ GLOBAL_LIST_INIT(icons_to_ignore_at_floor_init, list("damaged1","damaged2","dama var/list/broken_states = list("damaged1", "damaged2", "damaged3", "damaged4", "damaged5") var/list/burnt_states = list("floorscorched1", "floorscorched2") var/list/prying_tool_list = list(TOOL_CROWBAR) //What tool/s can we use to pry up the tile? - var/keep_dir = TRUE + var/keep_dir = TRUE //When false, resets dir to default on changeturf() var/footstep = FOOTSTEP_FLOOR var/barefootstep = FOOTSTEP_HARD_BAREFOOT diff --git a/code/game/turfs/simulated/floor/transparent.dm b/code/game/turfs/simulated/floor/transparent.dm index 58b9b718b71..ace15cdda61 100644 --- a/code/game/turfs/simulated/floor/transparent.dm +++ b/code/game/turfs/simulated/floor/transparent.dm @@ -8,8 +8,8 @@ smooth = SMOOTH_MORE canSmoothWith = list(/turf/simulated/floor/transparent) footstep = FOOTSTEP_PLATING - light_power = 0.45 - light_range = 3 + light_power = 0.25 + light_range = 2 layer = TRANSPARENT_TURF_LAYER keep_dir = FALSE intact = FALSE @@ -20,7 +20,7 @@ var/image/I = image('icons/turf/space.dmi', src, SPACE_ICON_STATE) I.plane = PLANE_SPACE underlays += I - dir = 2 + dir = 2 //dirs that are not 2 cause smoothing jank icon_state = "" //Prevents default icon appearing behind the glass /turf/simulated/floor/transparent/attackby(obj/item/C as obj, mob/user as mob, params) @@ -51,10 +51,10 @@ /turf/simulated/floor/transparent/glass/reinforced name = "reinforced glass floor" - desc = "Do jump on it, it can take it. Promise..." + desc = "Jump on it, it can cope. Promise..." icon = 'icons/turf/floors/reinf_glass.dmi' - thermal_conductivity = 0.025 - heat_capacity = 325000 + thermal_conductivity = 0.035 + heat_capacity = 50000 /turf/simulated/floor/transparent/glass/reinforced/acid_act(acidpwr, acid_volume) acidpwr = min(acidpwr, 50) From ce7653174e27a119cd0c9b18da2675d09d0bc96b Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Thu, 22 Apr 2021 16:54:40 +0100 Subject: [PATCH 06/17] 3/4 perspective --- icons/turf/floors/glass.dmi | Bin 3595 -> 3655 bytes icons/turf/floors/reinf_glass.dmi | Bin 9255 -> 6081 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/turf/floors/glass.dmi b/icons/turf/floors/glass.dmi index 5d1e0ceac13ff9954e7de2357f4380c21be6ed1d..1a2a4c555b475cb43dbaf78c23b319b50fb3c131 100644 GIT binary patch literal 3655 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 CSx~6} diff --git a/icons/turf/floors/reinf_glass.dmi b/icons/turf/floors/reinf_glass.dmi index f206b4f3dfccb094d87f0c7c1f3d177e8461a49a..bb8d82712c80a91c26b9767eed56d8bbe099e55c 100644 GIT binary patch literal 6081 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 literal 9255 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 Date: Thu, 22 Apr 2021 19:32:15 +0100 Subject: [PATCH 07/17] fixes pipe issues --- code/game/turfs/simulated/floor.dm | 4 +++ .../atmospherics/machinery/atmospherics.dm | 25 +++++++++++++------ 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index abf1bfa3076..6c010b0498a 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -133,6 +133,10 @@ GLOBAL_LIST_INIT(icons_to_ignore_at_floor_init, list("damaged1","damaged2","dama W.icon_plating = old_plating if(W.keep_dir) W.dir = old_dir + if(W.transparent_floor) + var/obj/machinery/atmospherics/R + for(R in W) + R.update_icon() W.update_icon() return W diff --git a/code/modules/atmospherics/machinery/atmospherics.dm b/code/modules/atmospherics/machinery/atmospherics.dm index 652766e6e25..8d21004326b 100644 --- a/code/modules/atmospherics/machinery/atmospherics.dm +++ b/code/modules/atmospherics/machinery/atmospherics.dm @@ -68,10 +68,13 @@ Pipelines + Other Objects -> Pipe network // Icons/overlays/underlays /obj/machinery/atmospherics/update_icon() var/turf/T = get_turf(loc) - if(!T || level == 2 || !T.intact) - plane = GAME_PLANE - else + if(T.transparent_floor) plane = FLOOR_PLANE + else + if(!T || level == 2 || !T.intact) + plane = GAME_PLANE + else + plane = FLOOR_PLANE /obj/machinery/atmospherics/proc/update_pipe_image() pipe_image = image(src, loc, layer = ABOVE_HUD_LAYER, dir = dir) //the 20 puts it above Byond's darkness (not its opacity view) @@ -92,15 +95,18 @@ Pipelines + Other Objects -> Pipe network /obj/machinery/atmospherics/proc/add_underlay(turf/T, obj/machinery/atmospherics/node, direction, icon_connect_type) if(node) - if(T.intact && node.level == 1 && istype(node, /obj/machinery/atmospherics/pipe)) + if(T.intact && node.level == 1 && istype(node, /obj/machinery/atmospherics/pipe) && !T.transparent_floor) //underlays += SSair.icon_manager.get_atmos_icon("underlay_down", direction, color_cache_name(node)) underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "down" + icon_connect_type) else //underlays += SSair.icon_manager.get_atmos_icon("underlay_intact", direction, color_cache_name(node)) underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "intact" + icon_connect_type) else - //underlays += SSair.icon_manager.get_atmos_icon("underlay_exposed", direction, pipe_color) - underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "exposed" + icon_connect_type) + if(T.transparent_floor) //we want to keep pipes under transparent floors connected normally + underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "intact" + icon_connect_type) + else + //underlays += SSair.icon_manager.get_atmos_icon("underlay_exposed", direction, pipe_color) + underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "exposed" + icon_connect_type) /obj/machinery/atmospherics/proc/update_underlays() if(check_icon_cache()) @@ -340,12 +346,15 @@ Pipelines + Other Objects -> Pipe network /obj/machinery/atmospherics/proc/add_underlay_adapter(turf/T, obj/machinery/atmospherics/node, direction, icon_connect_type) //modified from add_underlay, does not make exposed underlays if(node) - if(T.intact && node.level == 1 && istype(node, /obj/machinery/atmospherics/pipe)) + if(T.intact && node.level == 1 && istype(node, /obj/machinery/atmospherics/pipe) && !T.transparent_floor) underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "down" + icon_connect_type) else underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "intact" + icon_connect_type) else - underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "retracted" + icon_connect_type) + if(T.transparent_floor) //we want to keep pipes under transparent floors connected normally + underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "intact" + icon_connect_type) + else + underlays += SSair.icon_manager.get_atmos_icon("underlay", direction, color_cache_name(node), "retracted" + icon_connect_type) /obj/machinery/atmospherics/singularity_pull(S, current_size) if(current_size >= STAGE_FIVE) From da9b4a80c9eec54659db00437180e9b5de5f0523 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Thu, 22 Apr 2021 20:53:46 +0100 Subject: [PATCH 08/17] mochi review --- code/game/machinery/Beacon.dm | 2 +- code/game/machinery/magnet.dm | 2 +- code/game/machinery/navbeacon.dm | 2 +- code/game/turfs/simulated/floor/plating.dm | 8 ++--- .../game/turfs/simulated/floor/transparent.dm | 32 ++++++++++--------- code/game/turfs/turf.dm | 2 +- .../atmospherics/machinery/atmospherics.dm | 4 +-- code/modules/power/cable.dm | 4 +-- code/modules/recycling/disposal.dm | 4 +-- 9 files changed, 31 insertions(+), 29 deletions(-) diff --git a/code/game/machinery/Beacon.dm b/code/game/machinery/Beacon.dm index 94e3b354d47..01eb2cb2075 100644 --- a/code/game/machinery/Beacon.dm +++ b/code/game/machinery/Beacon.dm @@ -4,7 +4,7 @@ name = "Bluespace Gigabeacon" desc = "A device that draws power from bluespace and creates a permanent tracking beacon." level = 1 // underfloor - layer = 2.5 + layer = WIRE_LAYER+0.001 anchored = 1 use_power = IDLE_POWER_USE idle_power_usage = 0 diff --git a/code/game/machinery/magnet.dm b/code/game/machinery/magnet.dm index c6ae20c6831..1a5a5ced2ec 100644 --- a/code/game/machinery/magnet.dm +++ b/code/game/machinery/magnet.dm @@ -11,7 +11,7 @@ name = "Electromagnetic Generator" desc = "A device that uses station power to create points of magnetic energy." level = 1 // underfloor - layer = 2.5 + layer = WIRE_LAYER+0.001 anchored = 1 use_power = IDLE_POWER_USE idle_power_usage = 50 diff --git a/code/game/machinery/navbeacon.dm b/code/game/machinery/navbeacon.dm index c3d64752f4e..7edbfaa217c 100644 --- a/code/game/machinery/navbeacon.dm +++ b/code/game/machinery/navbeacon.dm @@ -8,7 +8,7 @@ name = "navigation beacon" desc = "A radio beacon used for bot navigation." level = 1 // underfloor - layer = 2.5 + layer = WIRE_LAYER+0.001 anchored = 1 max_integrity = 500 armor = list(melee = 70, bullet = 70, laser = 70, energy = 70, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 80) diff --git a/code/game/turfs/simulated/floor/plating.dm b/code/game/turfs/simulated/floor/plating.dm index 96d7339b876..2d3658e6626 100644 --- a/code/game/turfs/simulated/floor/plating.dm +++ b/code/game/turfs/simulated/floor/plating.dm @@ -80,10 +80,10 @@ return TRUE else to_chat(user, "You begin swapping the plating for glass...") - if(do_after(user, 30 * C.toolspeed, target = src)) + if(do_after(user, 3 SECONDS * C.toolspeed, target = src)) if(R.get_amount() >= 2 && !istype(src, /turf/simulated/floor/transparent/glass)) ChangeTurf(/turf/simulated/floor/transparent/glass) - playsound(src, C.usesound, 80, 1) + playsound(src, C.usesound, 80, TRUE) R.use(2) to_chat(user, "You swap the plating for glass.") new /obj/item/stack/sheet/metal(src, 2) @@ -99,10 +99,10 @@ return TRUE else to_chat(user, "You begin swapping the plating for reinforced glass...") - if(do_after(user, 30 * C.toolspeed, target = src)) + if(do_after(user, 3 SECONDS * C.toolspeed, target = src)) if(R.get_amount() >= 2 && !istype(src, /turf/simulated/floor/transparent/glass/reinforced)) ChangeTurf(/turf/simulated/floor/transparent/glass/reinforced) - playsound(src, C.usesound, 80, 1) + playsound(src, C.usesound, 80, TRUE) R.use(2) to_chat(user, "You swap the plating for reinforced glass.") new /obj/item/stack/sheet/metal(src, 2) diff --git a/code/game/turfs/simulated/floor/transparent.dm b/code/game/turfs/simulated/floor/transparent.dm index ace15cdda61..0e9b292e73b 100644 --- a/code/game/turfs/simulated/floor/transparent.dm +++ b/code/game/turfs/simulated/floor/transparent.dm @@ -6,7 +6,7 @@ baseturf = /turf/space broken_states = list("damaged1", "damaged2", "damaged3") smooth = SMOOTH_MORE - canSmoothWith = list(/turf/simulated/floor/transparent) + canSmoothWith = list(/turf/simulated/floor/transparent/glass) footstep = FOOTSTEP_PLATING light_power = 0.25 light_range = 2 @@ -20,32 +20,34 @@ var/image/I = image('icons/turf/space.dmi', src, SPACE_ICON_STATE) I.plane = PLANE_SPACE underlays += I - dir = 2 //dirs that are not 2 cause smoothing jank + dir = SOUTH //dirs that are not 2 cause smoothing jank icon_state = "" //Prevents default icon appearing behind the glass -/turf/simulated/floor/transparent/attackby(obj/item/C as obj, mob/user as mob, params) +/turf/simulated/floor/transparent/glass/attackby(obj/item/C, mob/user, params) if(!C || !user) return if(istype(C, /obj/item/crowbar)) var/obj/item/stack/R = user.get_inactive_hand() if(istype(R, /obj/item/stack/sheet/metal)) if(R.get_amount() < 2) //not enough metal in the stack - to_chat(user, "You also need to hold two sheets of metal to dismantle a glass floor!") + to_chat(user, "You also need to hold two sheets of metal to dismantle [src]!") return else to_chat(user, "You begin replacing the glass...") - playsound(src, C.usesound, 80, 1) - if(do_after(user, 30 * C.toolspeed, target = src)) - if(!src.transparent_floor) - return - if(istype(src, /turf/simulated/floor/transparent/glass/reinforced)) - new /obj/item/stack/sheet/rglass(src, 2) - else - new /obj/item/stack/sheet/glass(src, 2) - R.use(2) - ChangeTurf(/turf/simulated/floor/plating) + playsound(src, C.usesound, 80, TRUE) + if(do_after(user, 3 SECONDS * C.toolspeed, target = src)) + if(R.get_amount() >= 2 && !istype(src, /turf/simulated/floor/plating)) + if(!transparent_floor) + return + if(istype(src, /turf/simulated/floor/transparent/glass/reinforced)) + new /obj/item/stack/sheet/rglass(src, 2) + else + new /obj/item/stack/sheet/glass(src, 2) + R.use(2) + ChangeTurf(/turf/simulated/floor/plating) + else //not holding metal at all - to_chat(user, "You also need to hold two sheets of metal to dismantle a glass floor!") + to_chat(user, "You also need to hold two sheets of metal to dismantle [src]!") return diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index 36381b72ecc..61f2e4674ab 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -6,7 +6,7 @@ var/intact = TRUE var/turf/baseturf = /turf/space var/slowdown = 0 //negative for faster, positive for slower - var/transparent_floor = FALSE //true for transparent floors + var/transparent_floor = FALSE //used to check if pipes should be visible under the turf or not ///Properties for open tiles (/floor) /// All the gas vars, on the turf, are meant to be utilized for initializing a gas datum and setting its first gas values; the turf vars are never further modified at runtime; it is never directly used for calculations by the atmospherics system. diff --git a/code/modules/atmospherics/machinery/atmospherics.dm b/code/modules/atmospherics/machinery/atmospherics.dm index 8d21004326b..42f7a088b13 100644 --- a/code/modules/atmospherics/machinery/atmospherics.dm +++ b/code/modules/atmospherics/machinery/atmospherics.dm @@ -172,7 +172,7 @@ Pipelines + Other Objects -> Pipe network var/turf/T = get_turf(src) if(can_unwrench && istype(W, /obj/item/wrench)) if(T.transparent_floor) - to_chat(user, "You must remove the glass first.") + to_chat(user, "You can't interact with something that's under the floor!") return if(level == 1 && isturf(T) && T.intact) to_chat(user, "You must remove the plating first.") @@ -213,7 +213,7 @@ Pipelines + Other Objects -> Pipe network deconstruct(TRUE) else if(T.transparent_floor) - to_chat(user, "You must remove the glass first.") + to_chat(user, "You can't interact with something that's under the floor!") return return ..() diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index 50d7ff6db8d..6cd675af8aa 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -166,7 +166,7 @@ By design, d1 is the smallest direction and d2 is the highest /obj/structure/cable/attackby(obj/item/W, mob/user) var/turf/T = get_turf(src) if(T.transparent_floor) - to_chat(user, "You must remove the glass first.") + to_chat(user, "You can't interact with something that's under the floor!") return if(T.intact) return @@ -211,7 +211,7 @@ By design, d1 is the smallest direction and d2 is the highest . = TRUE var/turf/T = get_turf(src) if(T.transparent_floor) - to_chat(user, "You must remove the glass first.") + to_chat(user, "You can't interact with something that's under the floor!") return if(T.intact) return diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 2b3f4765c91..835d669ef4b 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -894,7 +894,7 @@ /obj/structure/disposalpipe/attackby(obj/item/I, mob/user, params) var/turf/T = get_turf(src) if(T.intact || T.transparent_floor) - to_chat(user, "You must remove the [T.transparent_floor ? "glass": "plating"] first.") + to_chat(user, "You can't interact with something that's under the floor!") return // prevent interaction with T-scanner revealed pipes and pipes under glass add_fingerprint(user) @@ -905,7 +905,7 @@ if(!I.tool_use_check(user, 0)) return if(T.transparent_floor) - to_chat(user, "You must remove the glass first.") + to_chat(user, "You can't interact with something that's under the floor!") return WELDER_ATTEMPT_SLICING_MESSAGE if(!I.use_tool(src, user, 30, volume = I.tool_volume)) From d50c7273fcb91ce8b17af226916938649a755df9 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Fri, 23 Apr 2021 19:55:09 +0100 Subject: [PATCH 09/17] more fixes --- code/game/machinery/pipe/construction.dm | 6 ++++++ code/game/objects/items/devices/pipe_painter.dm | 4 ++-- code/game/objects/obj_defense.dm | 4 ++-- code/game/turfs/simulated/floor/transparent.dm | 2 +- code/modules/atmospherics/machinery/atmospherics.dm | 9 +++++++-- code/modules/power/cable.dm | 12 ++++-------- code/modules/recycling/disposal.dm | 2 +- 7 files changed, 23 insertions(+), 16 deletions(-) diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index 69166311caa..009f135401c 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -333,12 +333,18 @@ fixdir() var/pipe_dir = get_pipe_dir() + var/turf/T = get_turf(loc) for(var/obj/machinery/atmospherics/M in src.loc) if((M.initialize_directions & pipe_dir) && M.check_connect_types_construction(M,src)) // matches at least one direction on either type of pipe to_chat(user, "There is already a pipe of the same type at this location.") return 1 + if(pipe_type in list(PIPE_SUPPLY_STRAIGHT, PIPE_SUPPLY_BENT, PIPE_SCRUBBERS_STRAIGHT, PIPE_SCRUBBERS_BENT, PIPE_HE_STRAIGHT, PIPE_HE_BENT, PIPE_SUPPLY_MANIFOLD, PIPE_SCRUBBERS_MANIFOLD, PIPE_SUPPLY_MANIFOLD4W, PIPE_SCRUBBERS_MANIFOLD4W, PIPE_UVENT, PIPE_SUPPLY_CAP, PIPE_SCRUBBERS_CAP, PIPE_PASV_VENT, PIPE_DP_VENT, PIPE_PASSIVE_GATE)) + if(T.transparent_floor) //stops jank with transparent floors and pipes + to_chat(user, "You can only fix simple pipes and devices over glass floors!.") + return 1 + switch(pipe_type) //What kind of heartless person thought of doing this? if(PIPE_SIMPLE_STRAIGHT, PIPE_SIMPLE_BENT) var/obj/machinery/atmospherics/pipe/simple/P = new( src.loc ) diff --git a/code/game/objects/items/devices/pipe_painter.dm b/code/game/objects/items/devices/pipe_painter.dm index 5fb3f3dc597..ca133ec05a6 100644 --- a/code/game/objects/items/devices/pipe_painter.dm +++ b/code/game/objects/items/devices/pipe_painter.dm @@ -24,8 +24,8 @@ return var/turf/T = P.loc - if(P.level < 2 && T.level==1 && isturf(T) && T.intact) - to_chat(user, "You must remove the plating first.") + if(P.level < 2 && T.level==1 && isturf(T) && T.intact && !T.transparent_floor) + to_chat(user, "You must remove the floor tiling first.") return playsound(loc, usesound, 30, TRUE) diff --git a/code/game/objects/obj_defense.dm b/code/game/objects/obj_defense.dm index b796740a60b..63132c315fb 100644 --- a/code/game/objects/obj_defense.dm +++ b/code/game/objects/obj_defense.dm @@ -90,7 +90,7 @@ /obj/blob_act(obj/structure/blob/B) if(isturf(loc)) var/turf/T = loc - if(T.intact && level == 1) //the blob doesn't destroy thing below the floor + if(T.intact && level == 1 || T.transparent_floor) //the blob doesn't destroy thing below the floor return take_damage(400, BRUTE, "melee", 0, get_dir(src, B)) @@ -199,7 +199,7 @@ GLOBAL_DATUM_INIT(acid_overlay, /mutable_appearance, mutable_appearance('icons/e /obj/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume, global_overlay = TRUE) if(isturf(loc)) var/turf/T = loc - if(T.intact && level == 1) //fire can't damage things hidden below the floor. + if(T.intact && level == 1 || T.transparent_floor) //fire can't damage things hidden below the floor. return ..() if(exposed_temperature && !(resistance_flags & FIRE_PROOF)) diff --git a/code/game/turfs/simulated/floor/transparent.dm b/code/game/turfs/simulated/floor/transparent.dm index 0e9b292e73b..d5d4b4a6397 100644 --- a/code/game/turfs/simulated/floor/transparent.dm +++ b/code/game/turfs/simulated/floor/transparent.dm @@ -20,7 +20,7 @@ var/image/I = image('icons/turf/space.dmi', src, SPACE_ICON_STATE) I.plane = PLANE_SPACE underlays += I - dir = SOUTH //dirs that are not 2 cause smoothing jank + dir = SOUTH //dirs that are not 2/south cause smoothing jank icon_state = "" //Prevents default icon appearing behind the glass /turf/simulated/floor/transparent/glass/attackby(obj/item/C, mob/user, params) diff --git a/code/modules/atmospherics/machinery/atmospherics.dm b/code/modules/atmospherics/machinery/atmospherics.dm index 42f7a088b13..b5426fcc001 100644 --- a/code/modules/atmospherics/machinery/atmospherics.dm +++ b/code/modules/atmospherics/machinery/atmospherics.dm @@ -171,7 +171,7 @@ Pipelines + Other Objects -> Pipe network /obj/machinery/atmospherics/attackby(obj/item/W, mob/user) var/turf/T = get_turf(src) if(can_unwrench && istype(W, /obj/item/wrench)) - if(T.transparent_floor) + if(T.transparent_floor && istype(src, /obj/machinery/atmospherics/pipe)) to_chat(user, "You can't interact with something that's under the floor!") return if(level == 1 && isturf(T) && T.intact) @@ -249,7 +249,12 @@ Pipelines + Other Objects -> Pipe network dir = D initialize_directions = P var/turf/T = loc - level = T.intact ? 2 : 1 + if(!T.transparent_floor) + level = T.intact ? 2 : 1 + else + level = 2 + plane = GAME_PLANE + layer = GAS_PIPE_VISIBLE_LAYER add_fingerprint(usr) if(!SSair.initialized) //If there's no atmos subsystem, we can't really initialize pipenets SSair.machinery_to_construct.Add(src) diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index 6cd675af8aa..a1b3cb8b8f6 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -165,11 +165,9 @@ By design, d1 is the smallest direction and d2 is the highest // /obj/structure/cable/attackby(obj/item/W, mob/user) var/turf/T = get_turf(src) - if(T.transparent_floor) + if(T.transparent_floor || T.intact) to_chat(user, "You can't interact with something that's under the floor!") return - if(T.intact) - return else if(istype(W, /obj/item/stack/cable_coil)) var/obj/item/stack/cable_coil/coil = W @@ -210,11 +208,9 @@ By design, d1 is the smallest direction and d2 is the highest /obj/structure/cable/wirecutter_act(mob/user, obj/item/I) . = TRUE var/turf/T = get_turf(src) - if(T.transparent_floor) + if(T.transparent_floor || T.intact) to_chat(user, "You can't interact with something that's under the floor!") return - if(T.intact) - return if(!I.use_tool(src, user, 0, volume = I.tool_volume)) return if(shock(user, 50)) @@ -712,7 +708,7 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai var/turf/T = get_turf(C) - if(!isturf(T) || T.intact) // sanity checks, also stop use interacting with T-scanner revealed cable + if(!isturf(T) || T.intact || T.transparent_floor) // sanity checks, also stop use interacting with T-scanner revealed cable return if(get_dist(C, user) > 1) // make sure it's close enough @@ -728,7 +724,7 @@ GLOBAL_LIST_INIT(cable_coil_recipes, list (new/datum/stack_recipe("cable restrai // one end of the clicked cable is pointing towards us if(C.d1 == dirn || C.d2 == dirn) - if(U.intact) // can't place a cable if the floor is complete + if(U.intact || U.transparent_floor) // can't place a cable if the floor is complete to_chat(user, "You can't lay cable there unless the floor tiles are removed!") return else diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 835d669ef4b..62c121f1ffa 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -1210,7 +1210,7 @@ return var/turf/T = src.loc - if(T.intact) + if(T.intact || T.transparent_floor) return // prevent interaction with T-scanner revealed pipes src.add_fingerprint(user) From c7db5e0d168a4515e2fa6adef9ee274ef9082b3e Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Fri, 23 Apr 2021 20:58:28 +0100 Subject: [PATCH 10/17] fixes final steelslayer issue --- code/game/machinery/pipe/construction.dm | 2 +- code/modules/atmospherics/machinery/atmospherics.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index 009f135401c..cbea83d439e 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -507,7 +507,7 @@ user.visible_message( \ "[user] fastens the [src].", \ "You have fastened the [src].", \ - "You hear ratchet.") + "You hear ratcheting.") qdel(src) // remove the pipe item return diff --git a/code/modules/atmospherics/machinery/atmospherics.dm b/code/modules/atmospherics/machinery/atmospherics.dm index b5426fcc001..7064cd84430 100644 --- a/code/modules/atmospherics/machinery/atmospherics.dm +++ b/code/modules/atmospherics/machinery/atmospherics.dm @@ -171,7 +171,7 @@ Pipelines + Other Objects -> Pipe network /obj/machinery/atmospherics/attackby(obj/item/W, mob/user) var/turf/T = get_turf(src) if(can_unwrench && istype(W, /obj/item/wrench)) - if(T.transparent_floor && istype(src, /obj/machinery/atmospherics/pipe)) + if(T.transparent_floor && istype(src, /obj/machinery/atmospherics/pipe) && layer != GAS_PIPE_VISIBLE_LAYER) //pipes on GAS_PIPE_VISIBLE_LAYER are above the transparent floor and should be interactable to_chat(user, "You can't interact with something that's under the floor!") return if(level == 1 && isturf(T) && T.intact) From 557d4e4af5d69a9c628a3060b0e4ad371f6cc036 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Sat, 1 May 2021 20:33:40 +0100 Subject: [PATCH 11/17] moar glass! --- code/game/turfs/simulated/floor/plating.dm | 42 ++++++--------- .../game/turfs/simulated/floor/transparent.dm | 51 ++++++++++++++---- icons/turf/floors/glass.dmi | Bin 3655 -> 2316 bytes icons/turf/floors/plasmaglass.dmi | Bin 0 -> 1514 bytes icons/turf/floors/plastitaniumglass.dmi | Bin 0 -> 1336 bytes icons/turf/floors/reinf_glass.dmi | Bin 6081 -> 3885 bytes icons/turf/floors/reinf_plasmaglass.dmi | Bin 0 -> 2677 bytes icons/turf/floors/titaniumglass.dmi | Bin 0 -> 1279 bytes 8 files changed, 59 insertions(+), 34 deletions(-) create mode 100644 icons/turf/floors/plasmaglass.dmi create mode 100644 icons/turf/floors/plastitaniumglass.dmi create mode 100644 icons/turf/floors/reinf_plasmaglass.dmi create mode 100644 icons/turf/floors/titaniumglass.dmi diff --git a/code/game/turfs/simulated/floor/plating.dm b/code/game/turfs/simulated/floor/plating.dm index 2d3658e6626..8a98d2f4616 100644 --- a/code/game/turfs/simulated/floor/plating.dm +++ b/code/game/turfs/simulated/floor/plating.dm @@ -70,41 +70,33 @@ to_chat(user, "This section is too damaged to support a tile! Use a welder to fix the damage.") return TRUE - else if(istype(C, /obj/item/stack/sheet/glass)) + else if(is_glass_sheet(C)) if(broken || burnt) to_chat(user, "Repair the plating first!") return TRUE - var/obj/item/stack/sheet/glass/R = C + var/obj/item/stack/sheet/R = C if(R.get_amount() < 2) - to_chat(user, "You need two sheets of glass to build a glass floor!") + to_chat(user, "You need two sheets of [C] to build a [C] floor!") return TRUE else - to_chat(user, "You begin swapping the plating for glass...") + to_chat(user, "You begin swapping the plating for [C]...") if(do_after(user, 3 SECONDS * C.toolspeed, target = src)) if(R.get_amount() >= 2 && !istype(src, /turf/simulated/floor/transparent/glass)) - ChangeTurf(/turf/simulated/floor/transparent/glass) + if(istype(C, /obj/item/stack/sheet/plasmaglass)) //So, what type of glass floor do we want today? + ChangeTurf(/turf/simulated/floor/transparent/glass/plasma) + else if(istype(C, /obj/item/stack/sheet/plasmarglass)) + ChangeTurf(/turf/simulated/floor/transparent/glass/reinforced/plasma) + else if(istype(C, /obj/item/stack/sheet/glass)) + ChangeTurf(/turf/simulated/floor/transparent/glass) + else if(istype(C, /obj/item/stack/sheet/rglass)) + ChangeTurf(/turf/simulated/floor/transparent/glass/reinforced) + else if(istype(C, /obj/item/stack/sheet/titaniumglass)) + ChangeTurf(/turf/simulated/floor/transparent/glass/titanium) + else if(istype(C, /obj/item/stack/sheet/plastitaniumglass)) + ChangeTurf(/turf/simulated/floor/transparent/glass/titanium/plastic) playsound(src, C.usesound, 80, TRUE) R.use(2) - to_chat(user, "You swap the plating for glass.") - new /obj/item/stack/sheet/metal(src, 2) - return TRUE - - else if(istype(C, /obj/item/stack/sheet/rglass)) - if(broken || burnt) - to_chat(user, "Repair the plating first!") - return TRUE - var/obj/item/stack/sheet/rglass/R = C - if(R.get_amount() < 2) - to_chat(user, "You need two sheets of reinforced glass to build a reinforced glass floor!") - return TRUE - else - to_chat(user, "You begin swapping the plating for reinforced glass...") - if(do_after(user, 3 SECONDS * C.toolspeed, target = src)) - if(R.get_amount() >= 2 && !istype(src, /turf/simulated/floor/transparent/glass/reinforced)) - ChangeTurf(/turf/simulated/floor/transparent/glass/reinforced) - playsound(src, C.usesound, 80, TRUE) - R.use(2) - to_chat(user, "You swap the plating for reinforced glass.") + to_chat(user, "You swap the plating for [C].") new /obj/item/stack/sheet/metal(src, 2) return TRUE diff --git a/code/game/turfs/simulated/floor/transparent.dm b/code/game/turfs/simulated/floor/transparent.dm index d5d4b4a6397..7b8904bef33 100644 --- a/code/game/turfs/simulated/floor/transparent.dm +++ b/code/game/turfs/simulated/floor/transparent.dm @@ -1,12 +1,11 @@ /turf/simulated/floor/transparent/glass name = "glass floor" - desc = "Don't jump on it, or do, I'm not your mom." + desc = "Don't jump on it... Or do, I'm not your mom." icon = 'icons/turf/floors/glass.dmi' icon_state = "unsmooth" baseturf = /turf/space - broken_states = list("damaged1", "damaged2", "damaged3") - smooth = SMOOTH_MORE - canSmoothWith = list(/turf/simulated/floor/transparent/glass) + smooth = SMOOTH_TRUE + canSmoothWith = list(/turf/simulated/floor/transparent/glass, /turf/simulated/floor/transparent/glass/reinforced, /turf/simulated/floor/transparent/glass/plasma, /turf/simulated/floor/transparent/glass/reinforced/plasma) footstep = FOOTSTEP_PLATING light_power = 0.25 light_range = 2 @@ -30,24 +29,32 @@ var/obj/item/stack/R = user.get_inactive_hand() if(istype(R, /obj/item/stack/sheet/metal)) if(R.get_amount() < 2) //not enough metal in the stack - to_chat(user, "You also need to hold two sheets of metal to dismantle [src]!") + to_chat(user, "You also need to hold two sheets of metal to dismantle \the [src]!") return else - to_chat(user, "You begin replacing the glass...") + to_chat(user, "You begin replacing \the [src]...") playsound(src, C.usesound, 80, TRUE) if(do_after(user, 3 SECONDS * C.toolspeed, target = src)) if(R.get_amount() >= 2 && !istype(src, /turf/simulated/floor/plating)) if(!transparent_floor) return - if(istype(src, /turf/simulated/floor/transparent/glass/reinforced)) + if(istype(src, /turf/simulated/floor/transparent/glass/reinforced)) //What material is returned? Depends on the turf new /obj/item/stack/sheet/rglass(src, 2) - else + else if(istype(src, /turf/simulated/floor/transparent/glass)) new /obj/item/stack/sheet/glass(src, 2) + else if(istype(src, /turf/simulated/floor/transparent/glass/plasma)) + new /obj/item/stack/sheet/plasmaglass(src, 2) + else if(istype(src, /turf/simulated/floor/transparent/glass/reinforced/plasma)) + new /obj/item/stack/sheet/plasmarglass(src, 2) + else if(istype(src, /turf/simulated/floor/transparent/glass/titanium)) + new /obj/item/stack/sheet/titaniumglass(src, 2) + else if(istype(src, /turf/simulated/floor/transparent/glass/titanium/plastic)) + new /obj/item/stack/sheet/plastitaniumglass(src, 2) R.use(2) ChangeTurf(/turf/simulated/floor/plating) else //not holding metal at all - to_chat(user, "You also need to hold two sheets of metal to dismantle [src]!") + to_chat(user, "You also need to hold two sheets of metal to dismantle \the [src]!") return @@ -61,3 +68,29 @@ /turf/simulated/floor/transparent/glass/reinforced/acid_act(acidpwr, acid_volume) acidpwr = min(acidpwr, 50) . = ..() + +/turf/simulated/floor/transparent/glass/plasma + name = "plasma glass floor" + desc = "Wait, was space always that color?" + icon = 'icons/turf/floors/plasmaglass.dmi' + thermal_conductivity = 0.030 + heat_capacity = 75000 + +/turf/simulated/floor/transparent/glass/reinforced/plasma + name = "reinforced plasma glass floor" + desc = "For when you REALLY don't want your floor choice to suffocate everyone." + icon = 'icons/turf/floors/reinf_plasmaglass.dmi' + thermal_conductivity = 0.025 + heat_capacity = 325000 + +/turf/simulated/floor/transparent/glass/titanium + name = "titanium glass floor" + canSmoothWith = list(/turf/simulated/floor/transparent/glass/titanium, /turf/simulated/floor/transparent/glass/titanium/plastic) + desc = "Stylish AND strong!" + icon = 'icons/turf/floors/titaniumglass.dmi' + thermal_conductivity = 0.025 + heat_capacity = 325000 + +/turf/simulated/floor/transparent/glass/titanium/plastic + name = "plastitanium glass floor" + icon = 'icons/turf/floors/plastitaniumglass.dmi' diff --git a/icons/turf/floors/glass.dmi b/icons/turf/floors/glass.dmi index 1a2a4c555b475cb43dbaf78c23b319b50fb3c131..1d0f13d0c06891b3eb875b250ddb8c4626fa4f2e 100644 GIT binary patch literal 2316 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 O0q3JG4kh;fH~$UJ)5}f( literal 6081 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 diff --git a/icons/turf/floors/reinf_plasmaglass.dmi b/icons/turf/floors/reinf_plasmaglass.dmi new file mode 100644 index 0000000000000000000000000000000000000000..c46025e5291b62e0b5476001dc30396185344ac6 GIT binary patch literal 2677 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 literal 0 HcmV?d00001 diff --git a/icons/turf/floors/titaniumglass.dmi b/icons/turf/floors/titaniumglass.dmi new file mode 100644 index 0000000000000000000000000000000000000000..597487ff175d35649eff4747bc64848c3484fe2e GIT binary patch literal 1279 zcmeAS@N?(olHy`uVBq!ia0vp^3qY8I4M=vMPuB%fo2o)0N?cNllZ!G7N;32F7#J$% z^q$+u)odWr`p~kntNWa0@5xz9HI6#ocQi1Q^f@s5+V%GeB{}EH^lN1PO_MuZJZI&6 zx1S%`kIy+Vaqr!w7LTKtERE)h96TPbas6TI>Lo_Va0|!(PKxt0?)`hp4Xp8uznyli+x_I`#NRA-tM%_4mr!hAWs-RueOfK0 zN8o@HqZ?ymekW7VXRqGI4faexN#>YM4NDo0F)B1LFmYfb9vouOZQxHh$ADE9sKbmi zz?-QdlHpq?+cHzL)UTRrHMt#fS29dv2uQYTI2yy)tHxOHasEP{bfyax+u2@!chGQ% ze9gY$(toGy|AGok38}L?ZkaniW{5bMJLOhB^Is7L?)?*Ee)oPzXKyf5G*i@lKJ|0> z@52K9OxWB96-#BlGW|7k#8=^qIQ)S_@47UTHhzYNo6m1=<=D{jv*|3eO&?pudf5ka z9p5laGq|7kL!IXuSHTZC@0t2HYz{nJvny;}gX&rFEu57GyYqY*!mU-~qnG?*WD#&+ zxXKT*WJMhVi1(El6kx059T-ltW-!(;6wk8Pui$QvAVCZpHub$*q}$x@5+SEd-nthn|o zTK-&$aFXyO@ddXv@|aEkx|lRDL^*&hrZYrFa_d~7`Xs5nJ+jft>_|Hwx&wSYW zdp*Oc{_q2GKG#d9FOmCbmE6K`iuZuwzMW=LAZBcX;WGOVXSbec{BSQQn_=m!kmW;<<^X=zv zc*MogI3K9{f?fmzC@5G#ArQd8azXj0+{x*wvnMTTd|^Io(yt6Jq1>4aSw8FmJ`~KN+lhRnHi8Z;J$$XbhgNelF{r5}E)Gy54O7 literal 0 HcmV?d00001 From 8c191f19ecbdacdf17156cb998749a18e823090f Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Sun, 2 May 2021 23:22:38 +0100 Subject: [PATCH 12/17] sound effect time --- code/__DEFINES/footstep.dm | 16 +++++++++++++++- code/game/turfs/simulated/floor/transparent.dm | 5 ++++- sound/effects/footstep/glass1.ogg | Bin 0 -> 18030 bytes sound/effects/footstep/glass2.ogg | Bin 0 -> 16081 bytes sound/effects/footstep/glass3.ogg | Bin 0 -> 17470 bytes sound/effects/footstep/glassbarefoot1.ogg | Bin 0 -> 26848 bytes sound/effects/footstep/glassbarefoot2.ogg | Bin 0 -> 30118 bytes sound/effects/footstep/glassbarefoot3.ogg | Bin 0 -> 17587 bytes 8 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 sound/effects/footstep/glass1.ogg create mode 100644 sound/effects/footstep/glass2.ogg create mode 100644 sound/effects/footstep/glass3.ogg create mode 100644 sound/effects/footstep/glassbarefoot1.ogg create mode 100644 sound/effects/footstep/glassbarefoot2.ogg create mode 100644 sound/effects/footstep/glassbarefoot3.ogg diff --git a/code/__DEFINES/footstep.dm b/code/__DEFINES/footstep.dm index 469549b8827..bda71aa4443 100644 --- a/code/__DEFINES/footstep.dm +++ b/code/__DEFINES/footstep.dm @@ -7,12 +7,14 @@ #define FOOTSTEP_WATER "water" #define FOOTSTEP_LAVA "lava" #define FOOTSTEP_MEAT "meat" +#define FOOTSTEP_GLASS "glass" //barefoot sounds #define FOOTSTEP_WOOD_BAREFOOT "woodbarefoot" #define FOOTSTEP_WOOD_CLAW "woodclaw" #define FOOTSTEP_HARD_BAREFOOT "hardbarefoot" #define FOOTSTEP_HARD_CLAW "hardclaw" #define FOOTSTEP_CARPET_BAREFOOT "carpetbarefoot" +#define FOOTSTEP_GLASS_BAREFOOT "glassbarefoot" //misc footstep sounds #define FOOTSTEP_GENERIC_HEAVY "heavy" @@ -83,7 +85,11 @@ GLOBAL_LIST_INIT(footstep, list( 'sound/effects/footstep/lava2.ogg', 'sound/effects/footstep/lava3.ogg'), 100, 0), FOOTSTEP_MEAT = list(list( - 'sound/effects/meatslap.ogg'), 100, 0) + 'sound/effects/meatslap.ogg'), 100, 0), + FOOTSTEP_GLASS = list(list( + 'sound/effects/footstep/glass1.ogg', + 'sound/effects/footstep/glass2.ogg', + 'sound/effects/footstep/glass3.ogg'), 100, 1), )) //bare footsteps lists GLOBAL_LIST_INIT(barefootstep, list( @@ -127,6 +133,10 @@ GLOBAL_LIST_INIT(barefootstep, list( 'sound/effects/footstep/lava3.ogg'), 100, 0), FOOTSTEP_MEAT = list(list( 'sound/effects/meatslap.ogg'), 100, 0), + FOOTSTEP_GLASS_BAREFOOT = list(list( + 'sound/effects/footstep/glassbarefoot1.ogg', + 'sound/effects/footstep/glassbarefoot2.ogg', + 'sound/effects/footstep/glassbarefoot3.ogg'), 100, 1), )) //claw footsteps lists @@ -171,6 +181,10 @@ GLOBAL_LIST_INIT(clawfootstep, list( 'sound/effects/footstep/lava3.ogg'), 100, 0), FOOTSTEP_MEAT = list(list( 'sound/effects/meatslap.ogg'), 100, 0), + FOOTSTEP_GLASS = list(list( + 'sound/effects/footstep/glassbarefoot1.ogg', + 'sound/effects/footstep/glassbarefoot2.ogg', + 'sound/effects/footstep/glassbarefoot3.ogg'), 100, 1), )) //heavy footsteps list diff --git a/code/game/turfs/simulated/floor/transparent.dm b/code/game/turfs/simulated/floor/transparent.dm index 7b8904bef33..5624d4ba802 100644 --- a/code/game/turfs/simulated/floor/transparent.dm +++ b/code/game/turfs/simulated/floor/transparent.dm @@ -6,7 +6,10 @@ baseturf = /turf/space smooth = SMOOTH_TRUE canSmoothWith = list(/turf/simulated/floor/transparent/glass, /turf/simulated/floor/transparent/glass/reinforced, /turf/simulated/floor/transparent/glass/plasma, /turf/simulated/floor/transparent/glass/reinforced/plasma) - footstep = FOOTSTEP_PLATING + footstep = FOOTSTEP_GLASS + barefootstep = FOOTSTEP_GLASS_BAREFOOT + clawfootstep = FOOTSTEP_GLASS_BAREFOOT + heavyfootstep = FOOTSTEP_GLASS_BAREFOOT light_power = 0.25 light_range = 2 layer = TRANSPARENT_TURF_LAYER diff --git a/sound/effects/footstep/glass1.ogg b/sound/effects/footstep/glass1.ogg new file mode 100644 index 0000000000000000000000000000000000000000..7afddff640a5802b50a0cda463108834d6876ce8 GIT binary patch literal 18030 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 bwMo<8pfoSI`psM3RgFyNfV-Q4fP(=5h=?n6 literal 0 HcmV?d00001 diff --git a/sound/effects/footstep/glass2.ogg b/sound/effects/footstep/glass2.ogg new file mode 100644 index 0000000000000000000000000000000000000000..5bac4625b68b383ebbf01bbe0cb13a74c6eff1e7 GIT binary patch literal 16081 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 AO#lD@ literal 0 HcmV?d00001 diff --git a/sound/effects/footstep/glass3.ogg b/sound/effects/footstep/glass3.ogg new file mode 100644 index 0000000000000000000000000000000000000000..5d355e8ef17011675305a7615c7827f77b15e8d7 GIT binary patch literal 17470 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

N)OoS6=E^lJ>^-d( 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 literal 0 HcmV?d00001 diff --git a/sound/effects/footstep/glassbarefoot2.ogg b/sound/effects/footstep/glassbarefoot2.ogg new file mode 100644 index 0000000000000000000000000000000000000000..b82c3e0d9d14c0107f614ecb0cd6aba75a9bcd02 GIT binary patch literal 30118 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 literal 0 HcmV?d00001 diff --git a/sound/effects/footstep/glassbarefoot3.ogg b/sound/effects/footstep/glassbarefoot3.ogg new file mode 100644 index 0000000000000000000000000000000000000000..317bf53fcc8978a79a6ebdee7a22c9b6221a456d GIT binary patch literal 17587 zcmb`ubyQqU(=R$9f`kA8La-nKf?Oz)XVsN}4y&1~(AphnjA)c4DJ0sJXTC`*g*em1f+u(2{iyYEmG z6qb@zkr5J6Whg=g1i}D;^vJ2vqKqY|VbSSS&hgRW z_qF!-f$`CS?YIUZ;EsO_5*EW(AkY)g7b@hijCBd~0ZtQK$}qd{oMy5d*(8WT3cop# zTTb5@SZ7saSy&HHQy{(2cnSh^Cm>Ghi>-KH=m(Jc;R1y}p z-qK84nNhM_TR9nFTz{x4hJ>EeSBywXgU3}3iW;72yFmvyHjj!gEulBj`M_j*u-V67|^ZWN<>m-jr-^n;*SEzry#s9I)`Qx#V zUjYKh@LnY($lu;lf6I`_GBz(VOR6%>ud?bbqw6h0eP99X{^Wi&pzmghS^uxsSR>Zx z|NaV?cF}+Y09|%|BJBJ`E}}@@X-9|npy4hMU{e7_x^_DjF(^wXlm~dl>_2ozOZT5h zqyKA!d$WT;0${@SPlVloHWcYc?O4^IypvFwNkA3%8u>pzUJw2PY=kt$IM)0N5_81I z2eo_w#NwtS38Vg<31A3FUnNN#N<8l8L`z)zo{OC{+8n5yL|K~~pY&is%K^L#JFO0k)fh@#&#A=*YJt&7 zl$Ev0f93t-7P&gf1I?UEz=*(^B#T;PZJ>5(n7r4IeBbv!-A4eh+s7%~j+Cz??qSdL zu}QN?qloOo(W1VCyQnjXLc>HQbG_vi@hD;TUmtc(0s{G9Jb3ZH#e*yV_2SHLK{P#7 z<$X-OboWI;>j2kwNh^jhDj4u$I#$4oLo3%)p+%hH7O=_*2rVpHQIZ<=7g2ywNem+d zpW!`##4p~ihdLWT#eW;_fPC=fo8kX@2M-AqFe!j{n2BDAnO8+wMa|JlBhF#A+E;tZ zVR6!ZaWYi*wcr1Atp6Yf1c1ip0h7`CA>htrZ&@MazXtvnIiIjQBMG}B$)(E3Wk%@w zk67f6S%$Gh6j)@GUTF`%au~%iQex8{Wi=XAF&cL?nyxa^tajI^`Ufz7VY4{t@L$Ne zhsaybuodxdPyRP@zEg!QbA*ved?VNR_RcxhBrq{IA$2SF2g?6Ij%iSKd{A~k&_+NQ zRbZ@HU}9eF56hmS?YjT#`yb?p*^vV;fE*D!^8Z54FEF7nfTl7!nd85EAQFXdG!qhOOoU<^F3{{I@rf3az>AJh z6o-L8UqFb!-}CgLh*ysUl0l%a5zqiI(klZDE~H$048=TL?+8vx3MiT+6$K1KQW79A zZIBxdNFY;WVoOTodPgWy!C>-|=F~7;B}sZm3`GfaH=%YS}D$E?y zH>a+efD}ATo_Rm{JwbvVDl3Ud8Z#hB4U7QRVl;3sYDACRWjgs2NE zC-kLrEAb^I08tQ$+{!UXVPPdMHxjk){i-TrAwggmjsX?yVR9HSd1cl8>k_0wrE}aXc(!R<{TqrQ&evV39KvXBL1wD{{e?0<`{PJOv zH|>%Hk)Qy{`59?PGBXl&JFZU$2@Ka8gStH)it!eP3q=#^0BVxm_ciJ_KA87*!H}e; z2GX+pZy=ZJd1tjPgM9r8o`8f9K)629`hA=mB!CTkA{0Y7Hwb+c6@xGogTNcf-tv-? zF^baQ_4_{aTt!K6$3tJPQOJEC1|Yc-Nd3v)7(&$4l@q{Ndtf#gY>EpQ3rq><8v@7! z_+YRJ{p|-n3fLGVnAAs6Qi1{&s~-#oY5-p}Bp4j4tSFfa@CBE4C`tlxZvyD+NCf5u z3>H$_0a22?R~OI+u>g)ph`rb^!J6{1T#KF{A)RAOhJd z6B{_x_(cP1=pYo91hi}r0{Ar0w-K!fY&jkZ6of#&0M0#t_6QC70Chpb09^omo%e)| zWP`ui1Q`UPu?3QEiGm^YYvgwTo(P~^AWMKHAM}dviwkfg!C1t>>%gKVbN@D@75_G= zDekGHfOYPvLICXUn}E_JQ|_DT(a}OkK$-wF=L;wt7Of1SfdR~bs#O2#)w~b{I(UKz z`i?-LD#k&L|D5h&kB>mV04xhWBQ>}`8TkMOuuk0jb-qtW#l|ng1c?KuGE`vyhyc1C zd`nV-`ra$}lj?v4LX(*jt_eG`}afocKv``a`?yUg`JN`1hO%&iYU7 zfA>Aq*8d^&-5V!_bDi*hY%)|9aDT7IAb~HTZp1iu>BNAZhkdF`UA0e3${h;6& zReV^oH|D)Z0|ANx26#SwRUaocbquf-dPhv42{>s%DG<3Vaw~BRLf-(={KB~#l6JT#F>92{kw|)|C|4xQ-E@M zQ4xP_A`_UXOK{N=zF>I3AP#`I)_8+3K}rC|5R3S)@xrL2;I_sUWPU^2n9 znG^j@QnIie#~>uZTTzh)h@e0`oIn$jq_4!$3@%-VSRkfn0ul7y!HOEZBP1;f*KiF= zI5%blsi-Tb^g~!DA+Bh-6@Y-sGcAjL&Hy07gD3Ez{jBG6Qh?+{iy~IUG$=+EY|1>8 zbtBmogX>}p5?Z@XWIrUhL1Zsk2xP$lUPMy2gW5`Ui+jMj2-e_Q404_m`k--L5TSy)LTy0;TJOI_aP^jq1Q5vm!tes(3koOzNN6EI z0P^{36aApSQ2#G510NFJaR3K!_2#0!k-X65EZL(U=m=>;FOwok;}pSBSc2hW^1(5B z{;Ia#ufIGbG~iPXMgX7@Xc$KHg#K==vLvT@=|(i^*W`+1scuw3S%?L_VHXu8xC)!e z2fJbhvIT^5{rpn<5U@mUd#vOJaDE4U1%V#FWWqwi7Vz>y1#t+7M<9Suo}<2L6%i0% zAkFyo-By}|GKCEU5)A0W2n=W^0jJ|r(PTaT(*D%X4b(L>C0<|ih2gQ*P`fsw5Rwqa zS9L;xN5~u;OMa9K2R;PJ-<6dA+|P6Wx%xMtg=x^+9|;L7n+F#l3Q2?Zb= z0}l!40tkYtUjj^x*EzU&_ymMLh>A-}%gQS%|L3;h%a< zgnPykwn!sFeQiB`Jv|FkvyX7N5gbkghvPkz^l-Q=YWvaZ(PU1x|AqbQ*w>N@-eUAzWLhz~UlapV4JFS9WwrFyT@&{*G#20HgY<@1e3ti@L-{yI!+w<1q zUmH>H7HGrz-@VS>lJ-$fI^0j|bGMZ(qehFL*)+zeYn*bmpQXHemG5GY%0p+T3_fW`B@&F67+fH zP&gmWGj#8YtMRKCSYTRYF^aV@Y`(K?ce<{c_{ZG>%m8aLKT3baOk}L9kfFOO)4=)% z_>B>xVe>%ziO4#4H@V39d>2kx-3sQcS_AJaxI?Wo#kqc5!N$HSA#gx%{_EvLEw8w2@Vn5Ki0k8CDNz;P%QjB~YU+!yYk1m;vJh4s#PY6Azd4((OQPL}B zLaQB0oAPmX8n-tj$665vGrs&`jKd@0H~rwoi&6h~#n+HFR(dlKdB6?{Ob2u-0%q<+NF ztEOlN>$h>Y8P_9@IUDU3^UP`SGqE}g75lr6#kHC0jP5f%6Z3y|zz#1JY+w%G6MF92 zVos>x$mt%_t?<@SMuC;GxM(N!bJFQQnLobu9ewK2h$9ZT`>&w_5K^$pT2@x_N zB4aIxIyH>E*R5`?e{Oq&9}~th&c=R<5fHz)NZUYJ>WSmKoBYy({hMU3Fq>CbCi_Lj>k^)Eo!D0vk|j$8^dXF%t>xT%0QY)xPgBdZCpoKir{UW zP=fP zy{lm9pFK-%IKxT1wV~(rIM9X9TG!5|5-rHdt^7Le%w9M&K2;{RQQOsVKbIVtZ`j@b z$cbw`e%P_GSa*2RF|Jt;a|_vVntVC<*{1*Ykg2~@Q_^DNY)L|MA@7)<*R_;Ve0YD& z{nU&(n;}YbQq(cv+AF_vW!AMS?*qBJ`127%gv?@l<3wT_hnU15%?u;6>2KMhDPyK1 z*sS9^oRKrkA(M#RQk1*Rnel-#S6j9f&6q4QuxFuL*R$&p@G11cq8H4zXIH=VP8YJq zgZ9v%_MhoLS3f;Udfq#ux7MOSA~#i;_{^|iQ*qQgY2YX4ZJlHp7gzZ$d*V^oYDh*d z3zJg!>p1-s9dD$Z=(^)XSj^T!;~CZKjVg<{42y~*SVjN32%JURA#i9eT<0UF_oA&f zJhSbFUbk`hCL3){ez#LP@$=^`dFmYv)Uif#wSJRiMe>8_aMagF2)ydf?dP89AiA=c6B6>Yx2D(9*SgF)6HVKYPD4W@qILF;97ytE> z`Yn#r`M4)R^DP zncgJ51_QKl&RJWrm34ujxwOhh{+(4zPP#fxXA838qK=sC3)TcZAHB5%KVeRUvoXue zvgCA-;ttWV)>UmE+7_Z_ni+q*y}EN;Z?^2L*TJ+1Q^O~Jx*Uk=hIURj%lmVCqwLKx zi#$_`D@NYcwlo+6=4qtXS3kldaKdqsm6G`0Bm3jnbUXU&LV;E^7q+0n^rEDy`6yz` zO6{&&+{7KpzRl!dSoW0Si^R3ACP#*I-ZXm>Sg}mC7EPG zd$YnVr` za^pFmnIK{1_|jm*rw@c8=V@l2X*?ez@&r9Fnjz(-(yv;2Ys_2YDRZ=n?p~$sq$Ier zHFG-HFo!SOWX1aPt_RVsdf$q_(BpToBg3>V7T%FzYeK814(B^aYTXJ3@}XGs;q>Ue zkGBo~B-?f(tKk_uO+6kh{}#5zDUY`|8w{ec;-=HloQrNx3JmUuFpu5_Zf;@?bS zF2VkM5aUzix*5^c?Z)dG&Kbn+37%i3GJKid30v*r`YWsvEKeXY6AN?DJz9l@>Ti@_ z0_4k>q(pxrQI*S3xcqShDn?xVizvoVgM*~U)yhK|C!aY=`z%EH*%`bFs~WnuO=b%E zX8ddjI#i<&8j`S*F9c4!_0UO9QBPUHI+wp)K}g=L-}|=rEg>xLHOhCmWBe|f%*g!n zThb6^&{J51avMxYd0%7bo1#4G53C>YI}C@%5!C` z$@Qn@Y*GtA5>baX2EyYV%N^Zh7)S6YuIf~)&b&iy7MeN=V|tX@HZ!NkEwSs-8)amN z<64|)qTOH9T93@ZwIFW9%tUV&iFuwirM`BasNF8!%=RF#%finP)ztc5sT$fESh=)U!vdwg zCC)qnclO5{Fdpu_C->(xP|u7S5q^xUmDJkWZMX&sn=m#>K!aK-Z8rMH0$MPp3AykpER+reOzOx7_{geV#jnjrG}5aVQT#dcY1YF`Zj;{ zppxrj2BMkz9eOe9s4^*pk8v9E&e%p8`+8xMq2^z|qupYJ{!|!e`}hK1VWKk{$~Cz- zITGA}PS zYQ`}vd~@`|XRgMtD(V=nx^6{C`iyRV#(XxJ53X8~9}VwmZ~Y$JB$T23(it?rbtM|M zz`Z*yM#)bdzNS}M4QGF$ikxU(?j+U4OUN@t(c9jDbrUggM>`DsI)Ra-thg*U?=lmi5@hs9Am|&ZCVJF042ehLL)9o({`1(&;rzjsaBk?Ex$SGRF8POZXjIP#peMlA)DO zxzUag&iYXZS29n7rXWUcP%>ui!RROt(;|J|BS(E^hfoZcYFF!#?bj4VZrH30e(%IH zzt(ZrYCj+6%M(q5HYrsOrcDh~baV+kv(k0grxvYFvv|H0>iZO93vuW>8wNgoIn%p( zlNR#dO=C)eDgBHu%=MDluJ}YY!dlsiyRDzqF=_5S*GdXo^*HE^!|x;Ht{|@WeDmIr zX6p3$`C+enUDj_8crAK{Uo?^HYL$l7`8uR%vU+9rbD&*QN$%dcRN+8vg*9{p!6@2a zcH>XDK8ru6h)ZJ}f`#Yrr!=?zb?Y;!{b41RJe@5v%O2R|kvG0~iOm9kYFw}<+D>)` z$i3IUn^s`$7$lRctI0*{9HWGo+ke6lt`)!HG$#~oyUIIW*0Mq7DU7U+E}@x-LhK^0Z}!$(`3r9b}0LQGg@C@juqk8_H*shuQE{MEa6gEP84F;^fZ7-e3O z?QYlxd;N~cjH)kl3lD4S^sfd#o)5udY6y4Y*Pa8NsS706R^evGbxk*+W+NhmgVYJ$ z?=V(^y`0IRcyB_J#Y#0GJ{=|G16z>{Jc-v7yi%H)#8E#ZA)HaWr6b&4nODWx(_6*U8y*MCP$k=MfBHu&Rk zt6ReQ1@p9fI~=J~5*hfLcAUF~+1YV}gx2b~P$V#}*LiZKIqi0qXe~HPz)4s&+k~wy zWo~ZlrMn(=(bAR;OuY9_T_a2&gQ?Bg#|&FeGcteM$+KD_GDbo$cbKi?y9*^ zSClUpgekSt???A6JclbKH56O5aeG!vIo(*ES~hG)Z);AH8g1)L^nxQRaM+dR(I_Qh zcP?c8%k|3(HwTvj*^Y-VVka^BNz^P=&`rMG6?KZr(A$sXnR(3*J z2;hg$Ja%+@%B|mATf1c>3wU~k<;n*rT#w8aTku76pxu|P%Zp-_#oPI zhL;)%4JD>A6E#!9FBj&b`0eD)PMUZMo9y7?CDM&@cNwwVKGTbSiGAyk*jBg}Z_q)S z==RF5Qe{zv7}G)yqD9{jcC>EXmUTf#1`XZ@k#5Yu_lwawk-ur22oBNlpUB}@Loswq zmpVUi(iGwQ3!{vaZ<=*oBt%w1zvVu97mt{x~9UM`-xGG?StCSDS--lz;o_F-SP&P6p6N};BrX1VzCNytI6aVF zr`nxmTLn4O9J{lrC)Q{*5W$BQYC@lS>a<}MZ{Psc()GMc@UV3*dB%soJ?Z-S z^MwJW*vt08$smSr^|17?d+m!?Cf$vQ=i;= z!}4ab?p%ff>$4A+C9&MvqXZ(>cZbXEf>3TPto-m{AGHHwhO`M68$a2x$f8#t)q)#K z%+bfUEmr!D47t!ItDT8jw(}pY*R{|oDwp#`l|MaI)Djzes?cGgt z`fE3$XGHfFi&N^d)wL;O?doQ1S~1l5e9D`9orRaF5U}3H|5#l}(kWFgidZP)?-H)rIwsOSwGDrVBs@JjCer9(*m>D;u zVCJXQB32=CdfVjj5O!|x9v{y#OD~QbZ!E`~9gQcqaw}P_6LUwqd4&F(wnJcXfm*Lk zP9A1ueU8#X!In}vQ}&4}4&(Dq$fD_t`Vb{VL^*pDB=TCM#DP`X|1HkdM=@IO{<Z*bh*7Z}UwxPN%q z<1{A)`x#S^LV9bQ?t_3ZD5}+FaBh55!B;qdMsH5;`Aq?uN^g6x6zv=@%i`_Y{(i{17jxRai?#b>8x;h08~CmQSF6N_-7qse ze8PRUSMFqAd(ooQ)2wauVJ|pFwoP(^;op%rt_EjUyf3RK771jvf@@O@YZv!Ey+RmD zFwr3WN+G5;lR=DQW!Qa=d{=wvOrAWl&rkj~%x?a$l;3HlIq;A%Sfd5MEIE^{>ynzr z)GEAQe`{uiuG)iy+cGX_U?cJS>byJz^#t*#BN^Nn*9BAo24Q8w(5q^2!BW#X5OZbB)oknySG;c=1xk-_!e zYL8Iy`ppvdQ$H}Sg3|juo+KtS&pxWjI<_DXNC!xfd*LXyQom)t+~Vc+J;FVSm^twp zvW)`|8h7EVUm3K?pT@QwLSl=OG|#>8R1G+gs;cN&$O&*Mk)C=nn@R<+vsl&@FhV%9 z!rs{Df?I8=SLr_BFlQh3f<6f}REx zr>7ZWjQZ~zOrLGGt;yG9_16)ln0R@SzV1zz-!k*Y`coynE9WEa= zgyIUh(2pD`I!A@?-YC|4R3&8v&asMStR^P2;FNOzq@50uo~SsqT>Z?yp1gn8?vsf& znx9ZxNL+7?^uilS!c%)LUJ0eBkTGSt-_aLU;c>{C%&~tK2{DPF=TD4-2Z$Y?Z`hei76-nTkg1T-t(oScq5P|ao3 z&uN3{H!XWJKPe0*p!Z{h*E?Q{Zrn6)5EWg`vcug?&V()x2k9WTUE)?urUkP^yl!``WZ-pR>>zf1(htlW*OViXN^vtN*| z!Y2;u*TY34I>BB4MkwP4#an~Ya?laj6$G-Fa(se3=Y3H(;l0UQ`_)0$@U<27r|po6 z33gFF5ki-aL+^++k13|QJ*Grh7|C2FWF%PtFE9t=kCG&kY<65!DhmV8MhV`ZAwk;1 z%(T2`WDT_rx+BW9PWg|uUI6Dk}J_0PdKaj!}cehX><)+$UlM%UL_( zQEI+t*9((z|L7o~pwmeP=8wA!4{^2F)9su(ymH?l<;mUAIB90DDd`~AnjCW+E8A~G zubU+6>KF+RS(LRpJ|}W+(IO9o$_r>!*yf8`@YlHJ*ED6M++Mtm4-9`Z@MX=%`1hD= z(}1F}6+|qx+`~kn|N0NZ(Yu!c`{T)|P!sd9fJQnRRmNTD+bJ9RnNWU2489;4Ex)~g&A5J-FPG%9F zW}&;QG@ZdN^DH~yQpP}^uK}ZX(oj~^@b_#_O~{QN4st|Yl|ylpJvOF!Q`{i#((dWR zMqGOu)6%-lN5}*}T&D)tEZ!oYx4o0TO?8)VxY0?e;0A8sDSuaad3*TuuAS4mYba_o z)Aq|wP(Oa^7f-${-RR;K=A4VfHRA|>{@GTR=@)^LPao0Je?e$uzxH%gZHrFxdoP<{ z-*CPFd1RjLC`#@=86%rMrYziI?SLF6Ya0+dUunVI^*T45(~|JbTX*_!)>ZCbLZxZb$>HcMKMVyl_?NSbG7nFfdcRk;)fAqgcv?>(QwCyM} z`17lz&#bc2%dX$X{mYs6T#!JNhpntRqu{Qoe+Z2 zool13$=I6f_d>eI|XMb3aUoMl*y_#qACnQ4dE*D}s zZ#CIH=w_IA8+1ly=N|KINUd%afgSXucsbg*TQ@8$dO;qs*EB)K$DBD&8Eo_q;;x^i zG>&cY77;x=Z!Ayl!m7c$|G`dqNIU-IH&&`1-vj^YE7+s+l~ z>8W`G8K$P*E6r40cyreRsqRi+K1(;5>EXzvg%KFJkvwjh{|C-k1EM6D%L31P<|u)MK-38SUIN z*m|uwJ~KFJ>{Qvkm5e_iyKy3Ji%W-?o?gJ4&(sT`}}6kSxQib`k~G{o3kegFGFxP#En zXvrS^h$P?5dHQY6T7ShyUF|=^D9z`Tt{20*&E3st^qM#RnjZA*|_-=p$~SQi}k)*;~^a%H%9Z) zDw%ri7E(NF_FaAyXGX%=Ti{dCOo>Jq>nRb9Epw|~n#%f81X#;xn;S!X&(OZOrkuw) zNL5s|sf=x9Yt?Ey8*(|9Xcm5vCw4aVlu}!Rx5F<=4H(Z{sD&TtqIy_=+)3fFHmg1~ zt6bS6^ygxvp*+33TfMuUeY0=yZZY|Eh4-d;w}v}-7iE63{9SU;>jBHp(@F03u3w*8 z;Bg0#o;SI6j?eD?ie}w(726Qo37(OyCS`g|roTc0I=JYb-u&UYEtl6ja)_cj93V}n z8RN@4C5stJNA`9~U(*URISD>_YVEd|Fvy>LmB6=X6D!JRG~-<91fA+;r1tk8mRKJ; z`Qv22^n5l2^Mv}Tut_BS(oOJC)*#CABUlu|l>nW(7JK67Wkv#@;X3^{3qYhA(DnVI z_LyK|a2HT{(B_GE ziuz;p^ARnIXPUKNDb{Ag?d)&R-ui{x1dhGyqZAtOLLBWFa<;Qym(<+?t8cxzE}657 zXDDNd@jm$Zv(c@mGn`kO9m22HO%X5Uo`KotrAlSk6g$J@hez}*TZ#W&t^&-}{MEY8 z_<(OED|x)wd(o^5MSo|us^`MsufN_ZE^TV`mek>2OZ+lOP9}csqUj1N8|jsqhJHMX zuS9;iSIyFprcY(0-OjQA`DS#AfFx2{bvJYO?#HY_d1k(r(XUbx@4$oD?j(VXOMBs6 zztQ;4${^A<1QYn}-epa&qlWT%(w+L}ZDjg@%n$IROLdzY5sHYAS--vG6$Zu}E)|s( z2>n7-ZpKO7H{Cb;g{5c2$wMoag|s6$feNOHO@$vbR5I=UEF6$AsuM>IR1tei-gwGZ zW*X}6i234pmIm$%^#*Ar65v{GHMmpiEl!$z5=mXLSO^V0Y<01u7|zjRG}_GX?jP(? zwFvk3yz6)0Sr@qyh#)QCuO1KJw?GWl`ssGD$3umbpHjSmRx5dx+O}piV0AhAoR

Ue*2#dqjCvO%_PE??j9 z)sGd0^DuDrM0{>!Ev-(|vo}rkY@?_0WKaMDq3*3 zE*!3R$9BzMjdFm%)|dAB=bJC{(Wo*n0!alA-i7V`_V8~c)YlyY#OH1Z;H(p15l*b!(?+65&Z>oJhw}KK&hsB*FtOGR6Ohi@`s94N&0*NGECtTxWmB$rh}?d>jdD_tk@QrZ;7_OFMQBWEomxZtS0&^R`gKn59y%$)t>T-B)3)B0 zEEKS@#^E`4R$fmwxzp&MIu;id>gT3MCqkt8hj^=v-f}8?rzOdidD<6NB{e~L`@Mo# zQlkyBGsp8smu2p4IBE6p(L{%LiNR{t_J%F!9~jwHhPjfyL~p9tVzq**n8st_XZn|)gESZE^K!)JKehn{<`6>p4vuYaylwW#Cs28PiF}-kgsp_!f z9oolf_@0OXcuJL=_OjRraf}7r^Vyo^Px|wzr2agY0-Gf4*9l{&w?x|4m6B~M7}(le zUq#@3nMvozhxX+K-jnQ1&{Elh5yA#TBuDdBmw zT-5N0rTp1(ZKaewqSD~FmVtPf39Nd_V&(B@zrADP#GLL?Rn+IcYVA=MCOq$V91v%* zVTCVm!_Jg)XR&(Espz|vDJ?Zt_4>p(d2-b#6&>7p*WF!I27X^=Z|Ci)5VtWQZWVc) zcP>MFo{bL~-NwPKWNLaaUzAojs8}7JxQzEt;$k8wKuypa`7OFWFrgKyF4@)IHl{-E zKA{&*`m7CNdRQJxMyizjBV3}Yy{8K%jmNcGYw>mXyF?iY0KTUbN zfA#sL6`Gahdr+hESx1IJjHzR`eRVksO-$`fe?Fg9o)wYFarDrUb;B%hTNxuNzzBvjBtm;iH33 zSg794rtZKcR=C((ot)*TA0p2sjU2a?yWi#nT3>x~91Ux6Q`Mp{IL1GC<8fLk7NC}> ztnZzjGqz%V&P1q!o?(Z&^1*3_8j+7%Con+T#SlC2MN+CjwJpu71-5G&8>iqwYQcc& zmG_>0jQ+CJK0AAR*8;12xM1R4`83(yY{B@{$TyeD6|96M>+Oo?9XkU@YOwIY$rJlh zjyy{TcyN=elD~)}85png$XAbn@)exyb+Q+RM!G-CW zokGep9h%784t(Z=b0{MTsuAo~2Jt_JvtAM>osAm*89f){oYb{CBikk}AaqeAo~#d5 zS@@G}ETl#LqOZ+2m@l1TOPRgea*zipHH7c-23@#UM2X9N(m zT^??1dd)fFJ(D^QfqqSNu}g_6^4`xkkJMhTYYvpf?yur1oe1Nv%bcOw&Hv$#>b^@_ z+t)CHYOj%4jTQ^#b`0P03>jWm@*SVn{1A30ZoX8tDneAs5Il|*43u_goZ*rYi%)QU zA&l;5K0OJW?k|}``#x<{fwlco_HF9Z^ZZ}JO|@U1d){nY32zt14Wrl=pM~!6IS#H@ z1mQI#>08j|`*b=u>>Gx=7t*YFh^ndbdDw!ji03~lX*l#ZC1s*=U3<1Z!_o+OWHah2 zF&SjOI-qb6A2f_|kxsW@k*1R%T%FjmlGEC!-({1|EvfN|_cH@JB)9Z*kNlF97-ThA zNqtT(Av(J;+>7G+fqVWZnO5!dW|}D1gX-{)W`~#6{8=!~D}KJ8nNQF8wQ_B=T|Zx} zmKHIl5pM6yH}RT59sE-iWn~LniSd1ZSlN$JprEHel3`7*Q7^Srtad>$6_T;@xibB_ z`#!zBtC%JiivF_=X&uDJcHQ6@T_^KoHt}@#cp4Nr?P8jao7j+6f?vyORmCFB6LO<$ z&b-ShyV2jCuGxBAl<}&s-xTT=ITtUuD66WQZnGYRn<-Y6Wf$IDwYaC+r!?_FtK+Na zp|rK-##?_m1BOv^eJq;Uz){Yj{C7%9DXVW&a}R87>2~%tCSxM%_v`vTLZ>9*;9$nD z7#+=yd@NFS@7ra_#=J91XP4X2oR0ZuQ!ouPxj@TVyF8W~dMC&R88`iE)^gdEhiADvpEv`hfinkd zce2{mDo^_>vF06{tYsHw&k^s?TMYL;_Q%cYIdN_qADW-Z=g)iP@g0ZA&1E3>I~n`z zF?t?vd=^3Av5Kmow==ogSlE(sR!w{-iM{zUMb-DXzWR1%OnLg)IEtf~4#`7^!Rc}`K ztt)6!tKuXOlV9DX-}Yu)Gbf#%7%s;V#SK-oi${H~3oY~s9+GzX1hKXvu-BZ$(tUFN zOoGY2SDYVlywKYW@?#;6+^CYe^3@p^miKy5r42dT+sK37)e2O_jhF1NUsGxXHHVq8hatv2ipJtw zprikkD5EOubnBq!=ZZoDt8P-Ex`jPnqYH8)-1#fzpR~u%?XyzOSk+6}@2rj^@V5mF zmJXV$Vw$JRd;;U#Vp>{%j!21()N@5pS9$^2S~yd7^8p?mbUSY}j8nBXB;2 zw5!P-zbuVN**+^%TWDU`tnpP|pyRdaE|+K5zZy8j|Fb+Wvm#rJnTju~;UDX%HwnpS zqcRJvKj<4BS6q5+zpJoL>r`*crjh^daF{=VdC5|jLn0s=HuX--Eci7zayDUIy@KmH zi*Awg)oIqGhjiZl1n#+|Rode121L|);lg(3an!UAKLhl6_Yw0;|ITk9P9E)sCv#KQ zmxFD;$lm27OD?MNYItZDxzF7QJeqapvKrKBS@*w$Mkvs`whMTK7bcTDHdvyO2)H<@ z*5;AkzTP?rN~V%uuYODex?{bDvUQz2ZS^`u2kGUJsY#Qii|wF&B8ehvrb{=-Ueg7~ z&hV%9J_`=ZoNZ|h+`682D5Cc-&?$X4Kt@)^;WSkCvW8}biM@2*j&&&Y)4CmdO@&9x zClPY7RrJw~LQC+o;Nf&|5V|Ohmiy7m;u5T0b&0dh4pkC!s~V(pp6P+mNn|^n_MVco zn8++{Y{>ZD*Hlil##%xrthaBjmz+(``%9rrDfRV#s1$@-Qz9IRM}$V-$&Re5Y+`r& zabizkef=}(Z^k^hJSRL^CGMKDaLoYSUDkTv?gdFZ@4Zfr``L%_;#(sENQ(-OToG?q zH_;I?K%T7Uxw!2vm}s+rR@7gon$&e6nNvObA?r5lN-fa2FqzOjNGV?>dhF1ACQq{~ zc5OjQjr|keXBo+XqeRi-@F>Uu&d$2SyFb4Uf3^@v$CzEvcK6xQikY7+I%}L6U_kNk zQ4p7J%*;Qb#KJ<%lwYxGIq)U5GA!V-KV>B$YQKyfCB^Jm*C(0| zZ^&abH`i!*cI_Q38dFhrkXxUR`nbx>G2WHnI=V{{_y*9bjWFzIxYm;tNzK>(Q(0=% zz!xFnj?(u2?y0CHGCQ#+AqZzumKfYfG75YRdSRd|{b*Ab1>gC#8ipAb?urTXIA0mF zey#x?r%`)h*N90+6ymufPt!PS$I|oj`JHMA_t-a2R9fCIOJbUrc&WSa)01WTnf*nb zgh{?Tmo-+Hltw;#MmG0%9d>Oc+H|Vgz{gVVH*10CwmQt~VRHsUTJJ8^BZ>=cReVF9 z0M5n9{qE92Zw6=Ldbf2*^`k6vhG?b347jh>k~|IK{Y1i(YX#oZyuUuA8Ktq}Mu^hi zDOH|)uvb~@mMgJGM3*RRsuuCS0bSQ>y;1l&-GBYq$)GMeu6nuZlxj!BWz{y`{aTdY zQ+u7nYRv2d&6^n+8@B}it?rJ4ie9yF|1{|0i`%;i zIZSVd*>>^d9($9OCrc%qEAOWW6}M}qKQlh_m$&6jap|*Ps^iT%RdqF@f74_$*?AbF z^P;Zx^;Uc{lbT}D=wT1xV+H7Hh8LewK3$vFz$1LkPQp&vs0wY@E}d_@ zuJJOZ1;=q~)otg&*4>Xr7puG0;=cvjtfbgcW-QQgfYCXvE5>J63kY?#C$9?fG#b8! z&ASM^=^eD7L(A-_?MFOg6~<<`9*RC3w`dx+bUtHKea2y0PkqoKH0Sk%Oxjt=k)=$+N!OTJ)kDjvP!* zQ<*qnF5!k* zfiSc@zw0Cd-g&~C&(Ap$e?D0g6Zu?;q(XcCQ?99xOO2W4@8!dj0Og0fhlk4t;Qs(Y zyd(^B2=M+?pX;Bp%t!){Hm=u1zguaJV*g;H>}{4^wuk?ACmy*PJZ|p#;mq}EyQ;J& zfdjLsTWgnly=Qq)@OT<_#VLxnqvSHF(YInZWTGVu{a z@3^b3xsm5f%oC!f!BpjjyWJ}L30<7`ReJ$h_T^+SQv2EAjr_NZ0aZn}?PZI-D+aO{HlX zmD0acZX15%bM|Uf!=}9wlJ8-vpqp=!flJ}!{W!+s_P8*~gdm_EE~o#LK<0+5&ejcm z@&tbF%FJ(@KdelBa+ky8{^$81TFu!&gJ_I?6Jz)C<<@9h<>wJTomcZL9kWe80;{0e z(F)bdgMqu6%CG?={XZ1T9fiu(p64{5R#fxKh%y9f;U_^rC--7)Ty^H4T$)b$F#*3* zF}7S9=P05hcdz4i#=_nrdVgrWYnf9cLc*mIZC&+h&r(Af8e&iNrLd{>pW}U=*-n2A z5uEGUx8u7vvuSsG-wCQ`%EhRY92W}W+IH>#5b8~#Jp~Pz;Af-F&fX3sL$R8kb>V>i E7eSfXHUIzs literal 0 HcmV?d00001 From d6977956080ecf2ee1b342b22b72ca949327989a Mon Sep 17 00:00:00 2001 From: S34N <12197162+S34NW@users.noreply.github.com> Date: Wed, 5 May 2021 13:16:29 +0100 Subject: [PATCH 13/17] stinky double punctuation deletion Co-authored-by: dearmochi --- code/game/machinery/pipe/construction.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index cbea83d439e..b631f4a57ff 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -342,7 +342,7 @@ if(pipe_type in list(PIPE_SUPPLY_STRAIGHT, PIPE_SUPPLY_BENT, PIPE_SCRUBBERS_STRAIGHT, PIPE_SCRUBBERS_BENT, PIPE_HE_STRAIGHT, PIPE_HE_BENT, PIPE_SUPPLY_MANIFOLD, PIPE_SCRUBBERS_MANIFOLD, PIPE_SUPPLY_MANIFOLD4W, PIPE_SCRUBBERS_MANIFOLD4W, PIPE_UVENT, PIPE_SUPPLY_CAP, PIPE_SCRUBBERS_CAP, PIPE_PASV_VENT, PIPE_DP_VENT, PIPE_PASSIVE_GATE)) if(T.transparent_floor) //stops jank with transparent floors and pipes - to_chat(user, "You can only fix simple pipes and devices over glass floors!.") + to_chat(user, "You can only fix simple pipes and devices over glass floors!") return 1 switch(pipe_type) //What kind of heartless person thought of doing this? From 05e2435c9bc141c858a0ad1f77d8090c5b6fc6a2 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Mon, 24 May 2021 12:06:38 +0100 Subject: [PATCH 14/17] fixes scrubber and vent connector jank --- code/game/turfs/simulated/floor.dm | 6 ++++-- code/modules/atmospherics/machinery/datum_icon_manager.dm | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index 6c010b0498a..20a94875e98 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -128,16 +128,18 @@ GLOBAL_LIST_INIT(icons_to_ignore_at_floor_init, list("damaged1","damaged2","dama var/turf/simulated/floor/W = ..() + var/obj/machinery/atmospherics/R + if(keep_icon) W.icon_regular_floor = old_icon W.icon_plating = old_plating if(W.keep_dir) W.dir = old_dir if(W.transparent_floor) - var/obj/machinery/atmospherics/R for(R in W) R.update_icon() - + for(R in W) + R.update_underlays() W.update_icon() return W diff --git a/code/modules/atmospherics/machinery/datum_icon_manager.dm b/code/modules/atmospherics/machinery/datum_icon_manager.dm index 2e0ef593bae..f7a345a7c9a 100644 --- a/code/modules/atmospherics/machinery/datum_icon_manager.dm +++ b/code/modules/atmospherics/machinery/datum_icon_manager.dm @@ -159,9 +159,9 @@ var/cache_name = state for(var/D in GLOB.cardinal) - var/image/I = image(icon('icons/atmos/pipe_underlays.dmi', icon_state = state, dir = D)) + var/image/I = image(icon('icons/atmos/pipe_underlays.dmi', icon_state = state, dir = D), layer = GAS_PIPE_HIDDEN_LAYER) underlays[cache_name + "[D]"] = I for(var/pipe_color in GLOB.pipe_colors) - I = image(icon('icons/atmos/pipe_underlays.dmi', icon_state = state, dir = D)) + I = image(icon('icons/atmos/pipe_underlays.dmi', icon_state = state, dir = D), layer = GAS_PIPE_HIDDEN_LAYER) I.color = GLOB.pipe_colors[pipe_color] underlays[state + "[D]" + "[GLOB.pipe_colors[pipe_color]]"] = I From 57ca01d6d59e96810a70ea1b81ef79da6379f06b Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Sun, 18 Jul 2021 19:52:59 +0100 Subject: [PATCH 15/17] temp map edit for TM --- _maps/map_files/cyberiad/cyberiad.dmm | 8515 ++++++------------------- 1 file changed, 2059 insertions(+), 6456 deletions(-) diff --git a/_maps/map_files/cyberiad/cyberiad.dmm b/_maps/map_files/cyberiad/cyberiad.dmm index 332f6a22e6c..aa18b489445 100644 --- a/_maps/map_files/cyberiad/cyberiad.dmm +++ b/_maps/map_files/cyberiad/cyberiad.dmm @@ -9,7 +9,6 @@ "aaQ" = ( /obj/docking_port/stationary/whiteship{ dir = 8; - icon_state = "pinonfar"; id = "whiteship_cyberiad"; name = "North of Cyberiad" }, @@ -31,8 +30,7 @@ "abO" = ( /obj/machinery/camera{ c_tag = "Brig Secure Armory Exterior East"; - dir = 1; - network = list("SS13") + dir = 1 }, /turf/space, /area/security/securearmoury) @@ -54,7 +52,6 @@ "aca" = ( /obj/effect/decal/warning_stripes/northwest, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/range) @@ -158,7 +155,6 @@ "acB" = ( /obj/machinery/shower{ dir = 8; - icon_state = "shower"; tag = "icon-shower (WEST)" }, /obj/structure/curtain/open/shower/security, @@ -181,8 +177,7 @@ /area/security/range) "acD" = ( /obj/machinery/door/airlock{ - name = "Toilet"; - req_access_txt = "0" + name = "Toilet" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -191,9 +186,7 @@ "acE" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 0 + pixel_x = -12 }, /obj/structure/mirror{ pixel_x = -28 @@ -239,14 +232,12 @@ /obj/effect/decal/warning_stripes/west, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -257,10 +248,8 @@ /obj/structure/table/reinforced, /obj/item/storage/box/flashbangs, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/structure/window/reinforced{ dir = 1; @@ -285,9 +274,7 @@ /obj/machinery/magnetic_controller{ autolink = 1; name = "Firing Range Control Console"; - path = "w;e;e;w;s;n;n;s"; - pixel_x = 0; - pixel_y = 0 + path = "w;e;e;w;s;n;n;s" }, /turf/simulated/wall, /area/security/range) @@ -302,8 +289,7 @@ /area/security/range) "acR" = ( /obj/machinery/door/airlock{ - name = "Toilet"; - req_access_txt = "0" + name = "Toilet" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -342,8 +328,7 @@ /obj/structure/table, /obj/item/storage/box/prisoner, /obj/machinery/camera{ - c_tag = "Brig Labor Camp Airlock North"; - network = list("SS13") + c_tag = "Brig Labor Camp Airlock North" }, /obj/structure/cable{ d1 = 4; @@ -417,13 +402,10 @@ layer = 2.9 }, /obj/machinery/camera{ - c_tag = "Brig Secure Armory"; - dir = 2; - network = list("SS13") + c_tag = "Brig Secure Armory" }, /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /obj/machinery/suit_storage_unit/security, /turf/simulated/floor/plasteel{ @@ -435,12 +417,9 @@ "adi" = ( /obj/structure/table/reinforced, /obj/item/gun/energy/laser/practice, -/obj/machinery/recharger{ - pixel_y = 0 - }, +/obj/machinery/recharger, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plating, @@ -460,9 +439,7 @@ dir = 1 }, /obj/machinery/camera{ - c_tag = "Firing Range"; - dir = 2; - network = list("SS13") + c_tag = "Firing Range" }, /obj/machinery/syndicatebomb/training, /turf/simulated/floor/plasteel{ @@ -472,9 +449,7 @@ "adm" = ( /obj/structure/table/reinforced, /obj/item/gun/energy/laser/practice, -/obj/machinery/recharger{ - pixel_y = 0 - }, +/obj/machinery/recharger, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -491,8 +466,7 @@ /area/security/permabrig) "adp" = ( /obj/machinery/door/airlock{ - name = "Bathroom"; - req_access_txt = "0" + name = "Bathroom" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -507,7 +481,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -592,14 +565,12 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/security/range) "adE" = ( /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -626,14 +597,12 @@ "adG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -678,7 +647,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -695,7 +663,6 @@ }, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/plasteel, @@ -709,8 +676,7 @@ "adO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -735,7 +701,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -751,7 +716,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -811,7 +775,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -828,7 +791,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -926,7 +888,6 @@ department = "Security"; departmentType = 5; name = "Security Requests Console"; - pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/plasteel{ @@ -940,8 +901,7 @@ }, /obj/machinery/camera{ c_tag = "Brig Security Equipment Lockers"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -956,7 +916,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -970,12 +929,10 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -1016,8 +973,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -1027,9 +983,7 @@ /area/security/medbay) "aeu" = ( /obj/effect/decal/warning_stripes/north, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "red" @@ -1047,8 +1001,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -1067,8 +1020,7 @@ "aez" = ( /obj/effect/decal/warning_stripes/red/partial, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel, /area/security/main) @@ -1084,13 +1036,11 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/security/main) @@ -1102,8 +1052,7 @@ "aeD" = ( /obj/machinery/computer/secure_data, /obj/item/radio/intercom/department/security{ - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -1130,8 +1079,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/structure/fans/tiny, /turf/simulated/floor/plating, @@ -1187,9 +1135,7 @@ /obj/structure/table/glass, /obj/item/clothing/glasses/hud/health, /obj/machinery/camera{ - c_tag = "Brig Medbay"; - dir = 2; - network = list("SS13") + c_tag = "Brig Medbay" }, /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 @@ -1224,8 +1170,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/structure/cable{ d1 = 2; @@ -1248,7 +1193,6 @@ icon_state = "0-8" }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/structure/table/glass, @@ -1275,7 +1219,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -1323,14 +1266,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -1398,8 +1337,6 @@ /area/security/prisonershuttle) "afa" = ( /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = -27 }, /obj/structure/table, @@ -1439,7 +1376,6 @@ /obj/machinery/computer/med_data/laptop, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/light{ @@ -1453,9 +1389,7 @@ /area/security/medbay) "afe" = ( /obj/effect/decal/warning_stripes/north, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -1482,7 +1416,6 @@ /obj/machinery/sleeper, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel{ @@ -1506,8 +1439,7 @@ cell_type = 5000; dir = 8; name = "west bump Important Area"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/machinery/photocopier, /turf/simulated/floor/plasteel{ @@ -1591,14 +1523,12 @@ dir = 5 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whiteblue"; tag = "icon-whitehall (WEST)" }, /area/security/medbay) "afs" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whiteblue"; tag = "icon-whitehall (WEST)" }, @@ -1607,7 +1537,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -1615,8 +1544,7 @@ "afu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/structure/cable{ d1 = 1; @@ -1640,7 +1568,6 @@ "afw" = ( /obj/structure/bed/roller, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whiteblue"; tag = "icon-whitehall (WEST)" }, @@ -1652,7 +1579,6 @@ }, /obj/item/clothing/suit/tracksuit/red, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/main) @@ -1711,14 +1637,11 @@ "afS" = ( /obj/structure/closet/secure_closet/brig, /obj/machinery/camera{ - c_tag = "Prisoner Lockers"; - dir = 2; - network = list("SS13") + c_tag = "Prisoner Lockers" }, /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -1756,7 +1679,6 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = null; name = "Brig Medical Bay"; - req_access_txt = "0"; req_one_access_txt = "63" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1776,7 +1698,6 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = null; name = "Brig Medical Bay"; - req_access_txt = "0"; req_one_access_txt = "63" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1828,15 +1749,13 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel, /area/security/prisonlockers) @@ -1846,7 +1765,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1856,8 +1774,7 @@ /area/security/prisonlockers) "agn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -1881,8 +1798,7 @@ "agp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -1898,8 +1814,7 @@ /area/security/brig) "agq" = ( /obj/machinery/camera{ - c_tag = "Brig Main Hall West 2"; - network = list("SS13") + c_tag = "Brig Main Hall West 2" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ @@ -1964,8 +1879,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -1999,7 +1913,6 @@ /area/security/brig) "agO" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/machinery/light{ @@ -2096,12 +2009,10 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/machinery/camera{ - c_tag = "Brig Main Hall Center"; - network = list("SS13") + c_tag = "Brig Main Hall Center" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -2126,9 +2037,7 @@ dir = 4 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -2156,7 +2065,6 @@ /obj/structure/chair/stool, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -2167,7 +2075,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -2219,9 +2126,7 @@ /turf/simulated/floor/carpet, /area/security/hos) "ahu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "white" @@ -2241,7 +2146,6 @@ /area/security/brig) "ahD" = ( /obj/item/radio/intercom/department/security{ - pixel_x = 0; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -2276,8 +2180,6 @@ on = 1 }, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /obj/item/storage/box/chemimp{ @@ -2314,8 +2216,7 @@ pixel_y = 23 }, /obj/machinery/camera{ - c_tag = "Brig Main Hall East 1"; - network = list("SS13") + c_tag = "Brig Main Hall East 1" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ @@ -2367,13 +2268,10 @@ /obj/effect/decal/warning_stripes/southeastcorner, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -2389,7 +2287,6 @@ /area/security/securearmoury) "ahW" = ( /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = 32 }, /obj/effect/decal/warning_stripes/northeast, @@ -2409,8 +2306,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -2434,8 +2330,7 @@ /area/security/podbay) "aib" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2454,8 +2349,7 @@ /area/security/podbay) "aid" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2465,29 +2359,14 @@ icon_state = "dark" }, /area/security/brig) -"aie" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) "aif" = ( /obj/item/grenade/barrier, /obj/structure/window/reinforced{ dir = 8 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ dir = 10; @@ -2496,8 +2375,7 @@ /area/security/armoury) "aig" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -2568,8 +2446,7 @@ cell_type = 5000; dir = 8; name = "west bump Important Area"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2623,8 +2500,7 @@ pixel_y = -3 }, /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -2636,8 +2512,7 @@ /obj/effect/decal/warning_stripes/west, /obj/effect/decal/warning_stripes/east, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2645,8 +2520,7 @@ /area/security/securearmoury) "ais" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 1; @@ -2662,8 +2536,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ @@ -2672,13 +2545,11 @@ /area/security/brig) "aiu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2692,8 +2563,7 @@ cell_type = 5000; dir = 8; name = "west bump Important Area"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/cable{ d2 = 4; @@ -2701,8 +2571,7 @@ }, /obj/machinery/camera{ c_tag = "Brig Armory"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -2711,32 +2580,14 @@ /area/security/armoury) "aix" = ( /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/security/prisonlockers) -"aiy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) "aiz" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/plasteel{ @@ -2755,8 +2606,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -2771,10 +2621,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/clothing/suit/armor/laserproof{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/clothing/suit/armor/laserproof, /obj/item/gun/energy/ionrifle, /turf/simulated/floor/plasteel{ dir = 8; @@ -2784,14 +2631,11 @@ /area/security/securearmoury) "aiD" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/camera{ - c_tag = "Brig Main Hall West 1"; - network = list("SS13") + c_tag = "Brig Main Hall West 1" }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ @@ -2811,8 +2655,7 @@ pixel_y = -3 }, /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -2836,8 +2679,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -2852,13 +2694,11 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -2869,8 +2709,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -2883,8 +2722,7 @@ "aiS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -2900,12 +2738,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2914,7 +2750,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/brig) @@ -2922,12 +2757,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2948,12 +2781,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2975,12 +2806,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2996,13 +2825,11 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3027,8 +2854,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -3077,7 +2903,6 @@ }, /obj/item/pen, /obj/item/radio/intercom/locked/prison{ - pixel_x = 0; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -3087,9 +2912,7 @@ "ajg" = ( /obj/machinery/washing_machine, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -3152,7 +2975,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -3167,31 +2989,19 @@ tag = "" }, /obj/machinery/ai_status_display{ - pixel_w = 0; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/brig) "ajq" = ( /obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/head/helmet/alt, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/head/helmet/alt, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/clothing/suit/armor/bulletproof, /obj/item/clothing/head/helmet/alt, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3210,17 +3020,13 @@ pixel_x = -3; pixel_y = 3 }, -/obj/item/gun/energy/gun/advtaser{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/gun/energy/gun/advtaser, /obj/item/gun/energy/gun/advtaser{ pixel_x = 3; pixel_y = -3 }, /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -3232,7 +3038,6 @@ /obj/structure/table, /obj/machinery/cell_charger, /obj/item/storage/toolbox/mechanical{ - pixel_x = 0; pixel_y = 10 }, /obj/item/stock_parts/cell/high/plus, @@ -3251,15 +3056,12 @@ /area/security/podbay) "aju" = ( /obj/machinery/camera{ - c_tag = "Brig Podbay"; - dir = 2; - network = list("SS13") + c_tag = "Brig Podbay" }, /obj/machinery/door_control{ desc = "A remote control-switch for the pod doors."; id = "secpodbay"; name = "Pod Door Control"; - pixel_x = 0; pixel_y = 24; req_access_txt = "71" }, @@ -3271,9 +3073,7 @@ on = 1 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/engine, @@ -3293,12 +3093,9 @@ /area/security/podbay) "ajJ" = ( /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = 32 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkredcorners" @@ -3314,8 +3111,7 @@ layer = 2.9 }, /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -3344,7 +3140,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/brig) @@ -3357,7 +3152,6 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/brig) @@ -3375,7 +3169,6 @@ tag = "90Curve" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/brig) @@ -3391,7 +3184,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/brig) @@ -3415,7 +3207,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/brig) @@ -3430,7 +3221,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/brig) @@ -3457,7 +3247,6 @@ /area/security/brig) "ajT" = ( /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = -32 }, /obj/structure/disposalpipe/segment{ @@ -3476,9 +3265,7 @@ /area/security/brig) "ajU" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -3494,8 +3281,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3514,8 +3300,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; @@ -3526,7 +3311,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/brig) @@ -3540,8 +3324,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3549,7 +3332,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/brig) @@ -3575,8 +3357,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3587,7 +3368,6 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/brig) @@ -3595,15 +3375,13 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/brig) @@ -3617,8 +3395,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; @@ -3637,8 +3414,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; @@ -3649,7 +3425,6 @@ dir = 4 }, /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -3661,8 +3436,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 8; @@ -3681,12 +3455,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/brig) @@ -3700,8 +3472,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3730,8 +3501,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; @@ -3768,8 +3538,7 @@ /obj/item/clothing/suit/armor/riot, /obj/item/clothing/suit/armor/riot, /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -3794,14 +3563,11 @@ /area/security/securearmoury) "akv" = ( /obj/structure/table, -/obj/item/taperecorder{ - pixel_y = 0 - }, +/obj/item/taperecorder, /obj/machinery/light_switch{ pixel_x = -25 }, /obj/item/radio/intercom/department/security{ - pixel_x = 0; pixel_y = 28 }, /turf/simulated/floor/plasteel, @@ -3864,9 +3630,7 @@ /area/security/brig) "akE" = ( /obj/machinery/door/window/eastright{ - base_state = "right"; dir = 1; - icon_state = "right"; name = "Security Delivery"; req_access_txt = "1" }, @@ -3881,7 +3645,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -3912,7 +3675,6 @@ dir = 8 }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/effect/landmark/start{ @@ -3939,9 +3701,7 @@ /area/security/hos) "akL" = ( /obj/structure/chair/stool, -/turf/simulated/floor/plasteel{ - icon_state = "floorgrime" - }, +/turf/simulated/floor/transparent/glass, /area/security/permabrig) "akM" = ( /obj/structure/cable{ @@ -3971,7 +3731,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/poddoor{ @@ -3988,7 +3747,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -4029,8 +3787,7 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -4042,7 +3799,6 @@ }, /obj/structure/disposalpipe/sortjunction{ dir = 1; - icon_state = "pipe-j1s"; name = "Brig HoS Office"; sortType = 7 }, @@ -4089,7 +3845,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/brig) @@ -4129,8 +3884,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ dir = 1; @@ -4177,7 +3931,6 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -4244,8 +3997,7 @@ /area/security/securearmoury) "alk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/light, /obj/machinery/door_control{ @@ -4338,7 +4090,6 @@ /obj/item/storage/fancy/cigarettes/cigpack_robust, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/light{ @@ -4346,8 +4097,7 @@ }, /obj/machinery/camera{ c_tag = "Brig Briefing Room West"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel, /area/security/main) @@ -4355,11 +4105,9 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/main) @@ -4402,8 +4150,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "red" @@ -4461,10 +4208,8 @@ "alG" = ( /obj/machinery/vending/cigarette, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel, /area/security/main) @@ -4485,8 +4230,7 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/floor/plating/airless, /area/security/podbay) @@ -4518,8 +4262,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/light_switch{ pixel_y = -25 @@ -4611,9 +4354,7 @@ /obj/structure/closet, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; - pixel_x = -28; - pixel_y = 0 + pixel_x = -28 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -4772,8 +4513,6 @@ dir = 4 }, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -4787,7 +4526,6 @@ /obj/item/folder/red, /obj/item/pen, /obj/item/radio/intercom/department/security{ - pixel_x = 0; pixel_y = -28 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -4825,17 +4563,6 @@ }, /turf/simulated/floor/plasteel, /area/security/main) -"amo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0; - tag = "" - }, -/obj/structure/lattice/catwalk, -/turf/space, -/area/solar/auxstarboard) "amp" = ( /obj/structure/chair{ dir = 8 @@ -4848,8 +4575,7 @@ }, /obj/machinery/camera{ c_tag = "Brig Briefing Room East"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/effect/landmark/start{ name = "Security Officer" @@ -4873,19 +4599,15 @@ name = "Head of Security" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, /area/security/main) "ams" = ( /obj/item/radio/intercom/locked/prison{ - pixel_x = -25; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 + pixel_x = -25 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, /area/security/permabrig) "amt" = ( @@ -4894,8 +4616,7 @@ department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security Requests Console"; - pixel_x = 30; - pixel_y = 0 + pixel_x = 30 }, /obj/machinery/computer/brigcells, /turf/simulated/floor/plasteel{ @@ -4905,8 +4626,7 @@ "amu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/carpet, /area/security/hos) @@ -4957,9 +4677,7 @@ /area/security/warden) "amA" = ( /obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 0 - }, +/obj/machinery/recharger, /obj/machinery/alarm{ pixel_y = 23 }, @@ -4968,9 +4686,7 @@ on = 1 }, /obj/machinery/camera{ - c_tag = "Brig Warden's Office"; - dir = 2; - network = list("SS13") + c_tag = "Brig Warden's Office" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -4991,9 +4707,7 @@ "amC" = ( /obj/structure/closet/secure_closet/warden, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -5086,7 +4800,6 @@ "amL" = ( /obj/machinery/shower{ dir = 8; - icon_state = "shower"; tag = "icon-shower (WEST)" }, /obj/structure/curtain/open/shower, @@ -5113,7 +4826,6 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -5131,8 +4843,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; @@ -5154,11 +4865,9 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -5169,8 +4878,7 @@ }, /obj/machinery/camera{ c_tag = "Brig Pod Pilot's Office"; - dir = 8; - network = list("SS13") + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -5268,7 +4976,6 @@ network = list("Prison","SS13") }, /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = 32 }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -5284,7 +4991,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -5307,15 +5013,12 @@ /turf/simulated/floor/plasteel, /area/security/prisonlockers) "anj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, /area/security/permabrig) "ank" = ( /obj/structure/closet/secure_closet/brig, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -5330,8 +5033,7 @@ }, /obj/machinery/flasher{ id = "permaflash1"; - pixel_x = 28; - pixel_y = 0 + pixel_x = 28 }, /turf/simulated/floor/plasteel{ dir = 6; @@ -5348,7 +5050,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -5359,8 +5060,7 @@ "anp" = ( /obj/structure/bed, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plating, /area/security/permabrig) @@ -5396,8 +5096,7 @@ "ant" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 + dir = 6 }, /turf/simulated/floor/plating, /area/security/permabrig) @@ -5408,11 +5107,9 @@ network = list("Prison","SS13") }, /obj/item/radio/intercom/locked/prison{ - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = 32 }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -5444,7 +5141,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door/poddoor{ @@ -5479,8 +5175,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -5491,8 +5186,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -5505,8 +5199,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; @@ -5562,8 +5255,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 4; @@ -5573,8 +5265,7 @@ "anF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -5584,7 +5275,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/lattice/catwalk, @@ -5597,7 +5287,6 @@ /obj/machinery/door/firedoor, /obj/structure/disposalpipe/sortjunction{ dir = 1; - icon_state = "pipe-j1s"; name = "Brig Equipment Storage"; sortType = 8 }, @@ -5647,15 +5336,12 @@ "anM" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, /area/security/main) "anN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/security/permabrig) "anO" = ( @@ -5665,7 +5351,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -5678,8 +5363,7 @@ }, /obj/machinery/alarm{ dir = 4; - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -5694,8 +5378,7 @@ /area/security/permabrig) "anQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel, /area/security/main) @@ -5712,15 +5395,13 @@ req_access_txt = "1" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel, /area/security/main) "anS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -5729,8 +5410,7 @@ /area/security/main) "anT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -5748,8 +5428,7 @@ /obj/item/book/manual/sop_security, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, @@ -5801,7 +5480,6 @@ pixel_y = 2 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -5813,16 +5491,13 @@ }, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; - pixel_x = -28; - pixel_y = 0 + pixel_x = -28 }, /obj/machinery/light{ dir = 1; in_use = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -5833,7 +5508,6 @@ name = "Internal Affairs Agent" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -5841,7 +5515,6 @@ "aoc" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/light{ @@ -5853,7 +5526,6 @@ /obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "lawyer"; name = "Internal Affairs Privacy Shutters"; @@ -5865,7 +5537,6 @@ /obj/structure/table/reinforced, /obj/item/flashlight/lamp, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -5891,8 +5562,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -5900,8 +5570,7 @@ req_access_txt = "63" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5941,9 +5610,7 @@ }, /area/security/lobby) "aol" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -5957,8 +5624,7 @@ /area/security/lobby) "aon" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -5973,8 +5639,7 @@ /area/security/lobby) "aoo" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -5983,8 +5648,7 @@ icon_state = "1-2" }, /obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -6024,8 +5688,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; @@ -6041,8 +5704,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/effect/landmark/start{ name = "Warden" @@ -6075,8 +5737,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -6094,7 +5755,6 @@ "aow" = ( /obj/machinery/flasher{ id = "Cell 1"; - pixel_x = 0; pixel_y = 28 }, /turf/simulated/floor/plasteel{ @@ -6119,8 +5779,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/security/seceqstorage) @@ -6143,13 +5802,11 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4; @@ -6180,8 +5837,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 2; @@ -6213,8 +5869,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel{ dir = 1 @@ -6233,8 +5888,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6291,8 +5945,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6343,8 +5996,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -6363,8 +6015,7 @@ /area/security/main) "aoS" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/computer/card/minor/hos, /turf/simulated/floor/plasteel{ @@ -6388,9 +6039,7 @@ /obj/structure/bed, /obj/item/bedsheet/red, /obj/machinery/camera{ - c_tag = "Brig Cell 1"; - dir = 2; - network = list("SS13") + c_tag = "Brig Cell 1" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -6400,10 +6049,8 @@ "aoV" = ( /obj/structure/closet/secure_closet/brig, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel, /area/security/prisonlockers) @@ -6416,7 +6063,6 @@ pixel_y = 32 }, /obj/structure/cable/yellow{ - d1 = 0; d2 = 2; icon_state = "0-2" }, @@ -6428,17 +6074,13 @@ "aoX" = ( /obj/structure/bed, /obj/machinery/camera{ - c_tag = "Brig Cell 3"; - dir = 2; - network = list("SS13") + c_tag = "Brig Cell 3" }, /obj/machinery/flasher{ id = "Cell 3"; - pixel_x = 0; pixel_y = 28 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/prison/cell_block/A) @@ -6468,9 +6110,7 @@ /obj/item/camera{ desc = "A one use - polaroid camera. 30 photos left."; name = "Camera"; - pictures_left = 30; - pixel_x = 0; - pixel_y = 0 + pictures_left = 30 }, /turf/simulated/floor/plasteel, /area/security/processing) @@ -6498,7 +6138,6 @@ /obj/structure/closet, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/light/small{ @@ -6517,14 +6156,12 @@ /obj/item/pen, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/requests_console{ department = "Warden"; departmentType = 7; name = "Warden's Requests Console"; - pixel_x = 0; pixel_y = -30 }, /obj/item/radio/intercom/department/security{ @@ -6543,7 +6180,6 @@ pixel_y = 5 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/warden) @@ -6553,13 +6189,11 @@ /obj/item/paper/armory, /obj/item/clipboard, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/warden) "aph" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/warden) @@ -6568,14 +6202,12 @@ /obj/item/folder/red, /obj/item/megaphone, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/warden) "apj" = ( /obj/structure/table/reinforced, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/warden) @@ -6688,11 +6320,8 @@ /area/security/prison/cell_block/A) "apA" = ( /obj/machinery/vending/wallmed{ - dir = 2; name = "Emergency NanoMed"; - pixel_x = -27; - pixel_y = 0; - req_access_txt = "0" + pixel_x = -27 }, /obj/structure/table/reinforced, /obj/item/stack/medical/bruise_pack/advanced, @@ -6705,8 +6334,7 @@ }, /obj/machinery/camera{ c_tag = "Brig Security Equipment South"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 10; @@ -6728,7 +6356,6 @@ }, /obj/effect/decal/warning_stripes/red/hollow, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -6744,8 +6371,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel, @@ -6775,7 +6401,6 @@ "apG" = ( /obj/machinery/light/small{ dir = 4; - icon_state = "bulb1"; tag = "icon-bulb1 (EAST)" }, /turf/simulated/floor/plasteel{ @@ -6894,8 +6519,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -6907,7 +6531,6 @@ "apU" = ( /obj/structure/table/wood, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -6917,8 +6540,7 @@ }, /obj/machinery/camera{ c_tag = "Brig Head of Security's Office"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/item/folder/red, /obj/item/folder/red, @@ -6931,8 +6553,7 @@ "apV" = ( /obj/structure/table/wood, /obj/item/taperecorder{ - pixel_x = -5; - pixel_y = 0 + pixel_x = -5 }, /obj/machinery/light, /obj/item/radio{ @@ -6981,7 +6602,6 @@ /obj/structure/bed, /obj/machinery/light/small{ dir = 4; - icon_state = "bulb1"; tag = "icon-bulb1 (EAST)" }, /turf/simulated/floor/plating, @@ -7084,8 +6704,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/security/warden) @@ -7098,8 +6717,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/security/warden) @@ -7166,8 +6784,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/security/main) @@ -7310,7 +6927,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door/poddoor{ @@ -7356,7 +6972,6 @@ /obj/item/pen, /obj/machinery/light/small{ dir = 4; - icon_state = "bulb1"; tag = "icon-bulb1 (EAST)" }, /turf/simulated/floor/plating, @@ -7418,7 +7033,6 @@ "aqY" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -7445,7 +7059,6 @@ /obj/item/stamp/law, /obj/item/pen/multi, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -7544,8 +7157,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 + dir = 6 }, /obj/structure/cable{ d1 = 2; @@ -7568,7 +7180,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/prison/cell_block/A) @@ -7626,9 +7237,7 @@ }, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; - pixel_x = -28; - pixel_y = 0 + pixel_x = -28 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -7654,7 +7263,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/prison/cell_block/A) @@ -7698,12 +7306,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/prison/cell_block/A) @@ -7737,7 +7343,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7756,8 +7361,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel, /area/security/processing) @@ -7780,14 +7384,11 @@ pixel_x = -24; pixel_y = 23 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/security/permabrig) "arC" = ( /obj/item/radio/intercom/department/security{ - pixel_x = 0; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -7839,8 +7440,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -7876,7 +7476,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7888,8 +7487,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/cable{ d2 = 2; @@ -7927,7 +7525,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -7961,8 +7558,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -7973,8 +7569,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -7999,8 +7594,6 @@ name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; specialfunctions = 4 }, /turf/simulated/floor/plating, @@ -8012,8 +7605,6 @@ name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; specialfunctions = 4 }, /turf/simulated/floor/plating, @@ -8051,12 +7642,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8067,8 +7656,7 @@ /area/security/brig) "ase" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8157,8 +7745,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -8172,8 +7759,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ @@ -8188,8 +7774,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -8203,8 +7788,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -8225,8 +7809,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -8260,8 +7843,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8279,8 +7861,7 @@ req_access_txt = "2" }, /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /turf/simulated/floor/plasteel, /area/security/permabrig) @@ -8288,8 +7869,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; @@ -8302,7 +7882,6 @@ dir = 4 }, /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -8318,7 +7897,6 @@ desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); - pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/plasteel, @@ -8336,8 +7914,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8348,8 +7925,6 @@ }, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -8362,7 +7937,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door_control{ @@ -8386,12 +7960,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8475,9 +8047,7 @@ icon_state = "4-8"; tag = "" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkred" @@ -8492,15 +8062,13 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -8514,12 +8082,10 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -8529,15 +8095,13 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -8552,8 +8116,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -8564,7 +8127,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -8607,7 +8169,6 @@ req_access_txt = "2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -8617,20 +8178,17 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, /area/lawoffice) "asQ" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/alarm{ dir = 4; - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -8639,7 +8197,6 @@ /area/security/lobby) "asR" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/lobby) @@ -8654,7 +8211,6 @@ /obj/structure/chair/office/dark, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; pixel_x = -28; pixel_y = -28 }, @@ -8761,7 +8317,6 @@ name = "Cell 3 Locker" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/prison/cell_block/A) @@ -8807,8 +8362,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -8840,15 +8394,13 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 2; @@ -8870,14 +8422,12 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -8952,9 +8502,7 @@ /turf/simulated/floor/plating, /area/maintenance/fsmaint) "atv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/security/processing) "atw" = ( @@ -8967,15 +8515,13 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/light, /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/brig) @@ -8983,8 +8529,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ @@ -9032,8 +8577,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; @@ -9055,14 +8599,11 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/light, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -9083,8 +8624,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; @@ -9112,8 +8652,7 @@ /area/maintenance/fsmaint) "atH" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/rack, /obj/item/plant_analyzer, @@ -9157,8 +8696,7 @@ /obj/item/dice/d20, /obj/item/instrument/harmonica, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -9174,8 +8712,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; @@ -9202,8 +8739,7 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) @@ -9215,7 +8751,6 @@ }, /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel{ @@ -9245,8 +8780,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -9287,12 +8821,9 @@ /obj/machinery/door_timer/cell_1{ dir = 1; layer = 4; - pixel_x = 0; pixel_y = 32 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkredcorners" @@ -9312,11 +8843,9 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -9338,7 +8867,6 @@ dir = 10 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -9348,13 +8876,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -9373,7 +8898,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/poddoor{ @@ -9393,7 +8917,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -9429,7 +8952,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9448,7 +8970,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -9457,7 +8978,6 @@ icon_state = "2-4" }, /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -9470,7 +8990,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -9489,7 +9008,6 @@ /obj/machinery/door_timer/cell_3{ dir = 1; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -9503,7 +9021,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment, @@ -9541,9 +9058,7 @@ }, /obj/structure/closet/emcloset, /obj/machinery/camera{ - c_tag = "Security Pod"; - dir = 2; - network = list("SS13") + c_tag = "Security Pod" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) @@ -9553,7 +9068,6 @@ "aur" = ( /obj/structure/filingcabinet/employment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -9563,7 +9077,6 @@ dir = 10 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -9643,8 +9156,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/door/poddoor{ density = 0; @@ -9709,7 +9221,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -9857,12 +9368,10 @@ }, /obj/machinery/camera{ c_tag = "Brig Cell Block A North"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/prison/cell_block/A) @@ -9895,8 +9404,6 @@ /obj/machinery/camera{ c_tag = "Brig Prisoner Processing West"; dir = 4; - network = list("SS13"); - pixel_x = 0; pixel_y = -22 }, /obj/machinery/door_control{ @@ -9947,7 +9454,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -10041,7 +9547,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/smartfridge/drying_rack, @@ -10052,7 +9557,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -10064,15 +9568,13 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -10084,7 +9586,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -10100,12 +9601,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10127,19 +9626,16 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" + dir = 5 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -10155,12 +9651,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -10173,7 +9667,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -10183,30 +9676,24 @@ tag = "90Curve" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/computer/cryopod{ - density = 0; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel, /area/security/permabrig) "avp" = ( /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_3) "avq" = ( /turf/simulated/floor/plating, @@ -10216,12 +9703,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10247,20 +9732,18 @@ id_tag = "s_docking_airlock"; name = "Escape Pod Hatch" }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_3) "avu" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/light, /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_3) "avw" = ( /obj/effect/spawner/window/shuttle, @@ -10275,7 +9758,6 @@ }, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "Processing Shutter"; name = "Processing Shutter"; @@ -10298,12 +9780,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10313,14 +9793,12 @@ /area/security/permabrig) "avD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -10330,7 +9808,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -10344,7 +9821,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -10359,11 +9835,9 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/permabrig) @@ -10375,8 +9849,7 @@ security_level = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10389,7 +9862,6 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/permabrig) @@ -10398,18 +9870,15 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/permabrig) @@ -10419,19 +9888,16 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/permabrig) "avK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/structure/cable{ d1 = 1; @@ -10440,8 +9906,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -10452,13 +9917,11 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/permabrig) @@ -10484,18 +9947,15 @@ "avO" = ( /obj/machinery/power/apc{ cell_type = 5000; - dir = 2; name = "south bump Important Area"; pixel_y = -24 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/permabrig) @@ -10503,24 +9963,19 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/security/lobby) "avQ" = ( /obj/item/storage/secure/safe{ - pixel_x = -27; - pixel_y = 0 + pixel_x = -27 }, /obj/machinery/camera{ c_tag = "Internal Affairs Office"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/photocopier, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -10533,7 +9988,6 @@ dir = 6 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -10544,12 +9998,10 @@ /area/lawoffice) "avT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel, /area/security/lobby) @@ -10569,15 +10021,12 @@ req_access_txt = "38" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -10650,8 +10099,7 @@ req_access_txt = "63" }, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -10663,7 +10111,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -10675,8 +10122,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -10695,7 +10141,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -10704,8 +10149,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -10737,7 +10181,6 @@ }, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "Processing Shutter"; name = "Processing Shutter"; @@ -10759,7 +10202,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -10772,7 +10214,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -10815,12 +10256,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -10831,15 +10270,13 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 + dir = 6 }, /obj/structure/cable{ d1 = 2; @@ -10860,7 +10297,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -10882,8 +10318,6 @@ /obj/machinery/camera{ c_tag = "Brig Prisoner Processing East"; dir = 8; - network = list("SS13"); - pixel_x = 0; pixel_y = -22 }, /turf/simulated/floor/plasteel{ @@ -10986,8 +10420,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -11061,8 +10494,7 @@ /area/security/permabrig) "awY" = ( /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /obj/structure/window/reinforced{ dir = 1; @@ -11078,8 +10510,7 @@ "awZ" = ( /obj/machinery/alarm{ dir = 8; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -11091,7 +10522,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door_control{ @@ -11146,7 +10576,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11169,7 +10598,6 @@ /obj/machinery/airlock_sensor{ frequency = 1450; id_tag = "dorms_sensor"; - pixel_x = 0; pixel_y = 25 }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -11217,15 +10645,12 @@ /obj/machinery/requests_console{ department = "Internal Affairs Office"; name = "Internal Affairs Requests Console"; - pixel_x = -30; - pixel_y = 0 + pixel_x = -30 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -11242,11 +10667,9 @@ /area/solar/auxstarboard) "axr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -11267,7 +10690,6 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/lobby) @@ -11276,7 +10698,6 @@ /obj/structure/cable, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "Processing Shutter"; name = "Processing Shutter"; @@ -11319,8 +10740,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/security/lobby) @@ -11351,10 +10771,7 @@ }, /obj/machinery/camera{ c_tag = "Brig Lobby East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -11365,16 +10782,14 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/door/airlock/security{ name = "Evidence Storage"; @@ -11388,7 +10803,6 @@ "axD" = ( /obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, /turf/simulated/floor/plasteel, @@ -11398,7 +10812,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -11444,14 +10857,10 @@ /area/security/prison/cell_block/A) "axH" = ( /obj/machinery/door_timer/cell_2{ - dir = 2; - layer = 4; - pixel_x = 0; - pixel_y = -32 + layer = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 4; @@ -11477,27 +10886,21 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/prison/cell_block/A) "axJ" = ( /obj/machinery/door_timer/cell_4{ - dir = 2; - layer = 4; - pixel_x = 0; - pixel_y = -32 + layer = 4 }, /obj/structure/cable{ d1 = 4; @@ -11517,7 +10920,6 @@ "axK" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/prison/cell_block/A) @@ -11529,7 +10931,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -11541,8 +10942,7 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -11557,11 +10957,9 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/processing) @@ -11580,24 +10978,9 @@ "axQ" = ( /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/security/processing) -"axR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - tag = "" - }, -/turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/processing) @@ -11606,7 +10989,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -11620,15 +11002,13 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/security/processing) "axU" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/light{ @@ -11636,14 +11016,11 @@ }, /obj/structure/table, /obj/item/restraints/handcuffs, -/obj/item/taperecorder{ - pixel_y = 0 - }, +/obj/item/taperecorder, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -11678,9 +11055,7 @@ dir = 1 }, /obj/structure/table, -/obj/item/taperecorder{ - pixel_y = 0 - }, +/obj/item/taperecorder, /turf/simulated/floor/plating, /area/maintenance/fsmaint) "axZ" = ( @@ -11760,7 +11135,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/prison/cell_block/A) @@ -11779,9 +11153,7 @@ /area/security/processing) "ayq" = ( /obj/structure/table, -/obj/item/taperecorder{ - pixel_y = 0 - }, +/obj/item/taperecorder, /turf/simulated/floor/plasteel, /area/security/processing) "ayr" = ( @@ -11822,10 +11194,7 @@ dir = 1 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; - pixel_x = 28; - pixel_y = 0 + pixel_x = 28 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -11843,7 +11212,6 @@ /area/security/permabrig) "ayx" = ( /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = 32 }, /obj/structure/table, @@ -11888,7 +11256,6 @@ "ayA" = ( /obj/structure/table/wood, /obj/structure/noticeboard{ - pixel_x = 0; pixel_y = -30 }, /obj/item/paper_bin{ @@ -11912,7 +11279,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door/poddoor{ @@ -11928,7 +11294,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -11939,7 +11304,6 @@ id = "Execution Shutter"; name = "Execution Shutter Control"; pixel_x = -25; - pixel_y = 0; req_access_txt = "1" }, /turf/simulated/floor/plasteel{ @@ -11978,8 +11342,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -11998,12 +11361,10 @@ /obj/machinery/door_control{ id = "lawyer"; name = "Internal Affairs Privacy Shutters Control"; - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /obj/machinery/vending/coffee/free, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -12011,15 +11372,13 @@ "ayI" = ( /obj/structure/chair/comfy/brown, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, /area/lawoffice) "ayJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12028,20 +11387,15 @@ /area/security/lobby) "ayK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/camera{ c_tag = "Brig Lobby West"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -12053,8 +11407,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -12064,15 +11417,13 @@ /area/security/lobby) "ayM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/light, /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = -32 }, /obj/item/reagent_containers/food/drinks/mug/sec, @@ -12087,8 +11438,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12110,16 +11460,13 @@ /area/security/lobby) "ayP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -12160,8 +11507,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -12269,7 +11615,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12337,8 +11682,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -12374,8 +11718,7 @@ /area/space/nearstation) "azp" = ( /obj/machinery/door/airlock{ - name = "Bathroom"; - req_access_txt = "0" + name = "Bathroom" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -12392,7 +11735,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/closet/wardrobe/pjs, @@ -12409,8 +11751,7 @@ }, /obj/machinery/flasher{ id = "permaflash2"; - pixel_x = 28; - pixel_y = 0 + pixel_x = 28 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -12422,7 +11763,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -12453,13 +11793,11 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -12471,8 +11809,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /obj/structure/cable{ d1 = 1; @@ -12505,12 +11842,10 @@ pixel_x = 24 }, /obj/machinery/light/small{ - dir = 4; - pixel_y = 0 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -12523,12 +11858,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -12543,7 +11876,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -12552,15 +11884,13 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/cable{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -12572,7 +11902,6 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -12608,17 +11937,14 @@ /area/magistrateoffice) "azG" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/sign/poster/official/random{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -12630,7 +11956,6 @@ id = "brig_courtroom"; name = "Brig Courtroom Shutter Control"; pixel_x = 25; - pixel_y = 0; req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12672,7 +11997,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12704,9 +12028,7 @@ name = "Cell 2 Locker" }, /obj/machinery/camera{ - c_tag = "Brig Cell 2"; - dir = 2; - network = list("SS13") + c_tag = "Brig Cell 2" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -12715,16 +12037,13 @@ /area/security/prison/cell_block/A) "azO" = ( /obj/machinery/camera{ - c_tag = "Brig Cell 4"; - dir = 2; - network = list("SS13") + c_tag = "Brig Cell 4" }, /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; name = "Cell 4 Locker" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/prison/cell_block/A) @@ -12741,14 +12060,12 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -12812,9 +12129,7 @@ name = "Cell 5 Locker" }, /obj/machinery/camera{ - c_tag = "Brig Cell 5"; - dir = 2; - network = list("SS13") + c_tag = "Brig Cell 5" }, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/plasteel, @@ -12822,8 +12137,7 @@ "azX" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -12838,14 +12152,12 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -12924,7 +12236,6 @@ "aAo" = ( /obj/machinery/shower{ dir = 4; - icon_state = "shower"; tag = "icon-shower (EAST)" }, /obj/structure/curtain/open/shower, @@ -12964,7 +12275,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/poddoor{ @@ -13001,7 +12311,6 @@ /obj/item/clothing/glasses/sunglasses/blindfold, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -13064,7 +12373,6 @@ "aAD" = ( /obj/structure/closet/lawcloset, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13079,27 +12387,23 @@ pixel_y = -5 }, /obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 0 + pixel_x = 3 }, /obj/item/storage/secure/briefcase{ pixel_x = 5; pixel_y = -5 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13115,7 +12419,6 @@ name = "Internal Affairs Agent" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13127,7 +12430,6 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13137,12 +12439,10 @@ /obj/item/pen, /obj/machinery/alarm{ dir = 8; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /obj/item/paper_bin/nanotrasen, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13157,7 +12457,6 @@ "aAK" = ( /obj/machinery/atmospherics/binary/valve/open{ dir = 4; - icon_state = "map_valve1"; tag = "icon-map_valve1 (EAST)" }, /turf/simulated/floor/plating, @@ -13179,24 +12478,19 @@ }, /obj/machinery/camera{ c_tag = "Magistrate's Office"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/carpet, /area/magistrateoffice) "aAN" = ( /obj/structure/table/reinforced, -/obj/item/taperecorder{ - pixel_y = 0 - }, +/obj/item/taperecorder, /obj/item/megaphone, /obj/item/radio/intercom/department/security{ pixel_x = 28; pixel_y = -7 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28; pixel_y = 5 }, @@ -13266,12 +12560,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -13304,18 +12596,15 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -13334,12 +12623,10 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel{ @@ -13361,12 +12648,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13379,7 +12664,6 @@ opacity = 0 }, /obj/machinery/door/window/brigdoor{ - dir = 4; id = "Cell 5"; name = "Cell 5"; req_access_txt = "2" @@ -13387,8 +12671,6 @@ /obj/machinery/door/firedoor, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -13410,7 +12692,6 @@ "aBd" = ( /obj/structure/chair/wood/wings{ dir = 4; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (EAST)" }, /turf/simulated/floor/plating, @@ -13418,7 +12699,6 @@ "aBe" = ( /obj/structure/chair/wood/wings{ dir = 8; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (WEST)" }, /turf/simulated/floor/wood{ @@ -13429,7 +12709,6 @@ "aBf" = ( /obj/structure/chair/wood/wings{ dir = 4; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (EAST)" }, /turf/simulated/floor/wood, @@ -13443,9 +12722,7 @@ /area/maintenance/abandonedbar) "aBi" = ( /obj/structure/table/reinforced, -/obj/item/taperecorder{ - pixel_y = 0 - }, +/obj/item/taperecorder, /obj/item/flashlight/lamp, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -13471,8 +12748,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13486,7 +12762,6 @@ }, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13501,8 +12776,7 @@ /area/maintenance/fsmaint) "aBr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) @@ -13511,16 +12785,14 @@ /area/security/interrogation) "aBt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) "aBu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) @@ -13541,7 +12813,6 @@ master_tag = "eva_airlock"; name = "exterior access button"; pixel_x = 25; - pixel_y = 0; req_access_txt = "13" }, /obj/structure/lattice/catwalk, @@ -13567,7 +12838,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -13595,13 +12865,11 @@ id_tag = "solar_tool_pump" }, /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "solar_tool_sensor"; pixel_x = 25; pixel_y = 12 }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "solar_tool_airlock"; pixel_x = 25; req_access_txt = "13"; @@ -13622,7 +12890,6 @@ /obj/item/soap, /obj/machinery/light/small{ dir = 4; - icon_state = "bulb1"; tag = "icon-bulb1 (EAST)" }, /turf/simulated/floor/plasteel{ @@ -13665,10 +12932,8 @@ /obj/item/lighter, /obj/item/storage/fancy/cigarettes/cigpack_robust, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -13717,7 +12982,6 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/wood{ @@ -13791,7 +13055,6 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13802,11 +13065,9 @@ department = "Magistrate's Office" }, /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13817,18 +13078,14 @@ req_access_txt = "2" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/alarm{ dir = 4; - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13843,7 +13100,6 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13868,7 +13124,6 @@ /obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "magistrate"; name = "Magistrate Privacy Shutters"; @@ -13879,7 +13134,6 @@ "aCl" = ( /obj/structure/closet/secure_closet/magistrate, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -13891,9 +13145,7 @@ icon_state = "4-8"; tag = "" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet, /area/magistrateoffice) "aCn" = ( @@ -13914,19 +13166,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 - }, -/mob/living/simple_animal/bot/secbot/beepsky{ - name = "Officer Beepsky" + initialize_directions = 11 }, +/mob/living/simple_animal/bot/secbot/beepsky, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aCp" = ( /obj/machinery/flasher{ id = "Cell 2"; - pass_flags = 0; - pixel_x = 0; pixel_y = -26 }, /turf/simulated/floor/plasteel{ @@ -13958,11 +13205,9 @@ /obj/structure/bed, /obj/machinery/flasher{ id = "Cell 4"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/security/prison/cell_block/A) @@ -13971,13 +13216,11 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -13991,7 +13234,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -14014,7 +13256,6 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/flasher{ id = "Cell 5"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -14101,7 +13342,6 @@ dir = 1 }, /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -14112,8 +13352,7 @@ /obj/effect/decal/warning_stripes/west, /obj/machinery/light/small, /obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -14141,14 +13380,12 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) @@ -14249,8 +13486,7 @@ "aCZ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -14261,8 +13497,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -14277,13 +13512,11 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/door_control{ id = "brig_courtroom"; name = "Brig Courtroom Shutter Control"; - pixel_x = 0; pixel_y = 25; req_access_txt = "2" }, @@ -14348,14 +13581,12 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, /area/magistrateoffice) "aDi" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -14377,7 +13608,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -14394,8 +13624,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/cable{ d2 = 4; @@ -14412,13 +13641,11 @@ dir = 4 }, /obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /obj/machinery/camera{ c_tag = "Brig Cell Block A South"; - dir = 8; - network = list("SS13") + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -14431,13 +13658,11 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -14487,8 +13712,7 @@ "aDu" = ( /obj/machinery/power/solar_control{ id = "auxsolareast"; - name = "Fore Port Solar Control"; - track = 0 + name = "Fore Port Solar Control" }, /obj/structure/cable{ d2 = 4; @@ -14508,8 +13732,7 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/atmospherics/unary/portables_connector{ dir = 1 @@ -14580,15 +13803,13 @@ /obj/item/seeds/ambrosia, /obj/machinery/light/small{ dir = 4; - icon_state = "bulb1"; tag = "icon-bulb1 (EAST)" }, /obj/structure/toilet{ dir = 4 }, /obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -14606,9 +13827,6 @@ /area/maintenance/fpmaint) "aDH" = ( /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -14628,13 +13846,11 @@ name = "Brig Courtroom Shutters" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/permabrig) "aDJ" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/security/permabrig) @@ -14691,7 +13907,6 @@ icon_state = "2-4" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -14702,10 +13917,8 @@ /area/maintenance/auxsolarstarboard) "aDT" = ( /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "eva_sensor"; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; @@ -14721,7 +13934,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -14787,7 +13999,6 @@ "aEg" = ( /obj/structure/filingcabinet, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -14797,7 +14008,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/hologram/holopad, @@ -14806,10 +14016,7 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aEi" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/machinery/vending/cigarette, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkred" @@ -14860,7 +14067,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -14875,7 +14081,6 @@ }, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/carpet, @@ -14886,8 +14091,7 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14898,18 +14102,15 @@ icon_state = "2-8" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkredcorners" }, /area/security/prison/cell_block/A) "aEr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /obj/structure/cable{ d1 = 1; @@ -14928,8 +14129,7 @@ /area/security/prison/cell_block/A) "aEs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14953,8 +14153,7 @@ opacity = 0 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14966,8 +14165,7 @@ /area/maintenance/fsmaint) "aEu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -14980,8 +14178,7 @@ /area/maintenance/fsmaint) "aEv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - level = 1 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) @@ -15131,18 +14328,15 @@ tag = "" }, /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "solar_chapel_sensor"; pixel_x = 25; pixel_y = 12 }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; frequency = 1379; id_tag = "solar_chapel_pump" }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "solar_chapel_airlock"; pixel_x = 25; req_access_txt = "13"; @@ -15185,7 +14379,6 @@ "aEW" = ( /obj/item/stack/rods, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "escape" }, /area/maintenance/abandonedbar) @@ -15235,8 +14428,7 @@ /area/maintenance/abandonedbar) "aFh" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -15246,8 +14438,7 @@ /area/crew_quarters/courtroom) "aFj" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -15272,13 +14463,11 @@ /obj/item/gavelblock, /obj/item/gavelhammer, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, /obj/structure/cable, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -15290,8 +14479,7 @@ /area/security/interrogation) "aFo" = ( /obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /obj/item/twohanded/required/kirbyplants, /obj/machinery/firealarm{ @@ -15299,7 +14487,6 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -15312,11 +14499,9 @@ }, /obj/item/pen/multi, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -15331,7 +14516,6 @@ pixel_y = 7 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -15351,7 +14535,6 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -15361,7 +14544,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -15372,14 +14554,12 @@ dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/newscaster{ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -15389,18 +14569,14 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) "aFv" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "eva_airlock"; name = "EVA Airlock Console"; pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; req_one_access_txt = "1;5;11;18;24"; tag_airpump = "eva_pump"; tag_chamber_sensor = "eva_sensor"; @@ -15422,7 +14598,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -15594,9 +14769,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/smes{ - charge = 0 - }, +/obj/machinery/power/smes, /turf/simulated/floor/plating, /area/maintenance/auxsolarport) "aFS" = ( @@ -15753,14 +14926,12 @@ "aGq" = ( /obj/structure/chair, /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = 32 }, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redfull"; tag = "icon-redfull (NORTHWEST)" }, @@ -15775,8 +14946,7 @@ /area/crew_quarters/courtroom) "aGs" = ( /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -15798,7 +14968,6 @@ "aGw" = ( /obj/structure/disposalpipe/junction{ dir = 1; - icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, /turf/simulated/floor/plasteel, @@ -15846,9 +15015,7 @@ tag = "" }, /obj/machinery/camera{ - c_tag = "Brig Detective's Office"; - dir = 2; - network = list("SS13") + c_tag = "Brig Detective's Office" }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -15887,9 +15054,7 @@ "aGE" = ( /obj/machinery/computer/med_data, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -15906,8 +15071,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15921,7 +15085,6 @@ "aGH" = ( /obj/machinery/light/small{ dir = 4; - icon_state = "bulb1"; tag = "icon-bulb1 (EAST)" }, /turf/simulated/floor/plating, @@ -15933,7 +15096,6 @@ }, /obj/item/razor, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -15941,16 +15103,13 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ d2 = 2; - icon_state = "0-2"; - pixel_y = 0 + icon_state = "0-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -15966,16 +15125,12 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/camera{ - c_tag = "Barber Shop"; - dir = 2; - network = list("SS13") + c_tag = "Barber Shop" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -15983,11 +15138,9 @@ /obj/machinery/dye_generator, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -16003,12 +15156,9 @@ dir = 4 }, /obj/machinery/camera{ - c_tag = "Arcade"; - dir = 2; - network = list("SS13") + c_tag = "Arcade" }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/carpet/arcade, @@ -16048,8 +15198,7 @@ req_access_txt = "13" }, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" + dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) @@ -16059,8 +15208,7 @@ "aGU" = ( /obj/machinery/power/solar_control{ id = "auxsolareast"; - name = "Fore Starboard Solar Control"; - track = 0 + name = "Fore Starboard Solar Control" }, /obj/structure/cable{ d2 = 4; @@ -16071,7 +15219,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plating, @@ -16113,7 +15260,6 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/carpet/arcade, @@ -16136,7 +15282,6 @@ /obj/item/toy/crayon/white, /obj/machinery/light/small{ dir = 8; - icon_state = "bulb1"; tag = "icon-bulb1 (WEST)" }, /turf/simulated/floor/plating, @@ -16157,15 +15302,13 @@ /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + name = "HIGH VOLTAGE" }, /turf/simulated/wall/r_wall, /area/maintenance/fpmaint2) "aHh" = ( /obj/machinery/door/airlock/engineering{ icon_state = "door_closed"; - locked = 0; name = "Fore Port Solar Access"; req_access_txt = "10" }, @@ -16223,7 +15366,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16271,10 +15413,7 @@ /obj/structure/table/reinforced, /obj/item/reagent_containers/food/drinks/drinkingglass, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; - pixel_x = -28; - pixel_y = 0 + pixel_x = -28 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -16283,8 +15422,7 @@ /area/crew_quarters/courtroom) "aHy" = ( /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /obj/structure/window/reinforced, /turf/simulated/floor/plasteel{ @@ -16300,7 +15438,6 @@ /obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "courtroomshutters"; layer = 3.21; @@ -16318,7 +15455,6 @@ in_use = 1 }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -16404,7 +15540,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/cleanable/dirt, @@ -16477,14 +15612,12 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) "aHZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -16494,16 +15627,13 @@ }, /area/security/detectives_office) "aIa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet/arcade, /area/crew_quarters/arcade) "aIb" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -16517,8 +15647,7 @@ /area/clownoffice) "aId" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -16550,8 +15679,7 @@ security_level = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -16575,7 +15703,6 @@ pixel_x = -32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -16586,11 +15713,9 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -16620,7 +15745,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -16637,7 +15761,6 @@ }, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/carpet/arcade, @@ -16651,18 +15774,15 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) @@ -16760,16 +15880,13 @@ "aIC" = ( /obj/machinery/camera{ c_tag = "Fore Starboard Solars"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/structure/cable{ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/smes{ - charge = 0 - }, +/obj/machinery/power/smes, /turf/simulated/floor/plating, /area/maintenance/auxsolarstarboard) "aID" = ( @@ -16829,7 +15946,6 @@ req_access_txt = "74" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -16850,8 +15966,7 @@ pixel_x = 24 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -16979,13 +16094,11 @@ id_tag = "arrivals_pump" }, /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "arrivals_sensor"; pixel_x = 25; pixel_y = 12 }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "arrivals_airlock"; pixel_x = 25; req_access_txt = "13"; @@ -17034,7 +16147,6 @@ /obj/item/storage/box/evidence, /obj/structure/table/wood, /obj/item/radio/intercom/department/security{ - pixel_x = 0; pixel_y = -28 }, /obj/structure/cable{ @@ -17066,13 +16178,10 @@ /obj/item/camera{ desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; - pictures_left = 30; - pixel_x = 0; - pixel_y = 0 + pictures_left = 30 }, /obj/machinery/requests_console{ name = "Detective Requests Console"; - pixel_x = 0; pixel_y = -30 }, /turf/simulated/floor/plasteel{ @@ -17082,7 +16191,6 @@ "aJn" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel{ @@ -17126,7 +16234,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -17135,14 +16242,12 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/effect/landmark/start{ name = "Barber" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -17151,22 +16256,19 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) "aJu" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) "aJv" = ( /obj/machinery/gameboard, /obj/structure/sign/poster/contraband/random{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/carpet/arcade, /area/crew_quarters/arcade) @@ -17195,8 +16297,7 @@ "aJA" = ( /obj/structure/closet/lasertag/red, /obj/structure/sign/poster/official/random{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/carpet/arcade, /area/crew_quarters/arcade) @@ -17221,7 +16322,6 @@ }, /obj/machinery/door/airlock/engineering{ icon_state = "door_closed"; - locked = 0; name = "Fore Starboard Solar Access"; req_access_txt = "10" }, @@ -17265,8 +16365,7 @@ /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + name = "HIGH VOLTAGE" }, /turf/simulated/wall/r_wall, /area/maintenance/auxsolarstarboard) @@ -17376,7 +16475,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -17385,16 +16483,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) -"aKe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/simulated/floor/plating, -/area/maintenance/fpmaint2) "aKf" = ( /obj/item/clothing/under/mafia/sue, /turf/simulated/floor/plating, @@ -17404,7 +16492,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -17416,8 +16503,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) @@ -17432,8 +16518,7 @@ "aKj" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) @@ -17475,7 +16560,6 @@ /area/crew_quarters/courtroom) "aKs" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -17483,8 +16567,7 @@ "aKt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -17515,7 +16598,6 @@ "aKw" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -17535,7 +16617,6 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -17543,7 +16624,6 @@ "aKy" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/hallway/primary/fore) @@ -17551,8 +16631,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -17588,7 +16667,6 @@ "aKD" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -17603,7 +16681,6 @@ "aKF" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ - pixel_x = 0; pixel_y = 5 }, /obj/item/pen, @@ -17611,7 +16688,6 @@ pixel_x = -32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -17624,18 +16700,15 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/hologram/holopad, /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -17643,8 +16716,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -17699,8 +16771,6 @@ dir = 4 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/carpet/arcade, @@ -17714,8 +16784,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/camera{ c_tag = "Clown's Office"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) @@ -17747,7 +16816,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -17792,19 +16860,16 @@ /area/maintenance/fsmaint2) "aLb" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_1) "aLc" = ( /obj/structure/closet, @@ -17816,19 +16881,16 @@ /area/hallway/secondary/entry) "aLf" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_2) "aLg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17912,7 +16974,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -17944,8 +17005,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 9 @@ -17993,7 +17053,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -18009,7 +17068,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/cleanable/dirt, @@ -18021,7 +17079,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/cleanable/dirt, @@ -18142,17 +17199,14 @@ /area/maintenance/fpmaint) "aLN" = ( /obj/structure/sign/poster/official/random{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/camera{ c_tag = "Courtroom "; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) @@ -18173,7 +17227,6 @@ id = "courtroomshutters"; name = "Brig Courtroom Shutter Control"; pixel_x = 25; - pixel_y = 0; req_one_access_txt = "74;3" }, /turf/simulated/floor/carpet, @@ -18184,15 +17237,13 @@ /area/crew_quarters/courtroom) "aLS" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) "aLT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18207,13 +17258,11 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/camera{ c_tag = "Courtroom Lobby"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -18223,8 +17272,7 @@ /area/crew_quarters/courtroom) "aLV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18241,13 +17289,11 @@ /area/crew_quarters/courtroom) "aLW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -18271,8 +17317,7 @@ /area/crew_quarters/courtroom) "aLY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18290,8 +17335,7 @@ /area/crew_quarters/courtroom) "aLZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18304,8 +17348,7 @@ "aMa" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18320,7 +17363,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18355,17 +17397,14 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/electrical) @@ -18390,7 +17429,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18443,7 +17481,6 @@ pixel_x = -28 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -18461,13 +17498,12 @@ "aMp" = ( /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_1) "aMq" = ( /turf/simulated/wall, @@ -18481,13 +17517,12 @@ "aMt" = ( /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_2) "aMu" = ( /obj/effect/spawner/window/reinforced, @@ -18503,8 +17538,6 @@ /area/maintenance/fpmaint2) "aMw" = ( /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18512,11 +17545,9 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -18540,7 +17571,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = -32 }, /obj/machinery/atmospherics/unary/portables_connector{ @@ -18558,7 +17588,6 @@ "aMD" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = -32 }, /obj/effect/decal/warning_stripes/south, @@ -18610,8 +17639,7 @@ "aMJ" = ( /obj/machinery/vending/snack, /obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/carpet/arcade, /area/crew_quarters/arcade) @@ -18658,7 +17686,6 @@ /obj/item/pen, /obj/item/paper_bin/nanotrasen, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -18730,8 +17757,7 @@ /area/maintenance/fpmaint) "aNa" = ( /obj/machinery/ai_status_display{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/carpet, /area/crew_quarters/courtroom) @@ -18748,9 +17774,7 @@ "aNc" = ( /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; - pixel_x = 28; - pixel_y = 0 + pixel_x = 28 }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -18787,7 +17811,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/atmospherics/unary/portables_connector{ @@ -18829,8 +17852,7 @@ /area/maintenance/electrical) "aNl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 4; @@ -18849,7 +17871,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/effect/landmark/burnturf, @@ -18898,7 +17919,7 @@ id_tag = "s_docking_airlock"; name = "Escape Pod Hatch" }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_1) "aNu" = ( /obj/effect/decal/warning_stripes/yellow/hollow, @@ -18925,7 +17946,7 @@ id_tag = "s_docking_airlock"; name = "Escape Pod Hatch" }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_2) "aNz" = ( /obj/machinery/access_button{ @@ -18957,7 +17978,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/atmospherics/unary/portables_connector{ @@ -19012,8 +18032,7 @@ /area/maintenance/fpmaint2) "aNI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -19022,8 +18041,7 @@ /area/maintenance/fpmaint2) "aNJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/structure/cable{ d1 = 4; @@ -19044,13 +18062,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/camera{ c_tag = "Fore Primary Hallway South"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -19058,11 +18074,8 @@ }, /area/hallway/primary/fore) "aNL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -19105,7 +18118,6 @@ "aNQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -19114,7 +18126,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19132,7 +18143,6 @@ }, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "courtroomshutters"; layer = 3.21; @@ -19144,8 +18154,7 @@ "aNT" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -19158,8 +18167,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/fsmaint) @@ -19193,14 +18201,12 @@ "aNX" = ( /obj/machinery/disposal, /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -19210,15 +18216,13 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -19230,7 +18234,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -19243,8 +18246,7 @@ /area/crew_quarters/arcade) "aOc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -19254,8 +18256,7 @@ "aOd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 + dir = 6 }, /obj/structure/cable{ d1 = 1; @@ -19297,8 +18298,7 @@ "aOh" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plating, /area/crew_quarters/dorms) @@ -19335,12 +18335,9 @@ name = "Atmos Blast Door"; opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/atmos) @@ -19398,8 +18395,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/wood, /area/crew_quarters/courtroom) @@ -19412,8 +18408,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) @@ -19494,7 +18489,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -19559,8 +18553,7 @@ req_access_txt = "63" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 4; @@ -19570,7 +18563,6 @@ }, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "courtroomshutters"; layer = 3.21; @@ -19597,8 +18589,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -19666,8 +18657,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -19703,12 +18693,10 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "barber" }, /area/civilian/barber) @@ -19727,8 +18715,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/carpet/arcade, /area/crew_quarters/arcade) @@ -19763,7 +18750,6 @@ "aPk" = ( /obj/structure/chair/stool, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -19773,7 +18759,6 @@ "aPn" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -19813,8 +18798,7 @@ "aPx" = ( /obj/machinery/alarm{ dir = 4; - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /turf/simulated/floor/wood, /area/crew_quarters/courtroom) @@ -19846,7 +18830,6 @@ dir = 8 }, /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -19876,9 +18859,6 @@ /area/crew_quarters/courtroom) "aPE" = ( /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = -28 }, /obj/machinery/light, @@ -19901,7 +18881,6 @@ }, /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel{ @@ -19923,17 +18902,13 @@ id_tag = "sol_pump" }, /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "sol_sensor"; pixel_x = 12; pixel_y = -25 }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "sol_airlock"; - pixel_x = 0; pixel_y = -25; - req_access_txt = "0"; tag_airpump = "sol_pump"; tag_chamber_sensor = "sol_sensor"; tag_exterior_door = "sol_outer"; @@ -19988,8 +18963,7 @@ /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + name = "HIGH VOLTAGE" }, /turf/simulated/wall, /area/maintenance/electrical) @@ -20033,7 +19007,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump Engineering"; - pixel_x = 0; pixel_y = 24; shock_proof = 1 }, @@ -20041,7 +19014,6 @@ /area/maintenance/electrical) "aPT" = ( /obj/machinery/alarm{ - frequency = 1439; pixel_y = 23 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -20124,7 +19096,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -20155,10 +19126,8 @@ /area/maintenance/fpmaint) "aQk" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -20190,9 +19159,6 @@ /area/crew_quarters/dorms) "aQn" = ( /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 28 }, /obj/structure/disposalpipe/junction{ @@ -20209,7 +19175,6 @@ name = "Civilian" }, /obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -20235,9 +19200,7 @@ /area/crew_quarters/dorms) "aQr" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/light{ @@ -20260,8 +19223,7 @@ /area/hallway/primary/starboard/west) "aQt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -20269,8 +19231,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -20283,8 +19244,7 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 + dir = 6 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -20385,22 +19345,18 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aQE" = ( /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; - pixel_x = 0; - pixel_y = 28; - req_access_txt = "0" + pixel_y = 28 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -20492,15 +19448,13 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, /area/maintenance/electrical) "aQS" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "bluecorner" @@ -20529,7 +19483,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/hologram/holopad, @@ -20545,12 +19498,10 @@ }, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/electrical) @@ -20573,9 +19524,7 @@ /obj/effect/landmark{ name = "JoinLateCryo" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull"; tag = "icon-whitebluefull" @@ -20583,16 +19532,13 @@ /area/crew_quarters/sleep) "aRa" = ( /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /obj/machinery/light{ dir = 1 }, /obj/machinery/camera{ - c_tag = "Arrivals Escape Pods"; - dir = 2 + c_tag = "Arrivals Escape Pods" }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -20603,18 +19549,15 @@ id_tag = "sol_outer"; locked = 1; name = "Arrivals External Access"; - req_access = null; - req_access_txt = "0" + req_access = null }, /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; - layer = 3.3; master_tag = "sol_airlock"; name = "exterior access button"; pixel_x = -13; - pixel_y = -23; - req_access_txt = "0" + pixel_y = -23 }, /turf/simulated/floor/plating, /area/hallway/secondary/entry) @@ -20625,8 +19568,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ @@ -20644,7 +19586,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = -32 }, /obj/effect/decal/warning_stripes/south, @@ -20652,8 +19593,7 @@ /area/hallway/secondary/entry) "aRf" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20713,8 +19653,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -20732,8 +19671,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -20747,8 +19685,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; @@ -20768,8 +19705,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -20789,8 +19725,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) @@ -20801,8 +19736,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -20820,16 +19754,14 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) @@ -20842,8 +19774,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -20879,8 +19810,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -20899,8 +19829,7 @@ "aRC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -20912,12 +19841,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -20928,10 +19855,8 @@ /area/hallway/primary/fore) "aRF" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -20943,7 +19868,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -20960,7 +19884,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -20970,7 +19893,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21012,7 +19934,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/carpet, @@ -21021,16 +19942,12 @@ /obj/structure/table, /obj/item/storage/box/cups, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/wood, /area/crew_quarters/courtroom) "aRN" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/structure/chair/comfy/brown{ @@ -21052,7 +19969,6 @@ /area/crew_quarters/courtroom) "aRQ" = ( /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -21090,8 +20006,7 @@ /area/shuttle/pod_2) "aRW" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -21123,15 +20038,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aSc" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -21169,8 +20082,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull"; @@ -21183,8 +20095,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -21218,7 +20129,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "caution" }, /area/crew_quarters/dorms) @@ -21323,7 +20233,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "caution" }, /area/crew_quarters/dorms) @@ -21401,8 +20310,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -21434,8 +20342,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -21453,7 +20360,6 @@ /area/crew_quarters/dorms) "aSM" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "caution" }, /area/crew_quarters/dorms) @@ -21463,24 +20369,15 @@ icon_state = "bluecorner" }, /area/hallway/primary/fore) -"aSO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/turf/simulated/floor/plasteel, -/area/crew_quarters/dorms) "aSP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/fsmaint) "aSQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "caution" }, /area/crew_quarters/dorms) @@ -21488,11 +20385,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -21500,8 +20395,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) @@ -21523,14 +20417,10 @@ /area/hallway/primary/starboard/east) "aSW" = ( /obj/structure/chair/comfy/beige, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, +/turf/simulated/floor/transparent/glass, /area/hallway/secondary/entry) "aSX" = ( -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, +/turf/simulated/floor/transparent/glass, /area/hallway/secondary/entry) "aSY" = ( /obj/structure/table/wood, @@ -21538,43 +20428,33 @@ pixel_x = 1; pixel_y = 5 }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, +/turf/simulated/floor/transparent/glass, /area/hallway/secondary/entry) "aSZ" = ( /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) "aTa" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/ne) "aTb" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) "aTc" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -21585,7 +20465,6 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -21619,9 +20498,7 @@ /turf/simulated/floor/plating, /area/maintenance/fpmaint) "aTi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "neutralcorner" @@ -21684,12 +20561,9 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -21705,7 +20579,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/airlock/maintenance{ @@ -21772,8 +20645,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -21810,9 +20682,7 @@ /obj/machinery/cryopod/right, /obj/machinery/camera{ c_tag = "Cryodorms"; - c_tag_order = 999; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -21920,8 +20790,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/medical{ name = "Coroner"; - req_access_txt = "5"; - req_one_access_txt = "0" + req_access_txt = "5" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -21938,8 +20807,7 @@ }, /obj/machinery/door/airlock/medical{ name = "Morgue"; - req_access_txt = "6"; - req_one_access_txt = "0" + req_access_txt = "6" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -21961,9 +20829,7 @@ /area/ai_monitored/storage/eva) "aTQ" = ( /obj/effect/decal/warning_stripes/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -22037,8 +20903,7 @@ "aTX" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6; - initialize_directions = 6; - level = 2 + initialize_directions = 6 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -22109,9 +20974,7 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/power/smes{ - charge = 0 - }, +/obj/machinery/power/smes, /turf/simulated/floor/plating, /area/maintenance/electrical) "aUh" = ( @@ -22134,7 +20997,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/wall, @@ -22144,9 +21006,7 @@ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/smes{ - charge = 0 - }, +/obj/machinery/power/smes, /turf/simulated/floor/plating, /area/maintenance/electrical) "aUk" = ( @@ -22183,13 +21043,11 @@ "aUp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) @@ -22248,7 +21106,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -22262,8 +21119,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -22300,8 +21156,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint2) @@ -22382,7 +21237,6 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -22392,8 +21246,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) @@ -22410,8 +21263,7 @@ in_use = 1 }, /obj/machinery/camera{ - c_tag = "Medbay Lobby West"; - network = list("SS13") + c_tag = "Medbay Lobby West" }, /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/floor/plasteel{ @@ -22427,8 +21279,7 @@ /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; pixel_x = -5; - pixel_y = 30; - req_access_txt = "0" + pixel_y = 30 }, /obj/structure/table, /obj/item/folder/white, @@ -22443,8 +21294,7 @@ "aUR" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/plating, @@ -22467,8 +21317,7 @@ /area/maintenance/fsmaint2) "aUV" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, @@ -22515,8 +21364,7 @@ "aVd" = ( /obj/machinery/camera{ c_tag = "Arrivals East"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22538,12 +21386,10 @@ /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; - layer = 3.3; master_tag = "sol_airlock"; name = "interior access button"; pixel_x = -25; - pixel_y = -25; - req_access_txt = "0" + pixel_y = -25 }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, @@ -22573,7 +21419,6 @@ "aVk" = ( /obj/structure/closet/secure_closet/freezer/money, /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -22585,7 +21430,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -22618,15 +21462,12 @@ /area/security/nuke_storage) "aVn" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/structure/table/reinforced, /obj/structure/closet/fireaxecabinet{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -22693,8 +21534,7 @@ /area/crew_quarters/dorms) "aVt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -22717,8 +21557,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) @@ -22727,16 +21566,13 @@ dir = 9 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/camera{ c_tag = "Dormitory East"; - dir = 8; - network = list("SS13") + dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -22764,8 +21600,6 @@ desc = "A remote control switch for the medbay foyer."; id = "imnotmakingyoulubepissoff"; name = "Chemistry Privacy Shutter Control"; - normaldoorcontrol = 0; - pixel_x = 0; pixel_y = 26 }, /turf/simulated/floor/plasteel{ @@ -22775,8 +21609,7 @@ /area/medical/chemistry) "aVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -22822,8 +21655,7 @@ /area/crew_quarters/toilet) "aVD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -22841,8 +21673,7 @@ /area/maintenance/fpmaint) "aVE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -22869,8 +21700,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/structure/cable{ d1 = 4; @@ -22880,8 +21710,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) @@ -22891,7 +21720,6 @@ /area/crew_quarters/bar) "aVH" = ( /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -22900,8 +21728,7 @@ icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -22948,8 +21775,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/structure/cable{ d1 = 4; @@ -22959,8 +21785,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/cable{ d1 = 2; @@ -23065,7 +21890,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -23083,7 +21907,6 @@ dir = 1 }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -23101,14 +21924,12 @@ id_tag = "sol_inner"; locked = 1; name = "Arrivals External Access"; - req_access = null; - req_access_txt = "0" + req_access = null }, /turf/simulated/floor/plating, /area/hallway/secondary/entry) "aWf" = ( /obj/structure/reagent_dispensers/peppertank{ - pixel_x = 0; pixel_y = 30 }, /obj/machinery/computer/security{ @@ -23148,7 +21969,6 @@ "aWi" = ( /obj/structure/table, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/item/wirecutters, @@ -23209,8 +22029,6 @@ "aWo" = ( /obj/structure/table, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /obj/item/assembly/signaler, @@ -23225,7 +22043,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -23247,7 +22064,6 @@ /obj/structure/table, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/item/storage/toolbox/mechanical, @@ -23296,25 +22112,6 @@ icon_state = "vault" }, /area/security/nuke_storage) -"aWy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fsmaint2) "aWz" = ( /obj/machinery/cryopod/right, /obj/machinery/light{ @@ -23341,8 +22138,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -23448,7 +22244,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -23462,8 +22257,7 @@ in_use = 1 }, /obj/machinery/camera{ - c_tag = "Medbay Chemistry North"; - network = list("SS13") + c_tag = "Medbay Chemistry North" }, /obj/structure/extinguisher_cabinet{ pixel_x = -5; @@ -23492,7 +22286,6 @@ /obj/machinery/chem_master, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, @@ -23510,7 +22303,6 @@ /obj/item/reagent_containers/dropper/precision, /obj/effect/decal/warning_stripes/northwest, /obj/structure/reagent_dispensers/fueltank/chem{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, @@ -23588,27 +22380,23 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "aXb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "aXc" = ( /obj/machinery/crema_switch{ - pixel_x = 0; pixel_y = -25 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23618,7 +22406,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -23635,7 +22422,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -23645,7 +22431,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -23661,14 +22446,12 @@ pixel_y = -24 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -23681,14 +22464,12 @@ pixel_x = 25 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkblue" }, /area/chapel/main) "aXi" = ( /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -23697,14 +22478,12 @@ /obj/structure/morgue, /obj/machinery/camera{ c_tag = "Chapel Crematorium"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/effect/landmark{ name = "revenantspawn" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -23714,7 +22493,6 @@ pixel_y = 25 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -23740,7 +22518,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -23815,9 +22592,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -23884,8 +22659,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/hallway/secondary/construction{ @@ -23901,8 +22675,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, @@ -23913,8 +22686,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/storage/primary) @@ -23922,12 +22694,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/door/airlock{ - name = "Garden"; - req_access_txt = "0" + name = "Garden" }, /turf/simulated/floor/plating, /area/hallway/secondary/construction{ @@ -23950,8 +22720,7 @@ "aXO" = ( /obj/machinery/camera{ c_tag = "Vault"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/structure/closet/crate{ name = "Gold Crate" @@ -23968,8 +22737,6 @@ pixel_y = -2 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = -28 }, /obj/item/storage/belt/champion, @@ -24034,7 +22801,6 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -24047,7 +22813,6 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -24106,8 +22871,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -24187,12 +22951,10 @@ /obj/item/scalpel, /obj/item/autopsy_scanner, /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -24238,9 +23000,7 @@ }, /area/security/armoury) "aYn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/storage/office) "aYo" = ( @@ -24248,12 +23008,10 @@ department = "Morgue"; departmentType = 5; name = "Morgue Requests Console"; - pixel_x = 0; pixel_y = 30 }, /obj/machinery/camera{ - c_tag = "Medbay Coroner"; - network = list("SS13") + c_tag = "Medbay Coroner" }, /obj/machinery/light{ dir = 1; @@ -24321,16 +23079,12 @@ /obj/item/pen/multi, /obj/item/paper_bin/nanotrasen, /obj/item/paper/tcommskey, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "aYu" = ( /obj/effect/decal/warning_stripes/west, /obj/machinery/door/window/southleft{ - name = "EVA Equipment"; - req_access_txt = "0" + name = "EVA Equipment" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -24340,8 +23094,7 @@ "aYv" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 4; @@ -24358,8 +23111,7 @@ "aYw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -24380,7 +23132,6 @@ name = "revenantspawn" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -24388,8 +23139,7 @@ "aYy" = ( /obj/effect/decal/warning_stripes/east, /obj/machinery/door/window/southright{ - name = "EVA Equipment"; - req_access_txt = "0" + name = "EVA Equipment" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -24398,9 +23148,7 @@ /area/ai_monitored/storage/eva) "aYz" = ( /obj/machinery/camera{ - c_tag = "Chapel North"; - dir = 2; - network = list("SS13") + c_tag = "Chapel North" }, /turf/simulated/floor/plasteel{ dir = 5; @@ -24452,13 +23200,10 @@ /area/chapel/main) "aYI" = ( /obj/machinery/computer/cryopod{ - density = 0; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/structure/cable{ d1 = 1; @@ -24514,7 +23259,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plating, @@ -24534,15 +23278,13 @@ /area/escapepodbay) "aYT" = ( /obj/structure/shuttle/engine/propulsion{ - dir = 4; - icon_state = "propulsion" + dir = 4 }, /turf/simulated/floor/plating/airless, /area/shuttle/arrival/station) "aYV" = ( /obj/structure/shuttle/engine/heater{ - dir = 4; - icon_state = "heater" + dir = 4 }, /obj/structure/window/reinforced{ dir = 8 @@ -24554,7 +23296,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -24567,7 +23308,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -24619,7 +23359,6 @@ "aZb" = ( /obj/item/radio, /obj/item/radio/intercom/department/security{ - pixel_x = 0; pixel_y = -28 }, /obj/machinery/hologram/holopad, @@ -24631,7 +23370,6 @@ "aZc" = ( /obj/structure/cable, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -24644,7 +23382,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/disposalpipe/segment, @@ -24655,8 +23392,7 @@ "aZe" = ( /obj/structure/table, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/item/stack/cable_coil{ pixel_x = 2; @@ -24684,7 +23420,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -24738,7 +23473,6 @@ "aZm" = ( /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkblue" }, /area/chapel/main) @@ -24866,10 +23600,7 @@ /area/crew_quarters/dorms) "aZB" = ( /obj/machinery/computer/card/minor/ce, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "aZC" = ( /obj/effect/decal/warning_stripes/white/hollow, @@ -24898,11 +23629,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkbluecorners" }, /area/chapel/main) @@ -24925,7 +23654,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -24952,7 +23680,6 @@ /obj/item/toy/crayon/mime, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -24964,7 +23691,6 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -24997,8 +23723,7 @@ /obj/effect/spawner/window/reinforced, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/floor/plating, /area/hallway/secondary/entry) @@ -25026,8 +23751,7 @@ /area/medical/morgue) "aZU" = ( /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /obj/structure/filingcabinet/chestdrawer/autopsy, /turf/simulated/floor/plasteel{ @@ -25067,7 +23791,6 @@ }, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -25086,7 +23809,6 @@ "bab" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/camera{ @@ -25122,7 +23844,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25164,8 +23885,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -25191,9 +23911,7 @@ }, /area/gateway) "ban" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "darkblue" @@ -25201,9 +23919,7 @@ /area/gateway) "bao" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/structure/table/wood, @@ -25233,8 +23949,7 @@ /obj/effect/decal/warning_stripes/northeastcorner, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -25245,8 +23960,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -25258,8 +23972,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -25282,12 +23995,10 @@ /obj/effect/decal/warning_stripes/north, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -25341,15 +24052,13 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - level = 1 + dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -25392,15 +24101,12 @@ /area/escapepodbay) "baH" = ( /obj/machinery/camera{ - c_tag = "Departure Lounge Podbay"; - dir = 2; - network = list("SS13") + c_tag = "Departure Lounge Podbay" }, /obj/machinery/door_control{ desc = "A remote control-switch for the pod doors."; id = "escapepodbay"; name = "Pod Door Control"; - pixel_x = 0; pixel_y = 24; req_access_txt = "13" }, @@ -25562,8 +24268,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -25575,7 +24280,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/junction{ @@ -25639,8 +24343,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -25669,9 +24372,7 @@ "bbi" = ( /obj/machinery/vending/cola, /obj/machinery/camera{ - c_tag = "Dormitories North-West"; - dir = 2; - network = list("SS13") + c_tag = "Dormitories North-West" }, /turf/simulated/floor/plasteel{ dir = 4; @@ -25703,7 +24404,7 @@ /obj/effect/landmark/start{ name = "Civilian" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass/plasma, /area/storage/primary) "bbn" = ( /obj/structure/window/reinforced, @@ -25745,12 +24446,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, /obj/structure/cable{ @@ -25761,8 +24460,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -25794,14 +24492,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) "bby" = ( /obj/machinery/camera{ - c_tag = "Medbay Morgue"; - network = list("SS13") + c_tag = "Medbay Morgue" }, /obj/machinery/light/small{ dir = 1 @@ -25819,7 +24515,6 @@ }, /obj/structure/disposalpipe/sortjunction{ dir = 4; - icon_state = "pipe-j1s"; name = "Kitchen"; sortType = 20; tag = "icon-pipe-j1s (EAST)" @@ -25840,7 +24535,6 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -25848,12 +24542,10 @@ "bbB" = ( /obj/structure/closet/secure_closet/mime, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -25894,7 +24586,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -25966,9 +24657,7 @@ "bbL" = ( /obj/effect/decal/warning_stripes/blue/hollow, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/suit_storage_unit/standard_unit, @@ -26007,7 +24696,6 @@ "bbQ" = ( /obj/effect/decal/warning_stripes/blue/hollow, /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = 32 }, /obj/machinery/suit_storage_unit/standard_unit, @@ -26019,8 +24707,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26066,7 +24753,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -26082,8 +24768,7 @@ "bbX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -26151,10 +24836,7 @@ /area/maintenance/fsmaint2) "bcc" = ( /obj/structure/window/reinforced, -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/machinery/vending/cigarette, /turf/simulated/floor/wood, /area/crew_quarters/dorms) "bcd" = ( @@ -26199,9 +24881,7 @@ "bch" = ( /obj/structure/chair/office/dark, /obj/machinery/camera{ - c_tag = "Library North"; - dir = 2; - network = list("SS13") + c_tag = "Library North" }, /turf/simulated/floor/wood, /area/library) @@ -26276,9 +24956,7 @@ pixel_x = -24 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -26310,13 +24988,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) @@ -26334,8 +25010,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -26353,9 +25028,7 @@ pixel_y = 25 }, /obj/machinery/camera{ - c_tag = "Chapel Chaplain's Office"; - dir = 2; - network = list("SS13") + c_tag = "Chapel Chaplain's Office" }, /obj/structure/table/wood, /obj/item/lighter/zippo/black, @@ -26387,7 +25060,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/disposalpipe/segment, @@ -26440,7 +25112,6 @@ }, /obj/machinery/ai_status_display{ pixel_x = -32; - pixel_y = 0; step_size = 0 }, /turf/simulated/floor/plasteel{ @@ -26450,8 +25121,7 @@ /area/chapel/main) "bcG" = ( /obj/machinery/camera{ - c_tag = "Arrivals Lounge"; - dir = 2 + c_tag = "Arrivals Lounge" }, /obj/machinery/light{ dir = 1 @@ -26481,14 +25151,9 @@ /area/shuttle/arrival/station) "bcO" = ( /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = 28 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet/black, /area/chapel/office) "bcP" = ( @@ -26505,14 +25170,11 @@ /obj/item/storage/bag/plants/portaseeder, /obj/item/plant_analyzer, /obj/machinery/light_switch{ - dir = 2; name = "light switch "; pixel_x = -6; pixel_y = -25 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel{ @@ -26539,13 +25201,11 @@ }, /obj/machinery/door/window/northleft{ dir = 8; - icon_state = "left"; name = "Kitchen Desk"; req_access_txt = "28" }, /obj/effect/decal/warning_stripes/yellow, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -26578,7 +25238,6 @@ "bcW" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/structure/cable{ @@ -26702,8 +25361,7 @@ opacity = 0 }, /obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/door/firedoor, /obj/effect/decal/warning_stripes/yellow, @@ -26731,11 +25389,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -26787,12 +25443,10 @@ }, /obj/machinery/camera{ c_tag = "Mime's Office"; - dir = 1; - network = list("SS13") + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -26801,12 +25455,10 @@ /obj/structure/statue/tranquillite/mime, /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, @@ -26836,7 +25488,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -26851,8 +25502,7 @@ /obj/item/reagent_containers/glass/bottle/nutrient/ez, /obj/item/reagent_containers/glass/bottle/nutrient/rh, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -26864,8 +25514,7 @@ "bdy" = ( /obj/effect/decal/warning_stripes/blue/hollow, /obj/structure/sign/poster/official/random{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/light{ dir = 8 @@ -26895,12 +25544,10 @@ "bdB" = ( /obj/effect/decal/warning_stripes/blue/hollow, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/sign/poster/official/random{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/plasteel{ @@ -26911,8 +25558,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26924,7 +25570,6 @@ "bdE" = ( /obj/machinery/light/small{ dir = 4; - icon_state = "bulb1"; tag = "icon-bulb1 (EAST)" }, /obj/structure/rack, @@ -26940,8 +25585,7 @@ dir = 8 }, /obj/structure/sign/poster/official/random{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -26972,8 +25616,7 @@ name = "Dormitories" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -26985,8 +25628,6 @@ dir = 1 }, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /obj/structure/closet/chefcloset, @@ -26999,20 +25640,15 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel, /area/storage/primary) "bdL" = ( /obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; name = "Kitchen Delivery"; req_access_txt = "28" }, @@ -27023,8 +25659,7 @@ /area/crew_quarters/kitchen) "bdM" = ( /obj/machinery/camera{ - c_tag = "Kitchen Freezer"; - network = list("SS13") + c_tag = "Kitchen Freezer" }, /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo"; @@ -27037,19 +25672,6 @@ icon_state = "showroomfloor" }, /area/crew_quarters/kitchen) -"bdN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "neutralcorner" - }, -/area/crew_quarters/dorms) "bdO" = ( /obj/structure/cable{ d1 = 4; @@ -27073,8 +25695,7 @@ opacity = 0 }, /obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/door/firedoor, /obj/effect/decal/warning_stripes/yellow, @@ -27082,8 +25703,7 @@ /area/bridge) "bdQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27095,7 +25715,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -27120,7 +25739,6 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -27129,8 +25747,7 @@ /area/crew_quarters/kitchen) "bdU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ @@ -27147,8 +25764,7 @@ pixel_y = 24 }, /obj/machinery/camera{ - c_tag = "Hydroponics Storage"; - network = list("SS13") + c_tag = "Hydroponics Storage" }, /obj/structure/closet/crate/hydroponics/prespawned, /turf/simulated/floor/plasteel{ @@ -27166,7 +25782,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -27225,8 +25840,7 @@ /area/ai_monitored/storage/eva) "bea" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/structure/cable{ d1 = 4; @@ -27240,8 +25854,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/cable{ d1 = 2; @@ -27259,8 +25872,7 @@ /area/hydroponics) "bec" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27301,7 +25913,6 @@ icon_state = "1-8" }, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -27312,8 +25923,7 @@ /area/ai_monitored/storage/eva) "bef" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27385,7 +25995,6 @@ "beq" = ( /obj/machinery/ai_status_display{ pixel_x = -32; - pixel_y = 0; step_size = 0 }, /turf/simulated/floor/plasteel{ @@ -27401,7 +26010,6 @@ /area/chapel/office) "bes" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/mineral/titanium/blue, @@ -27432,8 +26040,7 @@ req_access_txt = "12" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -27475,8 +26082,7 @@ dir = 4 }, /obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -27614,8 +26220,7 @@ /area/hallway/primary/port) "beT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27639,13 +26244,11 @@ /area/storage/primary) "beV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -27657,8 +26260,7 @@ /area/crew_quarters/dorms) "beW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27667,7 +26269,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -27675,7 +26276,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ name = "E.V.A."; - req_access_txt = "0"; req_one_access_txt = "18" }, /turf/simulated/floor/plasteel{ @@ -27684,8 +26284,7 @@ /area/ai_monitored/storage/eva) "beY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27697,7 +26296,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -27710,7 +26308,6 @@ tag = "icon-pipe-j2 (EAST)" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -27722,15 +26319,13 @@ }, /turf/simulated/floor/plasteel{ dir = 4; - icon_plating = "plating"; icon_regular_floor = "yellowsiding"; icon_state = "tranquillite" }, /area/mimeoffice) "bfb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27739,12 +26334,10 @@ dir = 4 }, /obj/machinery/poolcontroller{ - pixel_x = 0; pixel_y = -25; srange = 7 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -27754,14 +26347,12 @@ /area/hallway/primary/port) "bfd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -27770,7 +26361,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -27805,35 +26395,28 @@ /area/ai_monitored/storage/eva) "bfi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = -28 }, /obj/machinery/camera{ c_tag = "Dormitory Center"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) "bfj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27846,7 +26429,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -27855,7 +26437,6 @@ department = "Bar"; departmentType = 2; name = "Bar Requests Console"; - pixel_x = 0; pixel_y = 30 }, /obj/structure/table/reinforced, @@ -27896,15 +26477,13 @@ /area/maintenance/fsmaint2) "bfo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, /turf/simulated/floor/plasteel, @@ -27921,34 +26500,29 @@ /area/crew_quarters/dorms) "bfq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = -32 }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) "bfr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/cable{ d1 = 2; @@ -27960,7 +26534,6 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -27993,8 +26566,7 @@ /area/turret_protected/aisat_interior) "bfv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -28009,7 +26581,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -28031,26 +26602,22 @@ /area/maintenance/fsmaint2) "bfx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) "bfy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -28060,14 +26627,12 @@ pixel_y = -32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) "bfz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -28077,7 +26642,6 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -28120,7 +26684,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -28138,7 +26701,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/closet/secure_closet/hydroponics, @@ -28152,7 +26714,6 @@ "bfG" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; - icon_state = "pipe-j1s"; name = "Botany"; sortType = 21; tag = "icon-pipe-j1s (EAST)" @@ -28225,7 +26786,6 @@ pixel_y = 5 }, /obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 0; pixel_y = 3 }, /obj/item/watertank, @@ -28313,8 +26873,7 @@ /area/chapel/main) "bfT" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/wood, /area/library) @@ -28351,8 +26910,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "grimy" @@ -28416,8 +26974,7 @@ /area/chapel/office) "bgh" = ( /obj/machinery/camera{ - c_tag = "Port Hallway 2"; - dir = 2 + c_tag = "Port Hallway 2" }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel, @@ -28434,7 +26991,7 @@ /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/chips, /obj/item/reagent_containers/food/drinks/cans/cola, -/turf/simulated/floor/carpet, +/turf/simulated/floor/transparent/glass, /area/hallway/secondary/entry) "bgk" = ( /obj/machinery/door/firedoor, @@ -28471,13 +27028,11 @@ }, /obj/structure/sign/directions/evac{ dir = 4; - icon_state = "direction_evac"; pixel_y = 24; tag = "icon-direction_evac (EAST)" }, /obj/structure/sign/directions/medical{ dir = 4; - icon_state = "direction_med"; pixel_y = 32; tag = "icon-direction_med (EAST)" }, @@ -28487,7 +27042,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -28498,9 +27052,7 @@ /area/hallway/primary/port) "bgr" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, @@ -28509,13 +27061,10 @@ /obj/item/twohanded/required/kirbyplants, /obj/machinery/camera{ c_tag = "Office Supplies"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -28525,9 +27074,7 @@ "bgt" = ( /obj/structure/table/wood, /obj/item/deck/cards, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, +/turf/simulated/floor/transparent/glass, /area/hallway/secondary/entry) "bgu" = ( /obj/structure/cable{ @@ -28549,7 +27096,6 @@ "bgw" = ( /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/structure/cable{ @@ -28589,9 +27135,7 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/port) "bgB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) "bgC" = ( @@ -28626,12 +27170,10 @@ /area/hallway/secondary/entry) "bgH" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; pixel_x = -28 }, /obj/effect/decal/warning_stripes/west, @@ -28650,7 +27192,6 @@ dir = 1 }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -28664,8 +27205,7 @@ }, /obj/machinery/camera{ c_tag = "Gateway"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/light{ dir = 8 @@ -28718,14 +27258,12 @@ "bgO" = ( /obj/machinery/door/airlock/maintenance{ name = "E.V.A. Maintenance"; - req_access_txt = "0"; req_one_access_txt = "18" }, /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28757,8 +27295,7 @@ }, /obj/machinery/camera{ c_tag = "Chapel Funeral Processing East"; - dir = 8; - network = list("SS13") + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -28773,18 +27310,13 @@ /area/crew_quarters/mrchangs) "bgU" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/north) "bgV" = ( /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/machinery/door/firedoor, @@ -28825,8 +27357,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -28837,7 +27368,6 @@ "bgZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -28867,14 +27397,12 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) "bhf" = ( /obj/machinery/vending/cola, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -28894,8 +27422,7 @@ /obj/structure/statue/bananium/clown, /obj/machinery/camera{ c_tag = "Clown's Office"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/wood, /area/clownoffice) @@ -28925,9 +27452,6 @@ /obj/structure/table, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) -"bhm" = ( -/turf/simulated/floor/carpet, -/area/hallway/secondary/entry) "bhn" = ( /obj/item/stack/sheet/metal{ amount = 10 @@ -28975,8 +27499,7 @@ }, /obj/machinery/camera{ c_tag = "Dormitories Toilets"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -29019,9 +27542,7 @@ /obj/structure/chair/comfy/beige{ dir = 8 }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, +/turf/simulated/floor/transparent/glass, /area/hallway/secondary/entry) "bhw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -29035,8 +27556,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, @@ -29062,7 +27582,6 @@ }, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -29088,8 +27607,7 @@ "bhD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -29105,7 +27623,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/hallway/secondary/entry) @@ -29117,8 +27634,7 @@ }, /obj/item/vending_refill/cola, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -29140,10 +27656,8 @@ pixel_y = 4 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -29152,8 +27666,7 @@ /area/gateway) "bhI" = ( /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel{ @@ -29165,8 +27678,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel{ @@ -29184,8 +27696,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -29241,8 +27752,7 @@ }, /obj/item/radio, /obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -29276,7 +27786,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -29318,8 +27827,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -29346,9 +27854,7 @@ dir = 1 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -29380,12 +27886,9 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" }, @@ -29395,7 +27898,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/closet/secure_closet/hydroponics, @@ -29409,7 +27911,6 @@ "bih" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/light{ @@ -29419,10 +27920,7 @@ /turf/simulated/floor/wood, /area/library) "bii" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/machinery/vending/cigarette, /turf/simulated/floor/plating, /area/maintenance/fsmaint2) "bij" = ( @@ -29438,8 +27936,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -29467,8 +27964,7 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -29500,8 +27996,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ name = "Chapel Office Maintenance"; @@ -29547,7 +28042,6 @@ /area/hallway/secondary/entry) "biw" = ( /obj/machinery/newscaster{ - pixel_x = 0; pixel_y = -30 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -29600,7 +28094,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -29634,8 +28127,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -29659,8 +28151,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -29699,8 +28190,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -29746,12 +28236,10 @@ pixel_y = 4 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/effect/decal/warning_stripes/white/hollow, /obj/item/storage/toolbox/mechanical{ @@ -29765,8 +28253,7 @@ "biO" = ( /turf/simulated/floor/plasteel{ desc = ""; - icon_state = "L13"; - name = "floor" + icon_state = "L13" }, /area/hallway/primary/central/north) "biP" = ( @@ -29778,9 +28265,7 @@ "biQ" = ( /obj/structure/statue/chickenstatue, /obj/machinery/camera{ - c_tag = "Mr. Chang's"; - dir = 2; - network = list("SS13") + c_tag = "Mr. Chang's" }, /turf/simulated/floor/carpet, /area/crew_quarters/mrchangs) @@ -29791,9 +28276,7 @@ /turf/simulated/floor/carpet, /area/crew_quarters/mrchangs) "biS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -29811,7 +28294,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -29841,8 +28323,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -29868,8 +28349,7 @@ "biX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" + name = "Unisex Restrooms" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -29892,8 +28372,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -29901,22 +28380,19 @@ /area/crew_quarters/kitchen) "biZ" = ( /obj/machinery/camera{ - c_tag = "Bar Storage"; - network = list("SS13") + c_tag = "Bar Storage" }, /obj/structure/table/wood, /obj/machinery/reagentgrinder, /obj/item/reagent_containers/dropper, /obj/structure/sign/poster/contraband/random{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bja" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -29934,17 +28410,13 @@ id_tag = "ai_pump" }, /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "ai_sensor"; pixel_x = 12; pixel_y = 25 }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "ai_airlock"; - pixel_x = 0; pixel_y = 25; - req_access_txt = "0"; tag_airpump = "ai_pump"; tag_chamber_sensor = "ai_sensor"; tag_exterior_door = "ai_outer"; @@ -29964,7 +28436,6 @@ "bjd" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -30015,8 +28486,6 @@ /area/atmos) "bjj" = ( /obj/structure/closet/gmcloset{ - icon_closed = "black"; - icon_state = "black"; name = "formal wardrobe" }, /obj/machinery/light/small{ @@ -30064,7 +28533,6 @@ /area/maintenance/fsmaint2) "bjp" = ( /obj/machinery/door/morgue{ - dir = 2; name = "Confession Booth (Chaplain)"; req_access_txt = "22" }, @@ -30118,9 +28586,7 @@ }, /area/hydroponics) "bju" = ( -/obj/machinery/bookbinder{ - pixel_y = 0 - }, +/obj/machinery/bookbinder, /turf/simulated/floor/wood, /area/library) "bjv" = ( @@ -30155,9 +28621,7 @@ in_use = 1 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -30230,7 +28694,7 @@ /area/hydroponics) "bjO" = ( /obj/structure/table/wood, -/turf/simulated/floor/carpet, +/turf/simulated/floor/transparent/glass, /area/hallway/secondary/entry) "bjP" = ( /obj/structure/disposalpipe/segment{ @@ -30242,8 +28706,7 @@ "bjQ" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/wall/r_wall, /area/hallway/secondary/entry) @@ -30264,8 +28727,7 @@ "bjU" = ( /obj/machinery/camera{ c_tag = "Arrivals Center"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/structure/extinguisher_cabinet{ pixel_x = -24 @@ -30351,7 +28813,6 @@ dir = 1 }, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /obj/structure/disposalpipe/segment{ @@ -30368,9 +28829,7 @@ pixel_x = 4; pixel_y = 2 }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, +/turf/simulated/floor/transparent/glass, /area/hallway/secondary/entry) "bkd" = ( /obj/machinery/vending/cola, @@ -30402,7 +28861,6 @@ }, /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel, @@ -30438,8 +28896,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel{ icon_state = "hydrofloor" @@ -30469,7 +28926,6 @@ /area/hallway/primary/port) "bkm" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel, @@ -30489,7 +28945,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -30498,8 +28953,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/wood, /area/library) @@ -30509,7 +28963,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -30530,7 +28983,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -30547,7 +28999,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -30557,7 +29008,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -30570,7 +29020,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -30594,7 +29043,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/sign/securearea{ @@ -30613,7 +29061,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -30626,7 +29073,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -30641,7 +29087,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -30654,7 +29099,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -30688,7 +29132,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -30701,7 +29144,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -30714,7 +29156,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -30741,8 +29182,7 @@ /area/space/nearstation) "bkJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" + dir = 9 }, /obj/machinery/access_button{ command = "cycle_interior"; @@ -30750,8 +29190,7 @@ master_tag = "ai_airlock"; name = "interior access button"; pixel_x = -25; - pixel_y = 25; - req_access_txt = "0" + pixel_y = 25 }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) @@ -30837,7 +29276,6 @@ "bkU" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/seed_extractor, @@ -30847,8 +29285,7 @@ /area/hydroponics) "bkV" = ( /obj/machinery/camera{ - c_tag = "Hydroponics North"; - network = list("SS13") + c_tag = "Hydroponics North" }, /obj/machinery/vending/hydroseeds, /turf/simulated/floor/plasteel{ @@ -30880,7 +29317,6 @@ name = "Forbidden Knowledge" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -30901,13 +29337,11 @@ /obj/item/pen/invisible, /obj/machinery/camera{ c_tag = "Library Study"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/item/stack/tape_roll, /obj/item/pen/multi, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -30961,8 +29395,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -30981,13 +29414,11 @@ "blh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -31016,12 +29447,9 @@ "blm" = ( /obj/machinery/camera{ c_tag = "Chapel South"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel{ @@ -31054,12 +29482,10 @@ /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ dir = 4; - icon_state = "twindow"; tag = "" }, /obj/structure/window/reinforced/tinted{ dir = 8; - icon_state = "twindow"; tag = "" }, /turf/simulated/floor/plasteel{ @@ -31091,10 +29517,7 @@ }, /area/hallway/secondary/entry) "blt" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/machinery/vending/cigarette, /turf/simulated/floor/carpet, /area/crew_quarters/bar) "blw" = ( @@ -31102,8 +29525,6 @@ dir = 4 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = -28 }, /turf/simulated/floor/plasteel{ @@ -31138,7 +29559,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = 32 }, /obj/effect/decal/warning_stripes/north, @@ -31147,7 +29567,6 @@ "blE" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/effect/decal/warning_stripes/north, @@ -31165,8 +29584,7 @@ /area/hallway/primary/port) "blG" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" + dir = 5 }, /obj/structure/cable{ d1 = 4; @@ -31217,8 +29635,7 @@ /area/hallway/primary/port) "blL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" + dir = 9 }, /obj/structure/cable{ d1 = 2; @@ -31283,8 +29700,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -31335,18 +29751,16 @@ }, /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/machinery/status_display{ - density = 0; layer = 4 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -31386,8 +29800,8 @@ }, /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/structure/cable{ d1 = 2; @@ -31425,8 +29839,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -31435,7 +29848,6 @@ /area/hallway/primary/port) "bmg" = ( /obj/machinery/door/morgue{ - dir = 2; name = "Confession Booth" }, /turf/simulated/floor/plasteel{ @@ -31448,11 +29860,9 @@ dir = 4 }, /obj/machinery/light_switch{ - pixel_x = 0; pixel_y = 25 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -31476,12 +29886,10 @@ dir = 1 }, /obj/machinery/door/window{ - dir = 4; name = "Kitchen"; req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -31499,12 +29907,10 @@ "bml" = ( /obj/machinery/door/airlock/maintenance{ name = "E.V.A. Maintenance"; - req_access_txt = "0"; req_one_access_txt = "18" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31526,9 +29932,7 @@ /obj/structure/chair/comfy/beige{ dir = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "grimy" - }, +/turf/simulated/floor/transparent/glass, /area/hallway/secondary/entry) "bmp" = ( /obj/structure/chair/stool, @@ -31567,19 +29971,16 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bmu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/fpmaint) @@ -31604,8 +30005,7 @@ /area/hallway/primary/port) "bmw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31672,15 +30072,13 @@ }, /obj/machinery/camera{ c_tag = "Library East"; - dir = 8; - network = list("SS13") + dir = 8 }, /turf/simulated/floor/wood, /area/library) "bmE" = ( /obj/machinery/light/small, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -31691,7 +30089,6 @@ pixel_y = -25 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -31704,7 +30101,6 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -31724,8 +30120,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -31743,7 +30138,6 @@ }, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/plasteel{ @@ -31761,8 +30155,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -31779,8 +30172,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -31797,7 +30189,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -31836,7 +30227,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -31863,8 +30253,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31909,8 +30298,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "L2" @@ -31925,7 +30313,6 @@ /area/hallway/primary/central/north) "bng" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /obj/machinery/hologram/holopad, @@ -31993,8 +30380,7 @@ /area/hallway/primary/central/north) "bnl" = ( /obj/machinery/camera{ - c_tag = "Bar East"; - network = list("SS13") + c_tag = "Bar East" }, /obj/machinery/newscaster{ pixel_y = 32 @@ -32027,22 +30413,6 @@ }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/ne) -"bnp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/hallway/primary/central/ne) "bnq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -32055,7 +30425,6 @@ /area/maintenance/port) "bnr" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/machinery/hologram/holopad, @@ -32118,7 +30487,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -32149,8 +30517,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/carpet, /area/civilian/pet_store) @@ -32276,17 +30643,11 @@ /area/bridge) "bnX" = ( /obj/machinery/computer/communications, -/turf/simulated/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/bridge) "bnY" = ( /obj/machinery/computer/shuttle/labor, -/turf/simulated/floor/plasteel{ - dir = 10; - icon_state = "blue" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/bridge) "bnZ" = ( /obj/structure/closet/emcloset, @@ -32301,10 +30662,7 @@ /area/hallway/secondary/exit) "boa" = ( /obj/machinery/computer/shuttle/mining, -/turf/simulated/floor/plasteel{ - dir = 6; - icon_state = "blue" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/bridge) "bob" = ( /obj/machinery/alarm{ @@ -32330,20 +30688,16 @@ /area/hallway/primary/central/ne) "boe" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/ne) "bof" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -32366,7 +30720,6 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -32388,7 +30741,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -32396,12 +30748,10 @@ "boj" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/kitchen_machine/grill, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria" }, /area/crew_quarters/kitchen) @@ -32430,17 +30780,13 @@ /area/crew_quarters/bar) "bon" = ( /obj/machinery/camera{ - c_tag = "Kitchen"; - network = list("SS13") + c_tag = "Kitchen" }, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /obj/machinery/kitchen_machine/candy_maker, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -32452,7 +30798,6 @@ pixel_y = 6 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -32472,7 +30817,6 @@ "boq" = ( /obj/machinery/cooker/deepfryer, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -32503,12 +30847,10 @@ /area/ai_monitored/storage/eva) "bos" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/machinery/kitchen_machine/oven, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -32526,7 +30868,6 @@ /obj/item/reagent_containers/glass/bucket, /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -32559,12 +30900,10 @@ /area/quartermaster/office) "boy" = ( /obj/machinery/door/morgue{ - dir = 2; name = "Private Study"; req_access_txt = "37" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -32574,7 +30913,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -32596,9 +30934,7 @@ dir = 4 }, /obj/machinery/camera{ - c_tag = "Departure Lounge Security"; - dir = 2; - network = list("SS13") + c_tag = "Departure Lounge Security" }, /turf/simulated/floor/plasteel{ dir = 4; @@ -32633,9 +30969,6 @@ /area/library) "boH" = ( /obj/machinery/door/window{ - base_state = "left"; - dir = 4; - icon_state = "left"; name = "Bar Door"; req_access_txt = "25" }, @@ -32663,7 +30996,6 @@ /area/chapel/main) "boL" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "arrival" }, /area/hallway/secondary/entry) @@ -32671,13 +31003,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) @@ -32702,7 +31032,6 @@ "boP" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "arrival" }, /area/hallway/secondary/entry) @@ -32741,7 +31070,6 @@ /area/crew_quarters/kitchen) "boT" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = -24 }, /turf/simulated/floor/plasteel, @@ -32761,8 +31089,7 @@ "boW" = ( /obj/machinery/camera{ c_tag = "Arrivals Hallway"; - dir = 8; - network = list("SS13") + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -32799,7 +31126,6 @@ /obj/structure/closet/wardrobe/mixed, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; pixel_x = -28 }, /turf/simulated/floor/plasteel, @@ -32807,7 +31133,6 @@ "bpb" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/structure/table, @@ -32849,7 +31174,6 @@ }, /obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, /turf/simulated/floor/plasteel, @@ -32878,7 +31202,6 @@ }, /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel, @@ -32907,12 +31230,10 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 2 + c_tag = "Auxiliary Tool Storage" }, /obj/structure/cable{ d2 = 4; @@ -32929,7 +31250,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -32945,9 +31265,7 @@ "bpn" = ( /obj/structure/table, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/item/stack/sheet/glass{ @@ -32971,7 +31289,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -33011,17 +31328,13 @@ /obj/item/book/manual/sop_command, /obj/item/aicard, /obj/item/multitool, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "blue" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/bridge) "bpv" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -33059,17 +31372,13 @@ pixel_x = -6; pixel_y = 8 }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "blue" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/bridge) "bpx" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -33082,7 +31391,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -33098,7 +31406,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -33158,7 +31465,6 @@ "bpF" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel, @@ -33207,7 +31513,6 @@ "bpL" = ( /obj/structure/foodcart, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -33233,12 +31538,10 @@ opacity = 0 }, /obj/machinery/door/window{ - dir = 4; name = "Kitchen"; req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -33260,13 +31563,11 @@ /area/chapel/main) "bpQ" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/status_display{ layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/vending/chinese, /turf/simulated/floor/carpet, @@ -33286,7 +31587,6 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -33325,16 +31625,12 @@ /area/hallway/secondary/entry) "bpY" = ( /obj/machinery/door/window/northright{ - base_state = "right"; dir = 8; - icon_state = "right"; name = "Library Desk Door"; req_access_txt = "37" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/wood, @@ -33358,9 +31654,7 @@ dir = 1; icon_state = "whitepurplecorner" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bqc" = ( /obj/machinery/newscaster{ pixel_y = 32 @@ -33369,9 +31663,7 @@ /area/library) "bqd" = ( /obj/structure/table/wood, -/obj/machinery/computer/library/checkout{ - pixel_y = 0 - }, +/obj/machinery/computer/library/checkout, /obj/machinery/light/small{ dir = 4 }, @@ -33395,8 +31687,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -33433,7 +31724,6 @@ "bqk" = ( /obj/structure/chair/wood/wings{ dir = 8; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (WEST)" }, /turf/simulated/floor/wood, @@ -33457,8 +31747,7 @@ name = "Mr. Chang's" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -33467,7 +31756,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/wood, @@ -33476,8 +31764,7 @@ /obj/effect/spawner/window/reinforced, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/floor/plating, /area/hallway/secondary/exit) @@ -33504,7 +31791,6 @@ frequency = 1379; master_tag = "eva_airlock"; name = "interior access button"; - pixel_x = 0; pixel_y = 25; req_access_txt = "13" }, @@ -33521,8 +31807,7 @@ /area/maintenance/fpmaint2) "bqu" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/structure/closet/wardrobe/white, /turf/simulated/floor/plasteel, @@ -33553,13 +31838,11 @@ /obj/structure/closet/secure_closet/personal, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/camera{ c_tag = "Locker Room East"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/light{ dir = 4 @@ -33590,7 +31873,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -33610,9 +31892,7 @@ "bqF" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/item/reagent_containers/glass/bucket, /turf/simulated/floor/wood, @@ -33631,7 +31911,6 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -33698,9 +31977,7 @@ network = list("SS13","Research Outpost","Mining Outpost","Telecomms") }, /obj/machinery/camera{ - c_tag = "Bridge West"; - dir = 2; - network = list("SS13") + c_tag = "Bridge West" }, /turf/simulated/floor/plasteel{ dir = 0; @@ -33709,9 +31986,7 @@ /area/bridge) "bqR" = ( /obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 0 - }, +/obj/machinery/recharger, /turf/simulated/floor/plasteel, /area/bridge) "bqS" = ( @@ -33724,18 +31999,6 @@ icon_state = "chapel" }, /area/chapel/main) -"bqU" = ( -/turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/bridge) -"bqV" = ( -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/bridge) "bqW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -33747,10 +32010,9 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass/reinforced, /area/bridge) "bqY" = ( /obj/structure/table/reinforced, @@ -33766,8 +32028,7 @@ /area/bridge) "bra" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/computer/security/mining, /turf/simulated/floor/plasteel{ @@ -33777,17 +32038,13 @@ /area/bridge) "brb" = ( /obj/machinery/camera{ - c_tag = "Bridge East"; - dir = 2; - network = list("SS13") + c_tag = "Bridge East" }, /obj/machinery/computer/supplycomp, /obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "brown" }, /area/bridge) @@ -33825,20 +32082,17 @@ "brf" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/camera{ c_tag = "Bar West"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) "brg" = ( /obj/structure/chair/wood/wings{ dir = 8; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (WEST)" }, /obj/effect/landmark/start{ @@ -33849,9 +32103,7 @@ "brh" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_y = 0 - }, +/obj/item/taperecorder, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bri" = ( @@ -33867,8 +32119,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -33903,16 +32154,13 @@ /obj/structure/table, /obj/item/kitchen/rollingpin, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "brn" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -33929,15 +32177,13 @@ "bro" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "brp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -33965,8 +32211,6 @@ "brt" = ( /obj/machinery/hydroponics/constructable, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel{ @@ -34028,8 +32272,7 @@ /area/library) "brC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, @@ -34046,8 +32289,7 @@ "brE" = ( /obj/machinery/alarm{ dir = 8; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -34087,7 +32329,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -34167,7 +32408,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -34208,7 +32448,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "arrival" }, /area/hallway/secondary/entry) @@ -34222,8 +32461,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) @@ -34232,8 +32470,7 @@ /obj/machinery/requests_console{ department = "Locker Room"; name = "Locker Room Requests Console"; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) @@ -34250,7 +32487,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "arrival" }, /area/hallway/secondary/entry) @@ -34269,7 +32505,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "arrival" }, /area/hallway/secondary/entry) @@ -34289,7 +32524,6 @@ "bsm" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel, @@ -34323,8 +32557,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -34373,7 +32606,7 @@ /obj/effect/landmark{ name = "Marauder Entry" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass/reinforced, /area/bridge) "bsz" = ( /obj/machinery/hologram/holopad, @@ -34420,7 +32653,7 @@ icon_state = "4-8"; tag = "" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass/reinforced, /area/bridge) "bsD" = ( /turf/simulated/floor/plating, @@ -34493,9 +32726,7 @@ /area/hallway/primary/central/ne) "bsL" = ( /obj/machinery/camera{ - c_tag = "Bridge East Entrance"; - dir = 2; - network = list("SS13") + c_tag = "Bridge East Entrance" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -34520,7 +32751,6 @@ dir = 1 }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/machinery/vending/snack, @@ -34533,8 +32763,6 @@ /area/hallway/secondary/exit) "bsQ" = ( /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/wood, @@ -34557,7 +32785,6 @@ }, /obj/item/stack/packageWrap, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria" }, /area/crew_quarters/kitchen) @@ -34571,7 +32798,6 @@ /obj/structure/table, /obj/item/book/manual/sop_service, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -34579,14 +32805,12 @@ "bsU" = ( /obj/structure/table, /obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 0 + pixel_x = -3 }, /obj/item/reagent_containers/food/condiment/peppermill{ pixel_x = 3 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria" }, /area/crew_quarters/kitchen) @@ -34600,7 +32824,6 @@ pixel_x = 5 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria" }, /area/crew_quarters/kitchen) @@ -34620,7 +32843,6 @@ pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria" }, /area/crew_quarters/kitchen) @@ -34628,7 +32850,6 @@ /obj/machinery/hydroponics/constructable, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/plasteel{ @@ -34645,16 +32866,12 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel, /area/storage/tools) "bta" = ( /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = 28 }, /obj/machinery/vending/cola, @@ -34675,8 +32892,7 @@ "btc" = ( /obj/structure/chair, /obj/machinery/camera{ - c_tag = "Departure Lounge North"; - network = list("SS13") + c_tag = "Departure Lounge North" }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -34693,7 +32909,6 @@ "btf" = ( /obj/structure/chair/wood/wings{ dir = 4; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (EAST)" }, /obj/effect/landmark/start{ @@ -34804,7 +33019,6 @@ }, /obj/structure/chair/wood/wings{ dir = 4; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (EAST)" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34870,7 +33084,6 @@ dir = 5 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -34880,7 +33093,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -34896,7 +33108,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -34917,7 +33128,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -34931,7 +33141,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -34948,7 +33157,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -34983,8 +33191,7 @@ /area/crew_quarters/locker) "btU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -35003,8 +33210,7 @@ /area/library) "btW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -35027,8 +33233,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/wood, /area/library) @@ -35062,9 +33267,7 @@ /area/storage/tools) "bue" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -35101,9 +33304,7 @@ /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "buh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bui" = ( @@ -35131,8 +33332,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/nw) @@ -35152,9 +33352,7 @@ icon_state = "1-2"; tag = "" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/bridge) "bup" = ( @@ -35164,7 +33362,6 @@ "buq" = ( /obj/structure/chair/wood/wings{ dir = 4; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (EAST)" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -35174,7 +33371,6 @@ /obj/structure/closet/secure_closet/freezer/fridge, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -35183,7 +33379,6 @@ /obj/structure/table, /obj/item/reagent_containers/food/snacks/mint, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria" }, /area/crew_quarters/kitchen) @@ -35197,7 +33392,6 @@ /obj/structure/table, /obj/item/kitchen/knife, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -35206,14 +33400,12 @@ /obj/structure/table, /obj/item/reagent_containers/food/drinks/bottle/cream, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria" }, /area/crew_quarters/kitchen) "buv" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -35228,12 +33420,10 @@ "bux" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes/arrow{ - dir = 1; - icon_state = "4" + dir = 1 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 1; - icon_state = "3" + dir = 1 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard/east) @@ -35253,18 +33443,15 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/ai_status_display{ pixel_x = -32; - pixel_y = 0; step_size = 0 }, /obj/machinery/camera{ c_tag = "Chapel West"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -35287,7 +33474,6 @@ "buC" = ( /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel, @@ -35306,7 +33492,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/hallway/secondary/exit) @@ -35315,7 +33500,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -35328,8 +33512,7 @@ "buG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - name = "Chapel"; - req_access_txt = "0" + name = "Chapel" }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -35350,7 +33533,6 @@ name = "Chef" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -35362,11 +33544,9 @@ department = "Kitchen"; departmentType = 2; name = "Kitchen Requests Console"; - pixel_x = 30; - pixel_y = 0 + pixel_x = 30 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria" }, /area/crew_quarters/kitchen) @@ -35385,14 +33565,12 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 + dir = 6 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/carpet, @@ -35409,7 +33587,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -35429,7 +33606,6 @@ /obj/structure/disposalpipe/segment, /obj/structure/chair/wood/wings{ dir = 1; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (NORTH)" }, /turf/simulated/floor/wood, @@ -35437,7 +33613,6 @@ "buR" = ( /obj/structure/chair/wood/wings{ dir = 1; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (NORTH)" }, /turf/simulated/floor/wood, @@ -35450,18 +33625,14 @@ }, /obj/machinery/camera{ c_tag = "Arrivals Auxiliary Docking North"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) "buT" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/machinery/vending/cigarette, /obj/machinery/light{ dir = 1 }, @@ -35470,8 +33641,7 @@ "buU" = ( /obj/machinery/alarm{ dir = 8; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -35483,7 +33653,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/carpet, @@ -35493,7 +33662,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -35522,21 +33690,18 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - name = "Chapel"; - req_access_txt = "0" + name = "Chapel" }, /turf/simulated/floor/carpet, /area/chapel/main) "bva" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - name = "Chapel"; - req_access_txt = "0" + name = "Chapel" }, /turf/simulated/floor/carpet, /area/chapel/main) @@ -35573,7 +33738,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/sign/poster/random{ @@ -35600,7 +33764,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -35610,7 +33773,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -35645,8 +33807,7 @@ /area/security/vacantoffice) "bvo" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/wood, @@ -35752,14 +33913,13 @@ /obj/effect/landmark{ name = "Marauder Entry" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass/reinforced, /area/bridge) "bvD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/ne) @@ -35828,7 +33988,6 @@ /obj/structure/closet/secure_closet/freezer/kitchen, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -35852,8 +34011,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/carpet, /area/library) @@ -35886,7 +34044,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -35920,19 +34077,16 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) "bvU" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -36056,8 +34210,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) @@ -36104,7 +34257,6 @@ /area/hallway/primary/central/ne) "bwk" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkred" }, /area/hallway/secondary/exit) @@ -36139,7 +34291,6 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -36148,12 +34299,10 @@ /obj/structure/cable, /obj/machinery/light, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -36164,7 +34313,6 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -36182,22 +34330,19 @@ /obj/machinery/disposal, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/kitchen) "bws" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/hydroponics/constructable, /turf/simulated/floor/plasteel{ @@ -36207,8 +34352,7 @@ "bwt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, @@ -36247,7 +34391,6 @@ /area/storage/tools) "bwA" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /obj/structure/rack{ @@ -36261,13 +34404,11 @@ "bwB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/nw) @@ -36299,8 +34440,7 @@ /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /obj/effect/decal/warning_stripes/northeast, /turf/simulated/floor/plating, @@ -36424,7 +34564,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36459,18 +34598,15 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/effect/decal/warning_stripes/northeastcorner, /obj/effect/decal/warning_stripes/southeastcorner, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -36552,9 +34688,7 @@ dir = 4; id = "packageSort2" }, -/obj/structure/plasticflaps{ - opacity = 0 - }, +/obj/structure/plasticflaps, /turf/simulated/floor/plating, /area/quartermaster/office) "bxg" = ( @@ -36610,16 +34744,13 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/bridge) "bxo" = ( /obj/machinery/porta_turret, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bxp" = ( /obj/machinery/ai_status_display{ @@ -36653,17 +34784,14 @@ /area/bridge) "bxs" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) "bxt" = ( /obj/machinery/camera/motion{ - c_tag = "AI Upload Chamber"; - network = list("SS13") + c_tag = "AI Upload Chamber" }, /obj/machinery/light_switch{ pixel_y = 27 @@ -36701,8 +34829,7 @@ "bxy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -36754,8 +34881,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 0; @@ -36765,8 +34891,7 @@ "bxD" = ( /obj/machinery/camera{ c_tag = "Bridge Central"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/requests_console{ announcementConsole = 1; @@ -36788,20 +34913,17 @@ /area/bridge) "bxE" = ( /obj/machinery/atm{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/wood, /area/crew_quarters/bar) "bxF" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 0; pixel_y = -30 }, /obj/machinery/vending/dinnerware, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -36809,7 +34931,6 @@ "bxG" = ( /obj/machinery/icemachine, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -36832,7 +34953,6 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -36854,7 +34974,6 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -36876,7 +34995,6 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -36910,14 +35028,11 @@ "bxN" = ( /obj/machinery/camera{ c_tag = "Hydroponics South"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/item/reagent_containers/glass/bucket, /obj/machinery/light_switch{ @@ -36931,7 +35046,6 @@ /obj/machinery/turretid/stun{ control_area = "\improper AI Upload Chamber"; name = "AI Upload Turret Control"; - pixel_x = 0; pixel_y = -24; req_access = list(75) }, @@ -36988,7 +35102,6 @@ /obj/machinery/light, /obj/machinery/power/apc{ cell_type = 5000; - dir = 2; name = "south bump Important Area"; pixel_y = -24 }, @@ -37017,7 +35130,6 @@ }, /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/wood, @@ -37087,7 +35199,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -37111,8 +35222,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/bridge) @@ -37161,7 +35271,6 @@ /area/security/vacantoffice) "byh" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/wood, @@ -37169,7 +35278,6 @@ "byi" = ( /obj/structure/table/wood, /obj/machinery/firealarm{ - dir = 2; pixel_y = -24 }, /turf/simulated/floor/wood, @@ -37211,9 +35319,7 @@ "byo" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -37319,7 +35425,6 @@ "byv" = ( /obj/machinery/hologram/holopad, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/effect/decal/cleanable/dirt, @@ -37332,8 +35437,7 @@ "byx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -37380,7 +35484,6 @@ "byD" = ( /obj/structure/chair/wood/wings{ dir = 4; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (EAST)" }, /turf/simulated/floor/wood, @@ -37390,7 +35493,6 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -37411,7 +35513,6 @@ /obj/machinery/door_control{ id = "heads_meeting"; name = "Privacy Shutters Control"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/wood, @@ -37427,15 +35528,11 @@ /area/bridge/meeting_room) "byJ" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/camera{ - c_tag = "Bridge Conference Room"; - dir = 2; - network = list("SS13") + c_tag = "Bridge Conference Room" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -37444,7 +35541,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light_switch{ @@ -37460,7 +35556,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/wood, @@ -37484,14 +35579,10 @@ "byO" = ( /obj/structure/table, /obj/item/aiModule/reset, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "byP" = ( -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/turret_protected/ai_upload) "byQ" = ( /obj/structure/cable{ @@ -37521,7 +35612,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -37547,7 +35637,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light_switch{ @@ -37563,13 +35652,11 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - name = "Library"; - req_access_txt = "0" + name = "Library" }, /turf/simulated/floor/carpet, /area/library) @@ -37578,11 +35665,9 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/carpet, @@ -37595,7 +35680,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/carpet, @@ -37609,14 +35693,12 @@ cell_type = 5000; dir = 1; name = "north bump Important Area"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "byY" = ( /obj/machinery/status_display{ - pixel_x = 0; pixel_y = 32 }, /obj/structure/cable{ @@ -37694,9 +35776,7 @@ /area/hallway/primary/starboard/west) "bzh" = ( /obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 2"; - dir = 2; - network = list("SS13") + c_tag = "Starboard Primary Hallway 2" }, /obj/structure/closet/crate/can, /turf/simulated/floor/plasteel{ @@ -37732,7 +35812,6 @@ /area/hydroponics) "bzl" = ( /obj/machinery/newscaster{ - pixel_x = 0; pixel_y = -30 }, /obj/machinery/light, @@ -37742,8 +35821,7 @@ /area/chapel/main) "bzm" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/flora/ausbushes/pointybush, /obj/structure/flora/ausbushes/lavendergrass, @@ -37761,7 +35839,6 @@ /obj/machinery/light, /obj/structure/chair/wood/wings{ dir = 4; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (EAST)" }, /turf/simulated/floor/wood, @@ -37771,7 +35848,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -37779,16 +35855,12 @@ /area/library) "bzr" = ( /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = -28 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) "bzs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "bzt" = ( @@ -37835,7 +35907,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -37902,7 +35973,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/effect/decal/warning_stripes/southeastcorner, @@ -37954,9 +36024,6 @@ /obj/item/storage/box, /obj/item/storage/box, /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -37991,10 +36058,8 @@ /area/security/vacantoffice) "bzM" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -38020,8 +36085,7 @@ /area/security/vacantoffice) "bzQ" = ( /obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" + name = "Unisex Restrooms" }, /obj/structure/cable{ d1 = 1; @@ -38053,16 +36117,12 @@ "bzT" = ( /obj/structure/table, /obj/item/aiModule/quarantine, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bzU" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -38086,16 +36146,13 @@ icon_state = "1-2"; tag = "" }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/turret_protected/ai_upload) "bzX" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/vending/cigarette, @@ -38145,8 +36202,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/crew_quarters/locker) @@ -38175,13 +36231,11 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, @@ -38193,7 +36247,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -38208,8 +36261,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -38225,7 +36277,6 @@ /area/hallway/primary/starboard/west) "bAo" = ( /obj/machinery/status_display{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, @@ -38238,7 +36289,6 @@ /area/hallway/primary/starboard/west) "bAq" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -38269,8 +36319,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -38306,8 +36355,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -38336,8 +36384,7 @@ "bAB" = ( /obj/machinery/camera{ c_tag = "Bridge West Entrance"; - dir = 1; - network = list("SS13") + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 0; @@ -38400,7 +36447,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/disposalpipe/segment, @@ -38443,7 +36489,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/effect/decal/warning_stripes/east, @@ -38465,8 +36510,7 @@ /area/engine/engineering) "bAU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) @@ -38489,8 +36533,7 @@ }, /obj/machinery/camera{ c_tag = "Starboard Primary Hallway 4"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -38499,8 +36542,7 @@ "bAX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - name = "Library"; - req_access_txt = "0" + name = "Library" }, /turf/simulated/floor/carpet, /area/library) @@ -38561,8 +36603,7 @@ "bBf" = ( /obj/machinery/camera{ c_tag = "Locker Room South"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -38576,8 +36617,7 @@ /obj/structure/closet/emcloset, /obj/machinery/camera{ c_tag = "Arrivals Auxiliary Docking South"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/effect/decal/warning_stripes/northwest, /turf/simulated/floor/plasteel, @@ -38604,7 +36644,6 @@ "bBk" = ( /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; pixel_x = -28 }, /obj/structure/cable{ @@ -38620,8 +36659,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -38678,13 +36716,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -38721,15 +36757,12 @@ "bBy" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/porta_turret{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bBz" = ( /obj/structure/cable{ @@ -38740,19 +36773,11 @@ }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai_upload) -"bBA" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/turret_protected/ai_upload) "bBB" = ( /obj/machinery/porta_turret{ dir = 8 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bBC" = ( /obj/machinery/computer/arcade, @@ -38764,23 +36789,19 @@ /area/crew_quarters/captain) "bBE" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) "bBF" = ( /obj/machinery/camera{ c_tag = "Central Hallway East"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/structure/disposalpipe/segment, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -38829,12 +36850,10 @@ /obj/effect/decal/warning_stripes/southeastcorner, /obj/effect/decal/warning_stripes/northeastcorner, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -38863,7 +36882,6 @@ "bBO" = ( /obj/machinery/shower{ dir = 4; - icon_state = "shower"; pixel_x = 5; tag = "icon-shower (EAST)" }, @@ -38997,7 +37015,6 @@ "bCv" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/structure/cable{ @@ -39043,9 +37060,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/turret_protected/ai_upload) "bCz" = ( /obj/item/stack/sheet/cardboard, @@ -39078,7 +37093,6 @@ /obj/machinery/light/small, /obj/structure/chair/wood/wings{ dir = 8; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (WEST)" }, /turf/simulated/floor/wood, @@ -39102,7 +37116,6 @@ "bCF" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -39120,7 +37133,6 @@ /obj/structure/table, /obj/machinery/door/window{ base_state = "right"; - dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20" @@ -39137,13 +37149,12 @@ /obj/item/aiModule/corp, /obj/item/aiModule/paladin, /obj/item/aiModule/robocop, -/turf/simulated/floor/bluegrid, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bCI" = ( /obj/machinery/camera{ c_tag = "Bar South"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/gameboard, /turf/simulated/floor/wood, @@ -39152,7 +37163,6 @@ /obj/structure/cable, /obj/machinery/power/apc{ cell_type = 5000; - dir = 2; name = "south bump Important Area"; pixel_y = -24 }, @@ -39162,7 +37172,6 @@ /obj/machinery/computer/aiupload, /obj/machinery/flasher{ id = "AI"; - pixel_x = 0; pixel_y = -21 }, /turf/simulated/floor/bluegrid, @@ -39170,7 +37179,6 @@ "bCL" = ( /obj/machinery/computer/borgupload, /obj/item/radio/intercom/private{ - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/bluegrid, @@ -39201,8 +37209,7 @@ }, /obj/machinery/camera{ c_tag = "Library South"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -39249,8 +37256,7 @@ /obj/structure/table/wood, /obj/machinery/camera{ c_tag = "Captain's Office"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/item/storage/lockbox/medal, /turf/simulated/floor/wood, @@ -39258,8 +37264,7 @@ "bCW" = ( /obj/structure/table, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/item/storage/box/cups{ pixel_x = 6; @@ -39267,9 +37272,7 @@ }, /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0" + pixel_x = -25 }, /obj/item/roller, /turf/simulated/floor/plasteel{ @@ -39294,8 +37297,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -39304,7 +37306,6 @@ /area/hallway/primary/central/east) "bCZ" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 0; pixel_y = -30 }, /turf/simulated/floor/plasteel, @@ -39323,8 +37324,7 @@ /obj/structure/reagent_dispensers/water_cooler, /obj/machinery/status_display{ layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ dir = 10; @@ -39335,7 +37335,6 @@ "bDd" = ( /obj/machinery/vending/coffee, /obj/machinery/computer/mob_healer_terminal{ - pixel_x = 0; pixel_y = -32 }, /obj/machinery/light, @@ -39430,7 +37429,6 @@ }, /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /obj/machinery/chem_dispenser, @@ -39453,9 +37451,7 @@ /area/bridge/meeting_room) "bDp" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -39465,14 +37461,12 @@ /area/hallway/secondary/exit) "bDq" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "purple" }, /area/hallway/primary/starboard/east) "bDr" = ( /obj/machinery/light, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "purple" }, /area/hallway/primary/starboard/east) @@ -39487,18 +37481,15 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/effect/decal/warning_stripes/southeastcorner, /obj/effect/decal/warning_stripes/northeastcorner, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -39509,8 +37500,7 @@ icon_state = "1-2" }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -39522,9 +37512,7 @@ "bDv" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -39669,8 +37657,7 @@ "bDR" = ( /obj/machinery/camera{ c_tag = "Cargo Bay Storage"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -39731,12 +37718,9 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 - }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" + dir = 5 }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/turret_protected/ai_upload) "bDX" = ( /obj/effect/spawner/window/reinforced, @@ -39746,9 +37730,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/turret_protected/ai_upload) "bDZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -39760,17 +37742,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/turret_protected/ai_upload) "bEb" = ( /obj/structure/table, /obj/item/aiModule/protectStation, /obj/item/aiModule/nanotrasen, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bEc" = ( /obj/machinery/vending/cigarette, @@ -39823,7 +37801,7 @@ "bEh" = ( /obj/structure/table/wood, /obj/item/hand_tele, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bEi" = ( /obj/structure/closet/crate/medical, @@ -39852,15 +37830,13 @@ "bEl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ - name = "Chapel"; - req_access_txt = "0" + name = "Chapel" }, /turf/simulated/floor/plasteel, /area/chapel/main) "bEm" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/structure/cable{ @@ -39952,9 +37928,7 @@ "bEz" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/structure/mirror{ pixel_x = 28 @@ -39996,9 +37970,7 @@ /area/toxins/lab) "bEE" = ( /obj/machinery/door/window/eastright{ - dir = 4; name = "Coroner"; - req_access_txt = "0"; req_one_access_txt = "5;4" }, /turf/simulated/floor/plasteel{ @@ -40069,7 +38041,7 @@ /obj/item/paper/safe_code{ owner = "captain" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bEV" = ( /obj/structure/chair/comfy/black, @@ -40114,8 +38086,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, @@ -40145,9 +38116,7 @@ "bFe" = ( /obj/structure/table, /obj/item/aiModule/freeform, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bFf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -40169,8 +38138,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) @@ -40185,9 +38153,7 @@ /area/hallway/primary/central/east) "bFj" = ( /obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 1"; - dir = 2; - network = list("SS13") + c_tag = "Starboard Primary Hallway 1" }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard/west) @@ -40235,14 +38201,12 @@ "bFn" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -40258,7 +38222,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -40292,7 +38255,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -40309,7 +38271,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -40332,7 +38293,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/disposalpipe/segment{ @@ -40342,14 +38302,12 @@ /area/hallway/primary/starboard/east) "bFv" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -40359,9 +38317,7 @@ /area/hallway/primary/starboard/east) "bFw" = ( /obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 6"; - dir = 2; - network = list("SS13") + c_tag = "Starboard Primary Hallway 6" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -40372,8 +38328,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/effect/decal/warning_stripes/yellow/partial, /obj/effect/decal/warning_stripes/arrow, @@ -40405,7 +38360,6 @@ "bFB" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/door/firedoor, @@ -40435,7 +38389,6 @@ /area/engine/gravitygenerator) "bFF" = ( /obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; pixel_y = -32 }, /obj/machinery/slot_machine, @@ -40464,7 +38417,6 @@ "bFI" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/wood, @@ -40481,7 +38433,7 @@ /area/hydroponics) "bFK" = ( /obj/machinery/computer/communications, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bFL" = ( /obj/structure/table/wood, @@ -40490,7 +38442,7 @@ /obj/item/book/manual/sop_general, /obj/item/book/manual/sop_command, /obj/item/megaphone, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bFM" = ( /obj/structure/cable{ @@ -40500,13 +38452,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -40525,7 +38475,6 @@ "bFP" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -40535,7 +38484,6 @@ "bFQ" = ( /obj/structure/morgue{ dir = 8; - icon_state = "morgue1"; tag = "icon-morgue1 (WEST)" }, /turf/simulated/floor/plasteel{ @@ -40551,9 +38499,7 @@ "bFS" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 0 + pixel_x = -12 }, /obj/structure/mirror{ pixel_x = -28 @@ -40568,7 +38514,6 @@ "bFT" = ( /obj/structure/morgue{ dir = 8; - icon_state = "morgue1"; tag = "icon-morgue1 (WEST)" }, /obj/effect/landmark{ @@ -40687,8 +38632,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -40701,8 +38645,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -40748,7 +38691,6 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whiteblue"; tag = "icon-whitehall (WEST)" }, @@ -40782,8 +38724,7 @@ /area/hallway/secondary/exit) "bGk" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -40809,8 +38750,7 @@ }, /obj/effect/decal/warning_stripes/west, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -40921,7 +38861,6 @@ }, /obj/machinery/smartfridge/medbay, /obj/machinery/door/window/eastright{ - dir = 4; name = "Chemistry Desk"; req_access_txt = "33" }, @@ -40986,19 +38925,14 @@ /area/assembly/robotics) "bGC" = ( /obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/storage/toolbox/mechanical, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/toxins/lab) "bGD" = ( /obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 0 - }, +/obj/machinery/recharger, /obj/item/storage/belt/utility, /obj/item/clothing/gloves/color/latex, /turf/simulated/floor/plasteel{ @@ -41056,7 +38990,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/effect/decal/warning_stripes/northeastcorner, @@ -41182,8 +39115,7 @@ "bGZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -41240,7 +39172,6 @@ base_state = "right"; icon_state = "right"; layer = 3; - name = "interior door"; req_access_txt = "50" }, /obj/machinery/disposal/deliveryChute{ @@ -41283,17 +39214,13 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bHl" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bHm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -41315,13 +39242,11 @@ "bHo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/east) @@ -41343,12 +39268,10 @@ opacity = 0 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 8; - icon_state = "3" + dir = 8 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 8; - icon_state = "4" + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/sw) @@ -41403,7 +39326,7 @@ /area/maintenance/port) "bHw" = ( /obj/machinery/computer/card, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bHx" = ( /obj/structure/table/wood, @@ -41412,7 +39335,7 @@ }, /obj/item/melee/chainofcommand, /obj/item/card/id/captains_spare, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bHy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -41435,8 +39358,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard/west) @@ -41562,8 +39484,7 @@ /area/medical/morgue) "bHM" = ( /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /obj/machinery/photocopier, /turf/simulated/floor/plasteel{ @@ -41606,8 +39527,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/starboard/east) @@ -41657,8 +39577,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -41685,9 +39604,7 @@ /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 + name = "RADIOACTIVE AREA" }, /obj/effect/spawner/window/reinforced, /obj/structure/disposalpipe/segment, @@ -41709,10 +39626,8 @@ /area/assembly/robotics) "bIb" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -41758,14 +39673,12 @@ /area/maintenance/port) "bIf" = ( /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /turf/simulated/floor/plasteel, /area/assembly/chargebay) "bIg" = ( /obj/machinery/door_control{ - dir = 2; id = "mechbay"; name = "Mech Bay Door Control"; pixel_x = 6; @@ -41796,9 +39709,7 @@ /area/medical/reception) "bIi" = ( /turf/simulated/wall, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bIj" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -41827,9 +39738,7 @@ "bIk" = ( /obj/structure/sign/securearea, /turf/simulated/wall, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bIl" = ( /obj/structure/chair/office/light{ dir = 1 @@ -41845,7 +39754,6 @@ "bIm" = ( /obj/machinery/camera{ c_tag = "Research Robotics Lab"; - dir = 2; network = list("Research","SS13") }, /obj/structure/reagent_dispensers/oil, @@ -41894,9 +39802,7 @@ "bIs" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/structure/mirror{ pixel_x = 28 @@ -41923,7 +39829,6 @@ id = "rdlab"; name = "Research and Development Lab Shutters Control"; pixel_x = -24; - pixel_y = 0; req_access_txt = "47" }, /turf/simulated/floor/plasteel{ @@ -41967,8 +39872,6 @@ /area/quartermaster/storage) "bIy" = ( /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel{ @@ -41996,8 +39899,7 @@ "bIG" = ( /obj/machinery/camera{ c_tag = "Cargo Delivery Office"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/firealarm{ dir = 8; @@ -42038,16 +39940,12 @@ dir = 1; pixel_y = -24 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bIM" = ( /obj/structure/table, /obj/machinery/door/window{ - base_state = "left"; dir = 8; - icon_state = "left"; name = "High-Risk Modules"; req_access_txt = "20" }, @@ -42062,13 +39960,11 @@ /obj/item/aiModule/oneCrewMember, /obj/item/aiModule/purge, /obj/item/aiModule/antimov, -/turf/simulated/floor/bluegrid, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bIN" = ( /obj/machinery/light, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/plasma, /area/turret_protected/ai_upload) "bIO" = ( /obj/structure/chair, @@ -42093,8 +39989,7 @@ /area/maintenance/port) "bIQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -42129,7 +40024,6 @@ department = "Cargo Bay"; departmentType = 2; name = "Cargo Requests Console"; - pixel_x = 0; pixel_y = 30 }, /obj/item/stamp/granted{ @@ -42159,9 +40053,7 @@ }, /obj/structure/closet/secure_closet/cargotech, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, @@ -42170,9 +40062,6 @@ /obj/structure/table, /obj/machinery/cell_charger, /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel, @@ -42182,7 +40071,6 @@ dir = 1 }, /obj/machinery/alarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -42202,12 +40090,10 @@ icon_state = "0-4" }, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitecorner" }, /area/hallway/primary/starboard/west) @@ -42216,7 +40102,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -42229,7 +40114,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -42240,7 +40124,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitehall" }, /area/hallway/primary/starboard/west) @@ -42264,14 +40147,12 @@ "bJh" = ( /obj/machinery/camera{ c_tag = "Starboard Primary Hallway 3"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -42310,7 +40191,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -42344,8 +40224,7 @@ "bJp" = ( /obj/machinery/camera{ c_tag = "Starboard Primary Hallway 5"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/item/radio/intercom{ pixel_y = -28 @@ -42365,8 +40244,7 @@ /area/hallway/secondary/exit) "bJs" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel, @@ -42404,8 +40282,7 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -42427,8 +40304,7 @@ dir = 1; icon_state = "pipe-j2s"; name = "Disposals Maint"; - sortType = 1; - sortdir = 0 + sortType = 1 }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -42447,8 +40323,7 @@ "bJx" = ( /obj/machinery/camera{ c_tag = "Locker Room Toilets"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ @@ -42477,9 +40352,7 @@ id = "toilet_unit1"; name = "Door Bolt Control"; normaldoorcontrol = 1; - pixel_x = 0; pixel_y = -25; - req_access_txt = "0"; specialfunctions = 4 }, /turf/simulated/floor/plasteel{ @@ -42495,9 +40368,7 @@ /obj/item/storage/box/rxglasses, /obj/machinery/door/firedoor, /obj/machinery/door/window/eastright{ - base_state = "right"; dir = 1; - icon_state = "right"; name = "Medical Reception"; req_access_txt = "5" }, @@ -42544,7 +40415,6 @@ "bJE" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -42556,8 +40426,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/cable{ d2 = 4; @@ -42603,8 +40472,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -42620,7 +40488,7 @@ /obj/item/stamp/captain, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bJL" = ( /obj/structure/chair/office/light{ @@ -42650,7 +40518,7 @@ pixel_x = -28 }, /obj/item/paper_bin/nanotrasen, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bJO" = ( /obj/structure/disposalpipe/segment{ @@ -42661,7 +40529,6 @@ /area/hallway/primary/central/sw) "bJP" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -42693,8 +40560,7 @@ "bJS" = ( /obj/machinery/camera{ c_tag = "Medbay Corridor East"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/alarm{ pixel_y = 25 @@ -42741,8 +40607,7 @@ /obj/item/storage/fancy/candle_box/eternal, /obj/item/storage/fancy/candle_box/eternal, /obj/item/storage/secure/safe{ - pixel_x = -22; - pixel_y = 0 + pixel_x = -22 }, /obj/machinery/light/small{ dir = 8 @@ -42866,8 +40731,7 @@ /area/maintenance/port) "bKg" = ( /obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 + dir = 4 }, /obj/structure/window/reinforced, /obj/structure/table, @@ -42915,8 +40779,7 @@ /area/toxins/lab) "bKk" = ( /obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/structure/table, /obj/item/flash/synthetic, @@ -42940,22 +40803,17 @@ "bKn" = ( /obj/machinery/shower{ dir = 8; - icon_state = "shower"; tag = "icon-shower (WEST)" }, /obj/effect/decal/warning_stripes/east, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bKo" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 + pixel_x = -22 }, /obj/machinery/r_n_d/destructive_analyzer, /obj/effect/decal/warning_stripes/northwest, @@ -42971,7 +40829,6 @@ "bKq" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel{ @@ -43083,8 +40940,7 @@ "bKF" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/wall/r_wall, /area/maintenance/port) @@ -43102,8 +40958,7 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -43125,7 +40980,6 @@ "bKJ" = ( /obj/machinery/light, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/wood, @@ -43155,14 +41009,14 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bKM" = ( /obj/structure/filingcabinet, /obj/item/radio/intercom/private{ pixel_x = -28 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bKN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -43208,8 +41062,7 @@ }, /obj/machinery/door/airlock/research{ name = "Mech Bay"; - req_access_txt = "29"; - req_one_access_txt = "0" + req_access_txt = "29" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -43224,7 +41077,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -43236,7 +41088,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "purple" }, /area/hallway/primary/starboard/east) @@ -43311,9 +41162,7 @@ /turf/simulated/floor/wood, /area/bridge/meeting_room) "bLb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -43329,7 +41178,7 @@ /area/crew_quarters/captain/bedroom) "bLe" = ( /obj/machinery/suit_storage_unit/captain, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bLf" = ( /obj/machinery/atmospherics/unary/vent_pump/on, @@ -43405,21 +41254,18 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) "bLp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -43430,8 +41276,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -43450,8 +41295,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -43526,8 +41370,7 @@ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 + dir = 6 }, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull"; @@ -43538,8 +41381,7 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -43573,8 +41415,7 @@ "bLB" = ( /obj/machinery/camera{ c_tag = "Medbay Lobby East"; - dir = 8; - network = list("SS13") + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -43585,12 +41426,10 @@ "bLC" = ( /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/entry) @@ -43680,10 +41519,8 @@ icon_state = "0-2" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plating, /area/assembly/chargebay) @@ -43713,8 +41550,7 @@ /obj/machinery/reagentgrinder, /obj/machinery/alarm{ dir = 8; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -43725,9 +41561,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bLS" = ( /obj/structure/table, /obj/item/storage/firstaid/brute{ @@ -43740,7 +41574,6 @@ in_use = 1 }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -43799,13 +41632,9 @@ /obj/item/storage/firstaid/o2, /obj/structure/table, /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -43922,8 +41751,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -43946,9 +41774,7 @@ /turf/simulated/floor/plasteel, /area/toxins/lab) "bMk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bMl" = ( @@ -43962,8 +41788,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/west) @@ -44032,8 +41857,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -44057,15 +41881,12 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) "bMD" = ( -/obj/machinery/computer/account_database{ - anchored = 1 - }, +/obj/machinery/computer/account_database, /turf/simulated/floor/plasteel, /area/bridge/meeting_room) "bME" = ( @@ -44099,8 +41920,7 @@ tag = "" }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -44126,7 +41946,6 @@ "bMK" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -44143,15 +41962,13 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bMM" = ( /obj/structure/rack{ @@ -44163,19 +41980,17 @@ /area/maintenance/maintcentral) "bMN" = ( /obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine/longrange{ department = "Captain's Office" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bMO" = ( /obj/machinery/door/window{ base_state = "right"; - dir = 4; icon_state = "right"; name = "Captain's Desk Door"; req_access_txt = "20" @@ -44184,7 +41999,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/requests_console{ @@ -44192,7 +42006,6 @@ department = "Captain's Desk"; departmentType = 5; name = "Captain Requests Console"; - pixel_x = 0; pixel_y = -30 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -44201,18 +42014,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bMP" = ( /obj/machinery/keycard_auth{ - pixel_x = 0; pixel_y = -24 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -44221,14 +42032,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/captain) "bMQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -44274,8 +42084,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) @@ -44325,7 +42134,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -44363,9 +42171,7 @@ pixel_y = 25 }, /obj/machinery/camera{ - c_tag = "Medbay Medicine Storage"; - dir = 2; - network = list("SS13") + c_tag = "Medbay Medicine Storage" }, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull"; @@ -44455,7 +42261,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -44489,8 +42294,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -44553,9 +42357,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bNl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44565,14 +42367,11 @@ "bNm" = ( /obj/machinery/camera{ c_tag = "Research Access"; - dir = 2; network = list("Research","SS13") }, /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -44581,25 +42380,20 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bNn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bNo" = ( /obj/structure/table, /obj/item/clothing/accessory/stethoscope, @@ -44644,8 +42438,7 @@ department = "Science"; departmentType = 2; name = "Science Requests Console"; - pixel_x = -30; - pixel_y = 0 + pixel_x = -30 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -44678,8 +42471,7 @@ /obj/structure/disposalpipe/sortjunction{ dir = 4; icon_state = "pipe-j2s"; - name = "Cargo Disposals"; - sortType = 0 + name = "Cargo Disposals" }, /turf/simulated/wall, /area/quartermaster/office) @@ -44711,7 +42503,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -44725,7 +42516,6 @@ /obj/machinery/light, /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel{ @@ -44775,10 +42565,8 @@ /area/maintenance/disposal) "bNC" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/item/stack/packageWrap, /obj/item/pen, @@ -44810,8 +42598,7 @@ "bNF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/disposal) @@ -44867,7 +42654,6 @@ /obj/structure/closet/secure_closet/medical1, /obj/machinery/ai_status_display{ pixel_x = 32; - pixel_y = 0; step_size = 0 }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -44885,8 +42671,6 @@ icon_state = "2-4" }, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -44902,29 +42686,12 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high/plus, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, /area/assembly/robotics) -"bNO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plasteel, -/area/quartermaster/office) "bNP" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -44940,8 +42707,7 @@ /area/maintenance/port) "bNQ" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, @@ -44963,8 +42729,7 @@ /area/quartermaster/storage) "bNU" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/camera{ c_tag = "Research Research and Development Lab"; @@ -44986,8 +42751,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -45001,14 +42765,11 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; - pixel_x = 0; - pixel_y = -32; - req_access_txt = "0" + pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -45022,12 +42783,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -45036,7 +42795,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -45051,7 +42809,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -45065,18 +42822,14 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bOb" = ( /obj/effect/spawner/window/reinforced, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 0 + name = "EXTERNAL AIRLOCK" }, /turf/simulated/floor/plating, /area/hallway/secondary/entry) @@ -45099,16 +42852,14 @@ layer = 4; name = "Loading Doors"; pixel_x = -24; - pixel_y = -8; - req_access_txt = "0" + pixel_y = -8 }, /obj/machinery/door_control{ id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = -24; - pixel_y = 8; - req_access_txt = "0" + pixel_y = 8 }, /obj/effect/decal/warning_stripes/west, /turf/simulated/floor/plasteel, @@ -45132,7 +42883,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -45148,7 +42898,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -45229,7 +42978,6 @@ /area/quartermaster/office) "bOq" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel, @@ -45244,8 +42992,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/camera{ c_tag = "Accounts Uplink Terminal"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -45264,8 +43011,6 @@ "bOt" = ( /obj/machinery/computer/supplycomp/public, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel, @@ -45273,8 +43018,7 @@ "bOu" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Room North"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -45291,9 +43035,7 @@ }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bOw" = ( /turf/simulated/floor/plasteel{ dir = 8; @@ -45385,13 +43127,11 @@ "bOB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull"; @@ -45402,7 +43142,6 @@ /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/machinery/recharger/wallcharger{ - pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/plasteel, @@ -45423,8 +43162,7 @@ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/structure/cable{ d2 = 4; @@ -45437,7 +43175,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -45448,9 +43185,7 @@ d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -45461,7 +43196,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -45498,8 +43232,7 @@ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/structure/cable{ d2 = 8; @@ -45516,7 +43249,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -45538,7 +43270,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -45586,8 +43317,7 @@ /obj/item/storage/firstaid/toxin, /obj/structure/table, /obj/structure/extinguisher_cabinet{ - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull"; @@ -45623,7 +43353,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/hologram/holopad, @@ -45639,7 +43368,6 @@ }, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/camera{ @@ -45680,9 +43408,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bPe" = ( /obj/vehicle/ambulance, /obj/effect/decal/warning_stripes/west, @@ -45710,8 +43436,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/cable{ d2 = 4; @@ -45762,9 +43487,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bPj" = ( /obj/machinery/navbeacon{ codes_txt = "delivery"; @@ -45777,9 +43500,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bot" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bPk" = ( /obj/machinery/door/window/eastright{ base_state = "left"; @@ -45801,14 +43522,10 @@ /turf/simulated/floor/plasteel{ icon_state = "delivery" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bPl" = ( /obj/effect/decal/warning_stripes/north, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/toxins/lab) "bPm" = ( @@ -45842,8 +43559,7 @@ /area/hallway/secondary/exit) "bPr" = ( /obj/machinery/door/airlock{ - name = "Port Emergency Storage"; - req_access_txt = "0" + name = "Port Emergency Storage" }, /obj/structure/cable{ d1 = 1; @@ -45859,15 +43575,12 @@ /area/assembly/robotics) "bPt" = ( /turf/simulated/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bPu" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -45919,8 +43632,7 @@ pixel_y = -5 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/item/crowbar, /turf/simulated/floor/plasteel{ @@ -45945,7 +43657,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -45985,7 +43696,6 @@ }, /obj/item/paper_bin/nanotrasen, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -46043,8 +43753,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/structure/cable{ d1 = 2; @@ -46068,7 +43777,6 @@ req_access_txt = "28" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -46097,12 +43805,10 @@ /area/quartermaster/storage) "bPQ" = ( /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + dir = 4 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + dir = 4 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -46118,8 +43824,7 @@ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 + name = "EXTERNAL AIRLOCK" }, /turf/simulated/floor/plating, /area/quartermaster/storage) @@ -46164,8 +43869,7 @@ /area/quartermaster/office) "bQa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /obj/structure/cable{ d1 = 1; @@ -46221,8 +43925,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -46255,23 +43958,19 @@ }, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; - dir = 4; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57" }, /obj/machinery/door/window/northleft{ dir = 8; - icon_state = "left"; - name = "Head of Personnel's Desk"; - req_access_txt = "0" + name = "Head of Personnel's Desk" }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads) "bQj" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 2; @@ -46291,8 +43990,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -46323,8 +44021,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -46360,12 +44057,10 @@ /area/crew_quarters/heads) "bQq" = ( /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -46400,12 +44095,10 @@ /obj/machinery/hologram/holopad, /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -46419,8 +44112,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, @@ -46440,15 +44132,13 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain/bedroom) "bQw" = ( /obj/structure/table/wood, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /obj/item/storage/box/matches, @@ -46465,12 +44155,10 @@ base_state = "left"; dir = 1; icon_state = "left"; - name = "Shower"; - req_access_txt = "0" + name = "Shower" }, /obj/machinery/shower{ dir = 4; - icon_state = "shower"; tag = "icon-shower (EAST)" }, /obj/item/soap/deluxe, @@ -46484,8 +44172,7 @@ /area/crew_quarters/captain/bedroom) "bQy" = ( /obj/machinery/door/airlock{ - name = "Private Restroom"; - req_access_txt = "0" + name = "Private Restroom" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -46533,9 +44220,7 @@ "bQD" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/structure/mirror{ pixel_x = 28 @@ -46555,7 +44240,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/hologram/holopad, @@ -46607,7 +44291,6 @@ tag = "" }, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -46645,8 +44328,7 @@ }, /obj/machinery/door/airlock/medical{ name = "Morgue"; - req_access_txt = "6;29"; - req_one_access_txt = "0" + req_access_txt = "6;29" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -46683,8 +44365,7 @@ "bQO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -46736,8 +44417,7 @@ }, /obj/machinery/camera{ c_tag = "Medbay Lobby Reception"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/item/storage/box/pillbottles{ pixel_x = -5; @@ -46775,13 +44455,11 @@ "bQW" = ( /obj/effect/decal/warning_stripes/south, /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/machinery/camera{ c_tag = "Medbay Chemistry South"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/chem_master, /turf/simulated/floor/plasteel, @@ -46804,14 +44482,12 @@ /area/medical/chemistry) "bQZ" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whiteyellow" }, /area/medical/chemistry) "bRa" = ( /obj/machinery/ai_status_display{ pixel_x = 32; - pixel_y = 0; step_size = 0 }, /turf/simulated/floor/plasteel{ @@ -46844,15 +44520,11 @@ pixel_y = -6 }, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, /obj/structure/cable, -/obj/item/gun/syringe{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/gun/syringe, /obj/item/gun/syringe{ pixel_x = 3; pixel_y = -3 @@ -46866,15 +44538,13 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Morgue"; - req_access_txt = "6;5"; - req_one_access_txt = "0" + req_access_txt = "6;5" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -46919,7 +44589,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -46939,8 +44608,7 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -46964,7 +44632,6 @@ /obj/effect/decal/warning_stripes/east, /obj/structure/window/reinforced/tinted{ dir = 4; - icon_state = "twindow"; tag = "" }, /obj/structure/table, @@ -47008,9 +44675,7 @@ /turf/simulated/floor/plasteel{ icon_state = "bot" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bRo" = ( /obj/machinery/navbeacon{ codes_txt = "delivery"; @@ -47039,10 +44704,7 @@ "bRq" = ( /obj/structure/table, /obj/item/storage/belt/utility, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/storage/toolbox/mechanical, /obj/item/stack/tape_roll, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -47071,8 +44733,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/assembly/robotics) @@ -47098,8 +44759,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -47127,10 +44787,7 @@ }, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/stock_parts/scanning_module, /obj/item/stock_parts/scanning_module{ pixel_x = 2; pixel_y = 3 @@ -47216,13 +44873,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -47234,15 +44889,11 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bRQ" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/effect/decal/warning_stripes/southeast, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -47251,9 +44902,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bRR" = ( /obj/machinery/conveyor/east{ id = "QMLoad2" @@ -47271,15 +44920,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bRU" = ( /obj/machinery/recharge_station, /obj/effect/decal/warning_stripes/yellow/hollow, @@ -47376,8 +45022,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) @@ -47398,7 +45043,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -47432,7 +45076,6 @@ }, /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel, @@ -47442,7 +45085,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -47462,8 +45104,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -47476,8 +45117,7 @@ /obj/machinery/vending/medical, /obj/machinery/camera{ c_tag = "Medbay Corridor West"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -47502,13 +45142,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -47582,7 +45220,6 @@ /area/medical/medbay2) "bSv" = ( /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = 32; step_size = 0 }, @@ -47638,9 +45275,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bSA" = ( /obj/machinery/door/airlock/maintenance{ name = "Disposal Access"; @@ -47674,8 +45309,7 @@ pixel_y = 25 }, /obj/machinery/camera{ - c_tag = "Medbay Cloning"; - network = list("SS13") + c_tag = "Medbay Cloning" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -47690,7 +45324,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -47714,7 +45347,6 @@ "bSF" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -47872,16 +45504,13 @@ /area/medical/medbay2) "bSS" = ( /obj/machinery/camera{ - c_tag = "Medbay Corridor Center"; - network = list("SS13") + c_tag = "Medbay Corridor Center" }, /obj/machinery/requests_console{ department = "Medbay"; departmentType = 1; name = "Medbay Requests Console"; - pixel_x = 0; - pixel_y = 30; - pixel_z = 0 + pixel_y = 30 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -47897,11 +45526,9 @@ "bSU" = ( /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "redcorner" }, /area/hallway/primary/central/sw) @@ -47911,12 +45538,10 @@ }, /obj/machinery/camera{ c_tag = "Medbay Secondary Hallway North"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -47928,7 +45553,6 @@ pixel_y = 12 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitecorner" }, /area/assembly/robotics) @@ -47956,12 +45580,9 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitecorner" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bTa" = ( /obj/structure/table/reinforced, /obj/item/folder/white, @@ -47969,7 +45590,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "robotics2"; name = "Robotics Lab Shutters"; @@ -47990,7 +45610,6 @@ "bTc" = ( /obj/structure/table, /obj/machinery/newscaster/security_unit{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, @@ -48003,7 +45622,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/bed/dogbed/ian, @@ -48016,8 +45634,7 @@ /area/toxins/lab) "bTf" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/cable{ d1 = 1; @@ -48064,7 +45681,6 @@ in_use = 1 }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -48078,14 +45694,12 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering"; - req_access_txt = "10"; - req_one_access_txt = "0" + req_access_txt = "10" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -48106,10 +45720,7 @@ /turf/simulated/floor/carpet, /area/crew_quarters/captain/bedroom) "bTk" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/machinery/vending/cigarette, /turf/simulated/floor/plasteel, /area/hallway/primary/central/sw) "bTm" = ( @@ -48160,13 +45771,10 @@ dir = 9; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bTx" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, @@ -48184,13 +45792,11 @@ department = "Cargo Bay"; departmentType = 2; name = "Cargo Requests Console"; - pixel_x = -30; - pixel_y = 0 + pixel_x = -30 }, /obj/machinery/camera{ c_tag = "Cargo Office"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/item/stack/sheet/glass{ amount = 50; @@ -48208,7 +45814,6 @@ /obj/item/bedsheet/captain, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/carpet, @@ -48241,7 +45846,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/carpet, @@ -48252,7 +45856,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -48334,7 +45937,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/pdapainter, @@ -48366,8 +45968,7 @@ /area/medical/reception) "bTN" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) @@ -48385,8 +45986,7 @@ }, /obj/machinery/camera{ c_tag = "Gravity Generator Room South"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/light{ dir = 4 @@ -48404,16 +46004,12 @@ /area/medical/reception) "bTR" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel, /area/teleporter) "bTS" = ( /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/structure/closet/crate, @@ -48428,9 +46024,7 @@ }, /area/medical/chemistry) "bTU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "whitebluefull"; tag = "icon-whitebluefull" @@ -48438,11 +46032,9 @@ /area/medical/biostorage) "bTV" = ( /obj/machinery/camera{ - c_tag = "Teleporter Room"; - network = list("SS13") + c_tag = "Teleporter Room" }, /obj/machinery/alarm{ - frequency = 1439; pixel_y = 23 }, /turf/simulated/floor/plasteel, @@ -48468,7 +46060,6 @@ }, /obj/structure/disposalpipe/trunk, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -48491,7 +46082,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/item/radio/intercom{ @@ -48523,7 +46113,6 @@ /area/assembly/robotics) "bUf" = ( /obj/machinery/door/window/southright{ - dir = 2; name = "Primate Pen"; req_access_txt = "9" }, @@ -48541,9 +46130,7 @@ "bUh" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bUi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -48569,8 +46156,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -48599,8 +46185,7 @@ tag = "icon-pipe-j2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -48618,8 +46203,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -48680,7 +46264,6 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/light{ @@ -48690,7 +46273,6 @@ /obj/structure/table/tray, /obj/item/scalpel, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whiteblue"; tag = "icon-whitehall (WEST)" }, @@ -48698,13 +46280,11 @@ "bUv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) @@ -48721,7 +46301,6 @@ "bUy" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/power/terminal, @@ -48766,8 +46345,7 @@ }, /obj/machinery/camera{ c_tag = "Captain's Quarters"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -48777,12 +46355,10 @@ "bUC" = ( /obj/machinery/light, /obj/effect/decal/warning_stripes/arrow{ - dir = 8; - icon_state = "4" + dir = 8 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 8; - icon_state = "3" + dir = 8 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -48833,22 +46409,18 @@ /area/assembly/robotics) "bUI" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitepurplecorner" }, /area/medical/genetics) "bUJ" = ( /obj/structure/closet/wardrobe/genetics_white, /obj/machinery/camera{ - c_tag = "Medbay Genetics"; - network = list("SS13") + c_tag = "Medbay Genetics" }, /obj/structure/extinguisher_cabinet{ - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitepurplecorner" }, /area/medical/genetics) @@ -48857,9 +46429,7 @@ dir = 5; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bUL" = ( /obj/structure/cable{ d1 = 1; @@ -48868,12 +46438,10 @@ tag = "" }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 8; - icon_state = "3" + dir = 8 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 8; - icon_state = "4" + dir = 8 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -48903,7 +46471,6 @@ "bUN" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -48919,14 +46486,11 @@ }, /obj/machinery/camera{ c_tag = "Research Hallway Entrance"; - dir = 2; network = list("Research","SS13") }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bUP" = ( /obj/machinery/door/poddoor{ density = 0; @@ -48939,9 +46503,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bUQ" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -48984,7 +46546,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -48998,8 +46559,7 @@ "bUV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -49028,13 +46588,11 @@ "bUY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/sw) @@ -49072,7 +46630,6 @@ "bVd" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/structure/cable{ @@ -49085,8 +46642,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/crew_quarters/heads) @@ -49096,7 +46652,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -49118,8 +46673,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -49138,15 +46692,13 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bVo" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/structure/rack, @@ -49155,9 +46707,7 @@ pixel_y = 4 }, /obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "bVp" = ( /obj/machinery/navbeacon{ @@ -49170,8 +46720,7 @@ /area/quartermaster/storage) "bVq" = ( /obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/structure/cable{ d1 = 1; @@ -49207,8 +46756,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -49222,13 +46770,12 @@ /turf/simulated/floor/plasteel, /area/crew_quarters/heads) "bVv" = ( -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/crew_quarters/heads) "bVw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/structure/cable{ @@ -49247,8 +46794,6 @@ tag = "" }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel, @@ -49258,7 +46803,7 @@ /obj/item/pen/multi, /obj/item/pen/multi, /obj/item/megaphone, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/crew_quarters/heads) "bVz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -49284,7 +46829,6 @@ "bVB" = ( /obj/machinery/message_server, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/bluegrid, @@ -49304,14 +46848,11 @@ "bVD" = ( /obj/structure/window/reinforced/tinted{ dir = 4; - icon_state = "twindow"; tag = "" }, /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 4; - pixel_y = 0 + pixel_x = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -49320,17 +46861,14 @@ /area/assembly/robotics) "bVE" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whitecorner" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bVF" = ( /obj/effect/landmark{ name = "lightsout" @@ -49339,12 +46877,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bVG" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -49380,7 +46915,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -49412,7 +46946,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/photocopier, @@ -49456,7 +46989,6 @@ /obj/item/radio/beacon, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, @@ -49494,8 +47026,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -49520,7 +47051,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -49528,8 +47058,7 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -49553,7 +47082,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -49566,14 +47094,12 @@ "bVW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -49593,8 +47119,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -49620,8 +47145,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -49631,8 +47155,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -49652,12 +47175,10 @@ /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR: EMERGENCY ENTRANCE'."; name = "KEEP CLEAR: EMERGENCY ENTRANCE"; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -49668,22 +47189,18 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bWd" = ( /turf/simulated/wall, /area/medical/genetics_cloning) "bWe" = ( /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/structure/closet/secure_closet/roboticist, /turf/simulated/floor/plasteel{ @@ -49700,7 +47217,6 @@ "bWh" = ( /obj/machinery/photocopier, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -49716,7 +47232,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -49729,9 +47244,7 @@ dir = 9; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bWl" = ( /obj/structure/cable{ d1 = 2; @@ -49741,20 +47254,16 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bWm" = ( /obj/structure/chair/comfy/teal{ dir = 1 @@ -49763,7 +47272,6 @@ name = "Medical Doctor" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -49773,7 +47281,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -49785,17 +47292,13 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bWo" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 0; pixel_y = -30 }, /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -49805,7 +47308,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/noticeboard{ @@ -49820,15 +47322,12 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bWq" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -49841,9 +47340,7 @@ dir = 4; icon_state = "whitepurplecorner" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bWr" = ( /obj/structure/cable{ d1 = 1; @@ -49855,16 +47352,13 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitepurple" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bWs" = ( /obj/structure/table, /obj/item/soap/nanotrasen, @@ -49947,7 +47441,6 @@ /obj/item/crowbar, /obj/item/reagent_containers/spray/cleaner, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -49957,7 +47450,6 @@ id = "CloningDoor"; name = "Cloning Doors Control"; normaldoorcontrol = 1; - pixel_x = 0; pixel_y = -36 }, /turf/simulated/floor/plasteel{ @@ -49987,7 +47479,6 @@ dir = 1; icon_state = "left"; name = "Cryo Tank Storage"; - req_access_txt = "0"; req_one_access_txt = "5;32" }, /obj/machinery/atmospherics/unary/portables_connector{ @@ -50044,13 +47535,11 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "ramptop"; tag = "icon-stage_stairs" }, @@ -50066,12 +47555,10 @@ opacity = 0 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + dir = 4 }, /obj/machinery/ticket_machine{ layer = 4; @@ -50082,9 +47569,7 @@ "bWT" = ( /obj/machinery/computer/arcade, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, @@ -50104,7 +47589,6 @@ /obj/structure/table, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/item/storage/belt/utility, @@ -50135,7 +47619,7 @@ /obj/effect/landmark/start{ name = "Head of Personnel" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/crew_quarters/heads) "bWZ" = ( /obj/structure/table, @@ -50146,21 +47630,18 @@ /obj/item/book/manual/sop_supply, /obj/item/book/manual/sop_command, /obj/item/paper_bin/nanotrasen, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/crew_quarters/heads) "bXa" = ( /obj/structure/chair{ dir = 8 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/crew_quarters/heads) "bXb" = ( -/obj/machinery/computer/security/mining{ - network = list("Mining Outpost") - }, +/obj/machinery/computer/security/mining, /obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ dir = 9; @@ -50193,8 +47674,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) @@ -50217,13 +47697,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -50235,7 +47713,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -50244,8 +47721,7 @@ /area/maintenance/asmaint2) "bXj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -50258,8 +47734,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/quartermaster/office) @@ -50288,14 +47763,12 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/crew_quarters/heads) "bXq" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/structure/cable{ d1 = 1; @@ -50306,8 +47779,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -50321,7 +47793,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/bluegrid, @@ -50339,8 +47810,6 @@ /area/medical/genetics) "bXt" = ( /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -50352,7 +47821,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ name = "Gravity Generator"; - req_access_txt = "0"; req_one_access_txt = "10;30" }, /obj/structure/cable{ @@ -50385,7 +47853,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/chair/stool, @@ -50402,8 +47869,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel, /area/teleporter) @@ -50412,7 +47878,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/bluespace_beacon, @@ -50427,7 +47892,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -50446,8 +47910,7 @@ /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR: EMERGENCY ENTRANCE'."; name = "KEEP CLEAR: EMERGENCY ENTRANCE"; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -50456,7 +47919,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -50481,8 +47943,7 @@ /area/medical/sleeper) "bXF" = ( /obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = 0 + pixel_x = -21 }, /obj/machinery/sleeper{ dir = 4 @@ -50572,8 +48033,7 @@ pixel_x = -24 }, /obj/machinery/shower{ - dir = 4; - icon_state = "shower" + dir = 4 }, /obj/effect/decal/warning_stripes/blue/hollow, /turf/simulated/floor/plasteel/dark, @@ -50623,9 +48083,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0" + pixel_x = -25 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -50644,7 +48102,6 @@ pixel_y = 0 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -50696,12 +48153,10 @@ /obj/item/roller, /obj/machinery/alarm{ dir = 4; - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -50724,7 +48179,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -50742,7 +48196,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -50758,7 +48211,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -50774,13 +48226,11 @@ "bYa" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -50820,9 +48270,7 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) "bYd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whitebluecorner"; @@ -50837,9 +48285,7 @@ }, /area/medical/medbay2) "bYf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitebluecorner"; @@ -50848,9 +48294,7 @@ /area/medical/medbay2) "bYg" = ( /obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -50861,7 +48305,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -50906,8 +48349,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/research/glass{ name = "Robotics Lab"; - req_access_txt = "29"; - req_one_access_txt = "0" + req_access_txt = "29" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -50927,9 +48369,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "bYn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -50951,8 +48391,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel, /area/escapepodbay) @@ -51012,7 +48451,6 @@ "bYx" = ( /obj/machinery/light, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /obj/effect/decal/warning_stripes/north, @@ -51037,24 +48475,18 @@ }, /obj/machinery/computer/card/minor/rd, /obj/effect/decal/warning_stripes/east, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "bYA" = ( /obj/structure/rack, /obj/item/aicard, /obj/effect/decal/warning_stripes/west, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "bYB" = ( /obj/structure/displaycase/labcage, /obj/effect/decal/warning_stripes/east, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "bYC" = ( /obj/structure/table, @@ -51077,7 +48509,6 @@ dir = 1 }, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -51125,13 +48556,11 @@ icon_state = "4-8" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "browncorner" }, /area/quartermaster/office) "bYI" = ( /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -51184,8 +48613,7 @@ "bYO" = ( /obj/machinery/camera{ c_tag = "Cargo Bay Entrance"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/atm{ pixel_x = -24 @@ -51209,7 +48637,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/plasticflaps{ @@ -51235,17 +48662,15 @@ }, /obj/machinery/camera{ c_tag = "Head of Personnel's Office"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/item/twohanded/required/kirbyplants, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/crew_quarters/heads) "bYT" = ( /obj/structure/filingcabinet/chestdrawer, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /turf/simulated/floor/plasteel{ @@ -51274,13 +48699,12 @@ /obj/machinery/photocopier/faxmachine/longrange{ department = "Head of Personnel's Office" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/crew_quarters/heads) "bYW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -51340,7 +48764,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -51363,12 +48786,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -51386,13 +48807,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/engine/gravitygenerator) @@ -51401,11 +48820,9 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -51433,9 +48850,7 @@ "bZj" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 0 + pixel_x = -12 }, /obj/machinery/firealarm{ dir = 8; @@ -51456,8 +48871,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/cable{ d1 = 1; @@ -51486,7 +48900,6 @@ "bZn" = ( /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel, @@ -51547,8 +48960,7 @@ tag = "" }, /obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/structure/disposalpipe/segment{ dir = 1; @@ -51575,16 +48987,13 @@ /obj/machinery/computer/card/minor/cmo, /obj/machinery/camera{ c_tag = "Medbay Chief Medical Officer's Office"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/item/radio/intercom/department/medbay{ pixel_x = -32; pixel_y = 5 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = -32; pixel_y = -8 }, @@ -51632,7 +49041,6 @@ /area/medical/cmo) "bZA" = ( /obj/machinery/keycard_auth{ - pixel_x = 0; pixel_y = 26 }, /obj/machinery/light_switch{ @@ -51679,12 +49087,10 @@ }, /obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -51740,7 +49146,6 @@ }, /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j1s"; name = "Medbay Hall"; sortType = 9 }, @@ -51777,8 +49182,7 @@ /area/medical/medbay2) "bZI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/structure/cable{ d1 = 4; @@ -51880,7 +49284,6 @@ }, /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j1s"; name = "Med Chemistry"; sortType = 11 }, @@ -51935,8 +49338,7 @@ /area/medical/medbay2) "bZP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/structure/cable{ d1 = 4; @@ -51955,8 +49357,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -51974,7 +49375,6 @@ }, /obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -52007,8 +49407,7 @@ /area/medical/reception) "bZS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -52049,7 +49448,6 @@ req_access_txt = "30" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -52080,7 +49478,6 @@ pixel_y = 30 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -52089,9 +49486,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "bZX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -52107,8 +49502,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" + dir = 5 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -52131,13 +49525,11 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -52176,9 +49568,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cac" = ( /obj/structure/cable{ d1 = 1; @@ -52195,26 +49585,20 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "caj" = ( /obj/machinery/camera{ c_tag = "Research Hallway West"; - dir = 2; network = list("Research","SS13") }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cal" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; @@ -52223,9 +49607,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cam" = ( /turf/simulated/wall, /area/quartermaster/miningdock) @@ -52256,11 +49638,11 @@ /area/quartermaster/qm) "cap" = ( /obj/machinery/computer/supplycomp, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/quartermaster/qm) "caq" = ( /obj/machinery/computer/security/mining, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/quartermaster/qm) "cas" = ( /obj/structure/disposalpipe/segment, @@ -52282,8 +49664,7 @@ /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) @@ -52292,24 +49673,18 @@ dir = 4; icon_state = "whiteredcorner" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cav" = ( /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whiteredcorner" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "caw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel{ dir = 4; @@ -52324,9 +49699,7 @@ dir = 1; icon_state = "whitered" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cay" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -52335,17 +49708,13 @@ dir = 9; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "caz" = ( /obj/structure/sign/poster/random{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -52366,16 +49735,13 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "caC" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ @@ -52470,7 +49836,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -52488,7 +49853,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -52510,7 +49874,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment, @@ -52530,11 +49893,9 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/extinguisher_cabinet{ - pixel_x = 0; pixel_y = -30 }, /turf/simulated/floor/plasteel{ @@ -52549,7 +49910,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden, @@ -52568,7 +49928,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -52590,14 +49949,12 @@ /area/medical/cryo) "caO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -52646,8 +50003,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -52656,9 +50012,7 @@ /obj/effect/landmark/start{ name = "Chief Medical Officer" }, -/turf/simulated/floor/plasteel{ - icon_state = "darkbluecorners" - }, +/turf/simulated/floor/transparent/glass, /area/medical/cmo) "caU" = ( /obj/effect/spawner/window/reinforced, @@ -52686,7 +50040,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -52733,7 +50086,6 @@ /obj/structure/table/glass, /obj/item/storage/box/disks, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -52771,8 +50123,7 @@ pixel_x = 27 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/cable{ d1 = 1; @@ -52791,7 +50142,6 @@ "cbe" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/bluegrid, @@ -52805,8 +50155,7 @@ }, /obj/machinery/camera{ c_tag = "Messaging Server"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/light/small{ dir = 4 @@ -52821,12 +50170,10 @@ "cbh" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Foyer"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/structure/closet/radiation, @@ -52855,9 +50202,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cbl" = ( /obj/machinery/computer/teleporter, /turf/simulated/floor/plating, @@ -52867,12 +50212,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j1s"; name = "Captain's Office"; sortType = 18 }, @@ -52885,9 +50228,7 @@ dir = 9; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cbo" = ( /obj/structure/cable{ d1 = 1; @@ -52906,10 +50247,8 @@ icon_state = "pipe-c" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -52918,7 +50257,6 @@ /obj/item/megaphone, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -52926,7 +50264,6 @@ "cbq" = ( /obj/machinery/computer/robotics, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -52994,7 +50331,6 @@ /area/medical/medbay2) "cbv" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -53046,7 +50382,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -53101,7 +50436,7 @@ /obj/effect/landmark/start{ name = "Quartermaster" }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/quartermaster/qm) "cbM" = ( /turf/simulated/floor/plasteel, @@ -53111,7 +50446,6 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -53147,7 +50481,6 @@ "cbR" = ( /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /obj/structure/disposalpipe/segment, @@ -53159,14 +50492,12 @@ /area/toxins/test_area) "cbT" = ( /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, /obj/structure/cable, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -53182,11 +50513,9 @@ "cbV" = ( /obj/machinery/light, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -53230,8 +50559,7 @@ }, /obj/effect/decal/warning_stripes/northeast, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -53240,7 +50568,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -53294,7 +50621,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -53319,7 +50645,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -53340,8 +50665,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -53352,15 +50676,12 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "ccf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light, @@ -53373,21 +50694,17 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "ccg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -53395,15 +50712,12 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cch" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -53418,15 +50732,12 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cci" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -53438,15 +50749,12 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "ccj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -53462,9 +50770,7 @@ dir = 5; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cck" = ( /obj/structure/table/glass, /obj/item/hemostat{ @@ -53476,12 +50782,10 @@ }, /obj/item/stack/medical/bruise_pack/advanced, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/item/reagent_containers/iv_bag/salglu, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whiteblue"; tag = "icon-whitehall (WEST)" }, @@ -53530,30 +50834,23 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "ccq" = ( /obj/machinery/camera{ c_tag = "Medbay Treatment Center"; - dir = 1; - network = list("SS13"); - pixel_x = 0 + dir = 1 }, /obj/machinery/light, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -53573,7 +50870,6 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -53583,7 +50879,6 @@ dir = 4 }, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -53633,8 +50928,7 @@ dir = 1 }, /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/machinery/alarm{ dir = 1; @@ -53650,14 +50944,12 @@ }, /obj/machinery/camera{ c_tag = "Medbay Cryogenics"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; pixel_x = -5; - pixel_y = -30; - req_access_txt = "0" + pixel_y = -30 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -53677,7 +50969,6 @@ dir = 1; icon_state = "left"; name = "Cryo Tank Storage"; - req_access_txt = "0"; req_one_access_txt = "5;32" }, /obj/machinery/atmospherics/unary/portables_connector{ @@ -53693,9 +50984,6 @@ /obj/machinery/light, /obj/item/reagent_containers/spray/cleaner, /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = -25 }, /turf/simulated/floor/plasteel{ @@ -53716,7 +51004,6 @@ dir = 1; icon_state = "left"; name = "Cryo Tank Storage"; - req_access_txt = "0"; req_one_access_txt = "5;32" }, /obj/machinery/atmospherics/unary/portables_connector{ @@ -53797,18 +51084,14 @@ d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "darkblue" - }, +/turf/simulated/floor/transparent/glass, /area/medical/cmo) "ccI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -53816,8 +51099,7 @@ /obj/machinery/power/apc{ dir = 4; name = "east bump Important Area"; - pixel_x = 24; - shock_proof = 0 + pixel_x = 24 }, /obj/structure/cable{ d2 = 2; @@ -53873,7 +51155,6 @@ /area/maintenance/asmaint2) "ccN" = ( /obj/machinery/alarm{ - frequency = 1439; pixel_y = 23 }, /obj/structure/closet/l3closet/janitor, @@ -53882,8 +51163,6 @@ "ccO" = ( /obj/structure/closet/jcloset, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel, @@ -53923,7 +51202,6 @@ /obj/machinery/r_n_d/server/robotics, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6; - icon_state = "intact"; tag = "icon-intact (SOUTHEAST)" }, /turf/simulated/floor/bluegrid/telecomms/server, @@ -53937,14 +51215,12 @@ }, /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8; - icon_state = "intact"; tag = "icon-intact (WEST)" }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -53960,7 +51236,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel/dark/telecomms, @@ -53968,7 +51243,6 @@ "ccW" = ( /obj/machinery/camera{ c_tag = "Research Server Room"; - dir = 2; network = list("Research","SS13"); pixel_x = 22 }, @@ -53981,7 +51255,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel/dark, @@ -54012,8 +51285,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/conveyor/east{ id = "packageExternal" @@ -54026,8 +51298,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/conveyor/east{ id = "packageExternal" @@ -54039,7 +51310,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ name = "Gravity Generator"; - req_access_txt = "0"; req_one_access_txt = "10;30" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -54052,8 +51322,6 @@ "cdb" = ( /obj/machinery/atmospherics/unary/thermomachine/freezer/on/server, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel/dark, @@ -54068,8 +51336,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/camera{ c_tag = "Central Hallway South East"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -54084,9 +51351,7 @@ dir = 9; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cde" = ( /obj/structure/cable{ d1 = 2; @@ -54116,7 +51381,6 @@ "cdg" = ( /obj/machinery/computer/mecha, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -54129,7 +51393,6 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -54143,9 +51406,7 @@ pixel_x = 4 }, /obj/effect/decal/warning_stripes/southwest, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "cdj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -54157,15 +51418,11 @@ /area/medical/genetics) "cdk" = ( /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = 28 }, /obj/structure/filingcabinet/chestdrawer, /obj/effect/decal/warning_stripes/southeast, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "cdn" = ( /obj/structure/cable{ @@ -54185,7 +51442,6 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = "CloningDoor"; name = "Genetics Cloning"; - req_access_txt = "0"; req_one_access_txt = "5;9" }, /obj/structure/cable{ @@ -54204,8 +51460,7 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -54228,8 +51483,7 @@ department = "Cargo Bay"; departmentType = 2; name = "Cargo Requests Console"; - pixel_x = -30; - pixel_y = 0 + pixel_x = -30 }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) @@ -54297,7 +51551,7 @@ pixel_x = 2; pixel_y = 6 }, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/quartermaster/qm) "cdE" = ( /obj/structure/disposalpipe/segment, @@ -54315,9 +51569,7 @@ dir = 5; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cdG" = ( /obj/machinery/shower{ pixel_y = 8 @@ -54354,15 +51606,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cdM" = ( /obj/structure/chair/office/light{ dir = 8 @@ -54371,7 +51620,6 @@ name = "Research Director" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -54380,12 +51628,8 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central/south) "cdO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "cdP" = ( /obj/structure/cable{ @@ -54404,16 +51648,13 @@ department = "Cargo Bay"; departmentType = 2; name = "Cargo Requests Console"; - pixel_x = -30; - pixel_y = 0 + pixel_x = -30 }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) "cdR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, -/turf/simulated/floor/plasteel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/transparent/glass, /area/quartermaster/qm) "cdS" = ( /obj/structure/cable{ @@ -54424,7 +51665,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -54444,7 +51684,6 @@ /area/hallway/primary/central/sw) "cdV" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -54467,7 +51706,6 @@ "cdY" = ( /obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "pipe-j1"; tag = "icon-pipe-j1 (EAST)" }, /turf/simulated/floor/plasteel{ @@ -54518,8 +51756,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ id_tag = null; - name = "Observation Room"; - req_access_txt = "0" + name = "Observation Room" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -54537,8 +51774,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ id_tag = null; - name = "Observation Room"; - req_access_txt = "0" + name = "Observation Room" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -54552,7 +51788,6 @@ "ceh" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -54567,8 +51802,7 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -54591,20 +51825,14 @@ d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "darkblue" - }, +/turf/simulated/floor/transparent/glass, /area/medical/cmo) "cel" = ( /obj/structure/chair{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkblue" - }, +/turf/simulated/floor/transparent/glass, /area/medical/cmo) "cem" = ( /obj/structure/table/glass, @@ -54660,7 +51888,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -54679,8 +51906,6 @@ dir = 4 }, /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel, @@ -54704,9 +51929,7 @@ /area/hallway/primary/central/south) "cex" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, @@ -54721,8 +51944,7 @@ "cez" = ( /obj/machinery/alarm/server{ dir = 4; - pixel_x = -22; - pixel_y = 0 + pixel_x = -22 }, /obj/machinery/light/small{ dir = 8 @@ -54736,15 +51958,12 @@ /area/hallway/primary/central/south) "ceB" = ( /obj/machinery/camera{ - c_tag = "Central Primary Hallway South"; - dir = 2; - network = list("SS13") + c_tag = "Central Primary Hallway South" }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/south) "ceC" = ( /obj/machinery/alarm{ - frequency = 1439; pixel_y = 23 }, /turf/simulated/floor/plasteel, @@ -54766,7 +51985,6 @@ /area/quartermaster/storage) "ceF" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -54848,9 +52066,7 @@ dir = 5; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "ceN" = ( /obj/structure/cable{ d1 = 1; @@ -54864,12 +52080,9 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "ceO" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -54882,18 +52095,14 @@ /area/ntrep) "ceQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "ceS" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -54903,7 +52112,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -54924,8 +52132,7 @@ }, /obj/effect/decal/warning_stripes/southeast, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + dir = 4 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -54961,26 +52168,23 @@ pixel_y = -4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/quartermaster/qm) "cff" = ( /obj/machinery/computer/security/mining, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/camera{ c_tag = "Mining Dock"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) "cfg" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/structure/disposalpipe/segment, @@ -54992,8 +52196,7 @@ location = "QM" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -55003,12 +52206,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel, @@ -55027,7 +52228,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -55053,7 +52253,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -55069,12 +52268,10 @@ /area/hallway/primary/central/sw) "cfn" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -55083,7 +52280,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/landmark/start{ @@ -55106,8 +52302,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel, /area/janitor) @@ -55118,8 +52313,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/sw) @@ -55159,8 +52353,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/sw) @@ -55179,7 +52372,6 @@ }, /obj/item/surgicaldrill, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whiteblue"; tag = "icon-whitehall (WEST)" }, @@ -55215,7 +52407,6 @@ /obj/machinery/door_control{ id = "surgeryobs1"; name = "Privacy Shutters Control"; - pixel_x = 0; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -55259,8 +52450,7 @@ dir = 8 }, /obj/machinery/camera{ - c_tag = "Medbay Surgery Observation"; - network = list("SS13") + c_tag = "Medbay Surgery Observation" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -55301,7 +52491,6 @@ /obj/effect/spawner/window/reinforced, /obj/machinery/door/poddoor/shutters{ density = 0; - dir = 4; icon_state = "open"; id_tag = "surgeryobs2"; name = "Privacy Shutters"; @@ -55337,11 +52526,9 @@ /obj/machinery/door_control{ id = "surgeryobs2"; name = "Privacy Shutters Control"; - pixel_x = 0; pixel_y = 25 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -55375,7 +52562,6 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/structure/table/tray, @@ -55448,7 +52634,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -55494,7 +52679,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -55519,14 +52703,12 @@ /area/hallway/primary/central/sw) "cfU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -55536,8 +52718,7 @@ }, /mob/living/simple_animal/pet/cat/Runtime, /turf/simulated/floor/plasteel{ - dir = 1; - icon_state = "darkbluecorners" + icon_state = "dark" }, /area/medical/cmo) "cfV" = ( @@ -55551,7 +52732,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -55561,8 +52741,7 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkbluecorners" + icon_state = "dark" }, /area/medical/cmo) "cfW" = ( @@ -55573,8 +52752,7 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/item/paper_bin/nanotrasen, /turf/simulated/floor/plasteel{ @@ -55595,9 +52773,7 @@ "cfY" = ( /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0" + pixel_x = -25 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -55626,7 +52802,6 @@ /obj/machinery/r_n_d/server/core, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5; - icon_state = "intact"; tag = "icon-intact (NORTHEAST)" }, /turf/simulated/floor/bluegrid/telecomms/server, @@ -55668,8 +52843,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/south) @@ -55685,8 +52859,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/south) @@ -55767,7 +52940,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -55794,7 +52966,6 @@ "cgv" = ( /obj/machinery/photocopier, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -55836,8 +53007,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/se) @@ -55847,8 +53017,7 @@ location = "CHE" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -55888,9 +53057,7 @@ icon_state = "pipe-j2"; tag = "icon-pipe-j1 (WEST)" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -55919,12 +53086,9 @@ /area/quartermaster/qm) "cgO" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 + dir = 5 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" }, @@ -55950,8 +53114,7 @@ /area/maintenance/apmaint) "cgR" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" + dir = 9 }, /obj/effect/landmark/start{ name = "Medical Doctor" @@ -55972,8 +53135,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel/dark/telecomms, /area/toxins/server_coldroom) @@ -56045,17 +53207,14 @@ /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; - dir = 4; icon_state = "rightsecure"; name = "Server Exterior Door"; - req_access = null; - req_access_txt = "0" + req_access = null }, /obj/machinery/door/window/brigdoor{ dir = 8; name = "Server Interior Door"; - req_access = null; - req_access_txt = "0" + req_access = null }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -56091,7 +53250,6 @@ /obj/structure/sign/directions/engineering, /obj/structure/sign/directions/science{ dir = 4; - pixel_x = 0; pixel_y = -7 }, /obj/structure/sign/directions/medical{ @@ -56121,12 +53279,10 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = "CloningDoor"; name = "Genetics Cloning"; - req_access_txt = "0"; req_one_access_txt = "5;9" }, /obj/effect/mapping_helpers/airlock/unres{ - dir = 4; - icon_state = "airlock_unres_helper" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -56137,7 +53293,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -56149,8 +53304,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/cable{ d2 = 4; @@ -56248,7 +53402,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/landmark/start{ @@ -56275,14 +53428,12 @@ "chv" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" + dir = 5 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel/dark, /area/toxins/server) @@ -56295,8 +53446,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" + dir = 9 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -56317,8 +53467,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -56354,7 +53503,6 @@ /obj/item/clothing/mask/gas, /obj/item/storage/briefcase, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkblue" }, /area/medical/cmo) @@ -56370,13 +53518,11 @@ icon_state = "1-2" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkblue" }, /area/medical/cmo) "chC" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -56390,7 +53536,6 @@ department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer Requests Console"; - pixel_x = 0; pixel_y = -30 }, /turf/simulated/floor/plasteel{ @@ -56405,14 +53550,12 @@ }, /obj/machinery/photocopier, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkblue" }, /area/medical/cmo) "chF" = ( /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/effect/decal/cleanable/dirt, @@ -56434,7 +53577,6 @@ "chH" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/wood, @@ -56461,13 +53603,11 @@ /area/medical/surgery1) "chL" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/alarm{ dir = 4; - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -56477,22 +53617,18 @@ "chM" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "chN" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -56514,9 +53650,7 @@ dir = 9; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "chO" = ( /obj/structure/cable{ d1 = 1; @@ -56532,26 +53666,21 @@ }, /obj/structure/disposalpipe/sortjunction{ dir = 1; - icon_state = "pipe-j1s"; name = "Sci RD Office 2"; sortType = 13 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "chP" = ( /obj/structure/cable{ d1 = 2; @@ -56570,7 +53699,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -56580,7 +53708,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -56598,7 +53725,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -56609,7 +53735,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -56622,7 +53747,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -56654,7 +53778,6 @@ dir = 9 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -56664,7 +53787,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -56719,9 +53841,7 @@ /obj/machinery/atmospherics/pipe/simple/insulated, /obj/machinery/camera{ c_tag = "Research Toxins Mixing North"; - dir = 2; - network = list("Research","SS13"); - pixel_x = 0 + network = list("Research","SS13") }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -56762,8 +53882,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -56822,8 +53941,7 @@ pixel_y = 7 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel, /area/quartermaster/qm) @@ -56850,7 +53968,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -56869,8 +53986,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/wood, /area/blueshield) @@ -56911,9 +54027,7 @@ icon_state = "0-8" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/power/apc{ @@ -56927,8 +54041,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/wood, /area/ntrep) @@ -56953,9 +54066,7 @@ dir = 1 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/item/twohanded/required/kirbyplants, @@ -56971,7 +54082,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -56992,7 +54102,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -57006,7 +54115,6 @@ name = "Central Access" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -57015,7 +54123,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/airlock/public/glass{ @@ -57050,7 +54157,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -57073,11 +54179,9 @@ }, /obj/machinery/alarm{ dir = 8; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -57091,9 +54195,7 @@ }, /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0" + pixel_x = -25 }, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, @@ -57206,7 +54308,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -57246,8 +54347,7 @@ req_access_txt = "73" }, /obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 0 + pixel_x = 24 }, /turf/simulated/floor/wood, /area/ntrep) @@ -57281,7 +54381,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -57318,11 +54417,9 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel, @@ -57347,7 +54444,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light, @@ -57358,7 +54454,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -57426,7 +54521,6 @@ /obj/item/clothing/under/rank/medical/green, /obj/item/clothing/under/rank/medical/purple, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -57454,12 +54548,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -57492,7 +54584,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -57539,7 +54630,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -57602,15 +54692,11 @@ id = "cmoofficedoor"; name = "Office Door"; normaldoorcontrol = 1; - pixel_x = 0; pixel_y = -13; req_access_txt = "40" }, /obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "darkbluecorners" - }, +/turf/simulated/floor/transparent/glass, /area/medical/cmo) "cjG" = ( /turf/simulated/floor/engine, @@ -57624,9 +54710,7 @@ "cjI" = ( /obj/machinery/camera{ c_tag = "Research E.X.P.E.R.I-MENTOR Chamber"; - dir = 2; - network = list("Telepad","Research","SS13"); - pixel_x = 0 + network = list("Telepad","Research","SS13") }, /obj/machinery/light{ dir = 1; @@ -57653,7 +54737,6 @@ "cjK" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -57665,8 +54748,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -57696,11 +54778,9 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -57726,14 +54806,12 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, /area/crew_quarters/hor) "cjQ" = ( /obj/machinery/keycard_auth{ - pixel_x = 0; pixel_y = -24 }, /obj/machinery/light, @@ -57745,7 +54823,6 @@ }, /obj/structure/table/glass, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -57764,7 +54841,6 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -57892,7 +54968,6 @@ "cko" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/structure/disposalpipe/segment, @@ -57917,13 +54992,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/quartermaster/miningdock) @@ -57935,7 +55008,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -57984,8 +55056,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -58017,15 +55088,11 @@ "ckA" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/machinery/camera{ c_tag = "Medbay Surgery East Storage"; - dir = 1; - network = list("SS13"); - pixel_x = 0 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -58056,7 +55123,6 @@ /obj/machinery/recharger, /obj/item/screwdriver, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -58074,7 +55140,6 @@ /obj/machinery/cell_charger, /obj/item/stock_parts/cell, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -58084,7 +55149,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -58092,11 +55156,9 @@ icon_state = "0-2" }, /obj/machinery/camera{ - c_tag = "Medbay Break Room"; - network = list("SS13") + c_tag = "Medbay Break Room" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -58239,9 +55301,7 @@ "ckU" = ( /obj/machinery/camera{ c_tag = "Medbay Surgery West"; - dir = 1; - network = list("SS13"); - pixel_x = 0 + dir = 1 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -58260,7 +55320,6 @@ "ckW" = ( /obj/structure/closet/secure_closet/medical2, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -58282,7 +55341,6 @@ pixel_x = -24 }, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -58296,13 +55354,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -58325,13 +55381,8 @@ "clb" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkblue" - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/transparent/glass, /area/medical/cmo) "clc" = ( /obj/machinery/bodyscanner, @@ -58376,12 +55427,9 @@ "clf" = ( /obj/machinery/camera{ c_tag = "Medbay Surgery East"; - dir = 1; - network = list("SS13"); - pixel_x = 0 + dir = 1 }, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /obj/machinery/light, @@ -58402,8 +55450,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/cable{ d1 = 1; @@ -58411,8 +55458,7 @@ icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ - pixel_x = -30; - pixel_y = 0 + pixel_x = -30 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ @@ -58430,7 +55476,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -58444,18 +55489,14 @@ dir = 5; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "clk" = ( /obj/machinery/washing_machine, /obj/machinery/alarm{ dir = 8; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -58467,7 +55508,6 @@ icon_state = "1-8" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -58490,9 +55530,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "clo" = ( /obj/effect/landmark{ name = "blobstart" @@ -58535,7 +55573,6 @@ "clt" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/engine, @@ -58556,8 +55593,7 @@ "clw" = ( /obj/machinery/atmospherics/binary/valve, /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -58565,7 +55601,6 @@ /area/toxins/mixing) "clx" = ( /obj/machinery/atmospherics/unary/outlet_injector{ - dir = 2; frequency = 1443; icon_state = "on"; id = "air_in"; @@ -58598,8 +55633,7 @@ /area/toxins/test_area) "clB" = ( /obj/machinery/door/airlock/external{ - name = "Toxins Test Chamber"; - req_access_txt = "0" + name = "Toxins Test Chamber" }, /turf/simulated/floor/plating/airless, /area/toxins/test_area) @@ -58625,8 +55659,7 @@ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 + name = "EXTERNAL AIRLOCK" }, /turf/simulated/wall, /area/quartermaster/miningdock) @@ -58707,8 +55740,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -58718,7 +55750,6 @@ "clU" = ( /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -58746,7 +55777,6 @@ "clX" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/light/small{ @@ -58766,23 +55796,19 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "clZ" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -58871,9 +55897,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cmj" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching the singularity chamber."; @@ -58881,7 +55905,6 @@ layer = 4; name = "Singularity Engine Telescreen"; network = list("Singularity"); - pixel_x = 0; pixel_y = 30 }, /obj/structure/chair/office/dark{ @@ -58894,7 +55917,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light/small{ @@ -58925,8 +55947,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/medical/glass{ id_tag = null; - name = "Virology Lobby Hallway"; - req_access_txt = "0" + name = "Virology Lobby Hallway" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -58971,7 +55992,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/junction{ @@ -58984,13 +56004,11 @@ "cmr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/cable{ d1 = 1; @@ -59022,7 +56040,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -59030,7 +56047,6 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59052,7 +56068,6 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59068,11 +56083,9 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59083,7 +56096,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59127,7 +56139,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -59146,7 +56157,6 @@ /obj/structure/table, /obj/item/reagent_containers/food/drinks/britcup, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59166,8 +56176,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -59250,7 +56259,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -59274,7 +56282,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -59306,7 +56313,6 @@ "cmW" = ( /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/structure/reagent_dispensers/watertank, @@ -59332,9 +56338,7 @@ "cmY" = ( /obj/machinery/camera{ c_tag = "Research Toxins Mixing West"; - dir = 2; - network = list("Research","SS13"); - pixel_x = 0 + network = list("Research","SS13") }, /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel{ @@ -59411,8 +56415,7 @@ /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -59432,7 +56435,6 @@ "cnl" = ( /obj/structure/closet/wardrobe/miner, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "brown" }, /area/quartermaster/miningdock) @@ -59452,7 +56454,6 @@ "cno" = ( /obj/structure/closet/secure_closet/miner, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "brown" }, /area/quartermaster/miningdock) @@ -59485,7 +56486,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -59535,8 +56535,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ id_tag = null; - name = "Virology Lobby Hallway"; - req_access_txt = "0" + name = "Virology Lobby Hallway" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -59560,9 +56559,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cnz" = ( /obj/structure/sign/biohazard{ pixel_y = 32 @@ -59577,7 +56574,6 @@ }) "cnA" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -59587,9 +56583,6 @@ on = 1 }, /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -59609,20 +56602,17 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "cnD" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/camera{ - c_tag = "Virology Lobby"; - network = list("SS13") + c_tag = "Virology Lobby" }, /turf/simulated/floor/plasteel{ dir = 1; @@ -59674,7 +56664,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -59706,7 +56695,6 @@ "cnL" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -59731,11 +56719,9 @@ dir = 1 }, /obj/machinery/light_switch{ - pixel_x = 0; pixel_y = -27 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59743,7 +56729,6 @@ "cnO" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59751,7 +56736,6 @@ "cnP" = ( /obj/machinery/vending/chinese, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59759,7 +56743,6 @@ "cnQ" = ( /obj/machinery/computer/med_data, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59767,11 +56750,9 @@ "cnR" = ( /obj/structure/chair/stool, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -59788,7 +56769,6 @@ "cnT" = ( /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j1s"; name = "QM Office"; sortType = 3 }, @@ -59796,7 +56776,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -59820,8 +56799,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/effect/landmark/start{ name = "Shaft Miner" @@ -59834,8 +56812,7 @@ /area/maintenance/asmaint) "cnW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -59855,7 +56832,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -59873,8 +56849,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -59891,8 +56866,7 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -59909,7 +56883,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -59921,8 +56894,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -59940,15 +56912,12 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -59963,12 +56932,10 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -59985,12 +56952,10 @@ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -60012,7 +56977,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -60077,8 +57041,7 @@ "com" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -60119,18 +57082,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, /area/janitor) -"cos" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/asmaint) "cot" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -60145,7 +57096,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -60199,8 +57149,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/toxins/storage) @@ -60220,9 +57169,7 @@ dir = 5; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "coD" = ( /obj/effect/landmark/start{ name = "Scientist" @@ -60233,9 +57180,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "coE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -60280,14 +57225,12 @@ layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/alarm{ pixel_y = 31 }, /obj/machinery/driver_button{ - dir = 2; id_tag = "toxinsdriver"; pixel_y = 22; range = 18 @@ -60374,7 +57317,6 @@ "coT" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -60396,8 +57338,7 @@ /area/ntrep) "coW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/carpet, /area/ntrep) @@ -60417,8 +57358,7 @@ /area/blueshield) "coY" = ( /obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = 0 + pixel_x = -24 }, /obj/machinery/door/window{ dir = 1; @@ -60429,12 +57369,10 @@ /area/blueshield) "coZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -60446,7 +57384,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreencorner" }, /area/medical/virology/lab{ @@ -60455,8 +57392,7 @@ "cpa" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -60476,12 +57412,10 @@ }) "cpb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -60493,12 +57427,10 @@ tag = "" }, /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = -32; step_size = 0 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -60507,12 +57439,10 @@ }) "cpc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -60529,7 +57459,6 @@ icon_state = "1-4" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -60538,12 +57467,10 @@ }) "cpd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -60556,7 +57483,6 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -60565,12 +57491,10 @@ }) "cpe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -60586,7 +57510,6 @@ pixel_y = -24 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -60611,21 +57534,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) "cph" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/cable{ d1 = 1; @@ -60667,7 +57587,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/airlock/maintenance{ @@ -60682,7 +57601,6 @@ /obj/item/folder, /obj/item/radio, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -60702,13 +57620,9 @@ "cpn" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 + pixel_x = 11 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "whiteblue"; @@ -60718,13 +57632,9 @@ "cpo" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 + pixel_x = -12 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 4; icon_state = "whiteblue"; @@ -60734,7 +57644,6 @@ "cpp" = ( /obj/machinery/light/small{ dir = 4; - icon_state = "bulb1"; tag = "icon-bulb1 (EAST)" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -60766,16 +57675,13 @@ "cpr" = ( /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cps" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, @@ -60791,27 +57697,21 @@ dir = 9; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cpu" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cpv" = ( /obj/effect/decal/warning_stripes/west, /obj/effect/decal/cleanable/dirt, @@ -60836,9 +57736,7 @@ }, /obj/machinery/camera{ c_tag = "Medbay Surgery West Storage"; - dir = 1; - network = list("SS13"); - pixel_x = 0 + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "showroomfloor" @@ -60888,9 +57786,7 @@ }, /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 12; - pixel_y = 0 + pixel_x = 12 }, /turf/simulated/floor/plasteel{ dir = 6; @@ -60910,7 +57806,6 @@ }, /obj/effect/decal/warning_stripes/south, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -60960,7 +57855,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/warning_stripes/east, @@ -61075,7 +57969,6 @@ master_tag = "viro_lab_airlock_control"; name = "Virology Lab Access Button"; pixel_x = -24; - pixel_y = 0; req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -61103,8 +57996,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/camera{ c_tag = "Medbay Secondary Hallway South"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -61181,7 +58073,6 @@ /obj/structure/closet/emcloset, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -61207,7 +58098,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -61224,8 +58114,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -61293,7 +58182,6 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/effect/decal/warning_stripes/northeastcorner, @@ -61333,9 +58221,7 @@ "cqj" = ( /obj/machinery/camera{ c_tag = "Research Toxins Mixing East"; - dir = 2; - network = list("Research","SS13"); - pixel_x = 0 + network = list("Research","SS13") }, /obj/machinery/atmospherics/unary/portables_connector{ dir = 1 @@ -61363,8 +58249,7 @@ "cqm" = ( /obj/structure/dispenser, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -61396,7 +58281,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/holosign/surgery{ @@ -61417,8 +58301,7 @@ dir = 8 }, /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/structure/cable{ d2 = 2; @@ -61427,7 +58310,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -61452,8 +58334,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 1; @@ -61483,13 +58364,11 @@ dir = 5 }, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/apmaint) @@ -61501,12 +58380,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/sortjunction{ dir = 8; - icon_state = "pipe-j1s"; name = "HoP Office"; sortType = 15 }, @@ -61540,8 +58417,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/apmaint) @@ -61572,7 +58448,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/holosign/surgery{ @@ -61595,11 +58470,9 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -61647,7 +58520,6 @@ "cqE" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -61664,7 +58536,6 @@ "cqG" = ( /obj/machinery/shower{ dir = 8; - icon_state = "shower"; tag = "icon-shower (WEST)" }, /turf/simulated/floor/plasteel{ @@ -61718,7 +58589,6 @@ "cqN" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -61785,7 +58655,6 @@ announcementConsole = 1; department = "NT Representative"; departmentType = 5; - dir = 2; name = "NT Representative Requests Console"; pixel_x = 30 }, @@ -61799,8 +58668,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -61916,8 +58784,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -61950,7 +58817,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkblue" }, /area/medical/surgery1) @@ -61959,7 +58825,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "darkblue" }, /area/medical/surgery2) @@ -61967,8 +58832,7 @@ /obj/machinery/door_control{ id = "telescienceblast"; name = "Test Chamber Blast Doors"; - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /obj/structure/cable{ d1 = 1; @@ -62014,8 +58878,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -62040,8 +58903,7 @@ /obj/structure/table/glass, /obj/item/storage/box/syringes, /obj/machinery/camera{ - c_tag = "Virology Monkey Pen"; - network = list("SS13") + c_tag = "Virology Monkey Pen" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -62051,8 +58913,7 @@ /area/medical/virology) "crn" = ( /obj/structure/sign/fire{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -62061,23 +58922,18 @@ dir = 9; icon_state = "whitehall" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cro" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "crp" = ( /obj/effect/decal/warning_stripes/southwestcorner, /obj/machinery/light_switch{ @@ -62086,7 +58942,6 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -62103,7 +58958,6 @@ department = "Virology"; departmentType = 3; name = "Virology Requests Console"; - pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/plasteel{ @@ -62177,8 +59031,7 @@ tag = "" }, /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -62187,17 +59040,14 @@ /area/toxins/mixing) "cry" = ( /obj/machinery/camera{ - c_tag = "Virology Airlock"; - network = list("SS13") + c_tag = "Virology Airlock" }, /obj/machinery/shower{ pixel_y = 20 }, /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 10; - pixel_y = 0 + pixel_x = 10 }, /obj/effect/decal/warning_stripes/northeast, /turf/simulated/floor/plasteel{ @@ -62257,8 +59107,7 @@ /obj/effect/decal/warning_stripes/northwestcorner, /obj/effect/decal/warning_stripes/northwestcorner, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -62382,9 +59231,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "crS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -62395,7 +59242,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -62426,8 +59272,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -62436,7 +59281,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -62496,7 +59340,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -62506,11 +59349,8 @@ /obj/effect/landmark/start{ name = "Medical Doctor" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -62547,7 +59387,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -62560,12 +59399,9 @@ layer = 4; name = "E.X.P.E.R.I-MENTOR Camera Screen"; network = list("Telepad"); - pixel_x = 0; pixel_y = 32 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -62575,7 +59411,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -62590,7 +59425,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -62635,8 +59469,7 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = -30; - pixel_y = 0 + pixel_x = -30 }, /obj/structure/disposalpipe/trunk, /obj/effect/decal/warning_stripes/southeastcorner, @@ -62666,8 +59499,7 @@ layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/effect/decal/warning_stripes/southwestcorner, /turf/simulated/floor/plasteel, @@ -62753,11 +59585,9 @@ /obj/item/flashlight/lamp, /obj/machinery/camera{ c_tag = "Blueshield's Office"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/newscaster/security_unit{ - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/wood, @@ -62814,15 +59644,13 @@ "csE" = ( /obj/machinery/camera{ c_tag = "NT Representative's Office"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine/longrange{ department = "NT Representative's Office" }, /obj/machinery/newscaster/security_unit{ - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/wood, @@ -62834,9 +59662,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "csG" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plasteel, @@ -62846,26 +59672,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "csI" = ( /obj/structure/disposalpipe/segment, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/camera{ c_tag = "Aft Primary Hallway 1"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -62877,7 +59698,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light, @@ -62885,7 +59705,6 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitepurple" }, /area/toxins/mixing) @@ -62902,11 +59721,9 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitepurple" }, /area/toxins/mixing) @@ -62917,16 +59734,13 @@ }, /obj/structure/closet/firecloset, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, /area/engine/controlroom) "csO" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 0; pixel_y = 30 }, /obj/structure/closet/firecloset, @@ -62943,7 +59757,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -62966,7 +59779,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/window/plasmareinforced{ @@ -62986,13 +59798,10 @@ /obj/item/storage/box/monkeycubes/farwacubes, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 + pixel_x = -22 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -63005,7 +59814,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -63030,7 +59838,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -63041,12 +59848,10 @@ "csW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -63067,12 +59872,10 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -63081,8 +59884,7 @@ "csY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 2; @@ -63097,12 +59899,10 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -63110,8 +59910,7 @@ /area/medical/virology) "cta" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ @@ -63121,12 +59920,10 @@ "ctb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ @@ -63135,12 +59932,10 @@ /area/medical/virology) "ctc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 1; @@ -63154,12 +59949,10 @@ /area/medical/virology) "ctd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -63174,8 +59967,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/effect/decal/warning_stripes/north, /turf/simulated/floor/plasteel{ @@ -63209,12 +60001,10 @@ req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 4; @@ -63228,12 +60018,10 @@ /area/medical/virology) "ctg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 4; @@ -63297,7 +60085,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -63307,7 +60094,6 @@ pixel_x = 32 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -63324,8 +60110,7 @@ "ctn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63397,15 +60182,12 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "ctw" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -63423,7 +60205,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -63454,7 +60235,6 @@ dir = 8 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -63489,15 +60269,12 @@ "ctC" = ( /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "ctE" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ @@ -63540,8 +60317,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/table, /obj/item/stack/cable_coil{ @@ -63566,16 +60342,13 @@ /obj/machinery/door/firedoor, /obj/machinery/door/window/northleft{ dir = 4; - icon_state = "left"; name = "Engineering Desk"; - req_access_txt = "0"; req_one_access_txt = "11;24" }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/warning_stripes/yellow, @@ -63583,8 +60356,7 @@ /area/engine/controlroom) "ctL" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/portable_atmospherics/pump, /turf/simulated/floor/plasteel{ @@ -63648,8 +60420,7 @@ "ctQ" = ( /obj/machinery/door/window/southright{ name = "Toxins Launcher"; - req_access_txt = "7"; - req_one_access_txt = "0" + req_access_txt = "7" }, /obj/machinery/door/window/southright{ dir = 1; @@ -63686,9 +60457,6 @@ /area/hallway/primary/aft) "ctT" = ( /obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; name = "Assembly Line Delivery"; req_access_txt = "32" }, @@ -63735,7 +60503,6 @@ /obj/machinery/door/window/westright{ name = "Engineering Monitoring Station"; req_access = null; - req_access_txt = "0"; req_one_access_txt = "11;24;34" }, /obj/effect/decal/warning_stripes/yellow/hollow, @@ -63750,10 +60517,8 @@ /area/maintenance/asmaint) "cua" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/structure/disposalpipe/junction{ dir = 2; @@ -63786,9 +60551,7 @@ /obj/item/pen, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -63801,7 +60564,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -63822,7 +60584,6 @@ /obj/effect/decal/warning_stripes/northwestcorner, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28; pixel_y = -28 }, @@ -63836,7 +60597,6 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -63853,7 +60613,6 @@ /area/engine/controlroom) "cuj" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -63864,19 +60623,16 @@ icon_state = "pipe-c" }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + dir = 4 }, /turf/simulated/floor/plasteel, /area/engine/controlroom) "cul" = ( /obj/structure/table/glass, /obj/structure/reagent_dispensers/virusfood{ - pixel_x = 0; pixel_y = -30 }, /obj/item/reagent_containers/syringe/antiviral, @@ -63884,7 +60640,6 @@ /obj/item/reagent_containers/dropper/precision, /obj/item/reagent_containers/spray/cleaner, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -63909,14 +60664,12 @@ id_tag = "viro_lab_airlock_control"; name = "Virology Lab Access Console"; pixel_x = 24; - pixel_y = 0; req_one_access_txt = "39"; tag_exterior_door = "viro_lab_airlock_exterior"; tag_interior_door = "viro_lab_airlock_interior" }, /obj/effect/decal/warning_stripes/northeastcorner, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -63939,7 +60692,6 @@ }, /obj/machinery/light, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -63960,7 +60712,6 @@ "cur" = ( /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/structure/closet/l3closet, @@ -63988,9 +60739,7 @@ }, /obj/machinery/door/window/northleft{ dir = 4; - icon_state = "left"; name = "Engineering Monitoring Station"; - req_access_txt = "0"; req_one_access_txt = "11;24" }, /obj/effect/decal/warning_stripes/yellow, @@ -64009,7 +60758,6 @@ /area/maintenance/asmaint) "cuv" = ( /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -64041,7 +60789,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -64058,9 +60805,7 @@ /obj/machinery/alarm{ pixel_y = 25 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitegreen"; @@ -64073,8 +60818,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /obj/structure/cable{ d2 = 4; @@ -64108,8 +60852,7 @@ dir = 6 }, /obj/structure/sign/poster/random{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ dir = 10; @@ -64137,7 +60880,6 @@ dir = 9 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -64145,7 +60887,6 @@ "cuJ" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/structure/table, @@ -64155,8 +60896,7 @@ }, /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -64213,7 +60953,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -64263,7 +61002,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -64281,7 +61019,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/firealarm{ @@ -64329,9 +61066,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cuW" = ( /obj/machinery/atmospherics/unary/portables_connector{ dir = 8 @@ -64347,7 +61082,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -64360,9 +61094,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cuY" = ( /obj/structure/cable{ d1 = 1; @@ -64448,7 +61180,6 @@ department = "Science"; departmentType = 2; name = "Science Requests Console"; - pixel_x = 0; pixel_y = -30 }, /obj/machinery/vending/plasmaresearch, @@ -64458,7 +61189,6 @@ /area/toxins/mixing) "cvf" = ( /obj/machinery/atmospherics/trinary/mixer{ - density = 0; dir = 8; req_access = null }, @@ -64471,7 +61201,6 @@ dir = 4 }, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -64582,8 +61311,7 @@ /obj/item/flash, /obj/item/flash, /obj/machinery/ai_status_display{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plating, /area/storage/tech) @@ -64592,9 +61320,7 @@ /area/storage/tech) "cvy" = ( /obj/machinery/camera{ - c_tag = "Tech Storage"; - dir = 2; - network = list("SS13") + c_tag = "Tech Storage" }, /obj/structure/cable{ d2 = 2; @@ -64620,7 +61346,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plating, @@ -64630,7 +61355,6 @@ dir = 1 }, /obj/machinery/alarm{ - frequency = 1439; pixel_y = 23 }, /turf/simulated/floor/plating, @@ -64677,15 +61401,12 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cvG" = ( /obj/machinery/camera{ c_tag = "Research Hallway South"; dir = 1; - network = list("Research","SS13"); - pixel_x = 0 + network = list("Research","SS13") }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -64696,27 +61417,21 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cvH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cvI" = ( /turf/simulated/wall, /area/construction) @@ -64735,7 +61450,6 @@ "cvK" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -64751,16 +61465,13 @@ /obj/machinery/disposal, /obj/machinery/camera{ c_tag = "Atmospherics Monitoring"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/structure/disposalpipe/trunk{ @@ -64819,15 +61530,13 @@ /obj/machinery/door_control{ id = "psychoffice"; name = "Privacy Shutters Control"; - pixel_x = -25; - pixel_y = 0 + pixel_x = -25 }, /turf/simulated/floor/wood, /area/medical/psych) "cvS" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -64841,7 +61550,6 @@ /area/medical/surgery1) "cvT" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -64853,7 +61561,6 @@ /obj/item/clothing/mask/gas, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -64890,7 +61597,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -64910,7 +61616,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/ai_status_display{ pixel_x = -32; - pixel_y = 0; step_size = 0 }, /turf/simulated/floor/plasteel{ @@ -64929,16 +61634,13 @@ /area/medical/virology) "cwc" = ( /obj/machinery/camera{ - c_tag = "Virology Break Room"; - network = list("SS13") + c_tag = "Virology Break Room" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -64949,8 +61651,7 @@ "cwd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; @@ -64962,12 +61663,10 @@ /area/medical/virology) "cwe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -64977,12 +61676,10 @@ /area/medical/virology) "cwf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -64992,8 +61689,7 @@ /area/medical/virology) "cwg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -65012,12 +61708,10 @@ req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull"; @@ -65047,8 +61741,7 @@ "cwk" = ( /obj/machinery/disposal, /obj/structure/sign/poster/random{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -65106,9 +61799,7 @@ dir = 8; icon_state = "whitegreencorner" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cwp" = ( /obj/machinery/light, /obj/machinery/door/poddoor{ @@ -65119,12 +61810,9 @@ opacity = 0 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreencorner" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cwq" = ( /obj/machinery/camera{ c_tag = "Research E.X.P.E.R.I-MENTOR Lab"; @@ -65141,15 +61829,13 @@ /area/toxins/explab) "cwr" = ( /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/structure/table, /obj/item/storage/box/pillbottles{ layer = 4 }, /obj/item/storage/box/bodybags{ - layer = 3; pixel_x = 5; pixel_y = 5 }, @@ -65190,9 +61876,7 @@ /turf/simulated/floor/plasteel{ icon_state = "white" }, -/area/medical/research{ - name = "Research Division" - }) +/area/medical/research) "cwu" = ( /obj/machinery/atmospherics/unary/tank/air{ dir = 8 @@ -65314,25 +61998,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"cwL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) "cwM" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -65403,8 +62073,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -65448,13 +62117,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -65466,40 +62133,17 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/genetics) -"cwZ" = ( -/obj/machinery/door/poddoor{ - density = 0; - icon_state = "open"; - id_tag = "Biohazard_medi"; - name = "Quarantine Lockdown"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint) "cxa" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/genetics) @@ -65534,7 +62178,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -65588,7 +62231,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -65597,11 +62239,9 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = ""; name = "Staff Room"; - req_access_txt = "5"; - req_one_access_txt = "0" + req_access_txt = "5" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria"; tag = "icon-cafeteria (NORTHEAST)" }, @@ -65614,8 +62254,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -65624,7 +62263,6 @@ "cxl" = ( /obj/machinery/light/small{ dir = 4; - icon_state = "bulb1"; tag = "icon-bulb1 (EAST)" }, /turf/simulated/floor/plating, @@ -65634,7 +62272,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -65679,8 +62316,7 @@ /area/engine/controlroom) "cxs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull"; @@ -65747,8 +62383,7 @@ /obj/item/flashlight/lamp/green, /obj/machinery/alarm{ dir = 4; - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /turf/simulated/floor/carpet, /area/medical/psych) @@ -65805,7 +62440,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -65828,7 +62462,6 @@ /obj/structure/bed, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -65863,13 +62496,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/genetics) @@ -65878,7 +62509,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/sign/securearea{ @@ -65914,7 +62544,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -65940,7 +62569,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -65966,7 +62594,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light/small{ @@ -65992,7 +62619,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -66008,7 +62634,6 @@ /area/maintenance/asmaint) "cxU" = ( /obj/structure/sign/poster/contraband/random{ - pixel_x = 0; pixel_y = 32 }, /obj/machinery/light/small{ @@ -66024,14 +62649,12 @@ /area/maintenance/asmaint2) "cxW" = ( /obj/structure/sign/securearea{ - pixel_x = 0; pixel_y = 32 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light{ @@ -66130,8 +62753,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering"; - req_access_txt = "32"; - req_one_access_txt = "0" + req_access_txt = "32" }, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) @@ -66176,7 +62798,6 @@ }, /obj/structure/closet/emcloset, /obj/machinery/alarm{ - frequency = 1439; pixel_y = 23 }, /obj/machinery/atmospherics/pipe/simple/visible{ @@ -66223,8 +62844,7 @@ /area/storage/tech) "cys" = ( /obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - dir = 2 + c_tag = "Secure Tech Storage" }, /obj/structure/cable{ d1 = 1; @@ -66332,7 +62952,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light{ @@ -66360,7 +62979,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/junction{ @@ -66391,7 +63009,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -66413,8 +63030,7 @@ /area/engine/controlroom) "cyH" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -66425,7 +63041,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -66433,8 +63048,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -66451,7 +63065,6 @@ /obj/item/twohanded/required/kirbyplants, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/carpet, @@ -66499,7 +63112,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -66528,12 +63140,10 @@ "cyU" = ( /obj/item/twohanded/required/kirbyplants, /obj/structure/extinguisher_cabinet{ - pixel_x = 0; pixel_y = -30 }, /obj/machinery/light, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -66552,7 +63162,6 @@ /obj/item/reagent_containers/iv_bag/blood/random, /obj/item/reagent_containers/iv_bag/blood/random, /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = -32; step_size = 0 }, @@ -66573,7 +63182,6 @@ pixel_y = 6 }, /obj/item/storage/secure/safe{ - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -66586,7 +63194,6 @@ /obj/structure/table, /obj/machinery/reagentgrinder, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -66607,7 +63214,6 @@ /obj/structure/bed, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -66625,7 +63231,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /mob/living/simple_animal/mouse, @@ -66646,7 +63251,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/remains/robot, @@ -66713,7 +63317,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -66726,7 +63329,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/landmark{ @@ -66782,7 +63384,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -66795,7 +63396,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/landmark{ @@ -66815,7 +63415,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -66834,12 +63433,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -66861,8 +63458,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -66875,7 +63471,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -66891,8 +63486,6 @@ /area/hallway/primary/aft) "czB" = ( /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -66902,7 +63495,6 @@ "czC" = ( /obj/structure/cable, /obj/machinery/power/apc{ - dir = 2; name = "south bump Engineering"; pixel_y = -24; shock_proof = 1 @@ -66912,10 +63504,7 @@ "czD" = ( /obj/machinery/camera{ c_tag = "Engineering Construction Area"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 8 }, /obj/structure/cable{ d1 = 1; @@ -66943,9 +63532,7 @@ /turf/simulated/wall/r_wall, /area/maintenance/incinerator) "czG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /mob/living/carbon/human/monkey, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull"; @@ -66966,12 +63553,9 @@ dir = 1 }, /obj/machinery/camera{ - c_tag = "Virology Module North"; - network = list("SS13") - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 + c_tag = "Virology Module North" }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 1; icon_state = "whitegreen"; @@ -67088,7 +63672,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -67098,7 +63681,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -67111,13 +63693,10 @@ "czW" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 + pixel_x = -22 }, /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -67172,13 +63751,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -67218,7 +63795,6 @@ "cAf" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -67251,7 +63827,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitegreen"; tag = "icon-whitehall (WEST)" }, @@ -67270,8 +63845,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -67279,7 +63853,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering"; - req_access_txt = "0"; req_one_access_txt = "11;24" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -67291,7 +63864,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -67320,9 +63892,7 @@ }, /area/construction) "cAp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -67332,8 +63902,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -67371,14 +63940,12 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "whitebluecorner"; tag = "icon-whitebluecorner" }, @@ -67392,14 +63959,12 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -67502,7 +64067,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -67549,7 +64113,6 @@ /obj/machinery/requests_console{ department = "Tech Storage"; name = "Tech Storage Requests Console"; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plating, @@ -67586,8 +64149,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -67617,9 +64179,7 @@ /area/toxins/misc_lab) "cAR" = ( /obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 0 - }, +/obj/machinery/recharger, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel, /area/engine/controlroom) @@ -67631,9 +64191,7 @@ "cAT" = ( /obj/structure/table, /obj/item/mounted/frame/apc_frame, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/engine/controlroom) "cAU" = ( @@ -67670,8 +64228,7 @@ /area/medical/virology) "cAZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/wall/r_wall, /area/toxins/misc_lab) @@ -67706,16 +64263,6 @@ icon_state = "floorgrime" }, /area/maintenance/incinerator) -"cBe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0; - tag = "" - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) "cBf" = ( /obj/machinery/light/small{ dir = 8 @@ -67735,7 +64282,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/engine, @@ -67816,8 +64362,7 @@ /area/maintenance/incinerator) "cBo" = ( /obj/machinery/light/small{ - dir = 4; - pixel_y = 0 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/apmaint) @@ -67856,9 +64401,7 @@ dir = 8; layer = 2.9 }, -/obj/item/circuitboard/cloning{ - pixel_x = 0 - }, +/obj/item/circuitboard/cloning, /obj/item/circuitboard/med_data{ pixel_x = 3; pixel_y = -3 @@ -67929,8 +64472,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plating, /area/medical/psych) @@ -67939,7 +64481,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/airlock/maintenance{ @@ -68013,7 +64554,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -68055,8 +64595,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/engine/controlroom) @@ -68123,7 +64662,6 @@ /obj/machinery/light, /obj/item/clothing/glasses/welding, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "caution" }, /area/maintenance/asmaint) @@ -68135,14 +64673,12 @@ }, /obj/item/storage/toolbox, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "caution" }, /area/maintenance/asmaint) "cBX" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "caution" }, /area/maintenance/asmaint) @@ -68199,8 +64735,7 @@ "cCd" = ( /obj/structure/closet/bombcloset, /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -68220,9 +64755,7 @@ /obj/structure/closet/secure_closet/scientist, /obj/machinery/camera{ c_tag = "Research Test Lab West"; - dir = 2; - network = list("Research","SS13"); - pixel_x = 0 + network = list("Research","SS13") }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -68239,7 +64772,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -68270,9 +64802,7 @@ on = 1 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -68320,7 +64850,6 @@ /obj/machinery/chem_master, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -68345,14 +64874,12 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -68368,7 +64895,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /turf/simulated/wall/r_wall, @@ -68381,7 +64907,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/closet/emcloset, @@ -68392,7 +64917,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plating/airless, @@ -68414,14 +64938,12 @@ /area/toxins/test_area) "cCv" = ( /obj/machinery/door/airlock/external{ - name = "Toxins Test Chamber"; - req_access_txt = "0" + name = "Toxins Test Chamber" }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plating/airless, @@ -68448,7 +64970,6 @@ layer = 3.1; master_tag = "incinerator_access_control"; name = "Incinerator Airlock Control"; - pixel_x = 0; pixel_y = -23 }, /turf/simulated/floor/engine, @@ -68468,7 +64989,6 @@ command = "cycle_interior"; master_tag = "incinerator_access_control"; name = "Incinerator Airlock Control"; - pixel_x = 0; pixel_y = -22 }, /turf/simulated/floor/engine, @@ -68476,7 +64996,6 @@ "cCz" = ( /obj/effect/decal/remains/human{ desc = "This guy seemed to have died in terrible way! Half his remains are dust."; - icon_state = "remains"; name = "Human remains" }, /turf/simulated/floor/plasteel{ @@ -68505,7 +65024,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -68555,7 +65073,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -68565,7 +65082,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -68585,7 +65101,6 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering"; - req_access_txt = "0"; req_one_access_txt = "11;24" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -68607,8 +65122,7 @@ /area/construction) "cCL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -68658,7 +65172,6 @@ }, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/plasteel{ @@ -68678,7 +65191,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -68690,8 +65202,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/wood, /area/medical/psych) @@ -68700,7 +65211,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -68729,13 +65239,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -68746,7 +65254,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -68768,7 +65275,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -68791,7 +65297,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -68807,7 +65312,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -68835,8 +65339,7 @@ "cDb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -68847,8 +65350,7 @@ /area/toxins/misc_lab) "cDc" = ( /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -68909,7 +65411,6 @@ pixel_y = 27 }, /obj/machinery/alarm{ - frequency = 1439; pixel_y = 23 }, /turf/simulated/floor/plasteel{ @@ -68927,12 +65428,10 @@ /area/atmos) "cDk" = ( /obj/machinery/camera{ - c_tag = "Atmospherics North-East"; - network = list("SS13") + c_tag = "Atmospherics North-East" }, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/machinery/atmospherics/binary/volume_pump/on{ @@ -68955,7 +65454,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump Engineering"; - pixel_x = 0; pixel_y = 24; shock_proof = 1 }, @@ -68996,8 +65494,7 @@ "cDs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -69009,8 +65506,7 @@ "cDt" = ( /obj/effect/decal/warning_stripes/west, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -69050,7 +65546,6 @@ /obj/structure/disposalpipe/segment, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /turf/simulated/floor/plasteel{ @@ -69073,20 +65568,16 @@ "cDz" = ( /obj/machinery/camera{ c_tag = "Atmospherics Access"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/light{ dir = 8 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6; - icon_state = "intact"; tag = "icon-intact (SOUTHEAST)" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -69099,7 +65590,6 @@ dir = 9 }, /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel, @@ -69139,9 +65629,7 @@ /obj/machinery/hologram/holopad, /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; - pixel_x = 0; - pixel_y = -32; - req_access_txt = "0" + pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 @@ -69213,7 +65701,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plating/airless, @@ -69261,8 +65748,6 @@ pixel_y = 5 }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; pixel_x = -28 }, /turf/simulated/floor/plasteel{ @@ -69293,7 +65778,6 @@ /obj/machinery/door_control{ id = "disvent"; name = "Incinerator Vent Control"; - pixel_x = 0; pixel_y = -24; req_access_txt = "12" }, @@ -69327,7 +65811,6 @@ /area/storage/tech) "cDZ" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /obj/machinery/atmospherics/binary/pump{ @@ -69368,8 +65851,7 @@ tag = "" }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/table, /turf/simulated/floor/plasteel{ @@ -69383,8 +65865,7 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plating, /area/storage/tech) @@ -69444,13 +65925,11 @@ "cEj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/engine/controlroom) @@ -69495,13 +65974,11 @@ /obj/effect/decal/warning_stripes/south, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -69563,9 +66040,7 @@ "cEu" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -69580,9 +66055,7 @@ /area/engine/mechanic_workshop) "cEw" = ( /obj/machinery/camera{ - c_tag = "Mechanic's Workshop West"; - dir = 2; - network = list("SS13") + c_tag = "Mechanic's Workshop West" }, /turf/simulated/floor/engine, /area/engine/mechanic_workshop) @@ -69643,9 +66116,7 @@ }, /area/toxins/xenobiology) "cEI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/engine, /area/engine/mechanic_workshop) "cEJ" = ( @@ -69654,7 +66125,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/mecha_part_fabricator/spacepod, @@ -69686,13 +66156,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/camera{ - c_tag = "Mechanic's Workshop East"; - dir = 2; - network = list("SS13") + c_tag = "Mechanic's Workshop East" }, /obj/machinery/space_heater, /turf/simulated/floor/plasteel{ @@ -69709,7 +66176,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -69723,7 +66189,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -69733,7 +66198,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/closet/emcloset, @@ -69747,7 +66211,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -69763,7 +66226,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -69791,7 +66253,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -69810,13 +66271,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/structure/disposalpipe/segment{ @@ -69835,7 +66293,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -69872,8 +66329,7 @@ "cFd" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/wall/r_wall, /area/engine/mechanic_workshop) @@ -69920,8 +66376,7 @@ }, /obj/machinery/portable_atmospherics/pump, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -69961,9 +66416,7 @@ dir = 4 }, /obj/machinery/camera{ - c_tag = "Aft Primary Hallway 3"; - dir = 2; - network = list("SS13") + c_tag = "Aft Primary Hallway 3" }, /turf/simulated/floor/plasteel{ dir = 4; @@ -69989,9 +66442,7 @@ dir = 4 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -70040,12 +66491,10 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering"; - req_access_txt = "0"; req_one_access_txt = "11;24" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9; - icon_state = "intact"; tag = "icon-intact (NORTHWEST)" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -70077,8 +66526,7 @@ pixel_x = -24 }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -70135,7 +66583,6 @@ master_tag = "xeno_airlock_control"; name = "Xenobiology Access Button"; pixel_x = -24; - pixel_y = 0; req_access_txt = "55" }, /obj/structure/cable{ @@ -70165,7 +66612,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -70185,7 +66631,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -70204,7 +66649,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -70229,7 +66673,6 @@ department = "Science"; departmentType = 2; name = "Science Requests Console"; - pixel_x = 0; pixel_y = -30 }, /obj/structure/table, @@ -70252,7 +66695,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/firealarm{ @@ -70323,8 +66765,7 @@ /obj/effect/decal/warning_stripes/east, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -70392,7 +66833,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/door/firedoor, @@ -70452,7 +66892,6 @@ amount = 50 }, /obj/item/stack/sheet/mineral/plasma{ - amount = 1; layer = 2.9 }, /obj/item/stack/sheet/glass{ @@ -70489,8 +66928,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -70537,8 +66975,7 @@ "cGg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -70582,7 +67019,6 @@ dir = 4 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -70590,8 +67026,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -70629,8 +67064,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -70679,8 +67113,7 @@ /area/engine/break_room) "cGu" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/shower{ pixel_y = 8 @@ -70690,8 +67123,7 @@ /area/engine/break_room) "cGv" = ( /obj/machinery/camera{ - c_tag = "Atmospherics Control Room"; - network = list("SS13") + c_tag = "Atmospherics Control Room" }, /obj/structure/cable{ d2 = 4; @@ -70705,7 +67137,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump Engineering"; - pixel_x = 0; pixel_y = 24; shock_proof = 1 }, @@ -70726,8 +67157,7 @@ /area/medical/virology) "cGx" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -70741,7 +67171,6 @@ "cGy" = ( /obj/machinery/ai_status_display{ pixel_x = 32; - pixel_y = 0; step_size = 0 }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -70756,13 +67185,11 @@ "cGz" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/effect/decal/warning_stripes/northwest, @@ -70777,9 +67204,7 @@ /obj/structure/closet/emcloset, /obj/machinery/camera{ c_tag = "Xenobiology Access"; - dir = 2; - network = list("Research","SS13"); - pixel_x = 0 + network = list("Research","SS13") }, /obj/effect/decal/warning_stripes/northeast, /turf/simulated/floor/plasteel{ @@ -70796,8 +67221,7 @@ /obj/effect/decal/warning_stripes/north, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -70807,7 +67231,6 @@ "cGC" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -70842,8 +67265,7 @@ /obj/machinery/door/window/westright{ name = "Mechanic's Desk"; req_access = null; - req_access_txt = "70"; - req_one_access_txt = "0" + req_access_txt = "70" }, /obj/machinery/cell_charger, /turf/simulated/floor/plasteel{ @@ -70886,8 +67308,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -70904,7 +67325,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -70912,7 +67332,6 @@ /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 1; - icon_state = "map"; tag = "icon-map (NORTH)" }, /turf/simulated/wall, @@ -70922,14 +67341,12 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -70942,7 +67359,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -70951,8 +67367,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -70977,8 +67392,7 @@ /obj/structure/table, /obj/item/camera, /obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" @@ -70986,8 +67400,7 @@ /area/storage/office) "cGT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/structure/cable{ d1 = 1; @@ -71011,7 +67424,6 @@ /obj/effect/decal/warning_stripes/northeast, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; pixel_x = -28 }, /turf/simulated/floor/plasteel{ @@ -71021,7 +67433,6 @@ "cGW" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -71047,19 +67458,14 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" + icon_state = "4-8" }, +/turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "cGZ" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/structure/cable{ d1 = 4; @@ -71098,36 +67504,28 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/engine/chiefs_office) "cHb" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/computer/station_alert, /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" + icon_state = "4-8" }, +/turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "cHc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -71186,7 +67584,6 @@ "cHj" = ( /obj/structure/table, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -71224,7 +67621,6 @@ }, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -71276,8 +67672,7 @@ /obj/structure/table, /obj/machinery/cell_charger, /obj/machinery/camera{ - c_tag = "Engineering Foyer"; - network = list("SS13") + c_tag = "Engineering Foyer" }, /obj/structure/noticeboard{ pixel_y = 28 @@ -71335,12 +67730,10 @@ /obj/structure/closet/l3closet/scientist, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/effect/decal/warning_stripes/east, /turf/simulated/floor/plasteel{ @@ -71450,8 +67843,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -71491,8 +67883,6 @@ /obj/machinery/camera{ c_tag = "Aft Primary Hallway 2"; dir = 8; - network = list("SS13"); - pixel_x = 0; pixel_y = -22 }, /obj/structure/disposalpipe/segment{ @@ -71561,7 +67951,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9; - icon_state = "intact"; tag = "icon-intact (NORTHWEST)" }, /turf/simulated/wall, @@ -71572,8 +67961,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71608,7 +67996,6 @@ sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") }, /obj/machinery/alarm{ - frequency = 1439; pixel_y = 23 }, /turf/simulated/floor/plasteel, @@ -71649,8 +68036,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -71698,8 +68084,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/engine/break_room) @@ -71753,9 +68138,7 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint) "cIp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/atmos/control) "cIq" = ( @@ -71819,7 +68202,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -71864,8 +68246,7 @@ /area/maintenance/asmaint) "cIA" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/structure/cable{ d1 = 2; @@ -71874,9 +68255,7 @@ tag = "" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -71886,7 +68265,6 @@ "cIB" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -71925,7 +68303,6 @@ desc = "Used for watching the horrors within the test chamber."; name = "Research Monitor"; network = list("TestChamber"); - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -71993,7 +68370,6 @@ desc = "A remote control-switch for the pod doors."; id = "mechpodbay"; name = "Pod Door Control"; - pixel_x = 0; pixel_y = -24; req_access_txt = "70" }, @@ -72011,7 +68387,6 @@ desc = "A remote control-switch for the pod doors."; id = "mechpodbayouter"; name = "Pod Door Control"; - pixel_x = 0; pixel_y = -24; req_access_txt = "70" }, @@ -72027,8 +68402,7 @@ /obj/effect/decal/warning_stripes/south, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -72037,12 +68411,10 @@ /area/toxins/xenobiology) "cIO" = ( /obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/shower{ dir = 4; - icon_state = "shower"; tag = "icon-shower (EAST)" }, /obj/effect/decal/warning_stripes/west, @@ -72055,7 +68427,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -72112,7 +68483,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/trunk{ @@ -72139,8 +68509,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -72283,8 +68652,7 @@ icon_state = "door_locked"; locked = 1; name = "Assembly Line (KEEP OUT)"; - req_access_txt = "32"; - req_one_access_txt = "0" + req_access_txt = "32" }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -72318,8 +68686,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/aft) @@ -72368,8 +68735,7 @@ /area/atmos/control) "cJq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel, /area/engine/break_room) @@ -72448,7 +68814,6 @@ /obj/item/paper/pamphlet, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/item/stack/tape_roll, @@ -72512,7 +68877,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/airlock/maintenance{ @@ -72536,7 +68900,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/hologram/holopad, @@ -72545,16 +68908,13 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/atmos/control) "cJI" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/wall, @@ -72564,7 +68924,6 @@ /obj/machinery/door_control{ id = "xenobio3"; name = "Containment Blast Doors"; - pixel_x = 0; pixel_y = 4; req_access_txt = "55" }, @@ -72575,7 +68934,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/warning_stripes/southeast, @@ -72593,7 +68951,6 @@ /area/toxins/xenobiology) "cJM" = ( /obj/structure/sign/atmosplaque{ - pixel_x = 0; pixel_y = -32 }, /obj/structure/closet/secure_closet/atmos_personal, @@ -72608,7 +68965,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -72697,8 +69053,7 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/floor/plating/airless, /area/engine/mechanic_workshop) @@ -72723,8 +69078,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Mechanic Workshop"; - req_access_txt = "70"; - req_one_access_txt = "0" + req_access_txt = "70" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -72758,13 +69112,11 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -72798,7 +69150,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment, @@ -72871,8 +69222,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -72880,12 +69230,10 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1; - level = 1 + dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -72944,7 +69292,6 @@ /obj/machinery/door_control{ id = "xenobio7"; name = "Containment Blast Doors"; - pixel_x = 0; pixel_y = 4; req_access_txt = "55" }, @@ -72987,7 +69334,6 @@ "cKv" = ( /obj/structure/chair/wood/wings{ dir = 4; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (EAST)" }, /turf/simulated/floor/wood, @@ -72995,7 +69341,6 @@ "cKw" = ( /obj/structure/chair/wood/wings{ dir = 8; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (WEST)" }, /turf/simulated/floor/wood{ @@ -73008,14 +69353,11 @@ department = "Science"; departmentType = 2; name = "Science Requests Console"; - pixel_x = 0; pixel_y = 30 }, /obj/machinery/camera{ c_tag = "Xenobiology Module North"; - dir = 2; - network = list("Research","SS13"); - pixel_x = 0 + network = list("Research","SS13") }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -73030,14 +69372,12 @@ icon_state = "0-8" }, /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/effect/decal/warning_stripes/northwestcorner, /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -73057,8 +69397,7 @@ department = "Atmospherics"; departmentType = 3; name = "Atmospherics Requests Console"; - pixel_x = 30; - pixel_y = 0 + pixel_x = 30 }, /turf/simulated/floor/plasteel, /area/atmos/control) @@ -73122,8 +69461,7 @@ /obj/effect/decal/warning_stripes/north, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -73136,7 +69474,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -73161,7 +69498,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/disposalpipe/segment, @@ -73301,7 +69637,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/newscaster{ @@ -73334,7 +69669,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/trunk{ @@ -73379,9 +69713,7 @@ "cLj" = ( /obj/machinery/camera{ c_tag = "Research Test Chamber"; - dir = 2; - network = list("TestChamber","SS13","Research"); - pixel_x = 0 + network = list("TestChamber","SS13","Research") }, /turf/simulated/floor/engine, /area/toxins/test_chamber) @@ -73421,9 +69753,7 @@ id = "Skynet_heavy" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = -32 }, /obj/effect/decal/warning_stripes/north, @@ -73463,7 +69793,6 @@ /obj/machinery/door_control{ id = "mechpod"; name = "Mechanic's Inner Door Control"; - pixel_x = 0; pixel_y = -24; req_access_txt = "70" }, @@ -73484,9 +69813,7 @@ /area/engine/mechanic_workshop) "cLs" = ( /obj/machinery/light_switch{ - dir = 2; name = "light switch "; - pixel_x = 0; pixel_y = -22 }, /turf/simulated/floor/plasteel{ @@ -73498,7 +69825,6 @@ "cLt" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /obj/structure/window/reinforced{ @@ -73511,7 +69837,6 @@ /area/engine/mechanic_workshop) "cLu" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /obj/machinery/computer/rdconsole/mechanics, @@ -73527,7 +69852,6 @@ /area/assembly/assembly_line) "cLw" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; pixel_y = -28 }, /obj/structure/closet/secure_closet/atmos_personal, @@ -73668,7 +69992,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -73681,7 +70004,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/light/small, @@ -73695,7 +70017,6 @@ /obj/machinery/door_control{ id = "xenobio2"; name = "Containment Blast Doors"; - pixel_x = 0; pixel_y = 4; req_access_txt = "55" }, @@ -73706,7 +70027,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/warning_stripes/east, @@ -73735,8 +70055,7 @@ "cLU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -73782,7 +70101,6 @@ "cLZ" = ( /obj/structure/chair/wood/wings{ dir = 8; - icon_state = "wooden_chair_wings"; tag = "icon-wooden_chair_wings (WEST)" }, /turf/simulated/floor/wood, @@ -73837,7 +70155,7 @@ name = "revenantspawn" }, /mob/living/simple_animal/slime, -/turf/simulated/floor/engine, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/toxins/xenobiology) "cMh" = ( /obj/structure/closet, @@ -73947,7 +70265,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/cleanable/dirt, @@ -73976,7 +70293,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/item/paper, @@ -73998,7 +70314,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -74113,7 +70428,6 @@ /obj/machinery/door_control{ id = "xenobio4"; name = "Containment Blast Doors"; - pixel_x = 0; pixel_y = 4; req_access_txt = "55" }, @@ -74150,8 +70464,7 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -74184,7 +70497,6 @@ "cMR" = ( /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /turf/simulated/floor/plasteel{ @@ -74211,9 +70523,7 @@ }, /area/toxins/xenobiology) "cMT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/engine, /area/toxins/test_chamber) "cMU" = ( @@ -74222,18 +70532,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, /area/assembly/assembly_line) -"cMV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - tag = "" - }, -/turf/simulated/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) "cMW" = ( /obj/structure/cable{ d1 = 1; @@ -74327,8 +70625,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/effect/spawner/random_spawners/oil_maybe, /turf/simulated/floor/plating, @@ -74356,7 +70653,6 @@ /obj/machinery/door_control{ id = "xenobio6"; name = "Containment Blast Doors"; - pixel_x = 0; pixel_y = 4; req_access_txt = "55" }, @@ -74393,7 +70689,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -74413,8 +70708,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -74423,7 +70717,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -74442,8 +70735,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -74467,7 +70759,7 @@ /area/toxins/xenobiology) "cNu" = ( /obj/item/radio/beacon, -/turf/simulated/floor/engine, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/toxins/test_chamber) "cNv" = ( /obj/structure/disposaloutlet{ @@ -74546,8 +70838,7 @@ /area/maintenance/aft) "cNE" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10; - level = 2 + dir = 10 }, /obj/structure/lattice/catwalk, /turf/space, @@ -74578,14 +70869,12 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -74621,7 +70910,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -74695,7 +70983,6 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -74712,7 +70999,6 @@ tag = "" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -74756,8 +71042,7 @@ /area/assembly/assembly_line) "cOb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -74766,7 +71051,6 @@ "cOc" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /obj/structure/disposalpipe/segment{ @@ -74774,7 +71058,6 @@ }, /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "yellowcorner" }, /area/hallway/primary/aft) @@ -74839,8 +71122,7 @@ "cOk" = ( /obj/machinery/camera{ c_tag = "Atmospherics East"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/atmospherics/binary/valve/digital{ color = ""; @@ -74852,8 +71134,7 @@ /area/atmos) "cOl" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/machinery/vending/cigarette, /turf/simulated/floor/plasteel, @@ -74901,7 +71182,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -74921,7 +71201,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door/airlock/maintenance{ @@ -74948,8 +71227,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering"; - req_access_txt = "32"; - req_one_access_txt = "0" + req_access_txt = "32" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -74976,7 +71254,6 @@ }, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/engine, @@ -75012,12 +71289,10 @@ /area/atmos/distribution) "cOB" = ( /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 8; - icon_state = "3" + dir = 8 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 8; - icon_state = "4" + dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -75031,8 +71306,7 @@ /area/maintenance/asmaint2) "cOD" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/simulated/floor/engine, /area/toxins/test_chamber) @@ -75042,12 +71316,10 @@ pixel_y = -24 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + dir = 4 }, /obj/effect/decal/warning_stripes/arrow{ - dir = 4; - icon_state = "4" + dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -75080,8 +71352,7 @@ "cOI" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; - name = "Mix to Distro"; - on = 0 + name = "Mix to Distro" }, /turf/simulated/floor/plasteel, /area/atmos/distribution) @@ -75092,9 +71363,7 @@ icon_state = "1-2"; tag = "" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/atmos/distribution) "cOK" = ( @@ -75102,7 +71371,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/navbeacon{ @@ -75168,8 +71436,7 @@ /obj/machinery/light, /obj/machinery/camera{ c_tag = "Assembly Line East"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -75213,19 +71480,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/wall/r_wall, /area/atmos/distribution) -"cOX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) "cOY" = ( /obj/structure/cable{ d1 = 4; @@ -75235,18 +71489,15 @@ }, /obj/machinery/alarm{ dir = 4; - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /obj/structure/sink{ dir = 8; - icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel, @@ -75303,8 +71554,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/effect/spawner/random_spawners/grille_often, /turf/simulated/floor/plating, @@ -75321,7 +71571,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -75411,8 +71660,7 @@ "cPo" = ( /obj/machinery/camera{ c_tag = "Engineering Equipment West"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/structure/cable{ d2 = 4; @@ -75427,18 +71675,6 @@ }, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) -"cPp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0; - tag = "" - }, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) "cPq" = ( /obj/machinery/light_switch{ pixel_x = 27 @@ -75450,8 +71686,7 @@ /obj/effect/decal/warning_stripes/red/hollow, /obj/machinery/camera{ c_tag = "Atmospherics North-West"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -75479,9 +71714,7 @@ }, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; - pixel_x = 28; - pixel_y = 0 + pixel_x = 28 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -75495,7 +71728,6 @@ /obj/structure/table, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /obj/effect/decal/cleanable/dirt, @@ -75517,7 +71749,6 @@ /obj/item/pen, /obj/structure/cable, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -75537,7 +71768,6 @@ /obj/structure/table/reinforced, /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /obj/item/clothing/mask/gas, @@ -75560,9 +71790,7 @@ /turf/space, /area/solar/port) "cPD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/plasteel, /area/atmos/distribution) "cPE" = ( @@ -75637,8 +71865,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -75660,8 +71887,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel, @@ -75682,12 +71908,10 @@ "cPP" = ( /obj/machinery/camera{ c_tag = "Engineering Equipment East"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/structure/engineeringcart, /obj/item/radio/intercom{ @@ -75704,13 +71928,11 @@ "cPS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -75788,8 +72010,7 @@ /area/solar/port) "cQe" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /obj/effect/decal/warning_stripes/southeast, /turf/simulated/floor/plasteel, @@ -75799,7 +72020,6 @@ dir = 1 }, /obj/machinery/meter{ - frequency = 1443; id = "wloop_atm_meter"; name = "Waste Loop" }, @@ -75813,7 +72033,6 @@ /area/atmos/distribution) "cQg" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ @@ -75823,7 +72042,6 @@ /area/atmos/distribution) "cQh" = ( /obj/machinery/meter{ - frequency = 1443; id = "dloop_atm_meter"; name = "Distribution Loop" }, @@ -75833,11 +72051,9 @@ "cQi" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10; - initialize_directions = 10; - level = 2 + initialize_directions = 10 }, /obj/machinery/alarm{ - frequency = 1439; pixel_y = 23 }, /turf/simulated/floor/plasteel, @@ -75870,8 +72086,7 @@ opacity = 0 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/atmos/distribution) @@ -75880,16 +72095,14 @@ /area/medical/virology) "cQo" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6; - level = 2 + dir = 6 }, /turf/simulated/floor/plasteel, /area/atmos/distribution) "cQp" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/space, /area/space/nearstation) @@ -75995,8 +72208,7 @@ /area/toxins/xenobiology) "cQB" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/smartfridge/secure/extract, /turf/simulated/floor/plasteel{ @@ -76018,9 +72230,7 @@ }, /obj/machinery/vending/wallmed{ name = "Emergency NanoMed"; - pixel_x = 0; - pixel_y = -32; - req_access_txt = "0" + pixel_y = -32 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -76032,15 +72242,12 @@ department = "Chief Engineer's Desk"; departmentType = 7; name = "Chief Engineer Requests Console"; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralfull" @@ -76074,8 +72281,7 @@ /area/engine/engineering) "cQH" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + dir = 1 }, /obj/effect/decal/warning_stripes/south, /obj/structure/cable/yellow{ @@ -76111,7 +72317,6 @@ desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; - pixel_x = 0; pixel_y = 24; req_access_txt = "11" }, @@ -76126,10 +72331,7 @@ pixel_y = 37; req_access_txt = "56" }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "cQJ" = ( /obj/effect/decal/warning_stripes/east, @@ -76184,8 +72386,7 @@ department = "Engineering"; departmentType = 3; name = "Engineering Requests Console"; - pixel_x = 30; - pixel_y = 0 + pixel_x = 30 }, /obj/item/stack/sheet/glass{ amount = 50 @@ -76199,9 +72400,7 @@ /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cQP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cQR" = ( @@ -76219,7 +72418,6 @@ pixel_y = 19 }, /obj/item/reagent_containers/syringe/antiviral{ - pixel_x = 0; pixel_y = 13 }, /obj/item/reagent_containers/syringe/antiviral{ @@ -76235,7 +72433,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -76243,8 +72440,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -76260,8 +72456,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -76289,19 +72484,16 @@ /area/engine/engineering) "cQW" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6; - level = 2 + dir = 6 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -76313,7 +72505,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -76334,8 +72525,7 @@ "cRa" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/plasteel, @@ -76359,15 +72549,13 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10; - initialize_directions = 10; - level = 2 + initialize_directions = 10 }, /turf/simulated/floor/plating, /area/atmos/distribution) "cRd" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/binary/pump{ dir = 1; @@ -76400,8 +72588,7 @@ "cRf" = ( /obj/effect/decal/warning_stripes/south, /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/engine, @@ -76426,8 +72613,7 @@ /area/engine/engineering) "cRh" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -76440,14 +72626,12 @@ "cRj" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; - name = "Pure to Mix"; - on = 0 + name = "Pure to Mix" }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -76464,7 +72648,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -76536,14 +72719,12 @@ "cRr" = ( /obj/machinery/door/airlock/engineering/glass{ name = "Supermatter Engine Room"; - req_access_txt = "10"; - req_one_access_txt = "0" + req_access_txt = "10" }, /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -76578,8 +72759,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/light, /turf/simulated/floor/plasteel, @@ -76641,8 +72821,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -76654,7 +72833,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -76693,7 +72871,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -76707,8 +72884,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plating, /area/maintenance/aft) @@ -76734,8 +72910,7 @@ /obj/structure/table, /obj/machinery/camera{ c_tag = "Assembly Line West"; - dir = 1; - network = list("SS13") + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -76746,8 +72921,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -76759,8 +72933,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ dir = 8; @@ -76775,7 +72948,6 @@ /obj/item/multitool, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; pixel_x = 28 }, /turf/simulated/floor/plasteel{ @@ -76791,8 +72963,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -76864,7 +73035,6 @@ }, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/item/stack/rods{ @@ -76875,8 +73045,7 @@ "cRV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) @@ -76902,14 +73071,12 @@ /obj/machinery/camera{ c_tag = "Xenobiology Module South"; dir = 4; - network = list("Research","SS13"); - pixel_x = 0 + network = list("Research","SS13") }, /obj/structure/table/reinforced, /obj/machinery/door_control{ id = "xenobio1"; name = "Containment Blast Doors"; - pixel_x = 0; pixel_y = 4; req_access_txt = "55" }, @@ -76920,7 +73087,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/warning_stripes/east, @@ -76948,13 +73114,10 @@ /area/toxins/xenobiology) "cSa" = ( /obj/machinery/camera{ - c_tag = "Engineering Equipment North"; - network = list("SS13") + c_tag = "Engineering Equipment North" }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/vending/engivend, @@ -76984,8 +73147,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel{ icon_state = "white" @@ -77025,8 +73187,7 @@ /area/engine/engineering) "cSm" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1; - level = 2 + dir = 1 }, /turf/simulated/floor/plasteel, /area/atmos/distribution) @@ -77040,20 +73201,16 @@ /area/atmos) "cSo" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/binary/pump{ dir = 0; - name = "Air to Mix"; - on = 0 + name = "Air to Mix" }, /turf/simulated/floor/plasteel, /area/atmos/distribution) "cSp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/engine/engineering) "cSq" = ( @@ -77066,18 +73223,14 @@ opacity = 0 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/atmos/distribution) "cSr" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/plasteel{ @@ -77087,8 +73240,7 @@ /area/atmos/distribution) "cSs" = ( /obj/machinery/camera{ - c_tag = "Atmospherics Waste Tank"; - network = list("SS13") + c_tag = "Atmospherics Waste Tank" }, /turf/simulated/floor/engine{ name = "vacuum floor"; @@ -77128,8 +73280,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/engine, @@ -77145,8 +73296,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/engine, /area/engine/engineering) @@ -77154,8 +73304,7 @@ /obj/machinery/door/airlock/engineering/glass{ heat_proof = 1; name = "Supermatter Chamber"; - req_access_txt = "10"; - req_one_access_txt = "0" + req_access_txt = "10" }, /turf/simulated/floor/engine, /area/engine/supermatter) @@ -77199,10 +73348,7 @@ d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "cSH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -77213,7 +73359,7 @@ }, /area/toxins/xenobiology) "cSI" = ( -/turf/simulated/floor/engine, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/engine/supermatter) "cSJ" = ( /obj/structure/cable{ @@ -77252,8 +73398,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/cable/yellow{ d1 = 1; @@ -77280,7 +73425,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -77293,7 +73437,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/sign/poster/official/random{ @@ -77323,8 +73466,7 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/atmospherics/unary/portables_connector, /obj/machinery/portable_atmospherics/canister/air, @@ -77344,9 +73486,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/power/smes{ - charge = 0 - }, +/obj/machinery/power/smes, /turf/simulated/floor/plating, /area/maintenance/portsolar) "cSU" = ( @@ -77354,7 +73494,6 @@ /area/engine/engineering) "cSV" = ( /obj/machinery/ai_status_display{ - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/carpet, @@ -77382,7 +73521,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -77395,7 +73533,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/computer/atmos_alert, @@ -77432,7 +73569,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/plating, @@ -77442,7 +73578,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plating, @@ -77463,7 +73598,6 @@ /area/engine/equipmentstorage) "cTf" = ( /obj/machinery/newscaster{ - pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/plasteel{ @@ -77504,7 +73638,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -77517,7 +73650,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -77528,7 +73660,6 @@ "cTl" = ( /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/portable_atmospherics/canister/air, @@ -77546,12 +73677,9 @@ }, /area/engine/engineering) "cTn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plasteel, /area/atmos/distribution) @@ -77593,9 +73721,7 @@ name = "Atmos Blast Door"; opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/atmos/distribution) "cTs" = ( @@ -77689,8 +73815,7 @@ "cTE" = ( /obj/effect/decal/warning_stripes/east, /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/light{ dir = 4 @@ -77713,8 +73838,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering"; - req_access_txt = "32"; - req_one_access_txt = "0" + req_access_txt = "32" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -77788,8 +73912,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/structure/cable{ d1 = 1; @@ -77806,8 +73929,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) @@ -77828,7 +73950,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -77869,7 +73990,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/table, @@ -77912,13 +74032,11 @@ icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10; - level = 2 + dir = 10 }, /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/effect/decal/cleanable/dirt, @@ -77937,9 +74055,7 @@ id_tag = "robotics_solar_pump" }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "robotics_solar_airlock"; - pixel_x = 0; pixel_y = -25; req_access_txt = "13"; tag_airpump = "robotics_solar_pump"; @@ -77948,7 +74064,6 @@ tag_interior_door = "robotics_solar_inner" }, /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "robotics_solar_sensor"; pixel_x = 12; pixel_y = -25 @@ -77987,8 +74102,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" + dir = 9 }, /obj/machinery/access_button{ command = "cycle_interior"; @@ -78068,7 +74182,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -78099,15 +74212,12 @@ }, /obj/item/book/manual/engineering_singularity_safety, /obj/machinery/camera{ - c_tag = "Engineering North-West"; - network = list("SS13") + c_tag = "Engineering North-West" }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cUk" = ( /obj/item/radio/intercom{ - broadcasting = 0; - name = "station intercom (General)"; pixel_y = 25 }, /obj/structure/table, @@ -78123,8 +74233,7 @@ /obj/effect/decal/warning_stripes/west, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /obj/machinery/meter, /obj/machinery/light{ @@ -78165,7 +74274,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -78185,7 +74293,6 @@ /area/engine/equipmentstorage) "cUu" = ( /obj/machinery/keycard_auth{ - pixel_x = 0; pixel_y = 24 }, /obj/structure/table/reinforced, @@ -78220,10 +74327,7 @@ /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cUw" = ( -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "cUx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -78233,15 +74337,11 @@ /area/atmos) "cUy" = ( /obj/machinery/computer/atmos_alert, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "cUz" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -78269,8 +74369,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, @@ -78282,8 +74381,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -78298,13 +74396,11 @@ /area/engine/engineering) "cUN" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/binary/pump{ dir = 1; - name = "Unfiltered to Mix"; - on = 0 + name = "Unfiltered to Mix" }, /turf/simulated/floor/plasteel, /area/atmos/distribution) @@ -78322,7 +74418,6 @@ /obj/machinery/door_control{ id = "xenobio5"; name = "Containment Blast Doors"; - pixel_x = 0; pixel_y = 4; req_access_txt = "55" }, @@ -78385,8 +74480,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/structure/cable{ d1 = 1; @@ -78413,7 +74507,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -78509,7 +74602,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -78517,8 +74609,7 @@ "cVl" = ( /obj/machinery/power/solar_control{ id = "portsolar"; - name = "Aft Port Solar Control"; - track = 0 + name = "Aft Port Solar Control" }, /obj/structure/cable, /turf/simulated/floor/plating, @@ -78526,12 +74617,10 @@ "cVm" = ( /obj/machinery/camera{ c_tag = "Aft Port Solar Control"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/structure/cable, /obj/machinery/power/apc{ - dir = 2; name = "south bump Engineering"; pixel_y = -24; shock_proof = 1 @@ -78542,8 +74631,7 @@ /obj/structure/closet/wardrobe/black, /obj/machinery/camera{ c_tag = "Aft Port Solar Access"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -78553,7 +74641,6 @@ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plating, @@ -78563,7 +74650,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -78581,8 +74667,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -78593,8 +74678,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; @@ -78647,9 +74731,7 @@ "cVv" = ( /obj/structure/sink{ dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 0 + pixel_x = -12 }, /obj/structure/mirror{ pixel_x = -28 @@ -78661,8 +74743,7 @@ "cVw" = ( /obj/effect/decal/warning_stripes/south, /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/light, /turf/simulated/floor/engine, @@ -78681,7 +74762,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -78689,8 +74769,7 @@ "cVy" = ( /obj/effect/decal/warning_stripes/south, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/meter, /obj/machinery/light, @@ -78703,9 +74782,7 @@ /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 + name = "RADIOACTIVE AREA" }, /turf/simulated/wall/r_wall, /area/engine/supermatter) @@ -78715,8 +74792,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -78734,8 +74810,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/disposal, /obj/structure/sign/deathsposal{ @@ -78768,8 +74843,7 @@ "cVK" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/plating, @@ -78778,16 +74852,14 @@ /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6; - initialize_directions = 6; - level = 2 + initialize_directions = 6 }, /obj/structure/sign/nosmoking_2, /turf/simulated/floor/plating, /area/atmos/distribution) "cVM" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, @@ -78805,15 +74877,12 @@ "cVO" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/atmos/distribution) "cVP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4; level = 2 @@ -78823,8 +74892,7 @@ /area/atmos/distribution) "cVQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/effect/spawner/window/reinforced, /turf/simulated/floor/plating, @@ -78840,8 +74908,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 4; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/atmos/distribution) @@ -78855,7 +74922,6 @@ cell_type = 25000; dir = 1; name = "Engineering Engine Super APC"; - pixel_x = 0; pixel_y = 24; shock_proof = 1 }, @@ -78903,8 +74969,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/engine/chiefs_office) @@ -79021,7 +75086,6 @@ /area/maintenance/asmaint) "cWr" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 0; pixel_y = 27 }, /turf/simulated/floor/plasteel{ @@ -79045,8 +75109,7 @@ /obj/item/toy/plushie/octopus, /obj/machinery/camera{ c_tag = "Departure Lounge East"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/effect/decal/warning_stripes/east, /turf/simulated/floor/plasteel, @@ -79083,16 +75146,13 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cWz" = ( /obj/item/radio/intercom{ - name = "station intercom (General)"; - pixel_x = -28; - pixel_y = 0 + pixel_x = -28 }, /obj/machinery/computer/monitor{ name = "Grid Power Monitoring Computer" @@ -79108,7 +75168,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -79119,15 +75178,12 @@ /area/engine/equipmentstorage) "cWC" = ( /obj/structure/sign/poster/official/random{ - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel, /area/engine/engineering) "cWD" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "0" - }, +/obj/structure/closet/secure_closet/engineering_chief, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralfull" @@ -79139,9 +75195,7 @@ /area/hallway/secondary/exit) "cWG" = ( /obj/machinery/door/window/southleft{ - base_state = "left"; dir = 8; - icon_state = "left"; name = "Bar Delivery"; req_access_txt = "25"; tag = "icon-left (WEST)" @@ -79168,7 +75222,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -79202,7 +75255,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -79220,21 +75272,17 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/engine/engineering) "cWN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -79254,9 +75302,7 @@ /turf/simulated/floor/beach/sand, /area/hallway/secondary/exit) "cWR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/meter, /turf/simulated/floor/plasteel, /area/atmos) @@ -79274,7 +75320,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/binary/volume_pump/on{ @@ -79304,11 +75349,9 @@ "cWV" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6; - initialize_directions = 6; - level = 2 + initialize_directions = 6 }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel, @@ -79316,28 +75359,22 @@ "cWW" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 4; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/plasteel, /area/atmos) "cWX" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/plasteel, /area/atmos) "cWY" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6; - level = 2 + dir = 6 }, /obj/machinery/meter, /turf/simulated/floor/plasteel, @@ -79346,20 +75383,16 @@ /turf/simulated/floor/engine/n20, /area/atmos) "cXa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/binary/pump{ dir = 8; - name = "N2O to Pure"; - on = 0 + name = "N2O to Pure" }, /turf/simulated/floor/plasteel, /area/atmos) "cXb" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1; - level = 2 + dir = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -79373,12 +75406,9 @@ opacity = 0 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/atmos) "cXd" = ( @@ -79410,7 +75440,6 @@ "cXf" = ( /obj/machinery/light, /obj/machinery/newscaster{ - pixel_x = 0; pixel_y = -30 }, /turf/simulated/floor/plasteel, @@ -79421,7 +75450,6 @@ name = "Central Access" }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "purple" }, /area/hallway/secondary/exit) @@ -79448,7 +75476,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/effect/decal/warning_stripes/southeastcorner, @@ -79456,8 +75483,7 @@ /area/hallway/secondary/exit) "cXm" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -79465,8 +75491,7 @@ "cXn" = ( /obj/machinery/camera{ c_tag = "Departure Lounge West"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -79479,7 +75504,6 @@ }, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -79518,9 +75542,7 @@ /area/maintenance/asmaint) "cXs" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -79558,7 +75580,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -79595,7 +75616,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/disposalpipe/segment{ @@ -79617,7 +75637,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -79652,13 +75671,10 @@ "cXG" = ( /obj/machinery/camera{ c_tag = "Engineering Chief Engineer's Office"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/item/radio/intercom{ - name = "station intercom (General)"; - pixel_x = -28; - pixel_y = 0 + pixel_x = -28 }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -79702,8 +75718,7 @@ "cXM" = ( /obj/machinery/door/airlock/engineering/glass{ name = "SMES Room"; - req_access_txt = "32"; - req_one_access_txt = "0" + req_access_txt = "32" }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -79716,8 +75731,7 @@ /area/engine/engineering) "cXO" = ( /obj/machinery/shower{ - dir = 4; - icon_state = "shower" + dir = 4 }, /obj/effect/decal/warning_stripes/yellow/hollow, /turf/simulated/floor/plasteel, @@ -79739,8 +75753,7 @@ /area/atmos) "cXR" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/plasteel, @@ -79748,15 +75761,13 @@ "cXS" = ( /obj/machinery/camera{ c_tag = "Engineering West"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/door_control{ desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = -24; - pixel_y = 0; req_access_txt = "56" }, /obj/structure/cable{ @@ -79768,15 +75779,11 @@ /turf/simulated/floor/plasteel, /area/engine/engineering) "cXT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plasteel, /area/atmos) "cXU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plasteel, /area/atmos) "cXV" = ( @@ -79787,31 +75794,27 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plasteel, /area/atmos) "cXW" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9; - level = 2 + dir = 9 }, /turf/simulated/floor/plasteel, /area/atmos) "cXX" = ( /obj/machinery/atmospherics/binary/pump{ dir = 0; - name = "Mix to Port"; - on = 0 + name = "Mix to Port" }, /turf/simulated/floor/plasteel, /area/atmos) "cXY" = ( /obj/machinery/atmospherics/binary/pump{ dir = 0; - name = "Air to Port"; - on = 0 + name = "Air to Port" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -79824,8 +75827,7 @@ "cYa" = ( /obj/machinery/atmospherics/binary/pump{ dir = 0; - name = "Pure to Port"; - on = 0 + name = "Pure to Port" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -79838,9 +75840,7 @@ name = "Atmos Blast Door"; opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/atmos) "cYc" = ( @@ -79909,8 +75909,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -79973,8 +75972,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -80043,8 +76041,7 @@ pixel_y = -8 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /obj/structure/lattice, /turf/space, @@ -80064,15 +76061,13 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/storage/secure) "cYD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -80084,7 +76079,6 @@ /obj/item/twohanded/required/kirbyplants, /obj/item/radio/intercom{ dir = 0; - name = "station intercom (General)"; pixel_x = -28 }, /turf/simulated/floor/plasteel{ @@ -80137,7 +76131,6 @@ /obj/effect/decal/warning_stripes/white/hollow, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/light, @@ -80160,8 +76153,7 @@ "cYP" = ( /obj/machinery/camera{ c_tag = "Central Hallway West"; - dir = 8; - network = list("SS13") + dir = 8 }, /obj/structure/cable{ d1 = 1; @@ -80193,8 +76185,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -80230,8 +76221,7 @@ "cYY" = ( /obj/machinery/door/airlock/engineering/glass{ name = "Supermatter Engine Room"; - req_access_txt = "10"; - req_one_access_txt = "0" + req_access_txt = "10" }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -80244,7 +76234,6 @@ /obj/machinery/door_control{ id = "stationawaygate"; name = "Gateway Shutters Access Control"; - pixel_x = 0; pixel_y = -24; req_access_txt = "62" }, @@ -80262,14 +76251,12 @@ "cZc" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/atmos) "cZd" = ( /obj/machinery/atmospherics/trinary/filter{ - density = 0; dir = 1; filter_type = 4; name = "Gas filter (N2O tank)"; @@ -80287,18 +76274,14 @@ opacity = 0 }, /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/atmos) "cZg" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 6; @@ -80308,8 +76291,7 @@ "cZh" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /turf/space, /area/space/nearstation) @@ -80326,8 +76308,7 @@ /area/atmos) "cZj" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/structure/cable{ d1 = 1; @@ -80556,7 +76537,6 @@ /obj/machinery/vending/snack, /obj/machinery/ai_status_display{ pixel_x = 32; - pixel_y = 0; step_size = 0 }, /turf/simulated/floor/plasteel, @@ -80578,8 +76558,7 @@ /area/engine/engineering) "cZP" = ( /obj/machinery/camera{ - c_tag = "Engineering East"; - network = list("SS13") + c_tag = "Engineering East" }, /obj/machinery/computer/security/telescreen{ desc = "A telescreen that connects to the engine's camera network."; @@ -80587,7 +76566,6 @@ layer = 4; name = "Engine Monitor"; network = list("engine"); - pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/plasteel, @@ -80602,8 +76580,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/engine, /area/engine/engineering) @@ -80625,10 +76602,7 @@ /turf/simulated/wall/r_wall, /area/atmos) "cZT" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/machinery/vending/cigarette, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "purple" @@ -80646,15 +76620,13 @@ icon_state = "0-8" }, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -80676,9 +76648,7 @@ /turf/simulated/floor/plasteel, /area/atmos) "cZZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/atmospherics/binary/pump{ dir = 4; name = "Mix to Engine" @@ -80689,13 +76659,9 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/item/radio/intercom{ - frequency = 1459; - name = "station intercom (General)"; - pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/plasteel, @@ -80727,8 +76693,7 @@ "dad" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10; - level = 2 + dir = 10 }, /turf/space, /area/space/nearstation) @@ -80743,14 +76708,12 @@ /obj/machinery/requests_console{ department = "EVA"; name = "EVA Requests Console"; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -80764,12 +76727,9 @@ /turf/simulated/floor/plasteel, /area/atmos) "dah" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -80784,8 +76744,7 @@ "dak" = ( /obj/machinery/camera{ c_tag = "Departure Lounge South"; - dir = 1; - network = list("SS13") + dir = 1 }, /turf/simulated/floor/plasteel, /area/hallway/secondary/exit) @@ -80803,7 +76762,6 @@ /area/engine/engineering) "dam" = ( /obj/machinery/newscaster{ - pixel_x = 0; pixel_y = -30 }, /turf/simulated/floor/plasteel, @@ -80826,14 +76784,12 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/light, /obj/machinery/camera{ c_tag = "EVA"; - dir = 1; - network = list("SS13") + dir = 1 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -80845,12 +76801,10 @@ /area/escapepodbay) "dau" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + dir = 1 }, /obj/effect/decal/warning_stripes/south, /obj/structure/cable/yellow{ - d1 = 0; d2 = 8; icon_state = "0-8" }, @@ -80892,8 +76846,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -80926,8 +76879,7 @@ /obj/structure/grille, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 + name = "KEEP CLEAR: DOCKING AREA" }, /turf/simulated/floor/plating/airless, /area/escapepodbay) @@ -80935,8 +76887,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -81083,8 +77034,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -81099,8 +77049,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -81114,13 +77063,10 @@ /turf/simulated/floor/plasteel, /area/atmos) "daW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/binary/pump{ dir = 8; - name = "Plasma to Pure"; - on = 0 + name = "Plasma to Pure" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -81131,8 +77077,7 @@ /area/maintenance/asmaint) "daY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8; - level = 2 + dir = 8 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -81151,8 +77096,7 @@ "dba" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/space, @@ -81180,8 +77124,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -81252,8 +77195,7 @@ /area/maintenance/genetics) "dbo" = ( /obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 + pixel_x = -23 }, /turf/simulated/floor/plasteel, /area/escapepodbay) @@ -81293,8 +77235,7 @@ }, /obj/machinery/camera{ c_tag = "Engineering Secure Storage North"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/field/generator, /turf/simulated/floor/plating, @@ -81308,8 +77249,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -81323,7 +77263,6 @@ /area/maintenance/genetics) "dbx" = ( /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -81359,8 +77298,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -81370,8 +77308,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -81407,12 +77344,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -81426,8 +77361,7 @@ /area/escapepodbay) "dbJ" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + dir = 1 }, /obj/structure/cable/yellow{ d2 = 4; @@ -81440,8 +77374,7 @@ "dbK" = ( /obj/machinery/camera{ c_tag = "Atmospherics West"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/warning_stripes/yellow/partial, @@ -81465,8 +77398,7 @@ /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -81575,8 +77507,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -81592,12 +77523,10 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -81621,8 +77550,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -81657,7 +77585,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plating, @@ -81670,8 +77597,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10; - level = 2 + dir = 10 }, /turf/simulated/floor/plating, /area/maintenance/storage) @@ -81692,8 +77618,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -81757,8 +77682,7 @@ /area/maintenance/turbine) "dcx" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + dir = 1 }, /obj/structure/cable{ d2 = 8; @@ -81766,8 +77690,7 @@ }, /obj/machinery/alarm{ dir = 8; - pixel_x = 25; - pixel_y = 0 + pixel_x = 25 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -81789,8 +77712,7 @@ "dcA" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plasteel, @@ -81838,8 +77760,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 1; @@ -81855,8 +77776,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /obj/machinery/light{ dir = 1 @@ -81897,7 +77817,6 @@ /area/storage/secure) "dcO" = ( /obj/machinery/atmospherics/trinary/filter{ - density = 0; dir = 1; name = "Gas filter (Toxins tank)"; on = 1 @@ -81930,8 +77849,7 @@ "dcS" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/space, @@ -82068,8 +77986,7 @@ "ddl" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /obj/machinery/meter, /obj/machinery/light{ @@ -82130,8 +78047,7 @@ "ddt" = ( /obj/machinery/atmospherics/binary/pump{ dir = 0; - name = "Port to Filter"; - on = 0 + name = "Port to Filter" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -82177,8 +78093,7 @@ "ddx" = ( /obj/machinery/camera{ c_tag = "Atmospherics Central"; - dir = 8; - network = list("SS13") + dir = 8 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -82226,7 +78141,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/lattice/catwalk, @@ -82256,7 +78170,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/structure/lattice/catwalk, @@ -82295,8 +78208,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -82320,8 +78232,7 @@ /area/solar/starboard) "ddO" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6; - level = 2 + dir = 6 }, /obj/structure/lattice/catwalk, /turf/space, @@ -82359,7 +78270,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/lattice/catwalk, @@ -82377,8 +78287,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; @@ -82413,7 +78322,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/lattice/catwalk, @@ -82453,8 +78361,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -82464,8 +78371,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -82500,7 +78406,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/lattice/catwalk, @@ -82551,13 +78456,10 @@ /turf/simulated/floor/plasteel, /area/atmos) "dej" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/binary/pump{ dir = 8; - name = "CO2 to Pure"; - on = 0 + name = "CO2 to Pure" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -82629,8 +78531,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -82639,8 +78540,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel, /area/maintenance/turbine) @@ -82724,8 +78624,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/engine, /area/engine/engineering) @@ -82756,8 +78655,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -82765,8 +78663,7 @@ /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 + name = "HIGH VOLTAGE" }, /turf/simulated/wall/r_wall, /area/maintenance/starboardsolar) @@ -82781,7 +78678,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -82818,16 +78714,13 @@ opacity = 0 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = -32 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/door/airlock/maintenance{ @@ -82889,16 +78782,14 @@ "deQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6; - initialize_directions = 6; - level = 2 + initialize_directions = 6 }, /turf/simulated/floor/plasteel, /area/atmos) "deR" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4; - name = "N2 to Pure"; - on = 0 + name = "N2 to Pure" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -82971,9 +78862,7 @@ /turf/simulated/floor/engine/co2, /area/atmos) "deZ" = ( -/obj/machinery/power/smes{ - charge = 0 - }, +/obj/machinery/power/smes, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -82993,8 +78882,7 @@ /obj/structure/chair/stool, /obj/machinery/camera{ c_tag = "Aft Starboard Solar Control"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) @@ -83008,8 +78896,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -83042,8 +78929,7 @@ /area/maintenance/asmaint2) "dfj" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + dir = 1 }, /obj/structure/cable{ d2 = 8; @@ -83077,16 +78963,13 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plating, /area/maintenance/starboardsolar) "dfm" = ( /obj/machinery/door/airlock/external{ - aiControlDisabled = 0; frequency = 1379; - hackProof = 0; icon_state = "door_locked"; id_tag = "atmospherics_south_outer"; locked = 1; @@ -83098,8 +78981,7 @@ "dfn" = ( /obj/machinery/power/solar_control{ id = "starboardsolar"; - name = "Aft Starboard Solar Control"; - track = 0 + name = "Aft Starboard Solar Control" }, /obj/structure/cable{ d2 = 4; @@ -83123,7 +79005,6 @@ icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; - pixel_x = 0; pixel_y = -32 }, /obj/machinery/atmospherics/unary/portables_connector{ @@ -83140,14 +79021,12 @@ /obj/machinery/door/airlock/engineering/glass{ heat_proof = 1; name = "Supermatter Chamber"; - req_access_txt = "10"; - req_one_access_txt = "0" + req_access_txt = "10" }, /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/engine, /area/engine/supermatter) @@ -83181,7 +79060,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door/airlock/external{ @@ -83201,11 +79079,9 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "solar_xeno_airlock"; pixel_x = 25; req_access_txt = "13"; @@ -83215,7 +79091,6 @@ tag_interior_door = "solar_xeno_inner" }, /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "solar_xeno_sensor"; pixel_x = 25; pixel_y = 12 @@ -83237,7 +79112,6 @@ /area/atmos) "dfA" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/structure/transit_tube{ @@ -83249,15 +79123,12 @@ }, /area/maintenance/storage) "dfB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, /turf/simulated/floor/plasteel, /area/atmos) "dfC" = ( /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel{ @@ -83272,9 +79143,7 @@ /area/maintenance/storage) "dfE" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/structure/transit_tube/station, @@ -83287,28 +79156,24 @@ /area/maintenance/storage) "dfF" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plasteel, /area/atmos) "dfG" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plasteel, /area/atmos) "dfH" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/binary/pump{ dir = 1; - name = "O2 to Pure"; - on = 0 + name = "O2 to Pure" }, /turf/simulated/floor/plasteel, /area/atmos) @@ -83319,15 +79184,12 @@ node1_concentration = 0.8; node2_concentration = 0.2; on = 1; - pixel_x = 0; - pixel_y = 0; target_pressure = 4500 }, /turf/simulated/floor/plasteel, /area/atmos) "dfJ" = ( /obj/machinery/atmospherics/trinary/filter{ - density = 0; dir = 1; filter_type = 3; name = "Gas filter (CO2 tank)"; @@ -83338,8 +79200,7 @@ "dfK" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10; - initialize_directions = 10; - level = 2 + initialize_directions = 10 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -83356,8 +79217,7 @@ /area/maintenance/asmaint) "dfN" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 6; @@ -83381,9 +79241,7 @@ /area/maintenance/asmaint2) "dfQ" = ( /obj/machinery/light_switch{ - dir = 2; name = "light switch "; - pixel_x = 0; pixel_y = -22 }, /turf/simulated/floor/plasteel{ @@ -83404,7 +79262,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /obj/machinery/door/airlock/external{ @@ -83428,7 +79285,6 @@ /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 8; - icon_state = "twindow"; tag = "" }, /obj/structure/window/reinforced/tinted{ @@ -83436,7 +79292,6 @@ }, /obj/structure/window/reinforced/tinted{ dir = 4; - icon_state = "twindow"; tag = "" }, /obj/structure/window/reinforced/tinted, @@ -83478,9 +79333,7 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint2) "dgg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plasteel, /area/atmos) "dgi" = ( @@ -83500,7 +79353,6 @@ /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1450; id_tag = "dorms_maint"; - pixel_x = 0; pixel_y = -25; req_access_txt = "13"; tag_airpump = "dorms_pump"; @@ -83519,9 +79371,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel, /area/teleporter) "dgm" = ( @@ -83549,8 +79399,7 @@ "dgr" = ( /obj/machinery/camera{ c_tag = "Atmospherics South-West"; - dir = 4; - network = list("SS13") + dir = 4 }, /obj/machinery/light{ dir = 8 @@ -83574,8 +79423,7 @@ "dgt" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/plasteel, @@ -83620,7 +79468,6 @@ /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/mug, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -83639,15 +79486,13 @@ /obj/machinery/camera{ c_tag = "Engineering Supermatter Port"; dir = 4; - network = list("SS13","engine"); - pixel_x = 0 + network = list("SS13","engine") }, /turf/simulated/floor/engine, /area/engine/engineering) "dgM" = ( /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -83657,7 +79502,6 @@ /area/atmos) "dgN" = ( /obj/machinery/atmospherics/trinary/filter{ - density = 0; dir = 4; filter_type = 2; name = "Gas filter (N2 tank)"; @@ -83667,24 +79511,19 @@ /area/atmos) "dgP" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plasteel, /area/atmos) "dgQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plasteel, /area/atmos) "dgR" = ( /obj/machinery/atmospherics/trinary/filter{ - density = 0; dir = 4; filter_type = 1; name = "Gas filter (O2 tank)"; @@ -83711,8 +79550,7 @@ /area/maintenance/port) "dgV" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9; - level = 2 + dir = 9 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -83726,8 +79564,7 @@ opacity = 0 }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9; - level = 2 + dir = 9 }, /turf/simulated/floor/plating, /area/atmos) @@ -83761,7 +79598,6 @@ "dhf" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6; - icon_state = "intact"; tag = "icon-intact (SOUTHEAST)" }, /obj/structure/lattice, @@ -83769,9 +79605,7 @@ /area/space/nearstation) "dhj" = ( /obj/effect/decal/warning_stripes/north, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) "dhk" = ( @@ -83787,7 +79621,6 @@ "dho" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8; - icon_state = "intact"; tag = "icon-intact (WEST)" }, /turf/simulated/wall/r_wall, @@ -83806,9 +79639,6 @@ "dhq" = ( /obj/machinery/light, /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = -28 }, /obj/structure/chair/wood{ @@ -83832,8 +79662,7 @@ /area/crew_quarters/dorms) "dhs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel{ dir = 1; @@ -83842,7 +79671,6 @@ /area/crew_quarters/dorms) "dht" = ( /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -83860,8 +79688,7 @@ "dhu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" + name = "Unisex Restrooms" }, /obj/structure/cable{ d1 = 4; @@ -83881,14 +79708,11 @@ dir = 4 }, /obj/machinery/meter, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/engine/engineering) "dhw" = ( /obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" + name = "Unisex Restrooms" }, /turf/simulated/floor/plasteel{ icon_state = "freezerfloor" @@ -83928,9 +79752,7 @@ output_tag = "n2_out"; sensors = list("n2_sensor" = "Tank") }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plasteel{ icon_state = "red" }, @@ -83964,9 +79786,7 @@ }, /area/atmos) "dhE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "blue" @@ -83995,9 +79815,7 @@ }, /area/atmos) "dhH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plasteel{ dir = 10; icon_state = "arrival" @@ -84017,8 +79835,7 @@ "dhJ" = ( /obj/machinery/camera{ c_tag = "Atmospherics South-East"; - dir = 1; - network = list("SS13") + dir = 1 }, /obj/machinery/atmospherics/binary/valve/digital/open{ name = "Mixed Air Outlet Valve" @@ -84030,9 +79847,6 @@ /area/atmos) "dhK" = ( /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -84041,8 +79855,7 @@ /area/crew_quarters/toilet) "dhL" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/wall/r_wall, /area/maintenance/turbine) @@ -84056,7 +79869,6 @@ "dhN" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /turf/simulated/floor/plasteel{ @@ -84069,9 +79881,7 @@ id = "toilet_unitb"; name = "Door Bolt Control"; normaldoorcontrol = 1; - pixel_x = 0; pixel_y = 25; - req_access_txt = "0"; specialfunctions = 4 }, /turf/simulated/floor/plasteel{ @@ -84127,8 +79937,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) @@ -84173,8 +79982,7 @@ /area/maintenance/fsmaint2) "dii" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -84214,8 +80022,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -84246,9 +80053,7 @@ name = "Atmos Blast Door"; opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, /area/atmos) "diq" = ( @@ -84276,15 +80081,12 @@ name = "Atmos Blast Door"; opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, /area/atmos) "diu" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6; - level = 2 + dir = 6 }, /obj/structure/lattice, /turf/space, @@ -84300,8 +80102,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -84310,12 +80111,9 @@ "diw" = ( /obj/item/flag/nt, /obj/machinery/camera{ - c_tag = "Central Hallway North"; - dir = 2; - network = list("SS13") + c_tag = "Central Hallway North" }, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/plasteel{ @@ -84344,8 +80142,7 @@ network = list("SS13","MiniSat") }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) @@ -84360,8 +80157,7 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - level = 1 + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/port) @@ -84373,8 +80169,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -84412,8 +80207,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/effect/landmark/start{ name = "Cyborg" @@ -84456,13 +80250,10 @@ desc = "A remote control-switch for the engineering security doors."; id = "teledoor"; name = "AI Satellite Teleport Shutters Control"; - pixel_x = 0; pixel_y = 25; req_access_txt = "17;75" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 2 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ dir = 5; icon_state = "dark"; @@ -84547,23 +80338,12 @@ /area/turret_protected/aisat_interior) "diU" = ( /obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - level = 2 - }, -/turf/space, -/area/space/nearstation) -"diV" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/green, /turf/space, /area/space/nearstation) "dja" = ( /obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - level = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/space, /area/space/nearstation) "djb" = ( @@ -84597,8 +80377,7 @@ /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 4; @@ -84617,14 +80396,12 @@ /area/crew_quarters/dorms) "djh" = ( /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /obj/structure/table/reinforced, /obj/item/stack/packageWrap, /obj/item/book/manual/sop_service, /obj/item/pen/blue{ - pixel_x = 0; pixel_y = 4 }, /obj/item/book/manual/barman_recipes, @@ -84638,9 +80415,7 @@ pixel_y = 25 }, /obj/machinery/camera{ - c_tag = "Bar North"; - dir = 2; - network = list("SS13") + c_tag = "Bar North" }, /obj/structure/table/reinforced, /obj/machinery/chem_dispenser/soda, @@ -84656,7 +80431,6 @@ /obj/item/reagent_containers/food/drinks/flask/barflask, /obj/item/reagent_containers/food/drinks/flask/barflask, /obj/machinery/status_display{ - pixel_x = 0; pixel_y = 32 }, /obj/item/clothing/head/that{ @@ -84742,7 +80516,6 @@ "djt" = ( /obj/machinery/door/window/eastright{ dir = 2; - icon_state = "right"; name = "Hydroponics Delivery"; req_access_txt = "35"; tag = "icon-right" @@ -84766,7 +80539,6 @@ "djv" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8; - icon_state = "intact"; tag = "icon-intact (WEST)" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -84780,8 +80552,7 @@ pixel_y = 22 }, /obj/machinery/camera{ - c_tag = "Hydroponics Pasture"; - network = list("SS13") + c_tag = "Hydroponics Pasture" }, /obj/machinery/hydroponics/soil, /obj/structure/disposalpipe/segment{ @@ -84793,7 +80564,6 @@ "djx" = ( /obj/machinery/hydroponics/soil, /obj/machinery/firealarm{ - dir = 2; pixel_y = 24 }, /turf/simulated/floor/grass, @@ -84811,7 +80581,6 @@ /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 8; - icon_state = "twindow"; tag = "" }, /obj/structure/window/reinforced/tinted{ @@ -84819,7 +80588,6 @@ }, /obj/structure/window/reinforced/tinted{ dir = 4; - icon_state = "twindow"; tag = "" }, /obj/structure/window/reinforced/tinted, @@ -84846,15 +80614,13 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /obj/effect/landmark/start{ name = "Cyborg" @@ -84878,8 +80644,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plasteel{ @@ -84908,7 +80673,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -84992,7 +80756,6 @@ /obj/machinery/turretid/stun{ control_area = "\improper AI Satellite Antechamber"; name = "AI Antechamber Turret Control"; - pixel_x = 0; pixel_y = -24; req_access_txt = "75" }, @@ -85011,7 +80774,6 @@ /obj/machinery/atmospherics/pipe/simple/visible, /obj/structure/grille, /obj/machinery/meter{ - frequency = 1443; id = "mair_in_meter"; name = "Mixed Air Tank In" }, @@ -85027,7 +80789,6 @@ /obj/machinery/atmospherics/pipe/simple/visible, /obj/structure/grille, /obj/machinery/meter{ - frequency = 1443; id = "mair_out_meter"; name = "Mixed Air Tank Out" }, @@ -85037,7 +80798,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump"; - pixel_x = 0; pixel_y = 24 }, /obj/structure/cable{ @@ -85049,9 +80809,7 @@ /area/hallway/primary/central/nw) "djW" = ( /obj/machinery/camera{ - c_tag = "Central Hallway North-West"; - dir = 2; - network = list("SS13") + c_tag = "Central Hallway North-West" }, /obj/structure/extinguisher_cabinet{ pixel_x = 5; @@ -85126,15 +80884,13 @@ }, /obj/item/radio/intercom{ dir = 4; - name = "station intercom (General)"; pixel_x = 28 }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable{ d1 = 1; d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, /turf/simulated/floor/plasteel{ dir = 4; @@ -85153,13 +80909,11 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -85179,7 +80933,6 @@ control_area = "\improper AI Satellite Atmospherics"; name = "AI Satellite Atmospherics Turret Control"; pixel_x = -28; - pixel_y = 0; req_access_txt = "75" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -85241,18 +80994,13 @@ /area/atmos) "dkl" = ( /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 25 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/north) "dkm" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/plasteel{ @@ -85272,7 +81020,6 @@ d1 = 1; d2 = 2; icon_state = "1-2"; - pixel_y = 0; tag = "" }, /turf/simulated/floor/plasteel{ @@ -85373,9 +81120,7 @@ /area/atmos) "dky" = ( /obj/machinery/camera{ - c_tag = "Central Hallway North-East"; - dir = 2; - network = list("SS13") + c_tag = "Central Hallway North-East" }, /obj/machinery/light{ dir = 1 @@ -85441,7 +81186,6 @@ control_area = "\improper AI Satellite Service"; name = "AI Satellite Service Bay Turret Control"; pixel_x = 24; - pixel_y = 0; req_access_txt = "75" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -85476,7 +81220,6 @@ }, /obj/item/radio/intercom{ dir = 8; - name = "station intercom (General)"; pixel_x = -28 }, /obj/machinery/computer/cryopod/robot{ @@ -85524,7 +81267,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/ai_slipper{ @@ -85532,8 +81274,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plasteel{ @@ -85574,7 +81315,6 @@ "dkR" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/light/small{ @@ -85601,15 +81341,13 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -85636,7 +81374,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -85658,7 +81395,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -85711,16 +81447,14 @@ /area/turret_protected/aisat_interior) "dkZ" = ( /obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "gas pump" + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) "dla" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plating, /area/maintenance/asmaint) @@ -85729,7 +81463,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -85754,7 +81487,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -85776,7 +81508,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/structure/cable{ @@ -85793,8 +81524,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -85852,7 +81582,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -85884,7 +81613,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -85959,8 +81687,7 @@ dir = 1 }, /obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel{ icon_state = "darkbluecorners" @@ -86291,8 +82018,7 @@ /area/maintenance/asmaint) "dmk" = ( /obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, @@ -86409,8 +82135,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/hallway/primary/port) @@ -86428,7 +82153,6 @@ external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; - on = 0; pressure_checks = 2; pump_direction = 0 }, @@ -86490,8 +82214,7 @@ tag = "" }, /obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, @@ -86574,8 +82297,7 @@ icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/bluegrid, /area/aisat{ @@ -86589,8 +82311,7 @@ tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plating, /area/aisat{ @@ -86605,7 +82326,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -86618,9 +82338,7 @@ "dmS" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 + pixel_x = -22 }, /obj/machinery/camera/motion{ c_tag = "AI Satellite Hallway"; @@ -86757,8 +82475,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plasteel{ @@ -86810,8 +82527,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -86821,8 +82537,7 @@ /area/turret_protected/ai) "dnk" = ( /obj/machinery/atm{ - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/plasteel, /area/hallway/primary/central/ne) @@ -86928,8 +82643,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 9 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -86952,7 +82666,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -87031,7 +82744,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/structure/cable{ @@ -87080,7 +82792,6 @@ department = "Hydroponics"; departmentType = 2; name = "Hydroponics Requests Console"; - pixel_x = 0; pixel_y = 30 }, /obj/machinery/plantgenes, @@ -87128,13 +82839,11 @@ /obj/machinery/airlock_sensor{ frequency = 1450; id_tag = "south_sensor"; - pixel_x = 0; pixel_y = -25 }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1450; id_tag = "south_maint"; - pixel_x = 0; pixel_y = 25; req_access_txt = "13"; tag_airpump = "south_pump"; @@ -87146,19 +82855,14 @@ /area/maintenance/asmaint) "dnM" = ( /obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_y = 0 - }, +/obj/item/taperecorder, /obj/item/camera{ desc = "A one use - polaroid camera. 30 photos left."; name = "Camera"; - pictures_left = 30; - pixel_x = 0; - pixel_y = 0 + pictures_left = 30 }, /obj/item/book/codex_gigas, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cult"; tag = "icon-cult" }, @@ -87236,15 +82940,13 @@ "dnT" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) "dnU" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/floodlight, /turf/simulated/floor/plasteel{ @@ -87254,20 +82956,17 @@ "dnV" = ( /obj/effect/spawner/window/reinforced, /obj/structure/sign/securearea{ - pixel_x = 0; pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) "dnW" = ( /obj/structure/closet/emcloset, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) @@ -87299,13 +82998,10 @@ "dnY" = ( /obj/structure/sink{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + pixel_x = 11 }, /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -87327,12 +83023,10 @@ /obj/machinery/light/small, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/turret_protected/aisat_interior) @@ -87351,7 +83045,6 @@ "doe" = ( /obj/effect/spawner/window/reinforced, /obj/structure/sign/securearea{ - pixel_x = 0; pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -87390,7 +83083,6 @@ /obj/machinery/computer/card, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/machinery/light{ @@ -87420,15 +83112,12 @@ id_tag = "atmospherics_south_pump" }, /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "atmospherics_south_sensor"; pixel_x = -8; pixel_y = -30 }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "atmospherics_south"; - pixel_x = 0; pixel_y = -25; req_access_txt = null; tag_airpump = "atmospherics_south_pump"; @@ -87464,9 +83153,7 @@ dir = 4 }, /obj/machinery/door/airlock/external{ - aiControlDisabled = 0; frequency = 1379; - hackProof = 0; icon_state = "door_locked"; id_tag = "atmospherics_south_inner"; locked = 1; @@ -87498,7 +83185,6 @@ dir = 1 }, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "cafeteria" }, /area/crew_quarters/kitchen) @@ -87511,8 +83197,7 @@ /area/maintenance/storage) "dos" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" + dir = 9 }, /turf/simulated/floor/plating, /area/maintenance/storage) @@ -87551,7 +83236,6 @@ /obj/structure/table/wood, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/item/camera, @@ -87586,15 +83270,12 @@ /area/turret_protected/aisat_interior) "doI" = ( /obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_4) "doK" = ( /obj/machinery/light, @@ -87612,26 +83293,23 @@ id_tag = "s_docking_airlock"; name = "Escape Pod Hatch" }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_4) "doM" = ( /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 0; pixel_y = 32 }, /obj/machinery/light, /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/turf/simulated/floor/mineral/titanium/blue, +/turf/simulated/floor/transparent/glass/titanium, /area/shuttle/pod_4) "doN" = ( /obj/machinery/computer/station_alert, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -87645,12 +83323,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -87666,12 +83342,10 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -87758,7 +83432,6 @@ }, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -87771,7 +83444,6 @@ /obj/machinery/light/small, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /turf/simulated/floor/plasteel{ @@ -87784,7 +83456,6 @@ /obj/structure/table, /obj/machinery/status_display{ layer = 4; - pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plasteel{ @@ -87810,7 +83481,6 @@ }) "dpD" = ( /obj/machinery/atmospherics/binary/pump{ - dir = 2; name = "Air Out" }, /turf/simulated/floor/plating, @@ -87819,7 +83489,6 @@ }) "dpE" = ( /obj/machinery/atmospherics/binary/pump{ - dir = 2; name = "Mix to MiniSat" }, /turf/simulated/floor/plating, @@ -87882,7 +83551,6 @@ }, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/machinery/space_heater, @@ -87925,7 +83593,6 @@ }, /obj/machinery/alarm{ dir = 8; - icon_state = "alarm0"; pixel_x = 24 }, /obj/structure/rack, @@ -87933,10 +83600,7 @@ pixel_x = -3; pixel_y = 3 }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 0; - pixel_y = 0 - }, +/obj/item/storage/toolbox/mechanical, /obj/item/multitool, /obj/machinery/camera{ c_tag = "AI Satellite Service Bay"; @@ -87956,8 +83620,7 @@ /obj/machinery/power/apc{ dir = 8; name = "west bump"; - pixel_x = -24; - shock_proof = 0 + pixel_x = -24 }, /turf/simulated/floor/plating, /area/aisat/entrance{ @@ -88027,8 +83690,7 @@ pixel_y = -29 }, /obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel{ dir = 8; @@ -88072,8 +83734,7 @@ /area/aisat) "dqM" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/porta_turret{ dir = 4; @@ -88086,8 +83747,7 @@ }) "dqO" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/porta_turret{ dir = 8; @@ -88192,8 +83852,7 @@ /area/turret_protected/ai) "drA" = ( /obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 + pixel_x = 27 }, /obj/structure/chair/office/dark, /turf/simulated/floor/plasteel{ @@ -88219,14 +83878,11 @@ /area/turret_protected/ai) "drG" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 8 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) @@ -88239,8 +83895,7 @@ "drK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10; - initialize_directions = 10; - level = 1 + initialize_directions = 10 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -88259,14 +83914,11 @@ /area/turret_protected/ai) "drO" = ( /obj/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /obj/machinery/status_display{ - density = 0; layer = 4; - pixel_x = 32; - pixel_y = 0 + pixel_x = 32 }, /turf/simulated/floor/bluegrid, /area/turret_protected/ai) @@ -88325,7 +83977,6 @@ }, /obj/machinery/power/apc{ cell_type = 5000; - dir = 2; name = "south bump Important Area"; pixel_y = -24 }, @@ -88357,7 +84008,6 @@ }, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = -28 }, /obj/machinery/requests_console{ @@ -88437,15 +84087,13 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /turf/simulated/wall, /area/turret_protected/ai) "dse" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + dir = 1 }, /obj/machinery/ai_slipper{ icon_state = "motion0" @@ -88455,7 +84103,6 @@ "dsg" = ( /obj/machinery/camera/motion{ c_tag = "AI Core South"; - dir = 2; network = list("SS13","MiniSat") }, /turf/simulated/floor/bluegrid, @@ -88486,7 +84133,6 @@ "dsj" = ( /obj/machinery/camera{ c_tag = "AI Satellite Exterior South"; - dir = 2; network = list("SS13","MiniSat") }, /turf/space, @@ -88574,7 +84220,6 @@ cell_type = 25000; dir = 1; name = "Engineering Engine Super APC"; - pixel_x = 0; pixel_y = 24; shock_proof = 1 }, @@ -88595,7 +84240,6 @@ }, /obj/item/radio/intercom{ dir = 1; - name = "station intercom (General)"; pixel_y = 25 }, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -88633,18 +84277,14 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/cable{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "dsU" = ( /obj/effect/decal/cleanable/blood/oil, @@ -88710,7 +84350,6 @@ "dtk" = ( /obj/item/pipe_painter, /obj/item/clothing/ears/earmuffs{ - pixel_x = 0; pixel_y = 6 }, /obj/item/clothing/ears/earmuffs{ @@ -88749,7 +84388,6 @@ "dtq" = ( /obj/machinery/alarm{ dir = 1; - icon_state = "alarm0"; pixel_y = -22 }, /obj/structure/table, @@ -88761,7 +84399,6 @@ /obj/machinery/power/apc{ dir = 1; name = "north bump Engineering"; - pixel_x = 0; pixel_y = 24; shock_proof = 1 }, @@ -88779,7 +84416,6 @@ layer = 2.9 }, /obj/machinery/alarm{ - pixel_x = 0; pixel_y = 24 }, /obj/effect/decal/warning_stripes/south, @@ -88869,8 +84505,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/plasteel, /area/engine/engineering) @@ -88888,25 +84523,22 @@ "dVs" = ( /obj/effect/spawner/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/floor/plating, /area/crew_quarters/dorms) +"dZg" = ( +/turf/simulated/floor/transparent/glass/reinforced, +/area/bridge) "edp" = ( /obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" + dir = 1 }, /obj/machinery/camera{ c_tag = "Engineering SMES"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 + dir = 8 }, /obj/structure/cable/yellow{ - d1 = 0; d2 = 8; icon_state = "0-8" }, @@ -88943,8 +84575,7 @@ "esG" = ( /obj/effect/decal/warning_stripes/northwestcorner, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9; - level = 2 + dir = 9 }, /turf/simulated/floor/engine, /area/engine/engineering) @@ -88989,8 +84620,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8; - initialize_directions = 11; - level = 2 + initialize_directions = 11 }, /obj/machinery/meter, /turf/simulated/floor/engine, @@ -89005,8 +84635,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/cable/yellow{ d1 = 1; @@ -89039,9 +84668,7 @@ /turf/simulated/floor/plating, /area/engine/supermatter) "eTE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - req_access_txt = "0" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/wall, /area/crew_quarters/dorms) "eYG" = ( @@ -89049,6 +84676,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/crew_quarters/dorms) +"eZt" = ( +/turf/simulated/floor/transparent/glass/reinforced/plasma, +/area/engine/engineering) "fdg" = ( /obj/structure/reflector/single{ anchored = 1; @@ -89083,8 +84713,7 @@ /obj/effect/decal/warning_stripes/north, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6; - initialize_directions = 6; - level = 2 + initialize_directions = 6 }, /turf/simulated/floor/engine, /area/engine/engineering) @@ -89099,8 +84728,7 @@ /obj/machinery/tcomms/core/station, /obj/machinery/camera{ c_tag = "Telecommunications Core"; - dir = 4; - network = list("SS13") + dir = 4 }, /turf/simulated/floor/plasteel/dark, /area/tcommsat/chamber) @@ -89108,9 +84736,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/engine/engineering) "fKd" = ( /obj/effect/spawner/window/reinforced/plasma, @@ -89149,8 +84775,7 @@ "gei" = ( /obj/effect/decal/warning_stripes/north, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/light{ dir = 1 @@ -89159,8 +84784,7 @@ /area/engine/engineering) "ggO" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /obj/structure/lattice/catwalk, /turf/space, @@ -89209,8 +84833,7 @@ "gDJ" = ( /obj/effect/decal/warning_stripes/north, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/engine, /area/engine/engineering) @@ -89232,7 +84855,6 @@ }, /obj/machinery/camera{ c_tag = "Supermatter Chamber"; - dir = 2; network = list("engine"); pixel_x = 23 }, @@ -89313,8 +84935,7 @@ "hxf" = ( /obj/machinery/door/airlock/engineering/glass{ name = "Laser Room"; - req_access_txt = "10"; - req_one_access_txt = "0" + req_access_txt = "10" }, /obj/structure/cable{ d1 = 1; @@ -89326,7 +84947,6 @@ "hyv" = ( /obj/structure/cable, /obj/machinery/power/apc{ - dir = 2; name = "south bump"; pixel_y = -24 }, @@ -89357,6 +84977,9 @@ }, /turf/simulated/floor/engine, /area/engine/engineering) +"hUH" = ( +/turf/simulated/floor/transparent/glass/reinforced/plasma, +/area/engine/mechanic_workshop) "idF" = ( /obj/effect/decal/warning_stripes/south, /obj/machinery/atmospherics/trinary/filter/flipped{ @@ -89462,6 +85085,12 @@ }, /turf/simulated/floor/plating, /area/toxins/mixing) +"iKv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/transparent/glass/plasma, +/area/storage/primary) "iNz" = ( /obj/machinery/atmospherics/pipe/simple/insulated{ dir = 4 @@ -89503,8 +85132,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -89546,8 +85174,7 @@ "jve" = ( /obj/effect/decal/warning_stripes/east, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/engine, @@ -89604,7 +85231,6 @@ anchored = 1 }, /obj/structure/cable/yellow{ - d1 = 0; d2 = 8; icon_state = "0-8" }, @@ -89627,8 +85253,7 @@ /area/engine/engineering) "kcS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - level = 1 + dir = 9 }, /turf/simulated/wall/r_wall, /area/engine/engineering) @@ -89636,7 +85261,6 @@ /obj/structure/table/wood, /obj/item/deck/cards, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -89660,14 +85284,13 @@ }, /obj/effect/spawner/window/reinforced, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plating, @@ -89680,8 +85303,7 @@ "kLx" = ( /obj/effect/spawner/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -89709,18 +85331,19 @@ }, /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/engine, /area/engine/engineering) "kNZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/wall, /area/crew_quarters/dorms) +"kOn" = ( +/turf/simulated/floor/transparent/glass, +/area/security/permabrig) "kOE" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 4 @@ -89745,8 +85368,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 @@ -89789,7 +85411,6 @@ initialize_directions = 11 }, /obj/structure/cable/yellow{ - d1 = 0; d2 = 8; icon_state = "0-8" }, @@ -89827,12 +85448,10 @@ "lLC" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 1; - icon_state = "3" + dir = 1 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -89842,6 +85461,11 @@ }, /turf/simulated/wall/mineral/titanium, /area/shuttle/pod_3) +"lUw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/transparent/glass/reinforced, +/area/crew_quarters/captain) "lVr" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 10 @@ -89886,8 +85510,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -89895,8 +85518,7 @@ /area/engine/engineering) "mtr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5; - level = 1 + dir = 5 }, /turf/simulated/wall/r_wall, /area/engine/engineering) @@ -89913,15 +85535,12 @@ /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) "mAG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 2 - }, +/obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating/airless, /area/engine/engineering) "mTX" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/wall/r_wall, /area/maintenance/storage) @@ -89980,8 +85599,7 @@ "nCT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6; - level = 1 + dir = 6 }, /obj/machinery/light{ dir = 8 @@ -89991,12 +85609,10 @@ "nFa" = ( /obj/effect/decal/warning_stripes/yellow, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - level = 2 + dir = 4 }, /obj/machinery/camera{ c_tag = "Engineering Supermatter Aft"; - dir = 2; network = list("SS13","engine"); pixel_x = 23 }, @@ -90025,8 +85641,7 @@ "nPw" = ( /obj/effect/spawner/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/engine/engineering) @@ -90043,7 +85658,6 @@ icon_state = "1-4" }, /obj/machinery/atmospherics/binary/pump{ - dir = 2; name = "Cooling Loop Bypass" }, /turf/simulated/floor/engine, @@ -90060,8 +85674,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/status_display{ layer = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/plasteel, /area/crew_quarters/dorms) @@ -90071,7 +85684,6 @@ "oyv" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) @@ -90104,15 +85716,13 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_y = 0; tag = "" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/floor/plasteel{ dir = 5; @@ -90174,7 +85784,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /obj/effect/decal/cleanable/dirt, @@ -90195,7 +85804,6 @@ d1 = 4; d2 = 8; icon_state = "4-8"; - pixel_x = 0; tag = "" }, /turf/simulated/floor/plasteel, @@ -90236,24 +85844,31 @@ }, /turf/space, /area/space/nearstation) +"qbz" = ( +/turf/simulated/floor/transparent/glass/plasma, +/area/storage/primary) "qcg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/engine, /area/engine/engineering) +"qjh" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, +/area/toxins/xenobiology) "qmX" = ( /obj/effect/decal/warning_stripes/east, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8; - initialize_directions = 11; - level = 1 + initialize_directions = 11 }, /turf/simulated/floor/engine, /area/engine/engineering) @@ -90357,7 +85972,6 @@ "rlX" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5; - icon_state = "intact"; tag = "icon-intact (NORTHEAST)" }, /obj/structure/lattice, @@ -90378,8 +85992,7 @@ tag = "" }, /obj/effect/decal/warning_stripes/yellow/partial{ - dir = 4; - icon_state = "3" + dir = 4 }, /turf/simulated/floor/plasteel, /area/atmos) @@ -90449,8 +86062,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 5; @@ -90474,8 +86086,7 @@ /area/holodeck/alphadeck) "sIy" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /obj/structure/lattice, /turf/space, @@ -90529,8 +86140,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/machinery/light{ dir = 1 @@ -90539,13 +86149,14 @@ icon_state = "dark" }, /area/engine/engineering) +"teB" = ( +/turf/simulated/floor/transparent/glass/reinforced/plasma, +/area/toxins/test_chamber) "tky" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/engine/engineering) "tlR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -90568,7 +86179,6 @@ /area/engine/engineering) "tPd" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; id_tag = "engineering_east_airlock"; pixel_x = -25; req_access_txt = "10;13"; @@ -90578,7 +86188,6 @@ tag_interior_door = "engineering_east_inner" }, /obj/machinery/airlock_sensor{ - frequency = 1379; id_tag = "engineering_east_sensor"; pixel_x = -25; pixel_y = 12 @@ -90603,9 +86212,7 @@ "ubz" = ( /obj/structure/table, /obj/item/rpd, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, +/turf/simulated/floor/transparent/glass/reinforced/plasma, /area/engine/engineering) "ufc" = ( /obj/structure/cable{ @@ -90628,6 +86235,9 @@ }, /turf/space, /area/space/nearstation) +"uyi" = ( +/turf/simulated/floor/transparent/glass, +/area/security/hos) "uBJ" = ( /obj/effect/decal/warning_stripes/south, /obj/machinery/atmospherics/pipe/manifold/visible/red, @@ -90637,7 +86247,6 @@ "uDK" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5; - icon_state = "intact"; tag = "icon-intact (NORTHEAST)" }, /turf/space, @@ -90672,6 +86281,12 @@ }, /turf/simulated/floor/engine, /area/engine/engineering) +"uZc" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/simulated/floor/transparent/glass/reinforced, +/area/bridge) "uZx" = ( /obj/structure/cable{ d1 = 1; @@ -90717,7 +86332,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 0; d2 = 8; icon_state = "0-8" }, @@ -90747,8 +86361,7 @@ /area/space/nearstation) "vBs" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10; - level = 2 + dir = 10 }, /turf/simulated/floor/plasteel{ icon_state = "dark" @@ -90770,7 +86383,6 @@ dir = 1 }, /obj/item/radio/intercom{ - frequency = 1459; name = "Station Intercom (General)"; pixel_y = -28 }, @@ -90817,8 +86429,7 @@ icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5; - level = 1 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -90838,7 +86449,6 @@ "wnU" = ( /obj/machinery/alarm{ dir = 4; - icon_state = "alarm0"; pixel_x = -22 }, /turf/simulated/floor/plasteel{ @@ -90849,8 +86459,7 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_y = 0 + icon_state = "4-8" }, /obj/structure/cable/yellow{ d1 = 1; @@ -90933,8 +86542,7 @@ /area/engine/engineering) "xwz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4; - level = 1 + dir = 4 }, /turf/simulated/wall/r_wall, /area/engine/engineering) @@ -90972,14 +86580,12 @@ "xVt" = ( /obj/item/twohanded/required/kirbyplants, /turf/simulated/floor/plasteel{ - dir = 2; icon_state = "neutralcorner" }, /area/crew_quarters/dorms) "xWg" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6; - icon_state = "intact"; tag = "icon-intact (SOUTHEAST)" }, /turf/space, @@ -90990,8 +86596,7 @@ /obj/machinery/camera{ c_tag = "Engineering Supermatter Starboard"; dir = 8; - network = list("SS13","engine"); - pixel_x = 0 + network = list("SS13","engine") }, /turf/simulated/floor/engine, /area/engine/engineering) @@ -91009,8 +86614,7 @@ opacity = 0 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/storage) @@ -91021,8 +86625,7 @@ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4; - level = 2 + dir = 4 }, /turf/simulated/floor/engine, /area/engine/engineering) @@ -104763,8 +100366,8 @@ aUt aNu bhN aSX -bhm -bhm +aSX +aSX aSX brk bpF @@ -105020,8 +100623,8 @@ aIz aNu bhN aSW -bhm -bhm +aSX +aSX bmo brl bss @@ -107829,7 +103432,7 @@ aGn aHn aLn aGn -aKe +aLx aLq aMx aNE @@ -108086,7 +103689,7 @@ aHS aHS aHl aHl -aKe +aLx aLp aGn aNF @@ -108343,7 +103946,7 @@ aEL aEL aHS aHl -aKe +aLx aGn aGn aNH @@ -108600,7 +104203,7 @@ aGn aGn aGn aGn -aKe +aLx aHS aHS aHS @@ -108870,7 +104473,7 @@ aUy aVi aWn aXM -aXQ +qbz aXQ bde aVi @@ -109126,9 +104729,9 @@ aGn aUy aVi aWm -aXM -aXQ -aXQ +iKv +qbz +qbz bcT aVi bgz @@ -109383,8 +104986,8 @@ aGn aUy aVi aWo -aXM -aXQ +iKv +qbz bbm bdg aVi @@ -109641,7 +105244,7 @@ aUy aVi aWq aXM -aXQ +qbz aXQ bdh aVi @@ -109695,7 +105298,7 @@ czJ cBb cEW cFX -cFX +hUH cFX cEW ayi @@ -109887,7 +105490,7 @@ aGn aGn aGn aHS -aKe +aLx aGn aPc aGn @@ -109952,7 +105555,7 @@ cCD cDO cEW cGe -cFX +hUH cIG cEW ayi @@ -110209,7 +105812,7 @@ cCC cwx cEW cFX -cFX +hUH cFX cEW cLi @@ -111667,15 +107270,15 @@ aab abN ajf akL -anf +kOn aqM abN asg avl abN ayx -anf -anf +kOn +kOn aBJ abN aDG @@ -111924,14 +107527,14 @@ aaa abN aji akL -ado +kOn abN abN atZ avo abN abN -anf +kOn akL aBL abN @@ -113776,7 +109379,7 @@ bzJ byB bAF bDX -bNO +bOp bDX bSK bPV @@ -116386,7 +111989,7 @@ cJx cNZ cLd cKb -cOX +cPj cSU cSU cSU @@ -116643,7 +112246,7 @@ cME cMx cLf cKb -cOX +cPj cSU cUk cVh @@ -116804,7 +112407,7 @@ ahu afr aeg aqW -aie +aib ajM alc aob @@ -116900,7 +112503,7 @@ cJx cJx cLn cKb -cOX +cPj cSU cUj cVi @@ -117157,7 +112760,7 @@ cNG cNG cLf cKb -cOX +cPj cSU dsI pxP @@ -117414,7 +113017,7 @@ cNG cOG cOE cKb -cOX +cPj cSU dsH dsP @@ -117928,7 +113531,7 @@ cJx cJx cLD cKb -cOX +cPj cSU dsK cVj @@ -118185,7 +113788,7 @@ cJx cJx cPv cKb -cOX +cPj cSU dsL cVj @@ -118442,7 +114045,7 @@ cJx cJx cNG cKb -cOX +cPj cSU dsK cVj @@ -118903,8 +114506,8 @@ bkz kwt bnR bpo -bqS -bqS +dZg +dZg bxr bvX bvX @@ -119160,7 +114763,7 @@ bpv blY bnW bpt -bqS +dZg bsy bxA bvX @@ -119213,7 +114816,7 @@ cMG cMG cPL cJZ -cOX +cPj cRR cUu cRM @@ -119631,7 +115234,7 @@ afl apj aqx ago -aiy +ase akd alN aop @@ -119674,14 +115277,14 @@ bkz kwt bnY bpu -bqU +dZg bsA bxD bvX bxq bDY byP -bBA +byP bCK bvX bFE @@ -119725,7 +115328,7 @@ cHJ cHI cHD cHD -cwL +cqy cJZ cRR cRR @@ -119930,8 +115533,8 @@ bnf bkB kwt bnX -bpt -bqS +uZc +dZg bsz bxC bAD @@ -120188,14 +115791,14 @@ bkz kwt boa bpw -bqV +dZg bsA bxO bvX bxt bEa byP -bBA +byP bCL bvX bFE @@ -120224,7 +115827,7 @@ crV ctl cue cvK -cwL +cqy crV cnA cHD @@ -120238,7 +115841,7 @@ cHO cHD cHD cnA -cMV +cqy cOc cJZ cRR @@ -120702,7 +116305,7 @@ bpy blY brS bpt -bqS +dZg bvC bxY bvX @@ -120946,7 +116549,7 @@ aLP aLP aLP aRx -bdN +aUw bgT biP boU @@ -121203,7 +116806,7 @@ aWz aYs aLP bbZ -bdN +aUw bgT biT bpT @@ -121460,7 +117063,7 @@ aQZ aYp aSl aRx -bdN +aUw bgT biR bpR @@ -121998,7 +117601,7 @@ bzY bIO bJK bKL -bHm +lUw bML bOx bQu @@ -122058,8 +117661,8 @@ cZM cSU cSU dhv -ePY -ePY +eZt +eZt tky fFY ubz @@ -122496,7 +118099,7 @@ aRx dhr djf dko -bnp +bnN dnC bmi aaa @@ -122787,7 +118390,7 @@ cjn ckT clS cPd -cos +cPd cPd cqY cmt @@ -123237,7 +118840,7 @@ avB avB aAF awj -axR +axO ayY azW aBb @@ -124372,7 +119975,7 @@ dgg dgP dhC dip -diV +djE djB dkk dkO @@ -125400,7 +121003,7 @@ dgt dgP dhF dip -diV +djE djB dks dkT @@ -126048,11 +121651,11 @@ aaa aaa aih akK -aiY +uyi amv amS ajV -aiY +uyi aiY aqG ajJ @@ -126305,11 +121908,11 @@ aaa aaa adq adI -aiY +uyi ajV anb ajV -aiY +uyi apV aqG arC @@ -126562,11 +122165,11 @@ aaa aaa adq adH -aiY +uyi afM aeC ahm -aiY +uyi apU aqG aqX @@ -128136,7 +123739,7 @@ aFJ aFJ aOI aQG -aSO +qFg aVq aVq aZE @@ -130504,7 +126107,7 @@ ckC cxj ckC ciY -cwZ +czY cqM crE cvX @@ -132218,8 +127821,8 @@ aaa alv aab alD -amo -amo +axq +axq ann aoK apn @@ -134825,7 +130428,7 @@ aGX aUe aGY aGX -aWy +bbh bau bau bch @@ -135082,7 +130685,7 @@ aIE aGY aGY aGX -aWy +bbh bau bav bci @@ -135145,7 +130748,7 @@ cMg cJK cxN cKQ -cKZ +qjh cJK cxN cKQ @@ -135339,7 +130942,7 @@ aGX aMz aMz aQL -aWy +bbh bau bao bcs @@ -135596,7 +131199,7 @@ aKX aIE aUW aUW -aWy +bbh bau bax bcj @@ -135853,7 +131456,7 @@ aUU aIE aGY aGY -aWy +bbh aGX aGX aGX @@ -136183,7 +131786,7 @@ cXv cMQ cZs cJK -cKZ +qjh cJK cBR aaa @@ -137211,7 +132814,7 @@ cNo cMQ cZy cJK -cKZ +qjh cJK cBR aab @@ -138228,7 +133831,7 @@ cKZ cJK cNy cKV -cPp +cNo cEH cEH cSH @@ -138239,7 +133842,7 @@ cNo cMQ cZB cJK -cKZ +qjh cJK cBR aaa @@ -140025,7 +135628,7 @@ cID cAP cLj cMm -cLe +teB cOu cPy cLb @@ -140280,8 +135883,8 @@ cFY cHo cIH cJT -cLe -cLe +teB +teB cNu cMT cPA @@ -140539,7 +136142,7 @@ cIF cJR cLl cLe -cLe +teB cLe cPz cLb @@ -142071,7 +137674,7 @@ cuZ cgs cxV czL -cBe +cac cCo cjY bGG From 2bdff6358bd0e7d537c3b0bafee4fd4208beea40 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Sun, 18 Jul 2021 20:01:13 +0100 Subject: [PATCH 16/17] merge conflict part 2 --- _maps/map_files/cyberiad/cyberiad.dmm | 119 ++++++++++---------------- 1 file changed, 47 insertions(+), 72 deletions(-) diff --git a/_maps/map_files/cyberiad/cyberiad.dmm b/_maps/map_files/cyberiad/cyberiad.dmm index b66ee3609b0..6ff2c5b6f31 100644 --- a/_maps/map_files/cyberiad/cyberiad.dmm +++ b/_maps/map_files/cyberiad/cyberiad.dmm @@ -83,15 +83,15 @@ /turf/simulated/floor/plating, /area/security/main) "acj" = ( +/mob/living/simple_animal/bot/secbot/armsky{ + auto_patrol = 1 + }, /obj/effect/decal/warning_stripes/north, /obj/effect/decal/warning_stripes/south, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Armory_South"; location = "Armory_North" }, -/mob/living/simple_animal/bot/secbot/armsky{ - auto_patrol = 1 - }, /turf/simulated/floor/plasteel{ icon_state = "dark" }, @@ -1685,17 +1685,6 @@ icon_state = "whiteblue" }, /area/security/medbay) -"agd" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 2; - height = 18; - id = "skipjack_ne"; - name = "northeast of SS13"; - width = 19 - }, -/turf/space, -/area/space) "agj" = ( /obj/effect/spawner/window/reinforced, /obj/structure/cable{ @@ -13056,6 +13045,7 @@ /turf/simulated/floor/carpet, /area/magistrateoffice) "aCo" = ( +/mob/living/simple_animal/bot/secbot/beepsky, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -13066,7 +13056,6 @@ dir = 4; initialize_directions = 11 }, -/mob/living/simple_animal/bot/secbot/beepsky, /turf/simulated/floor/plasteel, /area/hallway/primary/fore) "aCp" = ( @@ -22708,10 +22697,10 @@ }, /area/crew_quarters/bar) "aYe" = ( +/mob/living/carbon/human/monkey/punpun, /obj/structure/disposalpipe/segment{ dir = 4 }, -/mob/living/carbon/human/monkey/punpun, /turf/simulated/floor/plasteel{ icon_state = "grimy" }, @@ -37377,11 +37366,11 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central/west) "bDP" = ( +/mob/living/simple_animal/mouse, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/mob/living/simple_animal/mouse, /turf/simulated/floor/plating, /area/maintenance/port) "bDQ" = ( @@ -37467,9 +37456,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/turf/simulated/floor/plasteel{ - icon_state = "dark" - }, /turf/simulated/floor/transparent/glass/reinforced/plasma, /area/turret_protected/ai_upload) "bDX" = ( @@ -40985,13 +40971,13 @@ /turf/simulated/floor/plasteel, /area/assembly/chargebay) "bLn" = ( +/mob/living/simple_animal/pig, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/mob/living/simple_animal/pig, /turf/simulated/floor/grass, /area/hydroponics) "bLo" = ( @@ -43105,8 +43091,8 @@ /turf/simulated/floor/plasteel, /area/assembly/robotics) "bPb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, /mob/living/simple_animal/pet/dog/corgi/borgi, +/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plasteel{ icon_state = "white" }, @@ -44380,16 +44366,16 @@ }, /area/medical/research) "bRo" = ( +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #1"; + suffix = "#1" + }, /obj/machinery/navbeacon{ codes_txt = "delivery"; dir = 8; location = "QM #1" }, /obj/effect/decal/warning_stripes/yellow/hollow, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #1"; - suffix = "#1" - }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bRp" = ( @@ -44639,16 +44625,16 @@ /turf/simulated/floor/plating, /area/hallway/primary/central/sw) "bRW" = ( +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, /obj/machinery/navbeacon{ codes_txt = "delivery"; dir = 8; location = "QM #2" }, /obj/effect/decal/warning_stripes/yellow/hollow, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, /turf/simulated/floor/plasteel, /area/quartermaster/storage) "bRX" = ( @@ -45308,6 +45294,7 @@ /turf/simulated/floor/plasteel, /area/crew_quarters/heads) "bTd" = ( +/mob/living/simple_animal/pet/dog/corgi/Ian, /obj/structure/cable{ d2 = 4; icon_state = "0-4" @@ -45318,7 +45305,6 @@ pixel_y = 24 }, /obj/structure/bed/dogbed/ian, -/mob/living/simple_animal/pet/dog/corgi/Ian, /turf/simulated/floor/plasteel, /area/crew_quarters/heads) "bTe" = ( @@ -46593,11 +46579,11 @@ /turf/simulated/floor/plasteel, /area/escapepodbay) "bVJ" = ( +/mob/living/simple_animal/pet/sloth/paperwork, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/mob/living/simple_animal/pet/sloth/paperwork, /turf/simulated/floor/plasteel, /area/quartermaster/office) "bVK" = ( @@ -51206,9 +51192,7 @@ /area/hallway/primary/central/south) "cdO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - icon_state = "white" - }, +/turf/simulated/floor/transparent/glass/reinforced, /area/crew_quarters/hor) "cdP" = ( /obj/structure/cable{ @@ -51233,7 +51217,7 @@ /area/quartermaster/qm) "cdR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel, +/turf/simulated/floor/transparent/glass, /area/quartermaster/qm) "cdS" = ( /obj/structure/cable{ @@ -52263,6 +52247,7 @@ /turf/simulated/floor/plasteel, /area/hallway/primary/central/sw) "cfU" = ( +/mob/living/simple_animal/pet/cat/Runtime, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -52277,9 +52262,9 @@ d2 = 8; icon_state = "1-8" }, -/mob/living/simple_animal/pet/cat/Runtime, /turf/simulated/floor/plasteel{ - icon_state = "dark" + dir = 1; + icon_state = "darkbluecorners" }, /area/medical/cmo) "cfV" = ( @@ -52302,7 +52287,8 @@ tag = "" }, /turf/simulated/floor/plasteel{ - icon_state = "dark" + dir = 4; + icon_state = "darkbluecorners" }, /area/medical/cmo) "cfW" = ( @@ -54891,10 +54877,7 @@ /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop, /obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plasteel{ - dir = 4; - icon_state = "darkblue" - }, +/turf/simulated/floor/transparent/glass, /area/medical/cmo) "clc" = ( /obj/machinery/bodyscanner, @@ -54948,10 +54931,10 @@ }, /area/medical/surgery2) "clg" = ( +/mob/living/simple_animal/mouse/white, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/mob/living/simple_animal/mouse/white, /turf/simulated/floor/plasteel, /area/toxins/storage) "clh" = ( @@ -62622,13 +62605,13 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint) "czc" = ( +/mob/living/simple_animal/mouse, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8"; tag = "" }, -/mob/living/simple_animal/mouse, /turf/simulated/floor/plating, /area/maintenance/asmaint2) "czd" = ( @@ -62927,8 +62910,8 @@ /turf/simulated/wall/r_wall, /area/maintenance/incinerator) "czG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, /mob/living/carbon/human/monkey, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -63303,6 +63286,7 @@ }, /area/medical/virology) "cAr" = ( +/mob/living/carbon/human/monkey, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -63310,7 +63294,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/mob/living/carbon/human/monkey, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -63604,10 +63587,10 @@ /turf/simulated/wall/r_wall, /area/maintenance/incinerator) "cAY" = ( +/mob/living/carbon/human/monkey, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/mob/living/carbon/human/monkey, /turf/simulated/floor/plasteel{ icon_state = "whitegreenfull" }, @@ -64398,12 +64381,12 @@ /turf/simulated/floor/plating, /area/maintenance/consarea) "cCB" = ( +/mob/living/simple_animal/mouse, /obj/effect/landmark{ name = "xeno_spawn"; pixel_x = -1 }, /obj/machinery/hologram/holopad, -/mob/living/simple_animal/mouse, /turf/simulated/floor/plasteel{ icon_state = "floorgrime" }, @@ -66827,10 +66810,6 @@ d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" - }, /turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "cGZ" = ( @@ -66890,10 +66869,6 @@ d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plasteel{ - dir = 8; - icon_state = "neutralfull" - }, /turf/simulated/floor/transparent/glass/reinforced, /area/engine/chiefs_office) "cHc" = ( @@ -69510,10 +69485,10 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint) "cMg" = ( +/mob/living/simple_animal/slime, /obj/effect/landmark{ name = "revenantspawn" }, -/mob/living/simple_animal/slime, /turf/simulated/floor/transparent/glass/reinforced/plasma, /area/toxins/xenobiology) "cMh" = ( @@ -70537,6 +70512,7 @@ }, /area/toxins/xenobiology) "cOq" = ( +/mob/living/simple_animal/mouse, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -70545,7 +70521,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/mob/living/simple_animal/mouse, /turf/simulated/floor/plating, /area/maintenance/aft) "cOr" = ( @@ -73657,6 +73632,7 @@ /turf/simulated/floor/plasteel, /area/engine/equipmentstorage) "cUu" = ( +/mob/living/simple_animal/parrot/Poly, /obj/machinery/keycard_auth{ pixel_y = 24 }, @@ -73681,7 +73657,6 @@ }, /obj/item/megaphone, /obj/item/lock_buster, -/mob/living/simple_animal/parrot/Poly, /turf/simulated/floor/plasteel{ dir = 8; icon_state = "neutralfull" @@ -77901,11 +77876,11 @@ /turf/simulated/floor/plasteel, /area/maintenance/turbine) "dev" = ( +/mob/living/simple_animal/mouse, /obj/effect/landmark{ name = "blobstart" }, /obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, /turf/simulated/floor/plasteel, /area/maintenance/turbine) "dew" = ( @@ -78558,8 +78533,8 @@ /turf/simulated/floor/plasteel, /area/atmos) "dfL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /mob/living/simple_animal/mouse, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/asmaint) "dfM" = ( @@ -82068,10 +82043,10 @@ /turf/simulated/floor/grass, /area/hydroponics) "dnE" = ( -/obj/machinery/hydroponics/soil, /mob/living/simple_animal/chicken{ name = "Commander Clucky" }, +/obj/machinery/hydroponics/soil, /turf/simulated/floor/grass, /area/hydroponics) "dnF" = ( @@ -111686,7 +111661,7 @@ ahu afr aeg aqW -aib +aie ajM alc aob @@ -115120,7 +115095,7 @@ cHO cHD cHD cnA -cqy +cMV cOc cJZ cRR @@ -115828,7 +115803,7 @@ aLP aLP aLP aRx -aUw +bdN bgT biP boU @@ -116085,7 +116060,7 @@ aWz aYs aLP bbZ -aUw +bdN bgT biT bpT @@ -116342,7 +116317,7 @@ aQZ aYp aSl aRx -aUw +bdN bgT biR bpR @@ -118119,7 +118094,7 @@ avB avB aAF awj -axO +axR ayY azW aBb @@ -133110,7 +133085,7 @@ cKZ cJK cNy cKV -cNo +cPp cEH cEH cSH @@ -136953,7 +136928,7 @@ cuZ cgs cxV czL -cac +cBe cCo cjY bGG @@ -144045,7 +144020,7 @@ aaa aaa aaa aaa -agd +aaa aaa aaa aaa From 6d312f3a4bc0da76fb07fea6b9c4f33627b13d77 Mon Sep 17 00:00:00 2001 From: S34NW <12197162+S34NW@users.noreply.github.com> Date: Tue, 20 Jul 2021 17:35:46 +0100 Subject: [PATCH 17/17] floor painter thingybob --- code/game/objects/items/devices/painter/pipe_painter.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/devices/painter/pipe_painter.dm b/code/game/objects/items/devices/painter/pipe_painter.dm index 4ad7b16b293..17c383809aa 100644 --- a/code/game/objects/items/devices/painter/pipe_painter.dm +++ b/code/game/objects/items/devices/painter/pipe_painter.dm @@ -27,8 +27,8 @@ return var/turf/T = get_turf(P) - if(P.level < 2 && T.level == 1 && T.intact) - to_chat(user, "You must remove the plating first.") + if(P.level < 2 && T.level == 1 && T.intact && !T.transparent_floor) + to_chat(user, "You must remove the flooring first.") return P.change_color(GLOB.pipe_colors[paint_setting])