From 81db26ba94f6f03b0070e5caa6cbfde17d12f826 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 11 May 2022 23:40:06 +0200 Subject: [PATCH] [MIRROR] [MDB IGNORE] Removes tablet cartridges + reworks a ton more [MDB IGNORE] (#13539) * [MDB IGNORE] Removes tablet cartridges + reworks a ton more (#66505) - All tablets who previously had apps in a cartridge now has them built-into their tablet instead. This means it costs space for it. - Rebalances the sizes of several apps to help them fit on Command tablets (Cargo ordering costed 20!!) - Removes tablet cartridges, they've been reworked into a regular old portable disk (the same you use for toxins/borgs) - Removes Signaller (the module required to run the signaller app) from tablets (likely will remove more in the future) - Refactors the health/chem scanning app to not be as bad - Dehardcodes detomatix resistance - Ability to send PDA's to all is now tied to your access rather than a cartridge - Moves 'eject disk' button to the very top of the UI * [MDB IGNORE] Removes tablet cartridges + reworks a ton more * wew * wew * ok * Update nanotrasen_consultant.dm * Update nanotrasen_consultant.dm Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com> --- _maps/RandomRuins/SpaceRuins/derelict7.dmm | 2 +- _maps/RandomZLevels/SnowCabin.dmm | 214 +- _maps/RandomZLevels/moonoutpost19.dmm | 116 +- _maps/RandomZLevels/undergroundoutpost45.dmm | 594 +- .../map_files/Blueshift/BlueShift_middle.dmm | 23 +- _maps/map_files/Blueshift/BlueShift_upper.dmm | 12 +- .../map_files/Deltastation/DeltaStation2.dmm | 2328 +-- .../Deltastation/DeltaStation2_skyrat.dmm | 30 +- .../skyrat_old/DeltaStation2_skyrat_old.dmm | 30 +- .../map_files/IceBoxStation/IceBoxStation.dmm | 163 +- .../IceBoxStation/IceBoxStation_skyrat.dmm | 27 +- _maps/map_files/KiloStation/KiloStation.dmm | 12062 ++++++++-------- .../KiloStation/KiloStation_skyrat.dmm | 28 +- .../skyrat_old/KiloStation_skyrat_old.dmm | 28 +- _maps/map_files/MetaStation/MetaStation.dmm | 238 +- .../MetaStation/MetaStation_skyrat.dmm | 30 +- .../skryat_old/MetaStation_skyrat_old.dmm | 30 +- _maps/map_files/NSSJourney/NSSJourney.dmm | 21 +- _maps/map_files/generic/CentCom.dmm | 144 +- _maps/map_files/generic/CentCom_skyrat.dmm | 6 +- .../skryat_old/tramstation_skyrat_old.dmm | 24 +- _maps/map_files/tramstation/tramstation.dmm | 1282 +- .../tramstation/tramstation_skyrat.dmm | 24 +- code/__DEFINES/devices.dm | 17 - code/__DEFINES/machines.dm | 5 +- code/game/objects/items/storage/boxes.dm | 11 +- .../game/objects/items/storage/uplink_kits.dm | 2 +- .../closets/secure/engineering.dm | 2 +- .../crates_lockers/closets/secure/medical.dm | 2 +- .../closets/secure/scientist.dm | 2 +- .../crates_lockers/closets/secure/security.dm | 5 +- code/modules/cargo/exports/parts.dm | 6 - .../computers/_modular_computer_shared.dm | 20 +- .../computers/item/computer.dm | 5 +- .../computers/item/computer_ui.dm | 26 +- .../computers/item/role_tablet_presets.dm | 345 +- .../computers/item/tablet.dm | 27 +- .../computers/item/tablet_presets.dm | 3 +- .../modular_computers/file_system/program.dm | 2 + .../file_system/programs/alarm.dm | 2 +- .../file_system/programs/budgetordering.dm | 2 +- .../file_system/programs/crewmanifest.dm | 1 + .../file_system/programs/ntmessenger.dm | 17 +- .../file_system/programs/phys_scanner.dm | 33 +- .../file_system/programs/powermonitor.dm | 3 +- .../file_system/programs/radar.dm | 1 + .../file_system/programs/records.dm | 1 + .../file_system/programs/robocontrol.dm | 12 +- .../{signaler.dm => signalcommander.dm} | 35 +- .../file_system/programs/statusdisplay.dm | 2 +- .../file_system/programs/techweb.dm | 2 +- .../modular_computers/hardware/hard_drive.dm | 2 +- .../modular_computers/hardware/job_disk.dm | 256 - .../hardware/program_disks.dm | 154 + .../hardware/sensor_package.dm | 9 - .../modular_computers/hardware/virus_disk.dm | 30 +- .../research/designs/computer_part_designs.dm | 9 - .../uplink/uplink_items/device_tools.dm | 4 +- code/modules/uplink/uplink_items/explosive.dm | 2 +- code/modules/vending/assist.dm | 2 +- code/modules/vending/cartridge.dm | 14 +- code/modules/vending/modularpc.dm | 1 - icons/obj/module.dmi | Bin 18794 -> 18780 bytes .../code/_globalvars/maint_loot_uncommon.dm | 26 +- .../code/datums/contractor_tablet.dm | 4 +- .../modules/contractor/code/items/tablet.dm | 2 +- .../code/nanotrasen_consultant.dm | 4 +- tgstation.dme | 4 +- tgui/packages/tgui/interfaces/NtosMain.js | 69 +- tools/UpdatePaths/tablet_cartridges.txt | 24 + 70 files changed, 9307 insertions(+), 9356 deletions(-) rename code/modules/modular_computers/file_system/programs/{signaler.dm => signalcommander.dm} (54%) delete mode 100644 code/modules/modular_computers/hardware/job_disk.dm create mode 100644 code/modules/modular_computers/hardware/program_disks.dm create mode 100644 tools/UpdatePaths/tablet_cartridges.txt diff --git a/_maps/RandomRuins/SpaceRuins/derelict7.dmm b/_maps/RandomRuins/SpaceRuins/derelict7.dmm index d10b6e4a2bb..6b8d7cbd270 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict7.dmm +++ b/_maps/RandomRuins/SpaceRuins/derelict7.dmm @@ -323,7 +323,7 @@ /obj/effect/turf_decal/trimline/neutral/warning{ dir = 1 }, -/obj/item/computer_hardware/hard_drive/role/signal, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /turf/open/floor/iron/dark/side/airless{ dir = 1 }, diff --git a/_maps/RandomZLevels/SnowCabin.dmm b/_maps/RandomZLevels/SnowCabin.dmm index 7385fbcceca..0bab3ae23d5 100644 --- a/_maps/RandomZLevels/SnowCabin.dmm +++ b/_maps/RandomZLevels/SnowCabin.dmm @@ -957,16 +957,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/snowed/snow_cabin, /area/awaymission/cabin/snowforest/sovietsurface) -"dm" = ( -/obj/structure/table/reinforced, -/obj/item/modular_computer/tablet/pda/syndicate{ - default_disk = /obj/item/computer_hardware/hard_drive/role/virus/mime; - desc = "A portable microcomputer by Thinktronic Systems, LTD. Seems like it may have useful information on it."; - name = "soviet tablet"; - note = "TRANSLATED TO GALACTIC COMMON: My partner has left to help those Nanotrasen fucks three days ago. They said that a distress signal came from down south and they had to check it out. How fucking long does it take to investigate a mining outpost? Either those Nanotrasen fuckers betrayed us or something really did go wrong. Either way, I'm leaving before this becomes an issue for me and anyone else here. That dumb idiot." - }, -/turf/open/floor/plating/snowed/snow_cabin, -/area/awaymission/cabin/snowforest/sovietsurface) "dn" = ( /obj/structure/table/reinforced, /obj/item/megaphone/sec{ @@ -1316,10 +1306,6 @@ /obj/item/stack/sheet/mineral/wood, /turf/open/floor/wood/freezing, /area/awaymission/cabin/lumbermill) -"ey" = ( -/obj/structure/sign/warning/no_smoking/circle, -/turf/closed/wall/mineral/wood, -/area/awaymission/cabin/snowforest) "ez" = ( /obj/structure/fence, /obj/effect/turf_decal/weather/snow/corner{ @@ -2895,26 +2881,6 @@ name = "soviet floor" }, /area/awaymission/cabin/caves/sovietcave) -"jO" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = 32 - }, -/turf/open/floor/wood/freezing, -/area/awaymission/cabin/lumbermill) -"jP" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32 - }, -/turf/open/floor/wood/freezing, -/area/awaymission/cabin/lumbermill) -"jQ" = ( -/obj/structure/table/wood, -/obj/structure/sign/warning/no_smoking/circle{ - pixel_x = -16; - pixel_y = 32 - }, -/turf/open/floor/wood/freezing, -/area/awaymission/cabin/lumbermill) "jR" = ( /obj/structure/table/wood, /obj/item/hatchet{ @@ -3101,48 +3067,6 @@ icon_state = "wood-broken7" }, /area/awaymission/cabin/caves) -"kD" = ( -/obj/structure/table/wood, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = 7; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = -7; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = -3; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = 3; - throwforce = 4 - }, -/obj/structure/sign/warning/no_smoking/circle{ - pixel_x = 16; - pixel_y = -32 - }, -/turf/open/floor/wood/freezing, -/area/awaymission/cabin/lumbermill) "kE" = ( /obj/structure/closet, /obj/item/clothing/suit/hooded/wintercoat, @@ -3311,13 +3235,6 @@ }, /turf/closed/wall/ice, /area/awaymission/cabin/caves) -"lQ" = ( -/obj/structure/sign/warning/engine_safety{ - desc = "A sign detailing the various safety protocols when working on-site to ensure a safe shift. It seems to particularly focus on how dangerous the sawblade is."; - name = "\improper LUMBERMILL SAFETY" - }, -/turf/closed/wall/mineral/wood, -/area/awaymission/cabin/lumbermill) "lS" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/spider/stickyweb, @@ -3560,19 +3477,6 @@ }, /turf/open/floor/plating/snowed, /area/awaymission/cabin/caves) -"nb" = ( -/obj/effect/turf_decal/weather/snow, -/obj/item/modular_computer/tablet/pda/syndicate{ - default_disk = /obj/item/computer_hardware/hard_drive/role/virus/clown; - desc = "A portable microcomputer by Thinktronic Systems, LTD. Seems like it may have useful information on it."; - name = "soviet tablet"; - note = "TRANSLATED TO GALACTIC COMMON: DO NOT GO SOUTH." - }, -/obj/effect/decal/remains/human{ - color = "#72e4fa" - }, -/turf/open/floor/iron/dark/snowdin, -/area/awaymission/cabin/caves) "nc" = ( /obj/effect/baseturf_helper/asteroid/snow, /turf/closed/wall/ice, @@ -3743,6 +3647,13 @@ /obj/effect/decal/remains/human, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/caves) +"pj" = ( +/obj/structure/sign/warning/engine_safety{ + desc = "A sign detailing the various safety protocols when working on-site to ensure a safe shift. It seems to particularly focus on how dangerous the sawblade is."; + name = "\improper LUMBERMILL SAFETY" + }, +/turf/closed/wall/mineral/wood, +/area/awaymission/cabin/lumbermill) "pu" = ( /obj/item/grenade/barrier{ pixel_x = -14; @@ -3998,6 +3909,19 @@ }, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/caves) +"vD" = ( +/obj/effect/turf_decal/weather/snow, +/obj/item/modular_computer/tablet/pda/syndicate{ + loaded_cartridge = /obj/item/computer_hardware/hard_drive/portable/virus/clown; + desc = "A portable microcomputer by Thinktronic Systems, LTD. Seems like it may have useful information on it."; + name = "soviet tablet"; + note = "TRANSLATED TO GALACTIC COMMON: DO NOT GO SOUTH." + }, +/obj/effect/decal/remains/human{ + color = "#72e4fa" + }, +/turf/open/floor/iron/dark/snowdin, +/area/awaymission/cabin/caves) "vG" = ( /obj/effect/decal/cleanable/blood/old, /obj/item/grenade/chem_grenade/large, @@ -4133,6 +4057,16 @@ /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/indestructible, /area/awaymission/cabin/caves/mountain) +"yR" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/tablet/pda/syndicate{ + loaded_cartridge = /obj/item/computer_hardware/hard_drive/portable/virus/mime; + desc = "A portable microcomputer by Thinktronic Systems, LTD. Seems like it may have useful information on it."; + name = "soviet tablet"; + note = "TRANSLATED TO GALACTIC COMMON: My partner has left to help those Nanotrasen fucks three days ago. They said that a distress signal came from down south and they had to check it out. How fucking long does it take to investigate a mining outpost? Either those Nanotrasen fuckers betrayed us or something really did go wrong. Either way, I'm leaving before this becomes an issue for me and anyone else here. That dumb idiot." + }, +/turf/open/floor/plating/snowed/snow_cabin, +/area/awaymission/cabin/snowforest/sovietsurface) "yY" = ( /obj/vehicle/ridden/atv{ dir = 4 @@ -4165,6 +4099,10 @@ }, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/snowforest) +"zm" = ( +/obj/structure/sign/warning/no_smoking/circle, +/turf/closed/wall/mineral/wood, +/area/awaymission/cabin/snowforest) "zn" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/remains/human, @@ -4450,6 +4388,12 @@ }, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/caves) +"Lt" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = 32 + }, +/turf/open/floor/wood/freezing, +/area/awaymission/cabin/lumbermill) "LE" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/item/nullrod/claymore/multiverse{ @@ -4592,6 +4536,14 @@ }, /turf/open/misc/asteroid/snow/snow_cabin, /area/awaymission/cabin/snowforest) +"OF" = ( +/obj/structure/table/wood, +/obj/structure/sign/warning/no_smoking/circle{ + pixel_x = -16; + pixel_y = 32 + }, +/turf/open/floor/wood/freezing, +/area/awaymission/cabin/lumbermill) "OZ" = ( /obj/structure/flora/tree/dead, /turf/open/misc/asteroid/snow/snow_cabin, @@ -4753,6 +4705,48 @@ }, /turf/open/floor/wood, /area/awaymission/cabin) +"SQ" = ( +/obj/structure/table/wood, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = 7; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = -7; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = -3; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = 3; + throwforce = 4 + }, +/obj/structure/sign/warning/no_smoking/circle{ + pixel_x = 16; + pixel_y = -32 + }, +/turf/open/floor/wood/freezing, +/area/awaymission/cabin/lumbermill) "SS" = ( /obj/effect/decal/cleanable/glitter/blue{ desc = "It looks like fancy glitter to me."; @@ -4811,6 +4805,12 @@ slowdown = 0 }, /area/awaymission/cabin/caves) +"Un" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/turf/open/floor/wood/freezing, +/area/awaymission/cabin/lumbermill) "Uu" = ( /obj/structure/statue/snow/snowlegion{ anchored = 1; @@ -18329,7 +18329,7 @@ mU mU mU mJ -nb +vD mW mW ab @@ -35928,13 +35928,13 @@ RC RC ad ad -jP +Un af af af af af -jP +Un ad ad RC @@ -37477,7 +37477,7 @@ af ak af af -kD +SQ ad RC RC @@ -37726,7 +37726,7 @@ Sd RC RC ad -jQ +OF af ak jX @@ -39269,13 +39269,13 @@ RC ae ad ad -jO +Lt af af af af af -jO +Lt ad ad fb @@ -39529,7 +39529,7 @@ ad ad eH eG -lQ +pj eG eH ad @@ -42446,7 +42446,7 @@ Xa Xa Xa dc -dm +yR di dG dP @@ -42607,7 +42607,7 @@ RC RC Sd RC -ey +zm ez eC eC @@ -42619,7 +42619,7 @@ eC eC eC fa -ey +zm RC RC RC diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm index 19184d0a463..ac3bf27eec7 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/RandomZLevels/moonoutpost19.dmm @@ -656,19 +656,6 @@ temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) -"cg" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) "ch" = ( /obj/machinery/light/small/broken/directional/east, /obj/effect/decal/cleanable/dirt, @@ -1668,10 +1655,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"eA" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/awaymission/moonoutpost19/research) "eB" = ( /obj/structure/alien/weeds/node, /turf/open/floor/engine, @@ -1871,17 +1854,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"fe" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/obj/structure/alien/weeds, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/turf/open/floor/iron/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) "ff" = ( /obj/structure/table, /obj/machinery/reagentgrinder, @@ -2891,15 +2863,6 @@ dir = 5 }, /area/awaymission/moonoutpost19/research) -"hr" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/awaymission/moonoutpost19/research) "hs" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light/small/broken/directional/north, @@ -3363,21 +3326,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) -"iu" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/moonoutpost19/research) "iv" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/stripes/line{ @@ -6139,6 +6087,19 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) +"zR" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron{ + heat_capacity = 1e+006; + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + temperature = 251 + }, +/area/awaymission/moonoutpost19/syndicate) "zZ" = ( /obj/machinery/door/airlock/external/ruin, /obj/effect/mapping_helpers/airlock/cyclelink_helper, @@ -6162,6 +6123,15 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/hive) +"CG" = ( +/obj/structure/table, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/awaymission/moonoutpost19/research) "CY" = ( /obj/structure/alien/weeds, /obj/effect/decal/cleanable/blood/gibs, @@ -6226,6 +6196,17 @@ temperature = 251 }, /area/awaymission/moonoutpost19/main) +"HP" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/obj/structure/alien/weeds, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/turf/open/floor/iron/white{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "HQ" = ( /obj/machinery/power/shieldwallgen/unlocked, /obj/structure/cable, @@ -6256,6 +6237,21 @@ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251" }, /area/awaymission/moonoutpost19/main) +"Jr" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/white{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) "Ku" = ( /obj/structure/alien/weeds/node, /mob/living/simple_animal/hostile/alien, @@ -6488,6 +6484,10 @@ temperature = 251 }, /area/awaymission/moonoutpost19/main) +"Zl" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/awaymission/moonoutpost19/research) "Zs" = ( /obj/structure/chair{ dir = 4 @@ -33911,7 +33911,7 @@ gA eJ he ea -hr +CG hB hC hX @@ -35971,7 +35971,7 @@ fk hj hN ea -iu +Jr iN eI jx @@ -36216,7 +36216,7 @@ eb ef ev eL -fe +HP fw fX gm @@ -39041,13 +39041,13 @@ wq wq ea ea -eA +Zl eq eq fF gc gu -eA +Zl ea ea wq @@ -41841,7 +41841,7 @@ Li bD bM at -cg +zR cu cI cU diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm index a53ac4079dd..accc6bb804b 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/RandomZLevels/undergroundoutpost45.dmm @@ -1978,22 +1978,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) -"eJ" = ( -/obj/structure/closet/secure_closet{ - icon_state = "hydro"; - locked = 0; - name = "botanist's locker"; - req_access_txt = "201" - }, -/obj/item/clothing/suit/apron, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/clothing/mask/bandana/striped/botany, -/obj/item/cultivator, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/central) "eL" = ( /obj/structure/chair/office{ dir = 4 @@ -2620,15 +2604,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) -"gk" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/gateway) "gl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/iron{ @@ -5967,16 +5942,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) -"nk" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/cafeteria{ - dir = 5; - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/research) "nl" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/iron/cafeteria{ @@ -8796,24 +8761,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) -"sy" = ( -/obj/machinery/computer/monitor/secret{ - name = "primary power monitoring console" - }, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/engineering) "sA" = ( /obj/machinery/shower{ dir = 4 @@ -10712,19 +10659,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/mining) -"wG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/gateway) "wK" = ( /obj/machinery/door/airlock{ name = "Private Restroom" @@ -11256,6 +11190,19 @@ /obj/effect/turf_decal/sand, /turf/open/floor/iron, /area/awaymission/undergroundoutpost45/mining) +"yh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 32 + }, +/turf/open/floor/iron/dark{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/gateway) "yy" = ( /obj/machinery/light/small/directional/east, /obj/machinery/airalarm/all_access{ @@ -11289,23 +11236,31 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) -"zj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +"ze" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 6 }, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 }, -/obj/machinery/vending/engivend, -/obj/machinery/camera/directional/south{ - c_tag = "Engineering Foyer"; - network = list("uo45") +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ +/obj/item/stock_parts/scanning_module, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/white{ heat_capacity = 1e+006 }, -/area/awaymission/undergroundoutpost45/engineering) +/area/awaymission/undergroundoutpost45/research) "zq" = ( /turf/open/misc/asteroid{ heat_capacity = 1e+006; @@ -11353,6 +11308,22 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) +"zX" = ( +/obj/structure/closet/secure_closet{ + icon_state = "hydro"; + locked = 0; + name = "botanist's locker"; + req_access_txt = "201" + }, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/plant_analyzer, +/obj/item/clothing/mask/bandana/striped/botany, +/obj/item/hatchet, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/central) "Ae" = ( /obj/structure/chair, /obj/effect/decal/cleanable/dirt, @@ -11372,6 +11343,23 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) +"AN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/machinery/vending/engivend, +/obj/machinery/camera/directional/south{ + c_tag = "Engineering Foyer"; + network = list("uo45") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/engineering) "Bh" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -11473,6 +11461,15 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) +"Cy" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/gateway) "CH" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -11486,6 +11483,24 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/engineering) +"De" = ( +/obj/machinery/computer/monitor/secret{ + name = "primary power monitoring console" + }, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/iron{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/engineering) "Dm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -11517,6 +11532,24 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/engineering) +"DB" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/multitool, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/gateway) "DJ" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/turf_decal/stripes/asteroid/line{ @@ -11541,6 +11574,17 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/engineering) +"Ea" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 + }, +/turf/open/floor/plating{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/research) "Ed" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -11553,21 +11597,22 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) -"ES" = ( -/obj/structure/sink{ - pixel_y = 25 +"EP" = ( +/obj/structure/closet/secure_closet{ + icon_state = "hydro"; + locked = 0; + name = "botanist's locker"; + req_access_txt = "201" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/iron/white{ +/obj/item/clothing/suit/apron, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/clothing/mask/bandana/striped/botany, +/obj/item/cultivator, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark{ heat_capacity = 1e+006 }, -/area/space/nearstation) +/area/awaymission/undergroundoutpost45/central) "Fd" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/command/glass{ @@ -11581,21 +11626,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/engineering) -"Fn" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/machinery/door/poddoor/preopen{ - id = "UO45_Engineering"; - name = "engineering security door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/engineering) "Fx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 1 @@ -11653,6 +11683,17 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/engineering) +"Gq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/open/floor/plating{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/research) "GI" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -11788,19 +11829,6 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) -"Lu" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Unfiltered to Mix" - }, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/engineering) "Lz" = ( /turf/open/misc/asteroid{ heat_capacity = 1e+006; @@ -11815,18 +11843,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/gateway) -"LZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/crew_quarters) "Mk" = ( /obj/machinery/light/small/directional/south, /turf/open/misc/asteroid{ @@ -11886,6 +11902,21 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/central) +"No" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor/preopen{ + id = "UO45_Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/engineering) "NA" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -11905,31 +11936,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) -"ND" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/stock_parts/scanning_module, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/iron/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/research) "NK" = ( /obj/structure/bookcase/manuals/engineering, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -11947,6 +11953,21 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) +"NR" = ( +/obj/structure/sink{ + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/iron/white{ + heat_capacity = 1e+006 + }, +/area/space/nearstation) "NT" = ( /obj/machinery/light/small/directional/north, /turf/open/misc/asteroid{ @@ -11956,24 +11977,6 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/central) -"NU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/engineering) "Oh" = ( /obj/machinery/light/small/directional/north, /turf/open/misc/asteroid{ @@ -12030,52 +12033,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/engineering) -"OR" = ( -/obj/machinery/conveyor{ - id = "UO45_mining" - }, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/mining) -"PW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/turf/open/floor/iron/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/gateway) -"Qi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/engineering) "Qm" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -12125,35 +12082,18 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) -"Qy" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/structure/sign/warning/no_smoking{ +"QG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/sign/warning/secure_area{ pixel_x = -32 }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/effect/turf_decal/tile/purple{ + dir = 1 }, -/turf/open/floor/iron/dark{ +/turf/open/floor/iron{ heat_capacity = 1e+006 }, -/area/awaymission/undergroundoutpost45/gateway) -"QI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/research) +/area/awaymission/undergroundoutpost45/crew_quarters) "QX" = ( /obj/structure/table, /obj/item/storage/medkit/regular, @@ -12189,18 +12129,25 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/crew_quarters) -"RU" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small/directional/south, +"RF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, /obj/structure/sign/warning/secure_area{ - pixel_y = -32 + pixel_x = 32 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/white{ +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron{ heat_capacity = 1e+006 }, -/area/awaymission/undergroundoutpost45/research) +/area/awaymission/undergroundoutpost45/engineering) "RX" = ( /obj/machinery/computer/atmos_alert{ dir = 1 @@ -12243,17 +12190,6 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/engineering) -"Sl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = -32 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/research) "Su" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable, @@ -12261,6 +12197,19 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/gateway) +"SZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/open/floor/iron/white{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/gateway) "Tr" = ( /obj/structure/alien/resin/membrane, /turf/open/misc/asteroid{ @@ -12270,6 +12219,24 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) +"Tu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/iron{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/engineering) "TC" = ( /obj/structure/table, /obj/machinery/reagentgrinder, @@ -12308,6 +12275,19 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) +"VX" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Unfiltered to Mix" + }, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/engineering) "Wd" = ( /obj/structure/alien/resin/wall, /obj/structure/alien/weeds, @@ -12353,6 +12333,18 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) +"Xq" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/white{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/research) "XF" = ( /obj/structure/ore_box, /turf/open/misc/asteroid{ @@ -12404,6 +12396,16 @@ temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) +"Yk" = ( +/obj/structure/table, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/cafeteria{ + dir = 5; + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/research) "Yn" = ( /obj/machinery/vending/hydroseeds{ slogan_delay = 700 @@ -12413,22 +12415,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) -"YE" = ( -/obj/structure/closet/secure_closet{ - icon_state = "hydro"; - locked = 0; - name = "botanist's locker"; - req_access_txt = "201" - }, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/plant_analyzer, -/obj/item/clothing/mask/bandana/striped/botany, -/obj/item/hatchet, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/central) "YK" = ( /obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/tile/bar, @@ -12439,6 +12425,20 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) +"YM" = ( +/obj/machinery/conveyor{ + id = "UO45_mining" + }, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + heat_capacity = 1e+006 + }, +/area/awaymission/undergroundoutpost45/mining) "YV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -31892,7 +31892,7 @@ jh jG gw ky -Qy +DB ma mB gK @@ -32405,7 +32405,7 @@ iQ jj jI gv -gk +Cy lq jI mD @@ -33428,7 +33428,7 @@ gL gW hx ic -wG +yh iU jn gL @@ -33947,7 +33947,7 @@ iW jp jJ kf -PW +SZ lv md gU @@ -37540,7 +37540,7 @@ gx gX hB ig -ND +ze iY jr jM @@ -38063,7 +38063,7 @@ kP lH gy kd -nk +Yk nO ox pd @@ -38325,9 +38325,9 @@ nl nl pe gy -QI +Gq qR -Sl +Ea gz nu tN @@ -41914,7 +41914,7 @@ zq zq ad gy -ES +NR ha ml gx @@ -42173,7 +42173,7 @@ ad gx la ha -RU +Xq gy nu nX @@ -42944,7 +42944,7 @@ ng kn lc lP -LZ +QG mV nw nZ @@ -46823,7 +46823,7 @@ wO we vK xl -OR +YM xw xE xl @@ -48317,8 +48317,8 @@ an cS ce aC -YE -eJ +zX +EP TC NQ ZZ @@ -51436,7 +51436,7 @@ ln rk sb sO -NU +Tu ln uD sM @@ -51955,7 +51955,7 @@ uf qb sM vw -zj +AN wn uE wK @@ -52467,7 +52467,7 @@ sS tB rr qb -Qi +RF vy vW ni @@ -52974,7 +52974,7 @@ os oU pz qb -sy +De rp sh sU @@ -53495,7 +53495,7 @@ sW tE uk uH -Fn +No vC wa ni @@ -55291,7 +55291,7 @@ qN qN sp tc -Lu +VX ur ni ln diff --git a/_maps/map_files/Blueshift/BlueShift_middle.dmm b/_maps/map_files/Blueshift/BlueShift_middle.dmm index ca972a32a84..31cf38219dd 100644 --- a/_maps/map_files/Blueshift/BlueShift_middle.dmm +++ b/_maps/map_files/Blueshift/BlueShift_middle.dmm @@ -9564,12 +9564,12 @@ /area/station/maintenance/port/aft) "cIv" = ( /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/item/reagent_containers/pill/patch/aiuri, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -47412,9 +47412,6 @@ /obj/item/folder/red{ pixel_x = -7 }, -/obj/item/computer_hardware/hard_drive/role/detective, -/obj/item/computer_hardware/hard_drive/role/detective, -/obj/item/computer_hardware/hard_drive/role/detective, /obj/structure/noticeboard/hos{ dir = 4; pixel_x = -28 @@ -50241,9 +50238,9 @@ dir = 10 }, /obj/structure/table/wood, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /obj/item/coin/gold, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ pixel_x = -4; @@ -55127,8 +55124,6 @@ "tiE" = ( /obj/structure/table/wood, /obj/item/modular_computer/laptop/preset/civilian, -/obj/item/computer_hardware/hard_drive/role/lawyer, -/obj/item/computer_hardware/hard_drive/role/lawyer, /turf/open/floor/carpet/blue, /area/station/service/lawoffice) "tiG" = ( diff --git a/_maps/map_files/Blueshift/BlueShift_upper.dmm b/_maps/map_files/Blueshift/BlueShift_upper.dmm index a68f1abe175..58872c43694 100644 --- a/_maps/map_files/Blueshift/BlueShift_upper.dmm +++ b/_maps/map_files/Blueshift/BlueShift_upper.dmm @@ -4696,9 +4696,9 @@ /area/station/medical/chemistry) "beB" = ( /obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, /obj/machinery/light_switch/directional/north, /obj/machinery/light/directional/north, /turf/open/floor/iron/white, @@ -27916,9 +27916,9 @@ /area/station/maintenance/fore/upper) "jqu" = ( /obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /obj/effect/turf_decal/siding/purple{ dir = 4 }, diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index fb69ea55093..2c1b638c19e 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -35,6 +35,17 @@ /obj/structure/chair/stool/directional/east, /turf/open/floor/iron/dark, /area/station/service/theater) +"aaG" = ( +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 32 + }, +/obj/machinery/computer/mechpad{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/science/robotics/mechbay) "aaK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -131,6 +142,19 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/construction/mining/aux_base) +"aci" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/warning/yes_smoking/circle{ + pixel_y = -32 + }, +/obj/machinery/light/small/directional/south, +/obj/item/kirbyplants/dead{ + name = "Lungie" + }, +/turf/open/floor/iron/white, +/area/station/commons/fitness/recreation) "acp" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ @@ -926,6 +950,15 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/engine/o2, /area/station/engineering/atmos) +"akC" = ( +/obj/structure/sign/warning/no_smoking/circle{ + pixel_y = -32 + }, +/obj/machinery/camera/directional/south, +/turf/open/floor/iron/white/side{ + dir = 4 + }, +/area/station/commons/fitness/recreation) "akD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -1161,6 +1194,10 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"anB" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) "anF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2234,22 +2271,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) -"aBj" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix Outlet Pump" - }, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green/anticorner/contrasted{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos/mix) "aBp" = ( /obj/machinery/status_display/evac/directional/south, /obj/item/kirbyplants/random, @@ -2367,6 +2388,15 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/engineering/gravity_generator) +"aCD" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 32 + }, +/obj/structure/sign/poster/official/random/directional/south, +/turf/open/floor/wood, +/area/station/commons/vacant_room/office) "aCV" = ( /obj/structure/window/reinforced{ dir = 1 @@ -2538,14 +2568,6 @@ /obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/station/security/execution/transfer) -"aFI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/transfer) "aGa" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 9 @@ -2933,10 +2955,6 @@ }, /turf/open/floor/iron, /area/station/science/research) -"aLs" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/medical/chemistry) "aLv" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -3054,12 +3072,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/prison) -"aNk" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/transit_tube) "aNq" = ( /turf/open/floor/iron/grimy, /area/station/command/heads_quarters/hos) @@ -4344,6 +4356,10 @@ }, /turf/open/space/basic, /area/space) +"bhd" = ( +/obj/structure/sign/departments/maint, +/turf/closed/wall, +/area/station/medical/treatment_center) "bhh" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral, @@ -4829,16 +4845,6 @@ /obj/structure/sign/departments/science, /turf/closed/wall, /area/station/science/lab) -"bmZ" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 32 - }, -/turf/open/floor/iron{ - icon_state = "chapel" - }, -/area/station/service/chapel) "bni" = ( /obj/structure/table/wood, /obj/item/storage/fancy/candle_box{ @@ -4913,10 +4919,6 @@ }, /turf/open/space, /area/space/nearstation) -"bol" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/service/kitchen/abandoned) "boI" = ( /obj/machinery/computer/secure_data{ dir = 1 @@ -5083,6 +5085,12 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"bqI" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space) "bqP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5136,19 +5144,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron, /area/station/engineering/supermatter/room) -"bry" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/warning/yes_smoking/circle{ - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/obj/item/kirbyplants/dead{ - name = "Lungie" - }, -/turf/open/floor/iron/white, -/area/station/commons/fitness/recreation) "brJ" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/structure/cable, @@ -5282,6 +5277,20 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron, /area/station/cargo/storage) +"btk" = ( +/obj/structure/table, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/machinery/camera/directional/east{ + c_tag = "Science - Research Director's Office"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/iron, +/area/station/command/heads_quarters/rd) "bts" = ( /obj/machinery/light/small/directional/north, /obj/structure/cable, @@ -5424,6 +5433,15 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/maintenance/fore) +"bvs" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "bvw" = ( /obj/machinery/telecomms/processor/preset_one, /obj/effect/turf_decal/tile/purple, @@ -5630,13 +5648,6 @@ /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/medical/surgery/theatre) -"bxS" = ( -/obj/machinery/porta_turret/ai, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) "byf" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -5807,19 +5818,6 @@ "bAR" = ( /turf/closed/wall/r_wall, /area/station/engineering/break_room) -"bAS" = ( -/obj/structure/table/reinforced, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/item/circular_saw, -/obj/structure/sign/warning/no_smoking{ - pixel_y = -32 - }, -/obj/structure/mirror/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/lab) "bAV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5890,6 +5888,13 @@ dir = 8 }, /area/station/hallway/secondary/entry) +"bBR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) "bBS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ @@ -6020,6 +6025,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/science/lobby) +"bDX" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/engineering/lobby) "bEd" = ( /obj/structure/chair/wood{ dir = 4 @@ -6777,12 +6786,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/xenobiology) -"bMS" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock, -/turf/open/floor/plating, -/area/station/engineering/lobby) "bNf" = ( /obj/machinery/light/directional/east, /turf/open/floor/iron, @@ -7149,6 +7152,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/security/office) +"bRJ" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) "bRK" = ( /obj/machinery/teleport/hub, /obj/effect/turf_decal/stripes/line{ @@ -7528,17 +7538,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/aft) -"bWi" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) "bWn" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -8477,6 +8476,17 @@ /obj/structure/sign/poster/random/directional/east, /turf/open/floor/iron, /area/station/maintenance/port/fore) +"cky" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/turf/open/floor/iron, +/area/station/engineering/gravity_generator) "ckB" = ( /obj/structure/closet/secure_closet/hop, /obj/item/clothing/suit/ianshirt, @@ -8489,12 +8499,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/supermatter/room) -"ckJ" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/turf/open/space/basic, -/area/space) "ckN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -10154,6 +10158,21 @@ }, /turf/open/floor/iron/white, /area/station/science/lab) +"cHC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/item/clothing/head/cone{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/turf/open/floor/iron, +/area/station/maintenance/department/engine/atmos) "cHH" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -10604,10 +10623,6 @@ /obj/item/bedsheet/dorms, /turf/open/floor/wood, /area/station/commons/dorms) -"cOv" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/solars/starboard/fore) "cOD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10722,16 +10737,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) -"cQt" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/main) "cQv" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -10758,10 +10763,10 @@ }, /turf/open/floor/carpet, /area/station/command/bridge) -"cQz" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/science/research) +"cQA" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/medical/surgery/theatre) "cRn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -10942,6 +10947,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/lobby) +"cUy" = ( +/obj/structure/cable, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/iron/checker, +/area/station/maintenance/disposal/incinerator) "cUD" = ( /turf/closed/wall, /area/station/service/cafeteria) @@ -10992,13 +11011,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) -"cVD" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space) "cVU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -11040,10 +11052,6 @@ }, /turf/open/floor/iron, /area/station/security/office) -"cXp" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) "cXw" = ( /obj/structure/table/wood, /obj/item/lighter, @@ -11709,14 +11717,6 @@ "diL" = ( /turf/closed/wall/r_wall, /area/station/command/bridge) -"diM" = ( -/obj/machinery/plate_press, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/iron, -/area/station/security/prison) "djf" = ( /obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, @@ -11795,14 +11795,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"dkl" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) "dks" = ( /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/neutral{ @@ -11941,20 +11933,6 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/textured_large, /area/station/engineering/atmos/project) -"dlU" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) "dmd" = ( /obj/structure/curtain, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12341,6 +12319,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/breakroom) +"dtG" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) "dtS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer2, /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ @@ -12428,20 +12414,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/command/heads_quarters/cmo) -"dvt" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) "dvv" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/corner, @@ -12524,6 +12496,17 @@ dir = 8 }, /area/station/service/hydroponics) +"dwO" = ( +/obj/machinery/hydroponics/soil, +/obj/item/cultivator, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/security/prison) "dwX" = ( /obj/machinery/door/airlock/security/glass{ name = "Permabrig Cell 5" @@ -12573,13 +12556,6 @@ /mob/living/simple_animal/parrot/poly, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) -"dxz" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "dxT" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -12771,6 +12747,13 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"dBF" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/iron, +/area/station/maintenance/department/electrical) "dBK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -13011,10 +12994,6 @@ /obj/item/airlock_painter/decal, /turf/open/floor/iron, /area/station/cargo/warehouse) -"dFv" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/fore) "dFw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13157,34 +13136,6 @@ }, /turf/open/floor/iron/cafeteria, /area/station/service/cafeteria) -"dHC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault Door"; - req_access_txt = "53" - }, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "dHG" = ( /obj/machinery/portable_atmospherics/pump, /obj/effect/turf_decal/tile/blue{ @@ -13461,6 +13412,13 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron, /area/station/engineering/hallway) +"dMR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/station/engineering/atmos/mix) "dNe" = ( /obj/structure/table/reinforced, /obj/machinery/microwave, @@ -13819,13 +13777,6 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"dTE" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) "dTK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -14002,19 +13953,6 @@ }, /turf/open/floor/plating, /area/station/cargo/sorting) -"dWD" = ( -/obj/structure/cable, -/obj/structure/sign/warning/no_smoking/circle{ - pixel_x = 28; - pixel_y = -28 - }, -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/iron/dark, -/area/station/engineering/main) "dWF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/yellow{ @@ -14181,6 +14119,10 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"eal" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall, +/area/station/maintenance/port/greater) "ear" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/brown/half/contrasted, @@ -14236,23 +14178,6 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/station/cargo/warehouse) -"ebA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) "ecg" = ( /obj/structure/lattice, /obj/machinery/atmospherics/components/unary/passive_vent/layer2{ @@ -14369,10 +14294,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/command/gateway) -"eeO" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/science/server) "eeZ" = ( /obj/item/exodrone, /obj/machinery/exodrone_launcher, @@ -14455,16 +14376,6 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/project) -"egh" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 32 - }, -/obj/machinery/light_switch/directional/east{ - pixel_x = 21 - }, -/turf/open/floor/iron/grimy, -/area/station/service/chapel/office) "egk" = ( /obj/structure/table/wood/poker, /obj/item/storage/fancy/cigarettes/dromedaryco{ @@ -14806,16 +14717,6 @@ /obj/structure/closet/secure_closet/personal/patient, /turf/open/floor/iron, /area/station/medical/morgue) -"ekE" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 8 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) "ekN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -14862,6 +14763,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/command/corporate_showroom) +"elK" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/engineering/main) "elN" = ( /obj/machinery/status_display/evac/directional/north, /obj/effect/decal/cleanable/dirt, @@ -14966,6 +14871,17 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) +"eni" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/open/floor/iron, +/area/station/engineering/supermatter/room) "enk" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15491,6 +15407,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/science/research) +"eux" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 32 + }, +/turf/open/floor/iron{ + icon_state = "chapel" + }, +/area/station/service/chapel) "euz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16398,16 +16324,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/cafeteria, /area/station/service/cafeteria) -"eHI" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/transit_tube) "eHL" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -16671,10 +16587,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/grimy, /area/station/service/bar) -"eMc" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) "eMp" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -18150,16 +18062,6 @@ /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/white, /area/station/maintenance/department/science) -"ffE" = ( -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central/fore) "ffM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18484,17 +18386,6 @@ /obj/item/reagent_containers/food/drinks/bottle/holywater, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) -"fjM" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/engineering/gravity_generator) "fjQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -18994,13 +18885,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/science/research) -"fqI" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/turf/open/floor/iron/white, -/area/station/science/research) "fqN" = ( /obj/structure/table/optable, /obj/machinery/button/door/directional/east{ @@ -19494,6 +19378,10 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"fvZ" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) "fwi" = ( /obj/structure/dresser, /obj/effect/turf_decal/siding/wood, @@ -19764,6 +19652,20 @@ }, /turf/open/floor/iron, /area/station/engineering/lobby) +"fzR" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "fzT" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -19890,6 +19792,13 @@ }, /turf/open/floor/carpet, /area/station/commons/dorms) +"fBj" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/turf/open/floor/iron/white, +/area/station/science/research) "fBk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -20435,6 +20344,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/fore) +"fIy" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) "fIB" = ( /obj/machinery/light/small/directional/west, /turf/open/floor/engine/n2o, @@ -20858,6 +20771,17 @@ }, /turf/open/floor/iron, /area/station/security/checkpoint/supply) +"fPP" = ( +/obj/machinery/washing_machine, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/prison) "fPS" = ( /turf/open/floor/wood{ icon_state = "wood-broken3" @@ -20999,15 +20923,6 @@ dir = 1 }, /area/station/service/kitchen) -"fRR" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/iron, -/area/station/engineering/storage) "fRU" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/red/half/contrasted{ @@ -21447,6 +21362,14 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"fZl" = ( +/obj/machinery/plate_press, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/iron, +/area/station/security/prison) "fZx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21535,14 +21458,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"gbg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/reagent_dispensers/wall/peppertank/directional/west, -/turf/open/floor/iron, -/area/station/security/execution/transfer) "gbk" = ( /obj/structure/table, /obj/item/restraints/handcuffs, @@ -21587,6 +21502,18 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) +"gbZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast door" + }, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution/education) "gca" = ( /obj/structure/chair/office{ dir = 8 @@ -22174,14 +22101,6 @@ /obj/effect/turf_decal/tile/yellow/half/contrasted, /turf/open/floor/iron, /area/station/engineering/lobby) -"gkV" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) "gkW" = ( /obj/structure/table/wood, /obj/item/storage/briefcase, @@ -22406,14 +22325,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/maintenance/port/greater) -"gnr" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) "gnw" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -22684,6 +22595,10 @@ /obj/machinery/light/directional/south, /turf/open/floor/wood, /area/station/service/library) +"gqQ" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/hallway/secondary/command) "gqR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -23279,20 +23194,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/starboard/aft) -"gzw" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/spawner/random/structure/crate, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) "gzF" = ( /obj/structure/cable, /obj/structure/table/reinforced, @@ -24154,10 +24055,6 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, /area/station/security/checkpoint/engineering) -"gKa" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/engineering/main) "gKA" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -24266,6 +24163,10 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/station/cargo/storage) +"gLL" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/rd) "gLO" = ( /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -24385,6 +24286,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/engineering/main) +"gNS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/reagent_dispensers/wall/peppertank/directional/west, +/turf/open/floor/iron, +/area/station/security/execution/transfer) "gNV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -24656,6 +24565,24 @@ }, /turf/open/floor/iron, /area/construction/mining/aux_base) +"gRu" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/table/wood/fancy/blue, +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/effect/spawner/random/aimodule/neutral{ + pixel_y = -16 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) "gRy" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -25052,6 +24979,10 @@ /obj/item/hand_labeler, /turf/open/floor/carpet, /area/station/security/detectives_office) +"gZB" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/maintenance/port/greater) "gZG" = ( /obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/purple{ @@ -25653,10 +25584,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/engineering/atmos/mix) -"hhS" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) "hhV" = ( /obj/structure/plasticflaps/opaque, /obj/effect/turf_decal/delivery, @@ -26024,10 +25951,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/service/hydroponics/garden) -"hoR" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/science/research) "hph" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -26565,17 +26488,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/science/robotics/mechbay) -"hxJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/engine_safety{ - pixel_y = -32 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/lobby) "hyg" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -26681,16 +26593,6 @@ /obj/structure/cable, /turf/open/floor/iron/grimy, /area/station/tcommsat/computer) -"hzP" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow/half/contrasted, -/turf/open/floor/iron, -/area/station/engineering/main) "hzT" = ( /obj/machinery/shower{ dir = 8 @@ -26871,10 +26773,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/maintenance/department/engine/atmos) -"hDk" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/engineering/atmos/storage) "hDl" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -27006,6 +26904,20 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/service/abandoned_gambling_den/gaming) +"hEV" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/command/heads_quarters/cmo) "hEZ" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -27143,13 +27055,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/command) -"hGy" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) "hGF" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27310,17 +27215,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"hIY" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) "hIZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -27574,6 +27468,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/grimy, /area/station/security/detectives_office/private_investigators_office) +"hMI" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) "hMO" = ( /obj/effect/landmark/start/hangover, /obj/effect/decal/cleanable/dirt, @@ -27974,16 +27878,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/dark, /area/station/maintenance/department/engine/atmos) -"hRA" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = -30 - }, -/obj/machinery/camera/directional/south{ - c_tag = "Permabrig - Fitness"; - network = list("ss13","prison") - }, -/turf/open/floor/iron, -/area/station/security/prison) "hRS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28150,6 +28044,10 @@ /obj/effect/landmark/start/depsec/medical, /turf/open/floor/iron, /area/station/security/checkpoint/medical) +"hTH" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/medical/chemistry) "hUb" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/binary/pump{ @@ -28252,6 +28150,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"hUV" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/engineering/atmos/storage) "hUY" = ( /obj/machinery/chem_heater/withbuffer, /obj/effect/turf_decal/stripes/line{ @@ -28346,10 +28248,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics/lab) -"hWO" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/medical/surgery/theatre) "hWW" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 4 @@ -29008,10 +28906,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/medical/chemistry) -"ieG" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/main) "ieH" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -29700,6 +29594,10 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/lesser) +"ind" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/service/kitchen/abandoned) "ing" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -31333,15 +31231,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"iIi" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 32 - }, -/obj/structure/sign/poster/official/random/directional/south, -/turf/open/floor/wood, -/area/station/commons/vacant_room/office) "iIs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -31356,6 +31245,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) +"iIN" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/security/range) "iIX" = ( /obj/structure/chair/office/light{ dir = 1 @@ -31425,6 +31322,16 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/commons/storage/primary) +"iJL" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 8 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) "iJR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ @@ -31872,6 +31779,15 @@ }, /turf/open/floor/iron/dark, /area/station/security/detectives_office) +"iQj" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron, +/area/station/engineering/storage) "iQy" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/stripes/line{ @@ -31976,13 +31892,6 @@ /obj/machinery/status_display/ai/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"iSd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/station/engineering/atmos/mix) "iSf" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/tile/brown/half/contrasted{ @@ -32087,6 +31996,15 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, /area/station/commons/locker) +"iTM" = ( +/obj/structure/table/reinforced, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/gps/mining, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron, +/area/station/cargo/qm) "iTV" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/bot, @@ -33173,20 +33091,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"jhj" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) "jhl" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/components/binary/pump{ @@ -34013,6 +33917,10 @@ /obj/structure/bookcase/random/fiction, /turf/open/floor/wood, /area/station/service/library) +"jtV" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/maintenance/port/aft) "juo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/ore_box, @@ -34294,6 +34202,12 @@ }, /turf/open/space, /area/space/nearstation) +"jyi" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/closed/wall/r_wall, +/area/station/maintenance/disposal/incinerator) "jyo" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/stripes/line{ @@ -34366,6 +34280,17 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"jzm" = ( +/obj/machinery/hydroponics/soil, +/obj/item/cultivator, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/security/prison) "jzC" = ( /obj/structure/cable, /obj/machinery/light/directional/north, @@ -34599,17 +34524,6 @@ }, /turf/open/floor/iron, /area/station/security/holding_cell) -"jCf" = ( -/obj/machinery/light/directional/east, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 32 - }, -/obj/machinery/computer/mechpad{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/science/robotics/mechbay) "jCg" = ( /obj/effect/turf_decal/tile/green, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -34987,14 +34901,6 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/white, /area/station/science/research) -"jIl" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/binary/tank_compressor{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark, -/area/station/science/mixing/launch) "jIs" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -35017,6 +34923,14 @@ }, /turf/open/floor/iron/dark, /area/station/science/genetics) +"jIV" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) "jJc" = ( /turf/closed/wall, /area/station/security/checkpoint) @@ -35404,6 +35318,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/misc_lab/range) +"jNS" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/spawner/random/structure/crate, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/iron, +/area/station/maintenance/department/engine/atmos) "jOa" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/door/window/brigdoor{ @@ -36004,6 +35932,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/execution/transfer) +"jWx" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/starboard) "jWz" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -36306,21 +36244,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/engineering/hallway) -"jZG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/engine/atmos) "jZH" = ( /obj/effect/landmark/start/hangover, /obj/structure/railing{ @@ -36651,6 +36574,19 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"kes" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Aft Tanks"; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) "ket" = ( /obj/structure/table, /obj/item/stock_parts/cell/high, @@ -36857,10 +36793,6 @@ icon_state = "panelscorched" }, /area/station/engineering/supermatter/room) -"kgg" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/command/corporate_showroom) "kgi" = ( /obj/structure/table/reinforced, /obj/item/stack/cable_coil{ @@ -37135,6 +37067,15 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron, /area/station/security/checkpoint/medical) +"kjl" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/iron, +/area/station/engineering/storage) "kju" = ( /obj/effect/landmark/start/hangover, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -38101,10 +38042,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/station/commons/vacant_room/office) -"kxL" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) "kxV" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -38256,6 +38193,10 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/security/prison) +"kAD" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/engineering/storage/tech) "kAE" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -38293,10 +38234,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/command/gateway) -"kBk" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) "kBz" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -38728,17 +38665,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"kGN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/turf/open/floor/iron, -/area/station/engineering/atmos) "kGO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/cigarette, @@ -39340,6 +39266,10 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/wood, /area/station/commons/dorms) +"kPY" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/science/research) "kQf" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -39875,6 +39805,22 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/command) +"kXk" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/machinery/camera/directional/north{ + c_tag = "AI Chamber - Fore"; + name = "motion-sensitive ai camera"; + network = list("aichamber") + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/ai) "kXq" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 6 @@ -40257,15 +40203,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) -"lce" = ( -/obj/structure/sign/warning/no_smoking/circle{ - pixel_y = -32 - }, -/obj/machinery/camera/directional/south, -/turf/open/floor/iron/white/side{ - dir = 4 - }, -/area/station/commons/fitness/recreation) "lcf" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -41155,20 +41092,6 @@ }, /turf/open/floor/iron, /area/station/security/brig) -"lnw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 32 - }, -/obj/structure/tank_dispenser, -/obj/machinery/camera/directional/east{ - c_tag = "Engineering - Gear Storage"; - name = "engineering camera" - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/iron, -/area/station/engineering/storage) "lnx" = ( /obj/structure/bed, /obj/item/bedsheet, @@ -42220,6 +42143,10 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/greater) +"lDV" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/engineering/main) "lEg" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/light/directional/west, @@ -42773,16 +42700,6 @@ }, /turf/open/floor/iron/white, /area/station/science/research) -"lLf" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) "lLy" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -43033,10 +42950,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/service/chapel/office) -"lOD" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) "lOM" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue{ @@ -44103,6 +44016,16 @@ }, /turf/open/floor/iron, /area/station/medical/storage) +"mee" = ( +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central/fore) "mef" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/machinery/meter, @@ -44505,6 +44428,18 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/service/library) +"miV" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/maintenance/department/electrical) "mja" = ( /obj/machinery/teleport/station, /obj/machinery/status_display/evac/directional/east, @@ -44788,6 +44723,14 @@ }, /turf/open/floor/plating/airless, /area/station/maintenance/port/greater) +"mnM" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/engineering/atmos) "mnN" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -44831,6 +44774,17 @@ /obj/item/radio/intercom/chapel/directional/west, /turf/open/floor/iron/dark, /area/station/service/chapel) +"moo" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/prison) "mop" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/plasticflaps/opaque, @@ -45042,10 +44996,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/station/maintenance/port/greater) -"mqG" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/ce) "mqQ" = ( /obj/effect/turf_decal/siding/yellow{ dir = 8 @@ -45447,6 +45397,16 @@ "mwm" = ( /turf/open/floor/iron, /area/station/science/misc_lab/range) +"mwo" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/station/engineering/main) "mwG" = ( /obj/structure/cable, /obj/machinery/light/directional/north, @@ -45524,6 +45484,13 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/fore) +"mxE" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space) "mxP" = ( /obj/machinery/computer/crew{ dir = 1 @@ -45654,6 +45621,16 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/station/solars/starboard/aft) +"mAH" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 32 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 21 + }, +/turf/open/floor/iron/grimy, +/area/station/service/chapel/office) "mAJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -46977,6 +46954,20 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) +"mUp" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "mUG" = ( /obj/machinery/chem_master, /obj/effect/turf_decal/tile/yellow/fourcorners, @@ -49143,17 +49134,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"nBo" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/security/prison) "nBu" = ( /obj/machinery/doppler_array{ dir = 8 @@ -49489,10 +49469,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"nFP" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) "nFX" = ( /turf/closed/wall, /area/station/service/kitchen/coldroom) @@ -49865,18 +49841,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/station/maintenance/port/aft) -"nLa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "justicechamber"; - name = "Justice Chamber Blast door" - }, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/security/execution/education) "nLk" = ( /obj/structure/table, /obj/machinery/light/directional/east, @@ -51007,6 +50971,18 @@ /obj/item/flashlight/lamp, /turf/open/floor/iron/checker, /area/station/hallway/secondary/service) +"nXt" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Atmospherics - Fore Tanks"; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) "nXv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -51753,6 +51729,20 @@ "ogZ" = ( /turf/open/floor/iron, /area/station/service/hydroponics) +"ohh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 32 + }, +/obj/structure/tank_dispenser, +/obj/machinery/camera/directional/east{ + c_tag = "Engineering - Gear Storage"; + name = "engineering camera" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/engineering/storage) "ohj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ @@ -52070,10 +52060,6 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) -"omv" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/command) "omK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/start/medical_doctor, @@ -52158,6 +52144,14 @@ }, /turf/open/floor/iron, /area/station/maintenance/solars/port/fore) +"onR" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) "ooa" = ( /obj/machinery/modular_computer/console/preset/cargochat/engineering{ dir = 1 @@ -52421,6 +52415,18 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"otH" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/hangover, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "otQ" = ( /obj/machinery/portable_atmospherics/canister/bz, /obj/machinery/light/directional/south, @@ -52445,19 +52451,16 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) -"oue" = ( -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/bot, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/structure/rack, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) +"ouc" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = -30 + }, +/obj/machinery/camera/directional/south{ + c_tag = "Permabrig - Fitness"; + network = list("ss13","prison") + }, +/turf/open/floor/iron, +/area/station/security/prison) "ouo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -52874,6 +52877,16 @@ }, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) +"ozL" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/engineering/main) "ozQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/half/contrasted{ @@ -53115,6 +53128,10 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/service/library) +"oCG" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/aft) "oCJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ @@ -53194,10 +53211,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/cargo/warehouse) -"oDS" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) "oDY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, @@ -53366,20 +53379,6 @@ }, /turf/open/floor/iron, /area/station/medical/storage) -"oGW" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) "oGZ" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -53554,6 +53553,19 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"oIL" = ( +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/bot, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/structure/rack, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) "oIU" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -53692,6 +53704,16 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/station/service/theater) +"oLl" = ( +/obj/machinery/chem_master, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/iron, +/area/station/medical/pharmacy) "oLz" = ( /obj/structure/cable, /obj/structure/chair/office{ @@ -54188,13 +54210,6 @@ }, /turf/open/floor/iron, /area/station/engineering/main) -"oSj" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -30 - }, -/turf/open/floor/iron, -/area/station/security/prison) "oSk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark/corner{ @@ -54384,6 +54399,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/brig) +"oVo" = ( +/obj/structure/cable, +/obj/structure/sign/warning/no_smoking/circle{ + pixel_x = 28; + pixel_y = -28 + }, +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/dark, +/area/station/engineering/main) "oVy" = ( /obj/machinery/door/airlock/public/glass{ name = "Holodeck Access" @@ -54444,18 +54472,6 @@ /obj/effect/turf_decal/tile/green/fourcorners, /turf/open/floor/iron, /area/station/medical/virology) -"oVV" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/hangover, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) "oWe" = ( /obj/effect/spawner/random/vending/colavend, /obj/machinery/status_display/evac/directional/east, @@ -54665,12 +54681,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"oYL" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = -14 - }, -/turf/closed/wall/r_wall, -/area/station/engineering/atmos/storage/gas) "oYP" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box{ @@ -54699,6 +54709,20 @@ }, /turf/open/floor/wood, /area/station/service/theater) +"oZg" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) "oZi" = ( /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating{ @@ -54970,19 +54994,6 @@ /obj/effect/turf_decal/bot/left, /turf/open/floor/iron/dark/textured_large, /area/station/engineering/atmos/hfr_room) -"pdp" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/security/prison) "pdu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -55255,6 +55266,10 @@ }, /turf/open/floor/glass, /area/station/maintenance/space_hut/observatory) +"pgA" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/engineering/main) "pgB" = ( /obj/structure/rack, /obj/machinery/light/small/directional/south, @@ -55391,6 +55406,23 @@ /obj/effect/turf_decal/trimline/yellow/filled/warning, /turf/open/floor/iron, /area/station/engineering/atmos) +"pix" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) "piA" = ( /obj/machinery/vending/wardrobe/chap_wardrobe, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -55586,6 +55618,10 @@ }, /turf/open/floor/plating, /area/station/science/xenobiology) +"plc" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall/r_wall, +/area/station/science/lab) "plg" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -55880,18 +55916,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) -"pqa" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/maintenance/department/electrical) "pqq" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -55920,6 +55944,14 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/iron/textured_large, /area/station/engineering/atmos/project) +"pqD" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/binary/tank_compressor{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark, +/area/station/science/mixing/launch) "pqF" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/purple{ @@ -55930,6 +55962,17 @@ }, /turf/open/floor/iron/white, /area/station/command/heads_quarters/rd) +"pqK" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/security/prison) "pqP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, @@ -56572,15 +56615,6 @@ }, /turf/open/floor/iron, /area/station/service/kitchen/abandoned) -"pzT" = ( -/obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/gps/mining, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron, -/area/station/cargo/qm) "pAd" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -56824,6 +56858,16 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"pDi" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/security/prison) "pDz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -57088,14 +57132,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) -"pGM" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/turf/open/floor/iron/dark/telecomms, -/area/station/tcommsat/server) "pGN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57852,6 +57888,14 @@ }, /turf/open/floor/iron/white, /area/station/science/lobby) +"pQv" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -32 + }, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) "pQw" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -58493,22 +58537,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/aft) -"qab" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/machinery/camera/directional/north{ - c_tag = "AI Chamber - Fore"; - name = "motion-sensitive ai camera"; - network = list("aichamber") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) "qag" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -58717,10 +58745,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"qdN" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) "qdP" = ( /obj/item/kirbyplants/random, /obj/structure/extinguisher_cabinet/directional/east, @@ -59159,19 +59183,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/chemistry) -"qjZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Aft Tanks"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) "qkk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/brown/half/contrasted{ @@ -59509,16 +59520,6 @@ "qnY" = ( /turf/closed/wall, /area/station/science/lobby) -"qnZ" = ( -/obj/machinery/chem_master, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/iron, -/area/station/medical/pharmacy) "qof" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; @@ -60038,6 +60039,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/cafeteria, /area/station/security/prison) +"qvn" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/maintenance/port/fore) "qvv" = ( /obj/structure/table/wood, /obj/item/clothing/head/papersack/smiley, @@ -60127,6 +60132,14 @@ icon_state = "wood-broken4" }, /area/station/service/electronic_marketing_den) +"qwO" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/iron/dark/telecomms, +/area/station/tcommsat/server) "qwX" = ( /obj/machinery/medical_kiosk, /turf/open/floor/iron/white, @@ -60667,6 +60680,13 @@ /obj/machinery/vending/coffee, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"qFW" = ( +/obj/machinery/porta_turret/ai, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) "qGm" = ( /turf/open/floor/iron/dark, /area/station/service/theater) @@ -61308,6 +61328,13 @@ /obj/effect/spawner/random/entertainment/deck, /turf/open/floor/carpet/green, /area/station/commons/lounge) +"qPF" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) "qPX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -61615,17 +61642,6 @@ /obj/structure/sign/poster/contraband/random/directional/south, /turf/open/floor/plating, /area/station/service/abandoned_gambling_den) -"qVr" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/command) "qVH" = ( /obj/structure/bodycontainer/morgue{ dir = 2 @@ -62610,20 +62626,6 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/open/misc/grass, /area/station/hallway/primary/fore) -"rhR" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/machinery/camera/directional/east{ - c_tag = "Science - Research Director's Office"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/iron, -/area/station/command/heads_quarters/rd) "rhV" = ( /obj/structure/table/wood, /obj/machinery/light/small/directional/south, @@ -62781,6 +62783,10 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"rkb" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/command/corporate_showroom) "rkl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/blobstart, @@ -62867,13 +62873,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/greater) -"rls" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) "rlt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -63047,16 +63046,6 @@ }, /turf/open/floor/iron, /area/station/science/robotics/mechbay) -"rnR" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/starboard) "roo" = ( /mob/living/basic/cockroach, /turf/open/floor/plating, @@ -63486,12 +63475,6 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos/storage/gas) -"rwb" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/closed/wall/r_wall, -/area/station/maintenance/disposal/incinerator) "rwn" = ( /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, @@ -63869,6 +63852,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/locker) +"rBI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/security/execution/transfer) "rCx" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/tcomms_all, @@ -64818,6 +64809,12 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"rOa" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = -14 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/atmos/storage/gas) "rOc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/large, @@ -66090,6 +66087,17 @@ }, /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) +"ses" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/command) "seE" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 @@ -66739,6 +66747,10 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, /area/station/security/prison) +"smO" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/maintenance/solars/starboard/fore) "smR" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/engine/n2, @@ -66847,10 +66859,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) -"snZ" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/rd) "sog" = ( /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ dir = 8 @@ -67187,6 +67195,13 @@ }, /turf/open/floor/iron/dark/textured, /area/station/engineering/storage) +"stF" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) "stH" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /obj/machinery/meter, @@ -70776,14 +70791,6 @@ dir = 4 }, /area/station/commons/fitness/recreation) -"tom" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -32 - }, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) "toy" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -71149,6 +71156,10 @@ /obj/structure/chair/comfy/brown, /turf/open/floor/carpet, /area/station/command/meeting_room/council) +"tsl" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) "tsm" = ( /obj/item/storage/pod{ pixel_x = 32 @@ -71277,6 +71288,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/medical/break_room) +"ttE" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/ce) "ttH" = ( /obj/structure/closet/secure_closet/contraband/armory, /obj/machinery/light/directional/east, @@ -71462,6 +71477,19 @@ }, /turf/open/floor/iron/white/corner, /area/station/hallway/primary/aft) +"twg" = ( +/obj/structure/table/reinforced, +/obj/item/scalpel{ + pixel_y = 16 + }, +/obj/item/circular_saw, +/obj/structure/sign/warning/no_smoking{ + pixel_y = -32 + }, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron, +/area/station/science/robotics/lab) "twh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral/half/contrasted, @@ -71808,6 +71836,17 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron, /area/station/security/warden) +"tBi" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) "tBs" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/effect/turf_decal/siding/yellow{ @@ -72020,17 +72059,6 @@ /obj/effect/turf_decal/tile/brown/half/contrasted, /turf/open/floor/iron, /area/station/cargo/qm) -"tDZ" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/security/prison) "tEc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -72206,6 +72234,17 @@ /obj/structure/sign/poster/official/random/directional/west, /turf/open/floor/wood, /area/station/maintenance/port/fore) +"tFu" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/south{ + c_tag = "Security - Shooting Range" + }, +/turf/open/floor/plating, +/area/station/security/range) "tFE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72215,6 +72254,17 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"tFM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/warning/engine_safety{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/iron, +/area/station/engineering/lobby) "tFQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -72331,10 +72381,6 @@ }, /turf/open/floor/iron, /area/station/security/warden) -"tHv" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/engineering/lobby) "tHC" = ( /obj/structure/table/glass, /obj/item/paper_bin, @@ -72611,6 +72657,22 @@ /obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/station/engineering/supermatter/room) +"tLH" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix Outlet Pump" + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos/mix) "tLI" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line, @@ -72915,10 +72977,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/brig) -"tOV" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/medical/virology) "tOY" = ( /obj/structure/weightmachine/weightlifter, /obj/effect/decal/cleanable/dirt, @@ -73277,28 +73335,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/maintenance/port/fore) -"tSM" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/main) "tSV" = ( /obj/structure/chair/pew/right, /turf/open/floor/iron{ @@ -73492,6 +73528,28 @@ }, /turf/open/floor/iron, /area/station/security/prison) +"tVg" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/main) "tVl" = ( /obj/machinery/flasher/directional/north{ id = "visitorflash" @@ -74283,10 +74341,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron, /area/station/security/checkpoint/escape) -"ufH" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/port/greater) "ufO" = ( /obj/machinery/light/small/directional/east, /obj/structure/closet/firecloset, @@ -74359,6 +74413,16 @@ }, /turf/open/floor/iron/white, /area/station/medical/pharmacy) +"ugB" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/transit_tube) "ugF" = ( /obj/structure/table/reinforced, /obj/item/hfr_box/corner, @@ -75652,18 +75716,6 @@ /obj/effect/turf_decal/tile/neutral/anticorner/contrasted, /turf/open/floor/iron, /area/station/maintenance/port/greater) -"uAn" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Atmospherics - Fore Tanks"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) "uAo" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -76373,6 +76425,10 @@ /obj/effect/turf_decal/tile/green/anticorner/contrasted, /turf/open/floor/iron, /area/station/security/courtroom) +"uKR" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/medical/virology) "uKU" = ( /obj/machinery/door/airlock/public/glass{ name = "Library Game Room" @@ -76381,17 +76437,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/station/service/library) -"uKW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/station/engineering/supermatter/room) "uKX" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/light/directional/east, @@ -76883,6 +76928,14 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) +"uQx" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/iron, +/area/station/medical/virology) "uQD" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -77172,14 +77225,6 @@ "uTS" = ( /turf/open/floor/iron, /area/station/science/robotics/lab) -"uUe" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/station/engineering/atmos) "uUg" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -77275,6 +77320,17 @@ }, /turf/open/floor/iron, /area/station/commons/toilet/locker) +"uVq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/iron, +/area/station/engineering/atmos) "uVu" = ( /obj/machinery/light/directional/south, /obj/machinery/status_display/ai/directional/south, @@ -78085,6 +78141,12 @@ "veM" = ( /turf/closed/wall, /area/station/medical/treatment_center) +"veY" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/closed/wall/r_wall, +/area/station/engineering/transit_tube) "vfk" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -78830,15 +78892,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/engineering/atmos) -"vpr" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/iron, -/area/station/engineering/storage) "vpJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -79105,14 +79158,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"vtL" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/security/range) "vtQ" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted{ dir = 4 @@ -80122,19 +80167,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"vGd" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) "vGf" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -80175,10 +80207,6 @@ /obj/machinery/bluespace_vendor/directional/east, /turf/open/floor/iron, /area/station/hallway/primary/port) -"vGL" = ( -/obj/structure/sign/departments/maint, -/turf/closed/wall, -/area/station/medical/treatment_center) "vGP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/green{ @@ -80805,6 +80833,12 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) +"vPe" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electric_shock, +/turf/open/floor/plating, +/area/station/engineering/lobby) "vPl" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law, @@ -80894,13 +80928,6 @@ }, /turf/open/floor/iron, /area/station/science/research) -"vPX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) "vPZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -81115,6 +81142,10 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/construction) +"vTL" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/science/server) "vTO" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -82039,10 +82070,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/department/electrical) -"weN" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall/r_wall, -/area/station/science/lab) "weO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -82069,6 +82096,34 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/science/robotics/lab) +"weS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "weT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -82990,20 +83045,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/service/kitchen/coldroom) -"wrQ" = ( -/obj/structure/cable, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/iron/checker, -/area/station/maintenance/disposal/incinerator) "wrZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -83287,17 +83328,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/carpet, /area/station/service/chapel/office) -"wvw" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/security/prison) "wvx" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty, @@ -83363,17 +83393,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron, /area/station/commons/lounge) -"wwp" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/directional/south{ - c_tag = "Security - Shooting Range" - }, -/turf/open/floor/plating, -/area/station/security/range) "wwr" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/west, @@ -83896,15 +83915,6 @@ /obj/structure/closet/firecloset, /turf/open/floor/iron, /area/station/engineering/main) -"wCH" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/ai) "wCI" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, @@ -85197,10 +85207,6 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/iron/grimy, /area/station/service/abandoned_gambling_den) -"wXM" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/port/greater) "wXU" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -85810,6 +85816,19 @@ }, /turf/open/floor/iron/white, /area/station/security/prison) +"xfk" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/security/prison) "xfp" = ( /obj/machinery/gravity_generator/main/station, /obj/effect/turf_decal/bot_white, @@ -86417,14 +86436,6 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"xpi" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/l3closet/virology, -/turf/open/floor/iron, -/area/station/medical/virology) "xpj" = ( /obj/machinery/hydroponics/soil, /obj/effect/decal/cleanable/dirt, @@ -86471,6 +86482,13 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) +"xpx" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -30 + }, +/turf/open/floor/iron, +/area/station/security/prison) "xpE" = ( /obj/effect/turf_decal/trimline/yellow/filled/warning{ dir = 4 @@ -86526,6 +86544,19 @@ }, /turf/open/floor/iron, /area/station/maintenance/port/aft) +"xqv" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) "xqG" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -86612,6 +86643,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/engineering/main) +"xrB" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/maintenance/port/greater) "xrI" = ( /obj/structure/cable, /obj/machinery/computer/med_data, @@ -87320,16 +87355,6 @@ /obj/machinery/duct, /turf/open/floor/iron/freezer, /area/station/service/kitchen/coldroom) -"xAw" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) "xAB" = ( /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -88258,10 +88283,6 @@ "xLZ" = ( /turf/closed/wall/r_wall, /area/station/engineering/atmos/storage/gas) -"xMb" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/engineering/main) "xMe" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, @@ -88288,17 +88309,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) -"xMB" = ( -/obj/machinery/washing_machine, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) "xMI" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall, @@ -88446,6 +88456,10 @@ /obj/effect/turf_decal/tile/blue/half/contrasted, /turf/open/floor/iron, /area/station/security/courtroom) +"xOt" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hop) "xOu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -89041,24 +89055,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"xXr" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/table/wood/fancy/blue, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/effect/spawner/random/aimodule/neutral{ - pixel_y = -16 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) "xXw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -89269,6 +89265,10 @@ /obj/structure/closet/crate, /turf/open/space/basic, /area/space/nearstation) +"ybw" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/science/research) "ybD" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, @@ -95787,7 +95787,7 @@ bPC bPC bPC vXt -kxL +fvZ bPC bPC bRO @@ -96812,7 +96812,7 @@ btH btH btH bPC -oGW +oZg bTq wRy kkh @@ -98109,7 +98109,7 @@ sdK mMd hmU cfu -bxS +qFW cdt bkE nJt @@ -98342,7 +98342,7 @@ dMN tzv btH btH -qab +kXk siP bEl xMy @@ -98599,7 +98599,7 @@ kCf fEY btH btH -wCH +bvs wJU bCu yga @@ -99389,7 +99389,7 @@ bPC bPC bPC cdt -xXr +gRu mkX eCk bwF @@ -108376,7 +108376,7 @@ wGy vVc vVc vVc -cVD +mxE abj abj lbi @@ -108659,7 +108659,7 @@ kvX fBG vVc vVc -gkV +dtG qYo vVc geZ @@ -108880,7 +108880,7 @@ aaa aaa xNe aaa -ekE +iJL wGy wGy wGy @@ -108895,22 +108895,22 @@ kDq iyc kNA nuF -aNk +veY nUT aaa aaa qYo aaa -dxz +qPF eTe qYo ksq vVc vVc -vPX +bBR vVc vVc -vPX +bBR vVc vVc ksq @@ -109151,7 +109151,7 @@ dgk eqg uYy uck -eHI +ugB vmt nUT aaa @@ -109412,7 +109412,7 @@ vmt vmt hSa fgB -dkl +jIV fgB fgB azR @@ -110468,7 +110468,7 @@ xWI ddl chc iia -pqa +miV scp geZ uBl @@ -110719,7 +110719,7 @@ pwo cEx qET uNH -wXM +gZB jyo wFc dlK @@ -110958,7 +110958,7 @@ hWY heZ bpr bpr -hhS +anB ilG sUV sHT @@ -111150,7 +111150,7 @@ qYo qYo qYo hNg -vPX +bBR edx qvw dtS @@ -111158,7 +111158,7 @@ snK snK xMi dvA -rwb +jyi kXV pxN dlj @@ -111200,7 +111200,7 @@ vTc iky kTV oow -fjM +cky nAF fFu urq @@ -111230,7 +111230,7 @@ ugr nbZ tLC epC -qdN +xrB adE laK geZ @@ -111241,7 +111241,7 @@ lds abe lds aJi -wXM +gZB jdm oyQ geZ @@ -111472,7 +111472,7 @@ ntd bzY mtt vog -hhS +anB aVW mvM sHT @@ -111744,7 +111744,7 @@ sLe nzs tLC eYG -qdN +xrB nHT fJQ geZ @@ -111931,38 +111931,38 @@ fTC bFs gAL tRh -ebA +pix rMi eoY lZs -uAn +nXt rMi hmY lZs -gnr +onR oOh gvk rMi kCN -uUe +mnM mmN udG jxJ hka -qjZ +kes uaY tAt slG -vGd +xqv unO tAt avX tiC -iSd +dMR mtm guU nNz -aBj +tLH vQj bAR bAR @@ -112179,7 +112179,7 @@ qYo qYo qYo edx -wrQ +cUy dMD lcO sIp @@ -112492,7 +112492,7 @@ ylf ylf ylf eDp -oue +oIL gAw haB gAw @@ -112504,7 +112504,7 @@ gAw ljO okr bWa -uKW +eni bKp exA vYv @@ -112775,7 +112775,7 @@ xuO mSQ lcT laK -ufH +eal rqn bFM mLu @@ -112971,9 +112971,9 @@ vuh cRs wsy nqj -kGN +uVq fXF -hIY +tBi cEM cEM mGm @@ -113297,7 +113297,7 @@ gWn cKR pIx bep -ufH +eal sWM lnT bgj @@ -113773,14 +113773,14 @@ bAR ggB run dEL -mqG +ttE rex tnE rex -mqG +ttE gAw oZF -hhS +anB cCY cCY cCY @@ -114053,7 +114053,7 @@ rRD xqW azi lbR -hzP +mwo dqX nRy xsb @@ -114066,7 +114066,7 @@ rPr aiA cmj fqk -hGy +dBF rNc geZ jdm @@ -114261,7 +114261,7 @@ cwY wIf cwY wIf -hDk +hUV wIf cwY cwY @@ -114320,7 +114320,7 @@ noM geZ geZ geZ -ufH +eal rGt geZ geZ @@ -114540,7 +114540,7 @@ uCa gQk nEJ oGb -bMS +vPe oGb nvO blj @@ -114801,11 +114801,11 @@ aaa oGb lGF mxj -mqG +ttE xzQ hIf mPh -mqG +ttE kTn sBy vvH @@ -114815,11 +114815,11 @@ jkK fbn gTr rRD -ieG +pgA aYU eAy aYU -ieG +pgA rRD dOr dvK @@ -115057,7 +115057,7 @@ oGb qYo oGb lGF -hxJ +tFM iBR iBR lBn @@ -115316,11 +115316,11 @@ oGb lGF qOL iNJ -gKa +elK jyz xbD kgP -xMb +lDV bVI vvH oks @@ -115825,7 +115825,7 @@ aiS lEi mez oGb -bMS +vPe oGb uDb jmj @@ -116077,7 +116077,7 @@ dZT rNf xLZ xLZ -oYL +rOa xLZ ybb cZY @@ -116087,7 +116087,7 @@ eSk wif pEY vvp -xMb +lDV tUg gmP fQx @@ -116120,11 +116120,11 @@ cEx bfD mSQ uhb -eMc +fIy sfN sfN ewE -eMc +fIy mjw mSQ oUi @@ -116309,9 +116309,9 @@ umm nVf xhE boR -gzw +jNS lKw -jZG +cHC rem bVi sCx @@ -116357,19 +116357,19 @@ vvH hcQ dsj rRD -ieG +pgA hOa aGo auD -ieG +pgA fii -fRR +iQj bID xwu fAe ybJ etW -vpr +kjl mSQ pGN nSP @@ -117128,7 +117128,7 @@ mSQ kDs ndz mSQ -cQt +ozL sCd wLK pEb @@ -117394,7 +117394,7 @@ fii iqz kgi hps -lnw +ohh ptA tGm abO @@ -117601,7 +117601,7 @@ vOI etR xcU nmw -ckJ +bqI qYo dQS qYo @@ -117610,7 +117610,7 @@ aaa qYo cut vVc -dTE +bRJ aaa xLZ nNK @@ -117626,7 +117626,7 @@ rov bjl lNk nSJ -tHv +bDX qLJ wGA wGA @@ -117636,8 +117636,8 @@ gzF wGA pky tCS -tSM -dWD +tVg +oVo mSQ uLB wJB @@ -118098,9 +118098,9 @@ oYs oYs azA nmw -dFv +qvn pnY -dFv +qvn nmw nmw nmw @@ -118678,7 +118678,7 @@ jSP mSQ rFi geZ -lLf +hMI cEx oJY sGk @@ -118740,7 +118740,7 @@ qQM kzc jGs tbA -lOD +jtV kzc qQM qQM @@ -119185,7 +119185,7 @@ oyQ tLy mSQ mSQ -qdN +xrB lDx mSQ mSQ @@ -119415,7 +119415,7 @@ oYs vnD oYs aad -kBk +kAD wVU aJU aJU @@ -119470,7 +119470,7 @@ cGA lcK lcK lcK -oDS +tsl kCY ock oYA @@ -119486,7 +119486,7 @@ rqx stm aaa nrA -jIl +pqD hvz xmV hVb @@ -119766,14 +119766,14 @@ fjx qQM kff jhA -lOD +jtV hGm eEI lfE iYW dws cLv -lOD +jtV qYo xTK aaa @@ -120443,7 +120443,7 @@ oYs owb oYs aad -kBk +kAD wVU aJU aJU @@ -121829,7 +121829,7 @@ mSW tRf fwB vkS -lOD +jtV qYo xTK aaa @@ -122298,7 +122298,7 @@ nVv uhb gRg vPQ -fqI +fBj xWf fyB fEJ @@ -122844,7 +122844,7 @@ iul hND iul nnN -tom +pQv bGT iLu qQM @@ -123528,7 +123528,7 @@ oYm oYm oYm rnp -iIi +aCD oYs miv oYs @@ -124355,7 +124355,7 @@ sEb aaK iUl vGR -snZ +gLL pkx afs glt @@ -124873,7 +124873,7 @@ hwS eVK cMl mSv -rhR +btk ozq dAz lkh @@ -125139,7 +125139,7 @@ sIX sIX sIX sIX -eeO +vTL agN mpC mpC @@ -125346,7 +125346,7 @@ unU iaL pRS iaL -cXp +xOt iaL pRS pRS @@ -125935,11 +125935,11 @@ akH ojS uqg vrE -bmZ +eux oPQ oGK oiw -egh +mAH lMn eNz mYf @@ -126146,11 +126146,11 @@ lYL pQt shq gOr -cQz +ybw pmJ cAA lYG -hoR +kPY wgP cfx uxc @@ -126404,7 +126404,7 @@ rlD kUM fxL bmR -weN +plc fvi fvi fvi @@ -127410,7 +127410,7 @@ xkw aaa aaa vpK -dlU +fzR kxs mlE mlE @@ -127919,7 +127919,7 @@ xCa ilI dRh oZt -pGM +qwO xkw aaa aaa @@ -127934,7 +127934,7 @@ tbm aLM fVd sUh -kgg +rkb nXY svl gkw @@ -128182,7 +128182,7 @@ lNL lNL vpK nYl -qVr +ses vCP kxs xaP @@ -128211,7 +128211,7 @@ cnx dGx cnx dvG -jCf +aaG qZZ fOF hUq @@ -128226,7 +128226,7 @@ khb wfF dRt klA -bAS +twg kzc qQM kJl @@ -128694,7 +128694,7 @@ lkL lkL dnK gys -omv +gqQ oHJ cKm oEo @@ -129498,13 +129498,13 @@ sMX vMp vMp bCk -aLs +hTH vMp vMp bCk vMp vMp -aLs +hTH bCk vMp vMp @@ -129724,7 +129724,7 @@ lNL lNL vpK pyY -oVV +otH hqY mYe kXf @@ -129975,7 +129975,7 @@ jQw hup jPC quc -pGM +qwO xkw aaa aaa @@ -129990,7 +129990,7 @@ tbm ail fVd fYX -kgg +rkb vaB bmN hiV @@ -130008,7 +130008,7 @@ iVu iJl clo tBJ -qnZ +oLl etc mwG mwP @@ -130023,7 +130023,7 @@ eKe lHl mwH xmi -aLs +hTH dco bqA rTo @@ -130494,7 +130494,7 @@ xkw aaa aaa vpK -dvt +mUp jiC ksK ksK @@ -132197,7 +132197,7 @@ aad abi adR xrr -cOv +smO aFa coH xrr @@ -133316,7 +133316,7 @@ lSl rMu iST lSl -ffE +mee lSl lSl rMu @@ -134580,7 +134580,7 @@ aaa lhY lhY lhY -dHC +weS lhY lhY lhY @@ -134641,7 +134641,7 @@ kIm kIm mZT evM -jhj +hEV qjb lhI hjl @@ -135044,7 +135044,7 @@ inq azE ffk qYN -bol +ind riO qHQ lyC @@ -136105,7 +136105,7 @@ rje sEi buT jCx -pzT +iTM tDU rje jfO @@ -136173,7 +136173,7 @@ jXW wwi tCm sEQ -vGL +bhd wfm mik mGQ @@ -136459,7 +136459,7 @@ njM yaG vac txX -xpi +uQx tgT aad gqm @@ -136699,7 +136699,7 @@ aaM rDr bEB rDr -hWO +cQA aaM wdj wdj @@ -137748,7 +137748,7 @@ tgT tgT tgT tgT -tOV +uKR gqm qiZ gqm @@ -139201,7 +139201,7 @@ aad aad jrA tRt -gbg +gNS jbb xdh cUQ @@ -139210,7 +139210,7 @@ rxF xdh jbb aAx -aFI +rBI vyF mVO nHs @@ -139728,11 +139728,11 @@ jrA pkN lim lim -rnR +jWx lim lim lim -rnR +jWx bZN mJq cEg @@ -140059,7 +140059,7 @@ xPc bbL sOD xPc -tOV +uKR xPc vzy wvc @@ -140979,7 +140979,7 @@ gOo gOo wnb gOo -xAw +pDi gOo hIw vcm @@ -140993,7 +140993,7 @@ cja lku oCy bYQ -pdp +xfk hDK rbS hIZ @@ -142311,9 +142311,9 @@ fjB sEf vTZ hEF -vtL +iIN jeN -wwp +tFu fnR emo xXE @@ -142786,7 +142786,7 @@ vcf ltT tUB pcA -hRA +ouc qWZ khA meD @@ -142870,7 +142870,7 @@ rpX vNa lkx sEM -nFP +oCG vNa ahS cCc @@ -143283,7 +143283,7 @@ aaa uHd aaa hLe -nBo +jzm usB xpj qtD @@ -144071,7 +144071,7 @@ lTv fiO gHP bGi -oSj +xpx qWZ khA lku @@ -144114,7 +144114,7 @@ aaa aad aaa aaa -rls +stF aaa mfC baK @@ -144568,7 +144568,7 @@ qYo uHd aaa hLe -tDZ +dwO ozu sJw qtD @@ -145166,7 +145166,7 @@ bJH pxj vii vii -lce +akC uKw qYo xTK @@ -145343,7 +145343,7 @@ uHd qYo qYo hLe -wvw +pqK gpj itW uRT @@ -145423,7 +145423,7 @@ uKw mfC kuM ria -bry +aci uKw qYo qYo @@ -145857,11 +145857,11 @@ aaa aaa aaa hLe -xMB +fPP vaX oQD vxr -diM +fZl fiO rba pFS @@ -146130,7 +146130,7 @@ xAc mKL sXd sdV -bWi +moo qWZ qWZ qWZ @@ -146895,7 +146895,7 @@ bCC xFh lyd iNn -nLa +gbZ jxg iGx nkn diff --git a/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm b/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm index e48729a56b6..b20cdcbddcf 100644 --- a/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2_skyrat.dmm @@ -4812,9 +4812,9 @@ /area/station/hallway/secondary/entry) "aYa" = ( /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /obj/item/gps/mining, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -38160,9 +38160,9 @@ "hYe" = ( /obj/structure/table/glass, /obj/item/folder/blue, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -74912,15 +74912,15 @@ /turf/open/floor/carpet/green, /area/command/heads_quarters/captain/private/nt_rep) "sMb" = ( -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/bot, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, /obj/structure/rack, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) @@ -74949,9 +74949,9 @@ /area/ai_monitored/command/storage/eva) "sNs" = ( /obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /obj/machinery/camera/directional/east{ c_tag = "Science - Research Director's Office"; name = "science camera"; diff --git a/_maps/map_files/Deltastation/skyrat_old/DeltaStation2_skyrat_old.dmm b/_maps/map_files/Deltastation/skyrat_old/DeltaStation2_skyrat_old.dmm index 1b979097457..1ac8be34aac 100644 --- a/_maps/map_files/Deltastation/skyrat_old/DeltaStation2_skyrat_old.dmm +++ b/_maps/map_files/Deltastation/skyrat_old/DeltaStation2_skyrat_old.dmm @@ -5328,9 +5328,9 @@ /area/station/hallway/secondary/entry) "aYa" = ( /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /obj/item/gps/mining, /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron, @@ -41067,9 +41067,9 @@ "hYe" = ( /obj/structure/table/glass, /obj/item/folder/blue, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -79212,15 +79212,15 @@ /turf/open/floor/carpet/green, /area/command/heads_quarters/captain/private/nt_rep) "sMb" = ( -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/effect/turf_decal/tile/neutral/fourcorners, /obj/machinery/airalarm/directional/south, /obj/effect/turf_decal/bot, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, /obj/structure/rack, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) @@ -79252,9 +79252,9 @@ /area/ai_monitored/command/storage/eva) "sNs" = ( /obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /obj/machinery/camera/directional/east{ c_tag = "Science - Research Director's Office"; name = "science camera"; diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm index 0af1f084565..3878a84943a 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm @@ -3955,15 +3955,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /turf/closed/wall/r_wall, /area/station/engineering/supermatter) -"bnE" = ( -/obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/blue/full, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) "bnJ" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -7191,6 +7182,21 @@ "cpY" = ( /turf/closed/wall, /area/station/service/kitchen) +"cqh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/library, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/fore) "cqj" = ( /obj/machinery/iv_drip, /obj/effect/turf_decal/tile/blue{ @@ -9843,21 +9849,6 @@ /obj/effect/turf_decal/tile/red/full, /turf/open/floor/iron/dark/smooth_large, /area/station/security/checkpoint/medical) -"dhp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/fore) "dhq" = ( /turf/closed/mineral/random/labormineral/ice, /area/icemoon/surface/outdoors/labor_camp) @@ -12534,6 +12525,27 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/medical/morgue) +"dXR" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Quartermaster's Office" + }, +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/item/coin/silver, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/clipboard, +/turf/open/floor/iron, +/area/station/cargo/qm) "dYd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -15282,13 +15294,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors/nospawn) -"eVE" = ( -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/turf/open/floor/iron/cafeteria, -/area/station/command/heads_quarters/rd) "eVR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/decal/cleanable/dirt/dust, @@ -39985,6 +39990,18 @@ /obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"mUC" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/machinery/computer/security/telescreen/prison{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/station/service/lawoffice) "mUG" = ( /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, @@ -42469,6 +42486,15 @@ /obj/machinery/blackbox_recorder, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) +"nLd" = ( +/obj/structure/table/glass, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/cmo) "nLn" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -46625,19 +46651,6 @@ /obj/item/stack/sheet/iron/fifty, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) -"oWZ" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/computer_hardware/hard_drive/role/lawyer, -/obj/machinery/computer/security/telescreen/prison{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) "oXe" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -58550,27 +58563,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/hallway/primary/central) -"sUm" = ( -/obj/machinery/camera/directional/west{ - c_tag = "Quartermaster's Office" - }, -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/coin/silver, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/clipboard, -/turf/open/floor/iron, -/area/station/cargo/qm) "sUr" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -62211,6 +62203,13 @@ /obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, /turf/open/floor/plating, /area/station/maintenance/department/medical/central) +"udQ" = ( +/obj/structure/table, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/turf/open/floor/iron/cafeteria, +/area/station/command/heads_quarters/rd) "udR" = ( /obj/structure/cable, /obj/machinery/button/door/directional/west{ @@ -67879,6 +67878,17 @@ icon_state = "platingdmg1" }, /area/station/maintenance/department/medical/central) +"vTi" = ( +/obj/structure/table/reinforced, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/command/heads_quarters/ce) "vTj" = ( /obj/structure/cable, /obj/machinery/holopad/secure, @@ -73837,17 +73847,6 @@ /obj/machinery/mineral/processing_unit_console, /turf/open/floor/iron, /area/mine/production) -"xOO" = ( -/obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) "xPk" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/yellow, @@ -164274,7 +164273,7 @@ iDt ijY pfw wUj -oWZ +mUC jeJ aFg vwl @@ -227026,7 +227025,7 @@ eXn tKI ylT nNs -sUm +dXR fGb vAT opa @@ -236586,7 +236585,7 @@ bup ojv bAT wox -xOO +vTi bVt aTj uif @@ -247080,7 +247079,7 @@ vBG rkK oeM vBG -bnE +nLd wLY hXI vBG @@ -249369,7 +249368,7 @@ fMM dUL gMZ iOc -dhp +cqh tsh gEq aDo @@ -251722,7 +251721,7 @@ jbU xKO cRK uMK -eVE +udQ uMK wZI jbU diff --git a/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm b/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm index 4fd1d610979..c2d8c69334f 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation_skyrat.dmm @@ -4014,9 +4014,9 @@ /area/station/engineering/supermatter) "bnE" = ( /obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, /obj/machinery/status_display/evac/directional/north, /obj/effect/turf_decal/tile/blue/full, /turf/open/floor/iron/dark, @@ -15372,9 +15372,9 @@ /area/icemoon/surface/outdoors/nospawn) "eVE" = ( /obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /turf/open/floor/iron/cafeteria, /area/station/command/heads_quarters/rd) "eVR" = ( @@ -46553,7 +46553,6 @@ "oWZ" = ( /obj/structure/table/wood, /obj/item/taperecorder, -/obj/item/computer_hardware/hard_drive/role/lawyer, /obj/machinery/computer/security/telescreen/prison{ pixel_y = 32 }, @@ -58496,9 +58495,9 @@ }, /obj/structure/table, /obj/item/coin/silver, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /obj/item/clipboard, /turf/open/floor/iron, /area/station/cargo/qm) @@ -73717,10 +73716,10 @@ /area/mine/production) "xOO" = ( /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/structure/disposalpipe/segment{ dir = 4 }, diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 1641267bfdb..48ecb6f19fc 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -10,10 +10,6 @@ /obj/structure/cable, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"aag" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/turret_protected/aisat/foyer) "aak" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -127,6 +123,14 @@ /obj/machinery/meter, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"abB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/security/warden) "abC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/circuit/green{ @@ -622,6 +626,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/hallway/primary/aft) +"aiB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "engi-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "aiI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -705,14 +723,6 @@ "aka" = ( /turf/closed/wall/r_wall, /area/ai_monitored/security/armory) -"akd" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) "ake" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -981,17 +991,6 @@ "amX" = ( /turf/closed/wall/r_wall/rust, /area/ai_monitored/security/armory) -"amY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) "anr" = ( /obj/machinery/power/tracker, /obj/effect/turf_decal/box, @@ -1075,10 +1074,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"anV" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/bridge) "anZ" = ( /obj/docking_port/stationary/random{ id = "pod_3_lavaland"; @@ -1279,6 +1274,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) +"aqt" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "aqv" = ( /obj/structure/transit_tube/junction, /obj/structure/lattice/catwalk, @@ -1306,6 +1314,15 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/security/prison) +"aqP" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/turf/open/floor/engine, +/area/station/science/xenobiology) "aqQ" = ( /obj/effect/turf_decal/sand/plating, /obj/item/stack/sheet/glass, @@ -1334,20 +1351,6 @@ /obj/item/tank/internals/emergency_oxygen/empty, /turf/open/misc/asteroid/lowpressure, /area/space/nearstation) -"arA" = ( -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/spider/stickyweb, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/electrical) "asj" = ( /turf/closed/wall/rust, /area/station/maintenance/department/electrical) @@ -1384,6 +1387,19 @@ "asZ" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) +"ata" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) "ate" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -1402,15 +1418,6 @@ /obj/item/hand_tele, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"atm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) "atr" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -1503,17 +1510,6 @@ /obj/item/stack/license_plates/empty/fifty, /turf/open/floor/plating, /area/station/security/prison) -"avZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) "awb" = ( /obj/structure/lattice/catwalk, /obj/structure/transit_tube/horizontal{ @@ -1539,18 +1535,21 @@ /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron/dark, /area/station/security/processing) -"awj" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) "awn" = ( /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/station/solars/port/aft) +"awt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) "awG" = ( /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ dir = 4 @@ -1704,15 +1703,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/station/maintenance/department/crew_quarters/bar) -"ayO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/security/warden) "ayY" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -1795,20 +1785,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/mixing) -"azB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Telecomms Storage" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tcomms) "azK" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -1822,15 +1798,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/mixing) -"azV" = ( -/obj/machinery/door/airlock/external{ - name = "Security Escape Pod"; - space_dir = 2 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) "aAa" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -1890,6 +1857,23 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"aAR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 30 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "aAU" = ( /obj/structure/grille, /obj/effect/decal/cleanable/dirt, @@ -2041,16 +2025,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/showroomfloor, /area/ai_monitored/security/armory) -"aCB" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30; - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/storage/satellite) "aCK" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2059,30 +2033,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/solars/starboard/fore) -"aCP" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) -"aDj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/machinery/door/airlock/security{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/prison) "aDo" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/bot, @@ -2340,32 +2290,23 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/qm) +"aEO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/office) "aEU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) -"aEW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Desk" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/lobby) "aEX" = ( /obj/item/storage/box/rubbershot{ pixel_x = -3; @@ -2407,16 +2348,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/tcommsat/computer) -"aFP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) "aGd" = ( /obj/structure/table, /obj/machinery/camera/directional/west{ @@ -2442,6 +2373,16 @@ /obj/machinery/meter, /turf/closed/wall/r_wall/rust, /area/station/engineering/atmos) +"aGu" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "aGC" = ( /obj/structure/railing{ dir = 8 @@ -2559,6 +2500,10 @@ /obj/item/gun/energy/e_gun/mini, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/cmo) +"aHW" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/tcommsat/computer) "aIb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate, @@ -2575,6 +2520,10 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/station/hallway/primary/aft) +"aIq" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/tcommsat/computer) "aIw" = ( /obj/effect/landmark/secequipment, /obj/effect/turf_decal/bot, @@ -2604,19 +2553,6 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/storage) -"aIP" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "transit intersection" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/fore) "aJh" = ( /obj/machinery/conveyor{ dir = 4; @@ -2709,20 +2645,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat_interior) -"aLh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron/dark, -/area/station/engineering/main) "aLi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -2790,10 +2712,19 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/service/hydroponics) -"aMj" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/hallway/primary/central/fore) +"aMp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "cargo maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "cargo-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "aMy" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -2947,6 +2878,17 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/station/command/gateway) +"aOI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, +/turf/open/floor/iron/dark, +/area/station/science/storage) "aOR" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/decal/cleanable/dirt, @@ -3003,15 +2945,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/station/security/brig) -"aPM" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/station/maintenance/port/fore) "aPR" = ( /obj/structure/table/wood, /obj/effect/landmark/event_spawn, @@ -3107,6 +3040,10 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter) +"aSa" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/foyer) "aSc" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -3335,6 +3272,16 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"aVs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) "aVx" = ( /obj/effect/spawner/random/structure/tank_holder, /turf/open/floor/plating, @@ -3419,15 +3366,6 @@ }, /turf/open/floor/iron, /area/station/security/checkpoint/customs) -"aYj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) "aYl" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -3626,17 +3564,15 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/science/mixing) -"bbt" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 +"bbl" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" }, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/open/floor/iron/dark, /area/station/maintenance/fore) "bbO" = ( @@ -3692,19 +3628,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/showroomfloor, /area/station/medical/chemistry) -"bdj" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/item/folder, -/obj/item/stamp/ce, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) "bdk" = ( /obj/machinery/modular_computer/console/preset/curator{ dir = 8 @@ -3718,6 +3641,27 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/iron/dark, /area/station/service/library) +"bdo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/command/bridge) +"bdF" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/crew_quarters/bar) "bdH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -3771,6 +3715,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"bdY" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ + name = "Burn Chamber Exterior Airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/engine, +/area/station/science/mixing/chamber) "bef" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -3861,6 +3813,17 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) +"bhk" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "command maintenance" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) "bhm" = ( /obj/machinery/computer/monitor{ dir = 1; @@ -3873,6 +3836,15 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/department/electrical) +"bhr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post" + }, +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science/research) "bhR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ @@ -3892,17 +3864,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) -"bix" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Security Post" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) "biI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -3979,6 +3940,16 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"bjJ" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating/airless, +/area/station/maintenance/disposal/incinerator) "bjN" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -4000,21 +3971,6 @@ /obj/structure/flora/rock, /turf/open/misc/asteroid, /area/space/nearstation) -"bjX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - name = "Custodial Closet" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron/dark, -/area/station/service/janitor) "bkn" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -4073,10 +4029,6 @@ /obj/machinery/status_display/ai/directional/north, /turf/open/floor/iron, /area/station/commons/locker) -"bkU" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/maintenance/starboard/aft) "bla" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -4109,20 +4061,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/starboard/aft) -"blm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-mailroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) "bls" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -4241,22 +4179,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/iron, /area/station/service/chapel/storage) -"bnR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance" - }, -/obj/structure/sign/directions/evac{ - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) "bnY" = ( /obj/structure/sign/departments/security, /turf/closed/wall, @@ -4274,6 +4196,10 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/command/heads_quarters/hop) +"bot" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall, +/area/station/maintenance/starboard/fore) "boE" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -4471,6 +4397,12 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"brh" = ( +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/turf/open/misc/asteroid/lowpressure, +/area/space/nearstation) "brz" = ( /obj/effect/turf_decal/box/corners{ dir = 8 @@ -4779,6 +4711,21 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/station/security/office) +"bvl" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) "bvm" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -4897,6 +4844,14 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/station/security/prison) +"bwW" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/medical/central) "bxx" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -5130,6 +5085,17 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/station/cargo/drone_bay) +"bAX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "bBe" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -5142,6 +5108,18 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/medical/storage) +"bBr" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) "bBv" = ( /obj/structure/frame/computer{ anchored = 1; @@ -5154,17 +5132,6 @@ icon_state = "wood-broken6" }, /area/station/cargo/warehouse) -"bBw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) "bBC" = ( /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -5216,17 +5183,6 @@ /obj/structure/sign/warning/docking, /turf/closed/wall, /area/station/cargo/storage) -"bCB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/lockers) "bCO" = ( /obj/item/paper_bin{ pixel_x = -4; @@ -5272,21 +5228,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/greater) -"bDc" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "bDj" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -5303,6 +5244,31 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/port/lesser) +"bDr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/duct, +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/turf/open/floor/iron/dark, +/area/station/service/kitchen) "bDu" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, @@ -5420,36 +5386,6 @@ }, /turf/open/floor/plating/rust, /area/station/maintenance/department/crew_quarters/bar) -"bEr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) -"bFh" = ( -/obj/machinery/door/airlock/grunge{ - name = "Crematorium" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, -/turf/open/floor/iron/dark, -/area/station/service/chapel/funeral) -"bFk" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) "bFq" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -5525,6 +5461,10 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) +"bGY" = ( +/obj/structure/sign/warning/engine_safety, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter/room) "bHj" = ( /obj/structure/table, /obj/item/paper_bin/construction{ @@ -5643,18 +5583,19 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"bIs" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" +"bJi" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Airlock" }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, /turf/open/floor/iron/dark, -/area/station/maintenance/aft) +/area/station/engineering/supermatter/room) "bJm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -5669,6 +5610,17 @@ name = "Holodeck Projector Floor" }, /area/holodeck/rec_center) +"bJM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) "bJR" = ( /obj/structure/chair/comfy/brown{ color = "#596479"; @@ -5748,15 +5700,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/robotics/lab) -"bLj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Teleporter Access" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) "bLH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/decoration/glowstick, @@ -5787,16 +5730,6 @@ icon_state = "wood-broken6" }, /area/station/maintenance/port/fore) -"bMt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleporter Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) "bMw" = ( /obj/effect/decal/cleanable/dirt, /obj/item/toy/beach_ball/holoball, @@ -5973,10 +5906,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/command/heads_quarters/rd) -"bQx" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) "bQD" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -6082,6 +6011,16 @@ }, /turf/open/floor/iron/dark, /area/station/service/bar/atrium) +"bSg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/pumproom) "bSi" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -6127,18 +6066,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"bSO" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) "bSX" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/tile/neutral{ @@ -6184,6 +6111,26 @@ /obj/structure/flora/grass/jungle, /turf/open/misc/asteroid/airless, /area/space/nearstation) +"bTZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/open/floor/iron, +/area/station/engineering/lobby) "bUd" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -6298,6 +6245,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, /area/space/nearstation) +"bUJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Evidence" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/detective, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/open/floor/iron/dark, +/area/station/security/brig) "bUN" = ( /turf/open/floor/plating/airless, /area/space) @@ -6353,18 +6310,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/hallway/primary/central) -"bWj" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) "bWo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/line, @@ -6378,6 +6323,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, /area/station/engineering/supermatter/room) +"bWI" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) "bWZ" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /obj/structure/disposalpipe/segment{ @@ -6417,15 +6370,21 @@ "bXz" = ( /turf/closed/wall, /area/station/service/kitchen/coldroom) -"bXX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - id_tag = "commissarydoor"; - name = "Vacant Commissary" +"bXS" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, /turf/open/floor/iron/dark, -/area/station/commons/vacant_room/commissary) +/area/station/maintenance/port/lesser) "bYe" = ( /obj/machinery/door/poddoor{ id = "Arrival Shuttle Bay"; @@ -6434,15 +6393,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plating/airless, /area/station/hallway/secondary/entry) -"bYK" = ( -/obj/machinery/door/airlock/maintenance{ - name = "mining dock maintenance" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) "bYU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -6498,20 +6448,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/station/science/mixing) -"bZB" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) "bZE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -6779,18 +6715,6 @@ }, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/chapel/monastery) -"cdk" = ( -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/electrical) "cdl" = ( /obj/structure/transit_tube/curved/flipped, /obj/structure/lattice, @@ -7191,22 +7115,6 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/foyer) -"ciq" = ( -/obj/effect/turf_decal/siding/wood/end{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, -/turf/open/floor/carpet/royalblue, -/area/station/service/chapel/monastery) "cit" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, @@ -7471,16 +7379,24 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/starboard) +"ckB" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/circuit/red, +/area/station/engineering/supermatter/room) +"ckJ" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/maintenance/port/lesser) "ckQ" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/bot, /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"clc" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/engineering/supermatter/room) "cld" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -7511,6 +7427,20 @@ }, /turf/open/floor/plating/airless, /area/space) +"clm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) "clt" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -7525,6 +7455,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) +"cly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/port_gen/pacman, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/spider/stickyweb, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) "clz" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /obj/effect/turf_decal/stripes/line{ @@ -7613,6 +7554,13 @@ icon_state = "platingdmg1" }, /area/station/hallway/secondary/entry) +"cmc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "cml" = ( /turf/closed/wall/rust, /area/station/service/library) @@ -7627,10 +7575,6 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/airless, /area/space/nearstation) -"cmY" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/command/heads_quarters/hos) "cne" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only{ @@ -7676,18 +7620,6 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating, /area/space/nearstation) -"cnT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) "cog" = ( /obj/structure/flora/grass/jungle/b, /obj/effect/turf_decal/sand/plating, @@ -7840,19 +7772,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/lab) -"cqw" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "cqA" = ( /obj/machinery/atmospherics/components/tank/plasma{ dir = 4 @@ -7885,17 +7804,6 @@ }, /turf/open/floor/iron, /area/station/command/bridge) -"cqW" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "cre" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -8026,6 +7934,10 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/lesser) +"csW" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/maintenance/aft) "ctf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8057,29 +7969,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/medical/virology) -"cto" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Bow Solar Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/solars/port/fore) -"ctp" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "Chemistry Lobby Shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, -/turf/open/floor/iron/dark, -/area/station/medical/pharmacy) "ctt" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -8136,25 +8025,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"cub" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-right" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) "cud" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -8192,6 +8062,17 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron/grimy, /area/station/security/prison) +"cuU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/medical{ + name = "Operating Theater A" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/turf/open/floor/iron/dark, +/area/station/medical/surgery/fore) "cuV" = ( /turf/closed/wall, /area/station/maintenance/starboard/aft) @@ -8264,6 +8145,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"cvM" = ( +/obj/structure/sign/warning/secure_area{ + name = "EMERGENCY STORAGE" + }, +/turf/closed/wall, +/area/station/hallway/secondary/entry) "cvR" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -8407,37 +8294,14 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/greater) -"cyS" = ( +"czj" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/command/eva, /turf/open/floor/iron/dark, -/area/station/cargo/office) -"cyV" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/external{ - name = "transit intersection" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) +/area/ai_monitored/command/storage/eva) "czv" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -8457,20 +8321,6 @@ }, /turf/open/floor/plating, /area/station/command/bridge) -"czU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) "czX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8479,6 +8329,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"cAq" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/rust, +/area/station/maintenance/starboard/aft) "cAu" = ( /obj/effect/landmark/start/botanist, /turf/open/floor/iron, @@ -8493,18 +8347,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"cAP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine" - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) "cAY" = ( /obj/docking_port/stationary{ dheight = 1; @@ -8571,15 +8413,30 @@ }, /turf/open/floor/iron, /area/station/command/bridge) -"cBZ" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/port/fore) "cCe" = ( /obj/structure/sign/warning/fire, /obj/structure/grille, /turf/closed/wall/r_wall, /area/station/engineering/atmos) +"cCp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-right" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark, +/area/station/security/brig) "cCJ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -8709,6 +8566,19 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/medical/storage) +"cFq" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "engi-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "cFO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -8920,20 +8790,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/showroomfloor, /area/station/security/office) -"cIs" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating/airless, -/area/station/maintenance/disposal/incinerator) -"cIv" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall/rust, -/area/station/maintenance/port/greater) "cIC" = ( /obj/structure/cable, /obj/machinery/duct, @@ -9108,34 +8964,6 @@ /obj/structure/grille/broken, /turf/open/floor/plating/airless, /area/space/nearstation) -"cJD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) -"cJE" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab"; - req_access_txt = "8" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/mixing) "cJR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external{ @@ -9143,14 +8971,6 @@ }, /turf/open/floor/plating, /area/construction/mining/aux_base) -"cKd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) "cKs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -9163,17 +8983,6 @@ "cKz" = ( /turf/closed/wall/rust, /area/station/engineering/gravity_generator) -"cKL" = ( -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ - name = "Burn Chamber Interior Airlock" - }, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ - pixel_x = -32 - }, -/turf/open/floor/engine, -/area/station/science/mixing/chamber) "cKR" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -9319,25 +9128,6 @@ /obj/machinery/power/shieldwallgen, /turf/open/floor/iron/dark, /area/station/command/teleporter) -"cMw" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance/external{ - name = "transit intersection" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "cMT" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -9449,6 +9239,17 @@ /obj/structure/reagent_dispensers/servingdish, /turf/open/floor/iron/white, /area/station/security/prison) +"cPo" = ( +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab" + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, +/turf/open/floor/iron/dark, +/area/station/science/storage) "cPp" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -9493,6 +9294,16 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter) +"cPZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Security Customs Checkpoint" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/customs) "cQb" = ( /obj/machinery/recharge_station, /obj/effect/turf_decal/trimline/yellow, @@ -9710,6 +9521,17 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) +"cTI" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "medbay_front_door"; + name = "Medbay" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) "cTN" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -9754,15 +9576,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/station/medical/psychology) -"cUp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) "cUw" = ( /obj/effect/spawner/random/trash/cigbutt, /turf/open/floor/plating, @@ -9788,6 +9601,18 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"cUD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "cUM" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -9810,10 +9635,20 @@ /turf/open/floor/wood, /area/station/maintenance/port/fore) "cUY" = ( -/obj/structure/sign/warning/secure_area, -/obj/item/multitool, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "kilo-maint-1" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "cVb" = ( /obj/machinery/atmospherics/pipe/smart/simple/green/visible{ dir = 4 @@ -10032,17 +9867,6 @@ "cXh" = ( /turf/closed/wall, /area/station/security/brig) -"cXt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "E.V.A. Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) "cXy" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -10150,6 +9974,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/engineering/hallway) +"cYA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science/research) "cYN" = ( /obj/structure/chair{ dir = 8 @@ -10187,6 +10022,20 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/fore) +"cZh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "cZp" = ( /obj/structure/window/reinforced/spawner/east, /obj/effect/turf_decal/tile/purple/anticorner/contrasted, @@ -10194,6 +10043,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/station/science/mixing) +"cZx" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Ordnance Lab"; + req_access_txt = "8" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/iron/dark/airless, +/area/station/science/mixing) "cZT" = ( /obj/effect/turf_decal/bot, /obj/structure/bed/roller, @@ -10209,6 +10069,22 @@ /obj/structure/cable, /turf/open/floor/wood, /area/station/security/detectives_office) +"daG" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "mass driver intersection" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "daH" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -10263,6 +10139,10 @@ "dbu" = ( /turf/closed/wall/rust, /area/station/maintenance/department/security) +"dbD" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/hallway/primary/central/fore) "dbK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -10412,6 +10292,22 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/central) +"dez" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) "deG" = ( /obj/structure/table, /obj/item/storage/toolbox/electrical{ @@ -10445,6 +10341,20 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"dfi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "dfk" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -10453,6 +10363,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) +"dfm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/fore) "dfv" = ( /obj/machinery/rnd/production/circuit_imprinter/department/science, /obj/effect/turf_decal/bot, @@ -10482,6 +10407,12 @@ }, /turf/open/floor/plating, /area/station/security/prison) +"dfS" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "dfU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -10665,14 +10596,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/vacant_room/commissary) -"diF" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/gateway, -/turf/open/floor/iron/dark, -/area/station/command/gateway) "diG" = ( /obj/structure/cable, /obj/structure/chair/sofa/right{ @@ -10769,18 +10692,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/security/courtroom) -"djF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) "djQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10949,6 +10860,13 @@ /obj/machinery/light/floor, /turf/open/floor/engine/vacuum, /area/station/engineering/atmos) +"dmf" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Cargo Requests" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, +/turf/open/floor/iron/dark, +/area/station/engineering/main) "dmp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -11233,17 +11151,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) -"dpA" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/grimy, -/area/station/security/prison/safe) "dpM" = ( /obj/machinery/computer/security/telescreen/ordnance{ dir = 8; @@ -11296,6 +11203,18 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/central/fore) +"dqd" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-right" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark, +/area/station/security/brig) "dqg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -11379,6 +11298,22 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) +"drC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/blood/old, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 30 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) "drF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -11396,6 +11331,36 @@ icon_state = "platingdmg3" }, /area/station/maintenance/aft) +"dsc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Control Room" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) +"dsg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/secure_area{ + name = "EMERGENCY STORAGE"; + pixel_y = -32 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central) "dsh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, @@ -11403,6 +11368,17 @@ "dsk" = ( /turf/open/floor/iron/dark, /area/station/command/bridge) +"dsm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "dsw" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -11444,6 +11420,17 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron/dark, /area/station/engineering/storage/tech) +"dsI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Antechamber" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ai-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "dsJ" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/turf_decal/bot, @@ -11461,31 +11448,18 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/checker, /area/station/service/hydroponics) -"dsN" = ( -/obj/item/storage/medkit/regular{ - pixel_x = 3; - pixel_y = -3 +"dsY" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock" }, -/obj/item/storage/medkit/fire{ - pixel_x = 3; - pixel_y = 3 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/obj/item/storage/medkit/fire, -/obj/item/storage/medkit/fire{ - pixel_x = -3; - pixel_y = -3 +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating{ + icon_state = "panelscorched" }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/station/medical/storage) +/area/station/maintenance/disposal/incinerator) "dtb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/closed/wall/r_wall, @@ -11496,18 +11470,6 @@ }, /turf/open/floor/engine/o2, /area/station/engineering/atmos) -"dtp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/hos, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) "dtt" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -11808,6 +11770,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/security/interrogation) +"dxm" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/rust, +/area/station/engineering/gravity_generator) "dxq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -11889,6 +11855,10 @@ /obj/machinery/air_sensor/nitrogen_tank, /turf/open/floor/engine/n2, /area/station/engineering/atmos) +"dyK" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/command/bridge) "dyO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12017,10 +11987,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/virology) -"dAJ" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/department/security) "dAS" = ( /obj/effect/landmark/start/chaplain, /turf/open/floor/carpet/royalblue, @@ -12110,6 +12076,19 @@ /obj/item/food/cracker, /turf/open/floor/carpet/royalblue, /area/station/service/chapel/office) +"dCu" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) "dCM" = ( /turf/closed/wall/rust, /area/station/service/bar/atrium) @@ -12241,14 +12220,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"dED" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "dEF" = ( /turf/closed/wall/r_wall, /area/station/medical/virology) @@ -12275,6 +12246,15 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) +"dFM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "dGo" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 4 @@ -12357,15 +12337,6 @@ dir = 8 }, /area/station/maintenance/fore) -"dHf" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/station/maintenance/port/fore) "dHg" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/ausbushes/lavendergrass, @@ -12377,6 +12348,10 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/commons/toilet/restrooms) +"dHq" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/engineering/storage/tech) "dHw" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ dir = 4 @@ -12636,6 +12611,17 @@ "dKJ" = ( /turf/closed/wall/r_wall/rust, /area/station/command/heads_quarters/captain/private) +"dKK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/office) "dKN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -12680,16 +12666,17 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/airless, /area/space/nearstation) -"dLf" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 +"dLh" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access" }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge" }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "dLk" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -12721,17 +12708,17 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/service/bar/atrium) -"dLT" = ( +"dLN" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post" +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine" }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/area/station/engineering/supermatter/room) "dMn" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -12754,25 +12741,30 @@ /obj/effect/decal/cleanable/food/flour, /turf/open/floor/iron/freezer, /area/station/service/kitchen/coldroom) -"dMy" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "mass driver intersection" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "dME" = ( /turf/closed/wall, /area/station/cargo/warehouse) +"dMF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "dMG" = ( /obj/item/tank/internals/emergency_oxygen/engi{ pixel_x = -5 @@ -12812,16 +12804,6 @@ /mob/living/carbon/human/species/monkey, /turf/open/floor/grass, /area/station/science/genetics) -"dNf" = ( -/obj/machinery/door/airlock/external{ - name = "Satellite External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/atmos) "dNx" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -12861,6 +12843,16 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"dOF" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) "dOH" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "engsm"; @@ -12929,6 +12921,25 @@ /obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/station/engineering/supermatter) +"dPt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "justicedoor_2"; + name = "Justice Chamber" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/button/door/directional/north{ + id = "justicedoor_2"; + name = "Justice Door Lock"; + normaldoorcontrol = 1; + req_access_txt = "3"; + silicon_access_disabled = 1; + specialfunctions = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) "dPE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner, @@ -13199,10 +13210,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) -"dSW" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/maintenance/aft) "dTd" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -13246,13 +13253,6 @@ dir = 4 }, /area/station/hallway/primary/fore) -"dUb" = ( -/obj/effect/turf_decal/box/corners, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) "dUe" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -13268,18 +13268,6 @@ /obj/effect/landmark/start/bartender, /turf/open/floor/iron/dark, /area/station/service/bar) -"dUk" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) "dUE" = ( /obj/structure/chair{ dir = 1 @@ -13291,6 +13279,18 @@ /obj/effect/turf_decal/tile/neutral/half/contrasted, /turf/open/floor/iron/dark, /area/station/security/office) +"dUK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "dUQ" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -13399,6 +13399,19 @@ }, /turf/open/floor/plating, /area/station/science/mixing) +"dWj" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "mass driver intersection" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "dWC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -13424,17 +13437,6 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/storage) -"dXw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "service maintenance" - }, -/obj/machinery/duct, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) "dXz" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -13534,6 +13536,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/courtroom) +"dYY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/security/prison) "dZk" = ( /obj/machinery/door/airlock/grunge{ id_tag = "Cabin_2"; @@ -13584,6 +13599,12 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) +"dZS" = ( +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) "eah" = ( /obj/effect/turf_decal/bot, /obj/structure/closet, @@ -13619,6 +13640,15 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/fore) +"eao" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + id_tag = "commissarydoor"; + name = "Vacant Commissary" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/commons/vacant_room/commissary) "ear" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/ausbushes/lavendergrass, @@ -13726,10 +13756,6 @@ /obj/effect/landmark/start/mime, /turf/open/floor/iron, /area/station/service/theater) -"ebM" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/commons/fitness/recreation) "ebU" = ( /turf/closed/wall, /area/station/service/chapel/dock) @@ -13775,17 +13801,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/plating, /area/station/maintenance/department/cargo) -"ecp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Antechamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "ecE" = ( /turf/closed/wall/rust, /area/station/service/chapel/storage) @@ -13875,6 +13890,21 @@ /obj/effect/turf_decal/tile/green, /turf/open/floor/iron, /area/station/service/hydroponics) +"eej" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "Research Privacy Shutter" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Lab" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/turf/open/floor/iron/dark, +/area/station/science/lab) "een" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/turf_decal/bot, @@ -13905,6 +13935,17 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"eeC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "command maintenance" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brige-maint"; + name = "Bridge Blast door" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/crew_quarters/bar) "eeQ" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -14052,6 +14093,17 @@ /obj/machinery/firealarm/directional/east, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) +"ehc" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "ehp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/carpet/red, @@ -14063,6 +14115,18 @@ }, /turf/open/space/basic, /area/space/nearstation) +"ehF" = ( +/obj/machinery/door/airlock/command{ + name = "Command Catering Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "brige-maint"; + name = "Bridge Blast door" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) "ehI" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -14134,6 +14198,13 @@ }, /turf/open/space/basic, /area/space/nearstation) +"eiY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) "ejc" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -14292,14 +14363,6 @@ }, /turf/open/floor/wood, /area/station/service/bar) -"elf" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "elg" = ( /obj/machinery/light/small/directional/north, /obj/structure/table/optable{ @@ -14435,23 +14498,6 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) -"emB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/random/vending/colavend, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 30 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "emL" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /turf/open/floor/iron/showroomfloor, @@ -14479,13 +14525,6 @@ /obj/item/analyzer, /turf/open/floor/iron/dark, /area/station/engineering/atmos) -"enF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) "enP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -14702,19 +14741,6 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark, /area/station/service/chapel/dock) -"equ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Access" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central/fore) "eqx" = ( /obj/machinery/conveyor{ dir = 5; @@ -14987,13 +15013,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/engineering/main) -"ety" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) "etB" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -15087,30 +15106,6 @@ dir = 4 }, /area/station/service/chapel/dock) -"euo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Autopsy" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) -"euz" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "euX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15138,17 +15133,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/engineering/main) -"evd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Morgue" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/medical/morgue) "evp" = ( /obj/structure/table/reinforced, /obj/item/food/grown/watermelon, @@ -15211,16 +15195,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"evv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "xenobiology maintenance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "evD" = ( /obj/structure/flora/junglebush/large, /obj/structure/flora/ausbushes/ywflowers, @@ -15229,17 +15203,6 @@ "evE" = ( /turf/closed/wall/mineral/plastitanium, /area/station/maintenance/port/greater) -"evW" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) "ewe" = ( /turf/closed/wall/rust, /area/station/maintenance/central) @@ -15272,6 +15235,26 @@ dir = 4 }, /area/station/service/chapel/monastery) +"ewK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "engi-entrance" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Desk" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/lobby) "ewW" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -15558,20 +15541,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"eAO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "psychology maintenance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) "eAZ" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/grassybush, @@ -15606,6 +15575,36 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/engineering/atmos) +"eBk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/fore) +"eBl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/turf/open/floor/iron/dark, +/area/station/science/mixing/hallway) "eBu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -15709,22 +15708,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/cargo/warehouse) -"eCD" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. Neat!"; - helmet_type = /obj/item/clothing/head/helmet/space; - suit_type = /obj/item/clothing/suit/space - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) "eCU" = ( /obj/effect/turf_decal/siding/wood{ dir = 8 @@ -15966,6 +15949,18 @@ dir = 4 }, /area/station/service/chapel/dock) +"eGL" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) "eGW" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/line{ @@ -16202,6 +16197,15 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/xenobiology) +"eJy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "mining dock maintenance" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) "eJE" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -16238,14 +16242,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) -"eKr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) "eKA" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -16344,18 +16340,6 @@ }, /turf/open/floor/iron, /area/station/cargo/sorting) -"eMb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/maintenance/port/lesser) "eMc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -16409,20 +16393,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"eMC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Council Chamber" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"eMW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/turf/open/floor/iron/dark, +/area/station/medical/virology) "eNb" = ( /turf/open/floor/plating, /area/station/cargo/warehouse) -"eNe" = ( -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) "eNQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -16565,17 +16561,6 @@ "ePm" = ( /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"ePw" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable/layer3, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/ai_monitored/command/storage/satellite) "ePx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset{ @@ -16615,6 +16600,20 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/central/fore) +"ePY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "engi-entrance" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, +/turf/open/floor/iron/dark, +/area/station/engineering/main) "eQb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -16738,6 +16737,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/tcommsat/computer) +"eQO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/command/gateway, +/turf/open/floor/iron/dark, +/area/station/command/gateway) "eRx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -17032,21 +17039,6 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/carpet, /area/station/medical/psychology) -"eWL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) "eWP" = ( /turf/closed/wall/r_wall, /area/station/maintenance/port/fore) @@ -17090,18 +17082,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/cargo/storage) -"eXQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "Robotics Privacy Shutters" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) "eXX" = ( /obj/machinery/light/small/directional/north, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -17298,29 +17278,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"eZo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) -"eZr" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "eZx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -17463,33 +17420,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/pharmacy) -"fbT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/prison) -"fcb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology{ - name = "Operating Theater B" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) "fci" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/stripes/corner{ @@ -17526,6 +17456,17 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/service/library) +"fcv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/medical{ + name = "Psychology" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/turf/open/floor/iron/dark, +/area/station/medical/psychology) "fcC" = ( /obj/structure/closet/secure_closet/brig{ name = "Prisoner Locker" @@ -17570,20 +17511,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/bar) -"fdb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "fdd" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -17630,20 +17557,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/processing) -"fdJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/maintenance/fore) "fdY" = ( /turf/closed/wall, /area/station/medical/medbay/lobby) @@ -17765,18 +17678,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/lab) -"ffg" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/maintenance/disposal/incinerator) "ffh" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -17804,19 +17705,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"ffk" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) "ffm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -17903,10 +17791,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"ffZ" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/port/fore) "fgo" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/turf_decal/tile/red, @@ -17975,6 +17859,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"fgH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) "fgJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -17985,12 +17879,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/central) -"fgP" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "construction zone" - }, -/turf/open/floor/iron/dark, -/area/construction/mining/aux_base) "fhe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -18003,27 +17891,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/starboard) -"fhk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/secure_area{ - name = "EMERGENCY STORAGE"; - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/aft) "fhp" = ( /obj/effect/turf_decal/tile/purple/half/contrasted, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -18355,16 +18222,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison) -"fkq" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating/airless, -/area/station/maintenance/disposal/incinerator) "fkw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -18418,6 +18275,31 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard) +"fkT" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) +"fkV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "cargo-mailroom" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) "fla" = ( /obj/structure/window/reinforced, /turf/open/floor/plating, @@ -18447,6 +18329,26 @@ icon_state = "panelscorched" }, /area/station/maintenance/disposal/incinerator) +"flL" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber Lockdown Shutter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/flasher/directional/west{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ai-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "flS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/grille, @@ -18498,6 +18400,16 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/station/hallway/primary/central) +"fmx" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 30; + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/storage/satellite) "fmy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -18522,10 +18434,17 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/disposal/incinerator) -"fmL" = ( -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics Backroom" +"fmQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Hallway" }, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/fore) +"fmV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -18537,17 +18456,12 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics Backroom" + }, /obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, /turf/open/floor/iron/dark, /area/station/service/hydroponics) -"fmQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Hallway" - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/fore) "fne" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -18703,29 +18617,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard) -"fpf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "justicedoor"; - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "justicedoor"; - name = "Justice Door Lock"; - normaldoorcontrol = 1; - req_access_txt = "3"; - silicon_access_disabled = 1; - specialfunctions = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) "fph" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -18749,18 +18640,6 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/atmos) -"fpl" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "fpx" = ( /obj/structure/chair/office/light{ dir = 4 @@ -18779,6 +18658,20 @@ /obj/effect/landmark/start/virologist, /turf/open/floor/iron/showroomfloor, /area/station/medical/virology) +"fpz" = ( +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/spider/stickyweb, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/electrical) "fpG" = ( /obj/structure/cable, /obj/effect/decal/cleanable/cobweb, @@ -18931,6 +18824,17 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/checker, /area/station/security/processing/cremation) +"fsd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "fse" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -19089,6 +18993,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/parquet, /area/station/command/heads_quarters/captain/private) +"fuq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + name = "Custodial Closet" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/turf/open/floor/iron/dark, +/area/station/service/janitor) "fur" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -19132,6 +19051,17 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/showroomfloor, /area/station/medical/chemistry) +"fvr" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "fvx" = ( /obj/machinery/door/poddoor/preopen{ id = "prisonblast"; @@ -19289,6 +19219,17 @@ }, /turf/open/floor/iron/dark, /area/station/medical/pharmacy) +"fxw" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) "fxx" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -19363,6 +19304,22 @@ }, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) +"fxY" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) "fyc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -19413,6 +19370,15 @@ /obj/structure/extinguisher_cabinet/directional/north, /turf/open/floor/iron/dark, /area/station/medical/paramedic) +"fyA" = ( +/obj/machinery/door/airlock/mining{ + name = "Auxiliary Base" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/construction/mining/aux_base) "fyD" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -19591,6 +19557,29 @@ dir = 8 }, /area/station/service/chapel/monastery) +"fBh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) +"fBt" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/turf/open/floor/iron/dark, +/area/station/service/chapel/office) "fBC" = ( /obj/effect/decal/cleanable/blood/old, /obj/item/restraints/legcuffs/beartrap, @@ -19633,6 +19622,18 @@ }, /turf/open/floor/iron/dark, /area/construction/mining/aux_base) +"fCc" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/fore) "fCe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/yellow{ @@ -19705,10 +19706,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/lockers) -"fDm" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/foyer) "fDr" = ( /obj/structure/window/reinforced, /obj/effect/decal/cleanable/dirt, @@ -19787,6 +19784,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/locker) +"fEj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "chem-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "fEu" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -19812,6 +19823,22 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/engine, /area/station/science/xenobiology) +"fEE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/duct, +/obj/machinery/door/airlock{ + name = "Bar" + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) "fFa" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -19913,20 +19940,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) -"fHh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "fHj" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -19945,19 +19958,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/department/bridge) -"fHM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-maint-passthrough" - }, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) "fIa" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -20057,14 +20057,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"fIY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/turf/open/floor/iron/dark, -/area/station/cargo/warehouse) "fJq" = ( /obj/structure/flora/ausbushes/leafybush, /obj/machinery/camera/directional/west{ @@ -20254,6 +20246,19 @@ }, /turf/open/floor/iron, /area/station/command/teleporter) +"fLy" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "command maintenance" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/central) "fLI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -20325,6 +20330,20 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"fNo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-maint-passthrough" + }, +/obj/machinery/door/airlock/security{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/prison) "fNy" = ( /obj/structure/flora/grass/jungle/b, /turf/open/misc/asteroid, @@ -20541,14 +20560,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/central/fore) -"fPl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/storage/eva) "fPp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -20561,6 +20572,20 @@ dir = 4 }, /area/station/hallway/primary/central/fore) +"fPs" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "fPv" = ( /obj/machinery/light/directional/east, /obj/effect/decal/cleanable/dirt, @@ -20636,17 +20661,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/station/science/xenobiology) -"fQy" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "fQH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/sign/warning/xeno_mining{ @@ -20680,6 +20694,17 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/security/lockers) +"fQO" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permaouter"; + name = "Permabrig Transfer" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/grimy, +/area/station/security/prison/safe) "fQP" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ dir = 9 @@ -20923,16 +20948,6 @@ /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/showroomfloor, /area/station/security/brig) -"fUj" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/solars/port/aft) "fUp" = ( /obj/machinery/chem_heater/withbuffer, /obj/effect/turf_decal/tile/neutral, @@ -21129,6 +21144,17 @@ "fXL" = ( /turf/closed/wall/rust, /area/station/service/chapel/office) +"fXS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "E.V.A. Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/access/all/command/eva, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "fXX" = ( /obj/effect/turf_decal/tile/purple/anticorner/contrasted, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -21191,17 +21217,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/janitor) -"fYt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - id_tag = "commissarydoor"; - name = "Vacant Commissary" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) "fYw" = ( /turf/closed/wall/r_wall, /area/station/medical/surgery/aft) @@ -21292,16 +21307,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/station/cargo/warehouse) -"gax" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) "gaE" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -21384,18 +21389,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/medbay/central) -"gbo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, -/turf/open/floor/iron/dark, -/area/station/medical/storage) "gbp" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -21431,6 +21424,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/station/science/mixing/hallway) +"gbB" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 5 + }, +/obj/structure/table/reinforced/rglass, +/turf/open/floor/iron/showroomfloor, +/area/station/command/heads_quarters/cmo) "gbU" = ( /obj/effect/turf_decal/bot, /obj/structure/frame/computer{ @@ -21466,10 +21474,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/disposal/incinerator) -"gcK" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/engineering/atmos) "gcL" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -21485,16 +21489,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"gdf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Security Customs Checkpoint" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) "gdh" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ dir = 8 @@ -21509,6 +21503,16 @@ /obj/item/seeds/watermelon, /turf/open/floor/grass, /area/station/security/prison) +"gdA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "gdI" = ( /obj/structure/chair/pew{ dir = 8 @@ -21655,6 +21659,19 @@ }, /turf/open/floor/iron/chapel, /area/station/service/chapel/monastery) +"ggp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-left" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/plating, +/area/station/security/prison) "ggF" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -21690,21 +21707,6 @@ /obj/machinery/light_switch/directional/west, /turf/open/floor/iron/freezer, /area/station/service/kitchen/coldroom) -"ghL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, -/obj/item/clothing/neck/stethoscope{ - pixel_y = 5 - }, -/obj/structure/table/reinforced/rglass, -/turf/open/floor/iron/showroomfloor, -/area/station/command/heads_quarters/cmo) "ghO" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -21993,6 +21995,10 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hop) +"glG" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) "glJ" = ( /obj/machinery/chem_master, /obj/effect/turf_decal/delivery, @@ -22138,16 +22144,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/wood, /area/station/service/library) -"goe" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "goh" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral, @@ -22169,22 +22165,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/prison) -"gop" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/mixing/hallway) "gos" = ( /obj/machinery/light/floor, /turf/open/floor/engine/n2, @@ -22289,6 +22269,21 @@ icon_state = "platingdmg1" }, /area/station/maintenance/starboard/aft) +"gpy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Transferring Centre" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/processing) "gpz" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -22359,6 +22354,21 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) +"gqc" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/solars/port/fore) "gqn" = ( /obj/machinery/door/airlock/external{ name = "Departure Shuttle Airlock" @@ -22478,6 +22488,18 @@ "grK" = ( /turf/closed/wall/r_wall, /area/space) +"grQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Antechamber" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ai-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "gsc" = ( /obj/machinery/vending/sustenance, /turf/open/floor/iron/white, @@ -22518,17 +22540,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/medical/exam_room) -"gsv" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "gsy" = ( /turf/closed/wall, /area/station/medical/exam_room) @@ -22637,6 +22648,13 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) +"gtU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "gtW" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/rd) @@ -22904,6 +22922,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/lobby) +"gxW" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall, +/area/station/maintenance/starboard) "gyb" = ( /turf/open/floor/plating/rust, /area/station/security/prison) @@ -22994,16 +23016,6 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/department/bridge) -"gzO" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/structure/flora/grass/jungle, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "gzS" = ( /obj/structure/closet/secure_closet/injection{ name = "Justice Injections" @@ -23028,6 +23040,31 @@ }, /turf/open/floor/iron/dark, /area/station/security/execution/education) +"gAO" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "medbay_front_door"; + name = "Medbay" + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) +"gBf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "gBi" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -23081,6 +23118,17 @@ dir = 8 }, /area/station/hallway/primary/central/fore) +"gBC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + id_tag = "commissarydoor"; + name = "Vacant Commissary" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "gBJ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -23167,6 +23215,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"gCn" = ( +/obj/structure/table, +/obj/item/storage/secure/briefcase, +/obj/item/taperecorder, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "gCu" = ( /obj/structure/chair{ dir = 8 @@ -23599,22 +23656,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/station/command/bridge) -"gHF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/preopen{ - id = "brige-maint"; - name = "Bridge Blast door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-passthrough" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - name = "command maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) "gHN" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" @@ -23635,6 +23676,16 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard) +"gIt" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/security) "gIw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, @@ -23664,6 +23715,20 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"gIF" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Chemistry Lobby Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy" + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, +/turf/open/floor/iron/dark, +/area/station/medical/pharmacy) "gII" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -23908,16 +23973,6 @@ /obj/structure/sign/poster/contraband/random/directional/east, /turf/open/floor/iron/dark, /area/station/maintenance/department/crew_quarters/bar) -"gLQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron/dark, -/area/station/service/bar) "gMg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24106,18 +24161,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/security/processing) -"gOA" = ( -/obj/machinery/door/airlock/maintenance{ - name = "xenobiology maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -24 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "gOM" = ( /obj/structure/cable, /obj/effect/turf_decal/siding/wideplating/dark{ @@ -24145,19 +24188,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/central) -"gPj" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "gPy" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -24214,17 +24244,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/cargo/miningoffice) -"gPQ" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "gPS" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -24493,6 +24512,16 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"gSW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/rd) "gTc" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -24545,16 +24574,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/aft) -"gTu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard) "gTw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -24566,6 +24585,24 @@ icon_state = "platingdmg3" }, /area/station/maintenance/fore) +"gTA" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics Backroom" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) "gTD" = ( /obj/machinery/light/floor, /turf/open/floor/engine/air, @@ -24581,20 +24618,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics) -"gTQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "gUw" = ( /obj/machinery/power/solar{ id = "aftport"; @@ -24649,16 +24672,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/electrical) -"gVf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Medbay Security Post" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/medical) "gVg" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -24759,18 +24772,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron, /area/station/hallway/primary/central) -"gWF" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) "gWT" = ( /obj/structure/chair{ dir = 8 @@ -24852,21 +24853,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"gXK" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "kilo-maint-1" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "gXQ" = ( /obj/structure/rack, /obj/item/controller, @@ -25049,21 +25035,6 @@ icon_state = "wood-broken3" }, /area/station/commons/locker) -"gZY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "Research Privacy Shutter" - }, -/obj/machinery/door/airlock/research/glass{ - name = "Research Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/lab) "hag" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -25114,6 +25085,18 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/lesser) +"haU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance{ + name = "Ordnance Lab Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/science/mixing) "hbf" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -25161,33 +25144,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) -"hca" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/medical{ - name = "Operating Theater A" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/fore) -"hco" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/maintenance/port/fore) -"hcw" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/tcommsat/computer) "hcP" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 4 @@ -25206,6 +25162,23 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/greater) +"hdj" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -30 + }, +/turf/open/floor/iron/dark/corner{ + dir = 1 + }, +/area/station/hallway/primary/port) "hdm" = ( /obj/structure/kitchenspike, /obj/effect/turf_decal/bot/left, @@ -25284,6 +25257,17 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/white, /area/station/security/prison) +"hdY" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) "hee" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -25327,6 +25311,16 @@ icon_state = "wood-broken7" }, /area/station/maintenance/port/fore) +"heX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) "hfj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -25467,6 +25461,10 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard/fore) +"hgL" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/maintenance/port/greater) "hgW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/assist, @@ -25547,6 +25545,12 @@ dir = 8 }, /area/station/hallway/primary/port) +"hib" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "construction zone" + }, +/turf/open/floor/iron/dark, +/area/construction/mining/aux_base) "hih" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/l3closet/virology, @@ -25563,6 +25567,39 @@ }, /turf/open/floor/iron/dark, /area/station/medical/virology) +"hil" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "engi-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) +"hiQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "engi-maint-passthrough" + }, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "hja" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25598,6 +25635,16 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/surgery/fore) +"hjj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "supermatter maintenance" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "hjn" = ( /obj/structure/cable, /obj/machinery/computer/cargo/request, @@ -25761,6 +25808,20 @@ /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/iron, /area/station/engineering/atmos) +"hkO" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall/rust, +/area/station/maintenance/port/fore) +"hkR" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "hlb" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -26263,6 +26324,19 @@ }, /turf/open/floor/iron, /area/station/security/prison) +"hrz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/station/maintenance/port/aft) "hrB" = ( /obj/structure/window/reinforced{ dir = 4 @@ -26372,18 +26446,17 @@ /obj/structure/noticeboard/directional/east, /turf/closed/mineral/random/labormineral, /area/space/nearstation) -"hti" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, +"htr" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) +/area/station/maintenance/port/lesser) "htz" = ( /obj/machinery/power/emitter, /obj/effect/turf_decal/bot, @@ -26393,20 +26466,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) -"htG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-mailroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/sorting) "htJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -26576,16 +26635,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/security/prison) -"hwR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) "hwY" = ( /obj/machinery/air_sensor/air_tank, /turf/open/floor/engine/air, @@ -26624,6 +26673,20 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/iron/grimy, /area/station/hallway/primary/fore) +"hxi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/atmos{ + name = "Incinerator" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron, +/area/station/engineering/atmos) "hxt" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -26744,14 +26807,6 @@ "hyT" = ( /turf/closed/wall/r_wall/rust, /area/station/science/misc_lab) -"hzn" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{ - name = "Burn Chamber Exterior Airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/engine, -/area/station/science/mixing/chamber) "hzC" = ( /obj/structure/flora/rock/pile{ icon_state = "basalt2" @@ -26771,16 +26826,6 @@ /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/iron/dark, /area/station/maintenance/port/greater) -"hzG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - name = "medbay maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "hzO" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet, @@ -26871,6 +26916,19 @@ }, /turf/open/floor/plating, /area/station/engineering/atmos/pumproom) +"hBm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) "hBD" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -27428,28 +27486,6 @@ /mob/living/simple_animal/hostile/retaliate/ghost, /turf/open/floor/wood, /area/station/maintenance/starboard/fore) -"hIv" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/circuit/red/telecomms, -/area/station/tcommsat/server) -"hIL" = ( -/obj/machinery/door/airlock/external{ - name = "Security Escape Pod"; - space_dir = 2 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) "hIY" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral, @@ -27483,6 +27519,19 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) +"hJy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "Vault" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "hJz" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -27688,19 +27737,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/iron/dark, /area/station/cargo/sorting) -"hMv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - name = "Captain's Tactical Relocation" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) "hMx" = ( /obj/structure/cable, /obj/machinery/light/small/directional/west, @@ -27715,6 +27751,22 @@ "hMN" = ( /turf/closed/wall, /area/station/service/chapel/funeral) +"hMZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/preopen{ + id = "brige-maint"; + name = "Bridge Blast door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-passthrough" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "command maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/bridge) "hNi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -27764,21 +27816,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/engineering/atmos) -"hND" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/station/maintenance/solars/port/aft) "hNF" = ( /obj/effect/turf_decal/loading_area, /obj/effect/turf_decal/stripes/line{ @@ -27801,10 +27838,30 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) +"hNR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleporter Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) "hOc" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/cargo/storage) +"hOh" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/aft) "hOm" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ dir = 4 @@ -27835,6 +27892,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/cargo/warehouse) +"hOt" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) "hOH" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -27849,6 +27917,17 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/commons/toilet/restrooms) +"hOJ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "hOK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -27878,6 +27957,15 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/lobby) +"hOU" = ( +/obj/machinery/door/airlock/external{ + name = "Security Escape Pod"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) "hOV" = ( /obj/machinery/modular_computer/console/preset/research{ dir = 8 @@ -27917,19 +28005,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) -"hOX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/station/maintenance/port/aft) "hOY" = ( /obj/structure/bookcase/random/reference, /obj/item/toy/figure/psychologist{ @@ -27952,6 +28027,10 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"hPz" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/maintenance/port/greater) "hPG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28075,17 +28154,6 @@ /obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/engine/telecomms, /area/station/tcommsat/server) -"hQT" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) "hQV" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 1 @@ -28196,16 +28264,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/hallway/primary/central/fore) -"hRB" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "hRO" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -28361,6 +28419,26 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics/garden) +"hUw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/dark, +/area/station/cargo/office) +"hUy" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/captain/private) "hUC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -28376,19 +28454,6 @@ dir = 1 }, /area/station/service/chapel/monastery) -"hUJ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "hUL" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -28435,19 +28500,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"hVH" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) "hVL" = ( /obj/machinery/computer/slot_machine, /obj/effect/turf_decal/tile/neutral{ @@ -28658,6 +28710,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/showroomfloor, /area/station/command/heads_quarters/rd) +"hZn" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall, +/area/station/science/xenobiology) "hZp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -28693,6 +28749,23 @@ }, /turf/open/floor/iron/dark, /area/station/service/bar/atrium) +"hZP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-maint-passthrough" + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "hZS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -28906,14 +28979,6 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/iron/dark, /area/station/engineering/gravity_generator) -"icb" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) "icp" = ( /obj/effect/turf_decal/tile/red, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -28959,6 +29024,10 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/station/engineering/storage_shared) +"icx" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/rust, +/area/space/nearstation) "icG" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -28993,10 +29062,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/showroomfloor, /area/station/security/office) -"icX" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) "idF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -29044,6 +29109,17 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/port) +"idY" = ( +/obj/machinery/door/airlock/maintenance{ + name = "morgue maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) "ieb" = ( /obj/machinery/camera/directional/north{ c_tag = "Xenobiology Euthanization Chamber"; @@ -29082,17 +29158,6 @@ }, /turf/open/floor/iron, /area/station/command/teleporter) -"ieO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "morgue maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) "ieV" = ( /obj/effect/turf_decal/tile/purple, /obj/structure/disposalpipe/segment, @@ -29173,17 +29238,16 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/disposal) -"ifO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" +"ifB" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = 30 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) +/turf/open/floor/engine, +/area/station/engineering/supermatter/room) +"ifQ" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/security/prison) "ifX" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -29315,6 +29379,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"iiM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "iiP" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -29439,16 +29514,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"ijG" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Office" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) "ijH" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -29522,6 +29587,20 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/cargo/storage) +"ikr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "psychology maintenance" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) "ikt" = ( /obj/structure/plaque/static_plaque/atmos, /turf/closed/wall/rust, @@ -29739,6 +29818,20 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"imE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/disposal) "imM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29932,6 +30025,19 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"ipA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) "ipC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -30028,6 +30134,25 @@ }, /turf/open/floor/iron/dark, /area/construction/mining/aux_base) +"ipS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump{ + name = "Lil Pump" + }, +/obj/machinery/camera/directional/west{ + c_tag = "Ordnance Mixing Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/airalarm/mixingchamber{ + dir = 8; + pixel_x = -28 + }, +/turf/open/floor/iron/showroomfloor, +/area/station/science/mixing/chamber) "iqd" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/medical_all, @@ -30062,6 +30187,20 @@ /obj/structure/cable, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/chapel/monastery) +"iqU" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "bankvault" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "iqW" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -30098,23 +30237,6 @@ /obj/structure/sign/departments/security, /turf/closed/wall, /area/station/security/courtroom) -"irD" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "medbay_front_door"; - name = "Medbay" - }, -/obj/effect/landmark/navigate_destination, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) "irE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -30219,17 +30341,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/robotics/lab) -"isr" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) "isA" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -30249,39 +30360,9 @@ "isS" = ( /turf/open/floor/iron/grimy, /area/station/security/prison) -"itk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "itn" = ( /turf/closed/wall/r_wall/rust, /area/ai_monitored/command/nuke_storage) -"itq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/turf/open/floor/iron/dark/corner{ - dir = 1 - }, -/area/station/hallway/primary/port) "itr" = ( /obj/structure/table/glass, /obj/item/clipboard{ @@ -30534,6 +30615,10 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/storage) +"iwL" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/security/processing) "iwM" = ( /obj/effect/spawner/structure/window/reinforced/plasma, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, @@ -30691,33 +30776,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/lesser) -"iyo" = ( -/obj/machinery/door/airlock/command{ - name = "Gateway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/command/gateway, -/turf/open/floor/iron/dark, -/area/station/command/gateway) -"iys" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"iyu" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "iyB" = ( /obj/machinery/atmospherics/components/binary/valve/layer4, /obj/effect/turf_decal/stripes/line, @@ -30991,6 +31049,19 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) +"iBy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/security/warden) "iBz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -31051,10 +31122,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"iCv" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/storage/tech) "iCK" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -31072,6 +31139,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/cargo/sorting) +"iCP" = ( +/obj/machinery/door/airlock/external{ + name = "Brig Shuttle Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) "iCV" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -31118,14 +31196,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"iDB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/tcommsat/computer) "iEi" = ( /obj/structure/chair{ dir = 4 @@ -31223,6 +31293,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"iFd" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/rust, +/area/station/maintenance/starboard) "iFr" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -31336,6 +31410,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat/foyer) +"iGI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/medical/cmo, +/turf/open/floor/iron/dark, +/area/station/medical/storage) "iGK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/siding/purple/corner{ @@ -31450,10 +31536,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"iHI" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/maintenance/starboard) "iHL" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -31490,19 +31572,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"iIg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "cargo maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "iIp" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/brown, @@ -31562,6 +31631,22 @@ icon_state = "panelscorched" }, /area/station/maintenance/solars/port/fore) +"iJf" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -28 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Mech Bay"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/science/robotics/mechbay) "iJg" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -31755,15 +31840,6 @@ /obj/machinery/newscaster/directional/south, /turf/open/floor/iron/dark, /area/station/security/checkpoint/science/research) -"iMe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) "iMr" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -31773,23 +31849,6 @@ /obj/machinery/camera/autoname/directional/south, /turf/open/floor/carpet/red, /area/station/service/chapel/monastery) -"iMz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "iMA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -31837,6 +31896,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/engineering/atmos) +"iNU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) "iNZ" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red{ @@ -31869,16 +31941,6 @@ /obj/machinery/duct, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) -"iOl" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/structure/flora/ausbushes/palebush, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "iOD" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -31890,6 +31952,10 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) +"iPa" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) "iPw" = ( /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, @@ -32001,17 +32067,6 @@ /obj/effect/landmark/start/research_director, /turf/open/floor/iron/showroomfloor, /area/station/command/heads_quarters/rd) -"iRX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/storage) "iSb" = ( /obj/machinery/door/poddoor{ id = "QMLoaddoor"; @@ -32087,14 +32142,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) -"iSV" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "iTk" = ( /obj/effect/turf_decal/trimline/red/filled/line, /obj/structure/cable, @@ -32217,6 +32264,17 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/grass, /area/station/service/hydroponics) +"iUM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "service maintenance" + }, +/obj/machinery/duct, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/service/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/crew_quarters/bar) "iUQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32243,17 +32301,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/greater) -"iVb" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchInt"; - name = "Research Division" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/research) "iVj" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/security) @@ -32414,20 +32461,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/fore) -"iWR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical{ - name = "Operating Theater B"; - req_access_txt = "45" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/dark, -/area/station/medical/surgery/aft) "iWT" = ( /obj/structure/sign/departments/cargo, /turf/closed/wall, @@ -32451,17 +32484,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"iXo" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 +"iXs" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) +/turf/open/space/basic, +/area/space/nearstation) "iXx" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -32479,20 +32508,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"iXy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/station/maintenance/disposal) "iXD" = ( /obj/machinery/camera/directional/east{ c_tag = "Xenobiology Cell 3"; @@ -32546,6 +32561,22 @@ dir = 1 }, /area/station/service/chapel/dock) +"iYf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/virology{ + name = "Operating Theater B" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/turf/open/floor/iron/dark, +/area/station/medical/virology) "iYq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32652,6 +32683,17 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/r_wall, /area/station/maintenance/starboard) +"iZm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/dark, +/area/station/medical/storage) "iZv" = ( /obj/structure/extinguisher_cabinet/directional/east, /obj/effect/turf_decal/caution/stand_clear, @@ -32775,25 +32817,9 @@ /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/iron, /area/station/engineering/atmos) -"jbo" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) "jbt" = ( /turf/closed/wall/mineral/plastitanium, /area/station/maintenance/starboard) -"jbx" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/maintenance/starboard/aft) "jbP" = ( /obj/structure/flora/rock/pile, /obj/effect/turf_decal/stripes/line{ @@ -32801,13 +32827,6 @@ }, /turf/open/misc/asteroid, /area/space/nearstation) -"jbU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "kitchen coldroom maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) "jbV" = ( /obj/machinery/camera/directional/north{ c_tag = "Armoury External" @@ -32858,6 +32877,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) +"jcp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "jcs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/grille, @@ -32933,6 +32963,15 @@ "jds" = ( /turf/closed/wall, /area/station/service/kitchen) +"jdA" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/station/maintenance/port/fore) "jdE" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -32990,20 +33029,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard) -"jea" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) "jec" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -33058,6 +33083,16 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) +"jfe" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/structure/flora/grass/jungle, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "jfI" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -33161,6 +33196,18 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"jgv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/security/detective, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/open/floor/iron/dark, +/area/station/security/medical) "jgy" = ( /obj/structure/closet/secure_closet/evidence, /obj/effect/turf_decal/tile/neutral, @@ -33179,6 +33226,13 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, /area/station/service/chapel/dock) +"jgB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "kitchen coldroom maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/bridge) "jgF" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -33205,16 +33259,6 @@ "jgN" = ( /turf/open/floor/iron/dark, /area/station/service/chapel/funeral) -"jgS" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/engine, -/area/station/engineering/supermatter) "jhc" = ( /obj/structure/table/bronze, /obj/item/clothing/head/bronze{ @@ -33500,6 +33544,17 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron/dark, /area/station/maintenance/port/greater) +"jjS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/prison) "jka" = ( /obj/effect/turf_decal/tile/dark/half/contrasted, /obj/machinery/atmospherics/components/binary/valve/digital{ @@ -33515,27 +33570,6 @@ icon_state = "platingdmg1" }, /area/station/maintenance/port/lesser) -"jkn" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) -"jkr" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/security) "jks" = ( /obj/effect/turf_decal/bot, /obj/structure/table, @@ -33579,14 +33613,6 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron/showroomfloor, /area/station/science/storage) -"jlL" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Server Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/science/server) "jlY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -33810,6 +33836,13 @@ }, /turf/open/floor/iron, /area/station/command/bridge) +"jpM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "jpO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/showroomfloor, @@ -34120,6 +34153,24 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/lesser) +"jwi" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-passthrough" + }, +/obj/machinery/door/airlock/command{ + name = "Bridge Maintenance" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brige-maint"; + name = "Bridge Blast door" + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "jwk" = ( /obj/effect/decal/cleanable/ash, /obj/effect/decal/cleanable/dirt, @@ -34144,25 +34195,6 @@ "jwV" = ( /turf/closed/wall/r_wall/rust, /area/station/engineering/atmos) -"jxo" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) -"jxt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/detective, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/open/floor/iron/dark, -/area/station/security/medical) "jya" = ( /obj/effect/turf_decal/delivery, /obj/structure/reagent_dispensers/fueltank, @@ -34172,6 +34204,12 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/lesser) +"jyr" = ( +/obj/structure/sign/warning/secure_area{ + name = "WARNING: Station Limits" + }, +/turf/closed/wall/rust, +/area/space/nearstation) "jyI" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, @@ -34213,14 +34251,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron, /area/station/engineering/lobby) -"jzl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "jzm" = ( /obj/structure/closet/secure_closet/atmospherics, /obj/effect/turf_decal/tile/neutral, @@ -34298,6 +34328,10 @@ /obj/structure/sign/poster/contraband/random/directional/south, /turf/open/floor/plating, /area/station/maintenance/port/lesser) +"jzH" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/engineering/gravity_generator) "jAl" = ( /obj/machinery/computer/exodrone_control_console{ dir = 1 @@ -34315,14 +34349,6 @@ "jAp" = ( /turf/open/space, /area/space) -"jAr" = ( -/obj/machinery/door/airlock/atmos/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine/vacuum, -/area/station/maintenance/disposal/incinerator) "jAu" = ( /obj/structure/table/wood, /obj/effect/turf_decal/siding/wood{ @@ -34522,22 +34548,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/freezer, /area/station/service/kitchen/coldroom) -"jDK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab" - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/effect/mapping_helpers/airlock/access/any/science/genetics, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "jDU" = ( /obj/effect/turf_decal/loading_area, /obj/effect/turf_decal/tile/neutral{ @@ -34941,10 +34951,6 @@ /obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/station/maintenance/port/lesser) -"jJR" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/supermatter/room) "jJW" = ( /obj/item/kirbyplants{ icon_state = "plant-18" @@ -35056,10 +35062,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"jKZ" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall/rust, -/area/station/security/prison) "jLk" = ( /obj/machinery/door/airlock/grunge{ name = "Cell 3" @@ -35124,6 +35126,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"jLM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "jLS" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral, @@ -35305,10 +35315,6 @@ }, /turf/open/floor/carpet/orange, /area/station/cargo/qm) -"jNG" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/starboard) "jNW" = ( /obj/structure/table/wood, /obj/item/storage/crayons, @@ -35337,6 +35343,11 @@ }, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) +"jOn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/maintenance/starboard/fore) "jOw" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -35432,16 +35443,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) -"jQr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/server) "jQy" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -35485,16 +35486,6 @@ /obj/structure/chair/office, /turf/open/floor/iron/dark, /area/station/command/bridge) -"jRs" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain/private) "jRx" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, @@ -35536,6 +35527,14 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/ai_monitored/command/nuke_storage) +"jRR" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "jSo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -35560,14 +35559,20 @@ }, /turf/open/floor/iron/dark, /area/station/science/research) +"jSC" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/rust, +/area/station/maintenance/aft) "jSE" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office" +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security{ + name = "Equipment Room" }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) +/area/station/security/lockers) "jSF" = ( /turf/open/floor/carpet/green, /area/station/cargo/warehouse) @@ -35602,6 +35607,18 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"jTa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Custodial Closet" + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/turf/open/floor/iron/dark, +/area/station/service/janitor) "jTc" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -35753,22 +35770,6 @@ icon_state = "platingdmg1" }, /area/station/maintenance/port/fore) -"jVY" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) "jVZ" = ( /obj/structure/water_source/puddle, /obj/structure/flora/ausbushes/reedbush{ @@ -35871,20 +35872,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/command/bridge) -"jXs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "jXN" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -35938,17 +35925,16 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) -"jYk" = ( +"jYd" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office" +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post" }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) +/area/station/security/checkpoint/engineering) "jYo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -36006,6 +35992,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/port/greater) +"kac" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "chem-passthrough" + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "kan" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -36053,6 +36056,18 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"kaP" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Containment Chamber Blast Door" + }, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/station/science/xenobiology) "kaT" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -36284,6 +36299,17 @@ "kem" = ( /turf/closed/wall/rust, /area/station/security/processing) +"kep" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post" + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "kex" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -36338,16 +36364,6 @@ /obj/structure/lattice/catwalk, /turf/open/floor/plating/airless, /area/station/solars/starboard/aft) -"kfx" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/pen/fountain, -/turf/open/floor/carpet/orange, -/area/station/cargo/qm) "kgB" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -36367,6 +36383,17 @@ /obj/structure/cable, /turf/open/floor/iron/solarpanel/airless, /area/station/solars/starboard/aft) +"kgE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Transferring Centre" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/processing) "kgJ" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -36529,20 +36556,6 @@ /obj/item/stack/cable_coil, /turf/open/floor/iron/dark, /area/station/medical/pharmacy) -"kjk" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "kjl" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -36585,17 +36598,6 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) -"kkp" = ( -/obj/machinery/door/airlock/external{ - name = "Brig Shuttle Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) "kkC" = ( /obj/item/toy/beach_ball{ pixel_y = 6 @@ -36612,6 +36614,14 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/xenobiology) +"kkS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/tcommsat/computer) "kkV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -36714,16 +36724,13 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard/fore) -"kmy" = ( -/obj/machinery/door/airlock/atmos{ - name = "Filter Chamber" +"kmG" = ( +/obj/effect/turf_decal/box/corners, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) +/turf/open/floor/engine, +/area/station/science/xenobiology) "kmK" = ( /obj/structure/flora/rock/pile{ icon_state = "basalt" @@ -36745,13 +36752,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/command/heads_quarters/rd) -"kmO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "hydroponics maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) "kmS" = ( /obj/effect/turf_decal/tile/yellow/half/contrasted, /obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ @@ -36770,10 +36770,6 @@ }, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) -"knb" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/prison) "knh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, @@ -36919,17 +36915,6 @@ /obj/machinery/atmospherics/components/binary/pump, /turf/open/floor/engine, /area/station/science/mixing/chamber) -"kpe" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, -/turf/open/floor/iron/dark, -/area/station/science/storage) "kpS" = ( /obj/structure/railing{ dir = 1 @@ -37050,18 +37035,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"kqW" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchInt"; - name = "Research Division" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/research) "krc" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -37217,6 +37190,10 @@ }, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/port) +"ksM" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall, +/area/station/security/lockers) "ktc" = ( /obj/structure/sign/poster/contraband/random{ pixel_x = -32 @@ -37312,6 +37289,15 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/wood, /area/station/maintenance/starboard/fore) +"kut" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "Vault" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "kuK" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/rack, @@ -37321,6 +37307,10 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) +"kuL" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/maintenance/port/aft) "kuO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37510,6 +37500,22 @@ /obj/item/tank/internals/oxygen/yellow, /turf/open/floor/iron/dark, /area/station/cargo/miningoffice) +"kyq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-maint-passthrough" + }, +/obj/machinery/door/airlock/security{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/prison) "kyR" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -37604,6 +37610,20 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/commons/toilet/restrooms) +"kzT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "kzY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -37612,6 +37632,18 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard/aft) +"kAt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/hos, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hos) "kAR" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -37625,6 +37657,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/showroomfloor, /area/station/command/heads_quarters/cmo) +"kBd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "e.v.a. maintenance" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/command/eva, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "kBs" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -37641,6 +37681,16 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"kBz" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "kBF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -37669,14 +37719,6 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat_interior) -"kBW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) "kCk" = ( /turf/closed/wall/rust, /area/station/maintenance/disposal/incinerator) @@ -37760,6 +37802,10 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"kDR" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/engineering/storage/tech) "kEl" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -37841,6 +37887,19 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/greater) +"kFG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) "kFR" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -37876,6 +37935,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/engineering/lobby) +"kGj" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/port/fore) "kGD" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -37917,6 +37985,20 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/station/security/checkpoint/supply) +"kHh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "kHr" = ( /obj/effect/turf_decal/delivery, /obj/structure/reagent_dispensers/fueltank, @@ -37993,15 +38075,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/starboard) -"kIK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/detective, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) "kIY" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -38028,6 +38101,15 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/engineering/hallway) +"kJq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/office) "kJs" = ( /obj/item/clothing/mask/breath, /obj/effect/decal/cleanable/dirt, @@ -38091,16 +38173,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/service/library) -"kKo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) "kKw" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ @@ -38113,6 +38185,17 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"kKE" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) "kKF" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -38339,6 +38422,23 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/bridge) +"kNY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "cargo-maint-passthrough" + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "kOb" = ( /obj/machinery/light/small/directional/west, /obj/machinery/photocopier, @@ -38352,22 +38452,6 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) -"kOd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/gloves/color/black, -/obj/item/wrench, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) "kOj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -38456,6 +38540,14 @@ icon_state = "panelscorched" }, /area/station/maintenance/department/bridge) +"kPk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "kPo" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38604,6 +38696,19 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"kQQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Antechamber" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "ai-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat_interior) "kQT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -38625,17 +38730,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/station/command/gateway) -"kRs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "kRu" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -38679,15 +38773,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos) -"kRH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - name = "Cremator Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/checker, -/area/station/security/processing/cremation) "kSn" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -38795,15 +38880,6 @@ /obj/effect/turf_decal/tile/red/anticorner/contrasted, /turf/open/floor/iron/showroomfloor, /area/station/security/medical) -"kTi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "kTk" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -38866,23 +38942,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel/monastery) -"kUo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/maintenance/port/greater) "kUp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39033,16 +39092,15 @@ }, /turf/open/floor/engine/vacuum, /area/station/science/test_area) -"kVR" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 +"kVY" = ( +/obj/machinery/door/airlock/command{ + name = "Gateway" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/command/gateway, /turf/open/floor/iron/dark, -/area/station/maintenance/department/cargo) +/area/station/command/gateway) "kWe" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -39197,6 +39255,18 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/aft) +"kYU" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "kZq" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -39204,6 +39274,28 @@ }, /turf/open/floor/iron, /area/station/cargo/storage) +"kZx" = ( +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Kitchen Service Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, +/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, +/turf/open/floor/iron/dark, +/area/station/service/kitchen) "kZz" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -39263,6 +39355,17 @@ /mob/living/simple_animal/hostile/giant_spider/tarantula/scrawny, /turf/open/floor/iron/dark, /area/station/maintenance/port/greater) +"kZK" = ( +/obj/machinery/door/airlock/external{ + name = "Security Escape Pod"; + space_dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) "kZP" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -39337,6 +39440,27 @@ /obj/machinery/firealarm/directional/north, /turf/open/floor/iron/dark, /area/station/service/lawoffice) +"lar" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/secure_area{ + name = "EMERGENCY STORAGE"; + pixel_y = 32 + }, +/turf/open/floor/iron, +/area/station/hallway/primary/aft) "laB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39368,17 +39492,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/service/chapel/dock) -"laI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Transferring Centre" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/processing) "lbj" = ( /obj/structure/cable, /obj/structure/table, @@ -39509,16 +39622,18 @@ /obj/structure/window/reinforced, /turf/open/floor/grass, /area/station/command/heads_quarters/hop) -"ldd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "service maintenance" +"lcZ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance" }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, /obj/effect/mapping_helpers/airlock/unres{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/bar) +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/electrical) "lds" = ( /obj/effect/decal/cleanable/blood/old, /obj/item/stack/rods, @@ -39536,16 +39651,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/station/cargo/storage) -"lek" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "lep" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/machinery/computer/operating{ @@ -39570,6 +39675,24 @@ /obj/structure/cable, /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) +"leB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-maint-passthrough" + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "leD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/girder, @@ -39593,12 +39716,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/maintenance/disposal/incinerator) -"lfI" = ( -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/turf/open/misc/asteroid/lowpressure, -/area/space/nearstation) "lfQ" = ( /obj/structure/closet/secure_closet/security/med, /obj/effect/turf_decal/tile/red{ @@ -39643,6 +39760,24 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard) +"lgb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/backpack, +/obj/item/extinguisher{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/extinguisher, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -30 + }, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "lge" = ( /obj/structure/railing/corner{ dir = 1 @@ -39696,17 +39831,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/fore) -"lhd" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/starboard/aft) "lhf" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -39878,6 +40002,19 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/security/courtroom) +"ljA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "engi-maint-passthrough" + }, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/aft) "lkl" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -39931,25 +40068,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/hallway/primary/starboard) -"lkG" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump{ - name = "Lil Pump" - }, -/obj/machinery/camera/directional/west{ - c_tag = "Ordnance Mixing Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/airalarm/mixingchamber{ - dir = 8; - pixel_x = -28 - }, -/turf/open/floor/iron/showroomfloor, -/area/station/science/mixing/chamber) "lkT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -39967,6 +40085,10 @@ }, /turf/open/floor/iron/white, /area/station/security/prison) +"llh" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/rust, +/area/station/maintenance/port/lesser) "llj" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -39996,6 +40118,21 @@ "llU" = ( /turf/open/floor/iron/showroomfloor, /area/station/science/misc_lab) +"llY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/virology{ + name = "Virology Access" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "viro-airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/turf/open/floor/iron/dark, +/area/station/medical/virology) "lmb" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -40144,6 +40281,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/processing) +"loo" = ( +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/turf/open/floor/iron/dark, +/area/station/science/mixing/hallway) "lox" = ( /obj/effect/turf_decal/trimline/green/line{ dir = 5 @@ -40178,33 +40333,23 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/cargo/sorting) +"lpp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "lpt" = ( /turf/closed/wall/r_wall/rust, /area/station/command/heads_quarters/captain) -"lpu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theater Secondary" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) "lpF" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, /area/station/maintenance/port/greater) -"lpG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) "lpH" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -40515,34 +40660,6 @@ icon_state = "panelscorched" }, /area/station/security/prison) -"ltR" = ( -/obj/structure/rack, -/obj/effect/spawner/random/techstorage/rnd_all, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) -"lub" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-right" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) "luh" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -40693,21 +40810,6 @@ "lwu" = ( /turf/closed/wall, /area/station/security/medical) -"lwH" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "lwT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -40874,16 +40976,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/department/crew_quarters/bar) -"lyC" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "lyG" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -40894,19 +40986,6 @@ }, /turf/open/floor/iron/white, /area/station/security/prison) -"lyO" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/security/prison) "lyT" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -41036,6 +41115,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/station/engineering/gravity_generator) +"lAu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + name = "Medbay Security Post" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/medical) "lAA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -41158,16 +41247,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/showroomfloor, /area/station/medical/psychology) -"lCe" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) "lCC" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/grass, @@ -41217,6 +41296,27 @@ /obj/effect/landmark/carpspawn, /turf/open/space/basic, /area/station/solars/port/fore) +"lDl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/iron, +/area/station/hallway/primary/central) "lDu" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard) @@ -41502,10 +41602,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/station/service/bar) -"lHT" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/security/lockers) "lHX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -41524,26 +41620,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/storage) -"lIg" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/camera/directional/west{ - c_tag = "Brig Prison Access" - }, -/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/security/brig) "lIr" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -41786,6 +41862,16 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/maintenance/starboard) +"lLi" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = 30 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) "lLl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -41925,28 +42011,6 @@ /obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/iron/showroomfloor, /area/station/science/lab) -"lNZ" = ( -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Kitchen Service Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/kitchen, -/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) "lOb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -42077,25 +42141,6 @@ /obj/effect/decal/remains/human, /turf/open/floor/engine/vacuum, /area/station/science/test_area) -"lPw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) "lPY" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -42184,26 +42229,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/showroomfloor, /area/station/medical/storage) -"lRr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Equipment Room" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/lockers) -"lRD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator Chamber" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/gravity_generator) "lRE" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -42221,6 +42246,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"lRZ" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "lSl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -42250,16 +42288,6 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/hop) -"lSu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/office) "lSE" = ( /obj/machinery/conveyor{ dir = 1; @@ -42345,16 +42373,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/carpet/royalblack, /area/station/command/heads_quarters/captain) -"lUd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/pumproom) "lUq" = ( /turf/closed/wall/r_wall/rust, /area/station/service/chapel/storage) @@ -42506,6 +42524,15 @@ }, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) +"lWm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/starboard/fore) "lWw" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -42662,19 +42689,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) -"lYn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) "lYv" = ( /obj/structure/window/reinforced/spawner{ dir = 1 @@ -42722,6 +42736,18 @@ "lZi" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard/fore) +"lZl" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "lZm" = ( /obj/structure/chair{ dir = 1 @@ -42877,6 +42903,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/station/security/prison/safe) +"mbl" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/fore) "mbp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -42938,6 +42976,15 @@ icon_state = "platingdmg1" }, /area/station/maintenance/starboard/fore) +"mbS" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/solars/starboard/aft) "mbW" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -42991,14 +43038,18 @@ /obj/effect/landmark/navigate_destination/hop, /turf/open/floor/iron, /area/station/command/heads_quarters/hop) -"mdb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 +"mda" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber" }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/fore) +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/engine, +/area/station/engineering/supermatter) "mdl" = ( /obj/effect/turf_decal/box/corners{ dir = 1 @@ -43293,6 +43344,17 @@ }, /turf/open/floor/iron, /area/station/command/bridge) +"mgC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room" + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/lockers) "mha" = ( /obj/machinery/porta_turret/ai, /obj/machinery/airalarm/directional/west, @@ -43312,21 +43374,23 @@ dir = 1 }, /area/station/hallway/primary/starboard) -"mhu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +"mhO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder{ - pixel_x = 5 +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" }, -/obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/lawyer, -/obj/effect/turf_decal/bot, -/obj/structure/mirror/directional/north, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) +/area/station/maintenance/port/greater) "mhP" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -43382,6 +43446,14 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/robotics/lab) +"mij" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) "mik" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -43797,6 +43869,25 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"mnG" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/virology{ + name = "Virology Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "viro-airlock" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/turf/open/floor/iron/dark, +/area/station/medical/virology) +"mnK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) "mnO" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -43852,11 +43943,50 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"mop" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/lockers) +"mow" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/suit_storage_unit/standard_unit{ + desc = "An industrial suit storage device carrying retro space suits. Neat!"; + helmet_type = /obj/item/clothing/head/helmet/space; + suit_type = /obj/item/clothing/suit/space + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/storage/eva) "moz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /turf/open/floor/plating, /area/station/security/lockers) +"moD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) "moK" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -43879,20 +44009,45 @@ /turf/open/floor/plating, /area/station/medical/pharmacy) "mqa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance{ - name = "Ordnance Lab Maintenance" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/plating{ - icon_state = "panelscorched" +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 }, -/area/station/science/mixing) +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) "mqC" = ( /turf/open/floor/iron, /area/station/security/prison) +"mqF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/hydroponics/glass{ + name = "Hydroponics" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/turf/open/floor/iron/dark, +/area/station/service/hydroponics) "mqK" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/corner{ @@ -43986,15 +44141,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/fore) -"mrY" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/solars/starboard/fore) "msf" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -44139,6 +44285,14 @@ /obj/structure/cable, /turf/open/floor/circuit/green/telecomms/mainframe, /area/station/tcommsat/server) +"mun" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/office) "muN" = ( /obj/machinery/computer/med_data{ dir = 8 @@ -44566,17 +44720,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/station/engineering/storage/tech) -"mBL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) "mBS" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -44594,6 +44737,28 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/aft) +"mCg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) +"mCk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) "mCm" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -44685,6 +44850,15 @@ "mDD" = ( /turf/closed/wall/rust, /area/station/cargo/warehouse) +"mDJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/hos, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hos) "mDM" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -44708,6 +44882,17 @@ "mDQ" = ( /turf/closed/wall, /area/station/security/checkpoint/science/research) +"mEj" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) "mEv" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ @@ -44725,20 +44910,6 @@ }, /turf/open/floor/iron, /area/station/security/prison) -"mEA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) "mEH" = ( /obj/effect/turf_decal/box/corners, /obj/effect/turf_decal/tile/neutral, @@ -44755,17 +44926,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/cargo/storage) -"mEJ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "mFa" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -44863,6 +45023,21 @@ /obj/structure/noticeboard/directional/north, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) +"mGp" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/solars/port/aft) "mGz" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -44935,6 +45110,16 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/atmos/storage/gas) +"mHc" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/captain) "mHd" = ( /obj/machinery/ai_slipper{ uses = 10 @@ -45028,17 +45213,28 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"mHV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ +"mIb" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating{ + icon_state = "panelscorched" }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage, +/area/station/maintenance/disposal/incinerator) +"mIq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, /turf/open/floor/iron/dark, -/area/station/science/storage) +/area/station/tcommsat/server) "mIR" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -45073,16 +45269,6 @@ /mob/living/simple_animal/bot/secbot/pingsky, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat_interior) -"mJe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) "mJo" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -45310,6 +45496,10 @@ /obj/structure/window/reinforced, /turf/open/floor/iron/dark, /area/station/command/bridge) +"mMj" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/aisat/foyer) "mMp" = ( /obj/structure/railing/corner{ dir = 8 @@ -45472,6 +45662,16 @@ /obj/effect/turf_decal/tile/red/half/contrasted, /turf/open/floor/iron/showroomfloor, /area/station/security/prison) +"mNz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar Backroom" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/bar, +/turf/open/floor/iron/dark, +/area/station/service/bar) "mNT" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -45637,6 +45837,17 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/xenobiology) +"mPM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Break Room" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/dark, +/area/station/medical/storage) "mPP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -45944,6 +46155,16 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"mSE" = ( +/obj/machinery/door/airlock/grunge{ + name = "Crematorium" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/service/crematorium, +/turf/open/floor/iron/dark, +/area/station/service/chapel/funeral) "mSM" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/delivery, @@ -46087,19 +46308,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/hallway) -"mVF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) "mVL" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -46422,15 +46630,6 @@ /obj/effect/spawner/random/entertainment/money_large, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"mZu" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "mZO" = ( /obj/structure/chair, /obj/effect/turf_decal/tile/neutral, @@ -46440,6 +46639,19 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"mZR" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "transit intersection" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/fore) "mZS" = ( /obj/machinery/light/directional/east, /obj/item/kirbyplants/random, @@ -46814,6 +47026,36 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/lobby) +"nex" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom" + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, +/turf/open/floor/iron/dark, +/area/station/security/courtroom) +"neJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "chem-passthrough" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "nfa" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/neutral, @@ -46882,6 +47124,20 @@ }, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/port) +"ngi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab" + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/effect/mapping_helpers/airlock/access/any/science/genetics, +/turf/open/floor/iron/dark, +/area/station/science/genetics) "ngl" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate{ @@ -47016,6 +47272,17 @@ }, /turf/open/floor/iron/dark, /area/station/commons/toilet/restrooms) +"njL" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) "njT" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -47068,25 +47335,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard/fore) -"nkq" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/security/lockers) "nkQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -47107,6 +47355,19 @@ }, /turf/closed/wall/r_wall, /area/station/maintenance/disposal/incinerator) +"nms" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) "nmt" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -47259,6 +47520,19 @@ /obj/structure/cable, /turf/open/floor/grass, /area/station/medical/psychology) +"npg" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "npi" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -47365,6 +47639,16 @@ }, /turf/open/floor/iron, /area/station/security/office) +"nqm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/grunge{ + name = "Morgue" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/morgue, +/turf/open/floor/iron/dark, +/area/station/medical/morgue) "nqn" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/firecloset, @@ -47433,6 +47717,19 @@ }, /turf/open/floor/iron/dark, /area/station/service/bar/atrium) +"nrh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/janitor, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) "nri" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -47571,13 +47868,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"ntb" = ( -/obj/machinery/door/airlock/mining{ - name = "Auxiliary Base" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/construction/mining/aux_base) "ntf" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -47918,14 +48208,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/starboard/fore) -"nxs" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) "nxx" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/disposalpipe/segment{ @@ -47987,6 +48269,19 @@ icon_state = "platingdmg1" }, /area/station/maintenance/starboard/fore) +"nyw" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/service/janitor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "nzu" = ( /obj/structure/window/reinforced{ dir = 4 @@ -48129,13 +48424,6 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, /area/station/engineering/gravity_generator) -"nCi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "drone bay maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) "nCn" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, @@ -48338,27 +48626,6 @@ }, /turf/open/floor/iron/dark, /area/station/science/research) -"nEH" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/aft) -"nEK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/rd, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) "nEQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -48435,15 +48702,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/commons/storage/primary) -"nFx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/hos, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) "nFy" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -48693,6 +48951,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/station/science/mixing) +"nIg" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/science/research) "nIh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -48810,25 +49082,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/showroomfloor, /area/station/medical/chemistry) -"nJG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "justicedoor_2"; - name = "Justice Chamber" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/button/door/directional/north{ - id = "justicedoor_2"; - name = "Justice Door Lock"; - normaldoorcontrol = 1; - req_access_txt = "3"; - silicon_access_disabled = 1; - specialfunctions = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/security/execution/education) "nJK" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -48934,6 +49187,10 @@ }, /turf/open/floor/iron/dark/airless, /area/station/science/mixing/chamber) +"nKO" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/security/prison/safe) "nKQ" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/caution/stand_clear, @@ -49106,20 +49363,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/security/courtroom) -"nOw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "nOI" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -49173,19 +49416,6 @@ }, /turf/open/floor/wood, /area/station/command/heads_quarters/hos) -"nPt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "nPz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -49374,16 +49604,10 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/command/nuke_storage) -"nSI" = ( -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/electrical) +"nSy" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall/rust, +/area/station/maintenance/port/greater) "nSU" = ( /obj/machinery/power/solar_control{ dir = 4; @@ -49466,6 +49690,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/central/fore) +"nTK" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/bridge) "nUf" = ( /obj/machinery/newscaster/directional/north, /obj/item/kirbyplants/random, @@ -49513,13 +49745,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/cargo/office) -"nVG" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Cargo Requests" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, -/turf/open/floor/iron/dark, -/area/station/engineering/main) "nVO" = ( /obj/machinery/button/flasher{ id = "visitorflash"; @@ -49895,12 +50120,6 @@ /obj/structure/reagent_dispensers/wall/virusfood/directional/south, /turf/open/floor/iron/dark, /area/station/medical/virology) -"occ" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 - }, -/turf/open/floor/engine, -/area/station/engineering/supermatter/room) "oce" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, @@ -49963,21 +50182,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/lobby) -"ocW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/duct, -/obj/machinery/door/airlock{ - name = "Service Hall" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) "ocZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/line{ @@ -50004,20 +50208,20 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/security/brig) -"odj" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"odd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, /turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) +/area/station/science/xenobiology) "odB" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -50099,6 +50303,25 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/starboard) +"ofv" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/external{ + name = "transit intersection" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) "ofx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -50144,16 +50367,6 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/iron/dark, /area/station/science/research) -"ofU" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "ogg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -50261,18 +50474,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/cargo/miningoffice) -"oia" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-right" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) "oic" = ( /obj/structure/chair/sofa/bench/left{ dir = 4 @@ -50378,6 +50579,17 @@ /obj/item/clothing/neck/tie/detective, /turf/open/floor/carpet/green, /area/station/maintenance/port/greater) +"oiX" = ( +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ + name = "Burn Chamber Interior Airlock" + }, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ + pixel_x = -32 + }, +/turf/open/floor/engine, +/area/station/science/mixing/chamber) "ojs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/newscaster/directional/east, @@ -50552,6 +50764,16 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron, /area/station/command/heads_quarters/hop) +"olP" = ( +/obj/machinery/door/airlock/atmos{ + name = "Filter Chamber" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "olU" = ( /obj/structure/girder, /obj/effect/turf_decal/stripes/corner, @@ -50721,17 +50943,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/fore) -"opp" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard/fore) "opE" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -50757,6 +50968,17 @@ icon_state = "platingdmg1" }, /area/station/security/prison) +"opL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy, +/turf/open/floor/iron/dark, +/area/station/medical/pharmacy) "opV" = ( /obj/structure/transit_tube/curved/flipped{ dir = 1 @@ -50774,21 +50996,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) -"oqf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "mech bay maintenance" - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) -"oqs" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/port/lesser) "oqu" = ( /obj/effect/turf_decal/plaque{ icon_state = "L9" @@ -50811,6 +51018,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"oqN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "oqS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -50927,20 +51142,6 @@ /obj/item/radio/intercom/directional/west, /turf/open/floor/iron/dark, /area/station/command/bridge) -"osS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab" - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/effect/mapping_helpers/airlock/access/any/science/genetics, -/turf/open/floor/iron/dark, -/area/station/science/genetics) "osT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -51418,6 +51619,18 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/showroomfloor, /area/station/medical/chemistry) +"ozg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/port/lesser) "ozk" = ( /obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ dir = 9 @@ -51533,14 +51746,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/primary/port) -"oAv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/plating, -/area/station/maintenance/port/greater) "oAJ" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -51603,24 +51808,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/janitor) -"oBn" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge-passthrough" - }, -/obj/machinery/door/airlock/command{ - name = "Bridge Maintenance" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brige-maint"; - name = "Bridge Blast door" - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "oBq" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -51808,15 +51995,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"oDH" = ( -/obj/machinery/door/airlock/mining{ - name = "Auxiliary Base" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/construction/mining/aux_base) "oDK" = ( /turf/closed/wall/r_wall, /area/station/science/test_area) @@ -51909,18 +52087,6 @@ icon_state = "platingdmg1" }, /area/station/maintenance/port/lesser) -"oFJ" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/processing) "oGa" = ( /obj/structure/bed, /obj/machinery/iv_drip, @@ -51955,24 +52121,6 @@ /obj/effect/turf_decal/siding/thinplating/dark, /turf/open/floor/iron/smooth_large, /area/station/maintenance/department/chapel/monastery) -"oGK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/secure_area{ - name = "EMERGENCY STORAGE"; - pixel_y = -32 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/central) "oGO" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -52195,6 +52343,14 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/storage/primary) +"oIS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/engineering) "oIU" = ( /obj/item/radio/intercom/directional/south, /obj/effect/decal/cleanable/dirt, @@ -52419,6 +52575,10 @@ /obj/structure/sign/poster/official/twelve_gauge, /turf/closed/wall, /area/station/maintenance/starboard/fore) +"oLT" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall/rust, +/area/station/engineering/supermatter/room) "oMk" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -52557,10 +52717,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/security/prison) -"oND" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/space/nearstation) "oNH" = ( /obj/structure/disposalpipe/junction/flip, /turf/open/floor/iron, @@ -52675,19 +52831,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/engine, /area/station/science/xenobiology) -"oQt" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "mass driver intersection" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "oQv" = ( /obj/structure/bookcase/random, /obj/structure/cable, @@ -52707,6 +52850,20 @@ icon_state = "platingdmg3" }, /area/station/maintenance/fore) +"oQz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/detective, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/open/floor/iron/dark, +/area/station/security/interrogation) "oQH" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -52884,18 +53041,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/iron, /area/station/maintenance/starboard/fore) -"oTK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Custodial Closet" - }, -/obj/effect/landmark/navigate_destination, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/janitor, -/turf/open/floor/iron/dark, -/area/station/service/janitor) "oTP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -52993,10 +53138,6 @@ }, /turf/open/floor/iron, /area/station/command/teleporter) -"oUR" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/security/prison/safe) "oUS" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/bag/trash, @@ -53011,14 +53152,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/science/xenobiology) -"oVD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" +"oVl" = ( +/obj/machinery/door/airlock/external{ + name = "Satellite External Airlock" }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, /turf/open/floor/iron/dark, -/area/station/security/warden) +/area/ai_monitored/turret_protected/aisat/atmos) +"oVy" = ( +/obj/machinery/power/smes, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/spider/stickyweb, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) "oVM" = ( /obj/structure/chair/office/light, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -53066,13 +53220,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/carpet/red, /area/station/service/chapel/monastery) -"oWM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "oWP" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -53174,17 +53321,19 @@ /obj/machinery/computer/security/qm, /turf/open/floor/iron/dark, /area/station/cargo/qm) -"oXF" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"oXx" = ( +/obj/machinery/door/airlock/maintenance, /obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/iron/dark, -/area/station/service/chapel/office) +/area/station/maintenance/starboard/fore) "oXK" = ( /obj/structure/table, /obj/item/hand_labeler, @@ -53314,6 +53463,21 @@ dir = 1 }, /area/station/service/chapel/dock) +"oZv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/space/nearstation) "oZw" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -53420,6 +53584,16 @@ /obj/item/reagent_containers/food/drinks/bottle/wine/unlabeled, /turf/open/floor/carpet/royalblue, /area/station/service/chapel/office) +"pal" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/pumproom) "paM" = ( /obj/structure/cable, /turf/open/floor/wood, @@ -53480,19 +53654,6 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, /turf/open/floor/plating, /area/station/cargo/warehouse) -"pbN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) "pbS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -53530,10 +53691,10 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/solars/port/fore) -"pcF" = ( -/obj/structure/sign/warning/electric_shock, +"pcC" = ( +/obj/structure/sign/warning/secure_area, /turf/closed/wall/r_wall, -/area/station/maintenance/port/aft) +/area/station/hallway/secondary/entry) "pcG" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -53799,15 +53960,6 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/iron/dark, /area/station/engineering/atmos/storage/gas) -"pgD" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/security{ - name = "Armoury" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) "pgI" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet/secure_closet/personal, @@ -53880,10 +54032,6 @@ }, /turf/open/misc/asteroid, /area/space/nearstation) -"phU" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/security/processing) "phX" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -53976,6 +54124,10 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) +"piD" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall, +/area/station/engineering/supermatter/room) "piH" = ( /obj/machinery/light/small/directional/east, /obj/structure/bed, @@ -54271,10 +54423,10 @@ }, /turf/open/floor/iron/dark, /area/station/commons/storage/primary) -"pmw" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/rust, -/area/space/nearstation) +"pmA" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall, +/area/station/maintenance/port/fore) "pmD" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -54320,16 +54472,28 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/security/brig) +"pnI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-maint-passthrough" + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab" + }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/effect/mapping_helpers/airlock/access/any/science/genetics, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "pog" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/security/courtroom) -"poi" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/port/greater) "pon" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -54392,6 +54556,24 @@ /obj/effect/spawner/random/trash/food_packaging, /turf/open/floor/plating, /area/station/maintenance/department/bridge) +"ppu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-right" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark, +/area/station/security/brig) "ppy" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -54460,15 +54642,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard/aft) -"ppY" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/turf/open/floor/engine, -/area/station/science/xenobiology) "pqb" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -54498,14 +54671,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/station/science/robotics/mechbay) -"pqr" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "pqu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -54562,6 +54727,17 @@ "pqD" = ( /turf/closed/wall, /area/station/maintenance/port/lesser) +"pqF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office" + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) "pqH" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -54683,17 +54859,6 @@ }, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"psm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/structure/sign/warning/no_smoking{ - pixel_x = 30 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard) "psn" = ( /obj/item/clothing/mask/gas/sechailer{ pixel_x = -3; @@ -54744,21 +54909,6 @@ /obj/effect/landmark/start/roboticist, /turf/open/floor/iron/dark, /area/station/science/robotics/lab) -"psN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Transferring Centre" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/processing) "psP" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -54791,20 +54941,6 @@ /obj/item/poster/random_contraband, /turf/open/floor/plating/airless, /area/space/nearstation) -"ptR" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "kilo-maint-1" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "pue" = ( /obj/structure/sign/warning/pods, /turf/closed/wall/rust, @@ -54855,6 +54991,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"pvb" = ( +/obj/structure/sign/warning/secure_area, +/obj/item/multitool, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) "pvi" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/air, @@ -54862,6 +55003,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/atmos/storage/gas) +"pvs" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "pvu" = ( /obj/machinery/vending/wardrobe/atmos_wardrobe, /obj/effect/turf_decal/tile/neutral{ @@ -54924,13 +55072,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/satellite) -"pwn" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Hazard Closet" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) "pwo" = ( /obj/machinery/computer/station_alert, /obj/effect/turf_decal/tile/neutral, @@ -54970,19 +55111,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/lab) -"pwC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "pwF" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -55025,20 +55153,6 @@ /obj/machinery/light/directional/west, /turf/open/floor/iron/dark, /area/station/science/storage) -"pxa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/atmos{ - name = "Incinerator" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 6 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron, -/area/station/engineering/atmos) "pxe" = ( /turf/closed/wall/mineral/plastitanium, /area/station/maintenance/port/aft) @@ -55067,6 +55181,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"pxE" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/command/heads_quarters/hop) "pxH" = ( /obj/machinery/hydroponics/constructable, /obj/structure/railing/corner, @@ -55117,6 +55235,25 @@ icon_state = "panelscorched" }, /area/station/maintenance/disposal/incinerator) +"pyJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "kitchen maintenance" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/bridge) "pyW" = ( /obj/structure/chair/sofa/right{ color = "#c45c57"; @@ -55166,6 +55303,20 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"pzA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder{ + pixel_x = 5 + }, +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/structure/mirror/directional/north, +/turf/open/floor/iron/dark, +/area/station/service/lawoffice) "pzC" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -55233,10 +55384,15 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) -"pAV" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/engineering/gravity_generator) +"pAQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/security/warden) "pBd" = ( /turf/closed/wall/rust, /area/station/medical/paramedic) @@ -55269,6 +55425,13 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain) +"pBN" = ( +/obj/machinery/door/airlock/mining{ + name = "Auxiliary Base" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/construction/mining/aux_base) "pBR" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -55354,17 +55517,6 @@ /obj/item/storage/book/bible, /turf/open/floor/carpet/red, /area/station/service/chapel/monastery) -"pDc" = ( -/obj/machinery/door/airlock/external{ - name = "Brig Shuttle Airlock"; - space_dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) "pDd" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -55379,6 +55531,17 @@ /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron/showroomfloor, /area/ai_monitored/security/armory) +"pDm" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/station/maintenance/starboard/aft) "pDo" = ( /turf/open/floor/iron/showroomfloor, /area/station/security/prison) @@ -55465,6 +55628,15 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/station/maintenance/department/bridge) +"pEt" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/medical/central) "pEu" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -55615,6 +55787,20 @@ }, /turf/open/floor/iron/dark, /area/station/service/kitchen) +"pFT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + name = "Theatre Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/service/theatre, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) "pFY" = ( /obj/machinery/newscaster/directional/north, /obj/effect/turf_decal/tile/blue, @@ -55685,17 +55871,18 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/main) -"pHg" = ( +"pHy" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/medical{ - name = "Psychology" +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine" }, -/obj/effect/mapping_helpers/airlock/access/all/medical/psychology, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/iron/dark, -/area/station/medical/psychology) +/area/station/engineering/supermatter/room) "pHD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -55728,21 +55915,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/drone_bay) -"pHO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/space/nearstation) "pIa" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -55889,26 +56061,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/medical/storage) -"pKg" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Chamber" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber Lockdown Shutter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/flasher/directional/west{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "pKk" = ( /obj/machinery/chem_heater/withbuffer, /obj/effect/turf_decal/bot, @@ -55944,15 +56096,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard) -"pKF" = ( -/obj/machinery/door/airlock/vault{ - id_tag = "bank"; - name = "Bank Vault" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "pKR" = ( /obj/structure/cable, /turf/closed/wall/r_wall/rust, @@ -56102,18 +56245,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/fore) -"pMR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, -/turf/open/floor/iron/dark, -/area/station/cargo/office) "pMT" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -56224,15 +56355,6 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/storage) -"pOd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault{ - name = "Vault" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "pOq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ @@ -56330,6 +56452,13 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/open/floor/grass, /area/station/service/hydroponics/garden) +"pPZ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Hazard Closet" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) "pQf" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /obj/effect/turf_decal/tile/purple/half/contrasted{ @@ -56609,19 +56738,6 @@ /obj/effect/spawner/random/engineering/tracking_beacon, /turf/open/floor/iron, /area/station/security/courtroom) -"pUn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - name = "command maintenance" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/central) "pUA" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law, @@ -56658,18 +56774,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"pVc" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/primary/aft) "pVd" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -56714,15 +56818,6 @@ "pVz" = ( /turf/closed/wall, /area/station/maintenance/port/fore) -"pVD" = ( -/obj/structure/table, -/obj/item/storage/secure/briefcase, -/obj/item/taperecorder, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "pVF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -56745,6 +56840,25 @@ icon_state = "platingdmg3" }, /area/station/maintenance/department/crew_quarters/bar) +"pVM" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/external{ + name = "transit intersection" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) "pVQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -56767,6 +56881,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/department/bridge) +"pWo" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "transit intersection" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/fore) "pWF" = ( /obj/structure/plasticflaps/opaque, /obj/machinery/navbeacon{ @@ -56834,16 +56961,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/command/bridge) -"pXJ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "pXU" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -56929,10 +57046,6 @@ /obj/structure/sign/departments/security, /turf/closed/wall, /area/station/hallway/secondary/exit/departure_lounge) -"pZF" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/science/xenobiology) "pZI" = ( /obj/machinery/modular_computer/console/preset/cargochat/security{ dir = 4 @@ -57065,6 +57178,18 @@ icon_state = "platingdmg3" }, /area/station/security/execution/education) +"qbv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark, +/area/station/security/brig) "qbA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -57253,6 +57378,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/station/science/misc_lab) +"qek" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/turf/open/floor/iron/dark, +/area/station/cargo/qm) "qez" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -57278,6 +57417,20 @@ /obj/item/seeds/ambrosia, /turf/open/floor/grass, /area/station/security/prison) +"qeJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Telecomms Storage" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tcomms) "qeT" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo" @@ -57338,17 +57491,6 @@ }, /turf/open/floor/iron/dark, /area/station/engineering/atmos) -"qfn" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "qfq" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -57490,17 +57632,15 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/commons/storage/art) -"qhF" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock"; - space_dir = 4 +"qhH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, /turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) +/area/station/command/heads_quarters/rd) "qhR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -57518,6 +57658,16 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/hallway/primary/port) +"qih" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/cargo) "qij" = ( /obj/effect/turf_decal/box/corners, /obj/effect/turf_decal/tile/neutral, @@ -57609,17 +57759,17 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) -"qjg" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/virology{ - name = "Virology Access" +"qiM" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, /turf/open/floor/iron/dark, -/area/station/medical/virology) +/area/station/maintenance/port/lesser) "qjq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -57778,22 +57928,27 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) -"qkv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Evidence" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/detective, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/open/floor/iron/dark, -/area/station/security/brig) "qlc" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 }, /turf/open/floor/iron/white, /area/station/security/prison) +"qlg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "chem-passthrough" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "qlk" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -57914,6 +58069,16 @@ }, /turf/open/floor/iron/dark, /area/station/security/execution/education) +"qnv" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/pen/fountain, +/turf/open/floor/carpet/orange, +/area/station/cargo/qm) "qny" = ( /obj/machinery/mineral/stacking_machine{ input_dir = 2 @@ -57948,6 +58113,17 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"qnK" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/crew_quarters/bar) "qnL" = ( /obj/machinery/vending/wardrobe/law_wardrobe, /obj/effect/turf_decal/tile/neutral{ @@ -58019,14 +58195,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"qok" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) "qoo" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -58085,10 +58253,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/cargo/warehouse) -"qpq" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/rust, -/area/station/engineering/supermatter/room) +"qpj" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/maintenance/starboard/aft) "qpx" = ( /obj/structure/rack, /obj/item/storage/briefcase{ @@ -58133,6 +58301,16 @@ /obj/structure/chair/office/light, /turf/open/floor/iron/showroomfloor, /area/station/medical/paramedic) +"qpZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/no_smoking{ + pixel_x = -30 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "qqg" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/newscaster/directional/east, @@ -58141,19 +58319,6 @@ icon_state = "wood-broken" }, /area/station/commons/locker) -"qqk" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) "qqJ" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -58207,18 +58372,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/aft) -"qrM" = ( -/obj/machinery/door/airlock/command{ - name = "Command Catering Access" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "brige-maint"; - name = "Bridge Blast door" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) "qrP" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral, @@ -58325,14 +58478,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/storage) -"qsN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/qm, -/turf/open/floor/iron/dark, -/area/station/cargo/qm) "qsW" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light/small/directional/east, @@ -58388,24 +58533,6 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"quk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" - }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "qur" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/neutral, @@ -58448,6 +58575,26 @@ icon_state = "platingdmg1" }, /area/station/maintenance/disposal) +"quG" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) +"qvc" = ( +/obj/machinery/door/airlock/external{ + name = "Satellite External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/atmos) "qvh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/green/filled/line, @@ -58462,6 +58609,17 @@ }, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"qvi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/dark, +/area/station/medical/paramedic) "qvq" = ( /obj/structure/flora/rock, /turf/open/misc/asteroid/lowpressure, @@ -58560,12 +58718,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/processing) -"qwk" = ( -/obj/machinery/door/airlock/atmos/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/engine, -/area/station/maintenance/disposal/incinerator) "qwx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -58578,15 +58730,6 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"qwJ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/station/cargo/warehouse) "qwK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, @@ -58594,18 +58737,37 @@ icon_state = "panelscorched" }, /area/station/maintenance/disposal/incinerator) -"qxd" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +"qwR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "research lab maintenance" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "cargo-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, /turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) +/area/station/maintenance/starboard) "qxh" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 }, /turf/open/floor/wood, /area/station/command/heads_quarters/captain) +"qxA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/command/hop, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hop) "qxC" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -58756,6 +58918,17 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/security/prison) +"qAn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post" + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) "qAo" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -58770,11 +58943,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"qAD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) "qAE" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -58814,10 +58982,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"qBk" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) "qBs" = ( /turf/closed/wall/rust, /area/station/commons/vacant_room/commissary) @@ -58860,19 +59024,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/pharmacy) -"qCr" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/service/janitor, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) "qCX" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -58895,19 +59046,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"qDB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance{ - name = "Ordnance Lab Maintenance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/science/mixing) "qDE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, @@ -58943,6 +59081,19 @@ /obj/effect/landmark/start/scientist, /turf/open/floor/iron/showroomfloor, /area/station/science/research) +"qEc" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Lab" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/research, +/turf/open/floor/iron/dark, +/area/station/science/mixing/hallway) "qEh" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -58980,6 +59131,19 @@ }, /turf/open/floor/iron/dark, /area/station/science/xenobiology) +"qEs" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) "qEu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -59072,12 +59236,6 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) -"qEW" = ( -/obj/structure/sign/warning/secure_area{ - name = "EMERGENCY STORAGE" - }, -/turf/closed/wall, -/area/station/hallway/secondary/entry) "qFb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -59124,14 +59282,6 @@ "qGK" = ( /turf/closed/wall, /area/station/medical/storage) -"qGQ" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) "qHe" = ( /turf/closed/wall/r_wall/rust, /area/ai_monitored/command/storage/eva) @@ -59198,19 +59348,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"qJu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/storage_shared) "qJB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59263,14 +59400,6 @@ /obj/machinery/holopad/secure, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"qKg" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/circuit/red, -/area/station/engineering/supermatter/room) "qKv" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59278,6 +59407,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plating, /area/station/maintenance/port/lesser) +"qKx" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/fore) "qKE" = ( /obj/structure/bed{ dir = 4 @@ -59363,6 +59506,14 @@ icon_state = "platingdmg1" }, /area/station/maintenance/fore) +"qKX" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/aft) "qLb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -59392,17 +59543,6 @@ /obj/structure/sign/departments/holy, /turf/closed/wall, /area/station/maintenance/port/fore) -"qLC" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "bridge" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/command/bridge) "qLO" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -59520,17 +59660,6 @@ }, /turf/open/floor/iron/dark, /area/station/hallway/primary/fore) -"qOy" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "qOz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/oil, @@ -59600,20 +59729,6 @@ /obj/structure/bookcase/random/reference, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) -"qPV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) "qPX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral{ @@ -59649,26 +59764,18 @@ dir = 8 }, /area/station/hallway/primary/central/fore) -"qQu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +"qQq" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" }, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics Backroom" - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, -/turf/open/floor/iron/dark, -/area/station/service/hydroponics) +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) "qQK" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 1 @@ -59732,6 +59839,18 @@ /obj/item/radio/intercom/directional/south, /turf/open/floor/iron/dark, /area/station/cargo/miningoffice) +"qRp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/pumproom) "qRv" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/tile/neutral, @@ -59863,12 +59982,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"qSI" = ( -/obj/machinery/door/window/right/directional/east{ - pixel_y = 32 - }, -/turf/open/misc/asteroid/airless, -/area/space/nearstation) "qSJ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -59975,23 +60088,6 @@ /obj/machinery/smartfridge/food, /turf/closed/wall, /area/station/service/kitchen) -"qUs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Antechamber" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"qUD" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/turret_protected/aisat_interior) "qUO" = ( /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/stripes/line{ @@ -60113,37 +60209,19 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/station/maintenance/port/lesser) -"qVU" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/computer_hardware/hard_drive/role/roboticist, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/circuitboard/aicore{ - pixel_y = 5 - }, -/obj/item/hand_labeler, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/obj/item/paicard{ - pixel_x = 6 - }, -/obj/item/aicard, -/obj/item/taperecorder{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) "qVW" = ( /obj/structure/table, /obj/item/stack/cable_coil/five, /turf/open/floor/plating, /area/station/cargo/warehouse) +"qWB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "qWN" = ( /obj/machinery/plate_press, /obj/machinery/light/small/directional/south, @@ -60220,6 +60298,13 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/mixing) +"qXn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "hydroponics maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/bridge) "qXv" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -60295,23 +60380,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/station/engineering/storage/tech) -"qYS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-airlock" - }, -/obj/machinery/door/airlock/virology{ - name = "Virology Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) "qZf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60389,19 +60457,6 @@ "qZX" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard/aft) -"qZZ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "rah" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, @@ -60447,17 +60502,6 @@ }, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai) -"raN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "command maintenance" - }, -/obj/machinery/door/poddoor/preopen{ - id = "brige-maint"; - name = "Bridge Blast door" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/crew_quarters/bar) "raS" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -60517,13 +60561,6 @@ }, /turf/open/floor/engine/n2, /area/station/engineering/atmos) -"rbw" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) "rbH" = ( /obj/machinery/computer/security/telescreen{ dir = 8; @@ -60597,6 +60634,16 @@ "rcM" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/captain) +"rcN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "xenobiology maintenance" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "rcS" = ( /obj/structure/chair/pew/left{ dir = 8 @@ -60635,20 +60682,6 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) -"rdy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hop) "rdD" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -60681,6 +60714,10 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) +"rdM" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/commons/fitness/recreation) "rdV" = ( /obj/structure/chair/pew/left{ dir = 4 @@ -60750,26 +60787,23 @@ /obj/structure/chair/bronze, /turf/open/floor/bronze, /area/station/maintenance/department/chapel) -"rfk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) "rfD" = ( /obj/machinery/shieldgen, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) +"rfF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/checkpoint/supply) "rfM" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -60873,6 +60907,29 @@ }, /turf/open/floor/iron/dark/airless, /area/station/science/mixing/chamber) +"rhH" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-right" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark, +/area/station/security/brig) +"rhK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Research Lab" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/turf/open/floor/iron/dark, +/area/station/science/lab) "rhN" = ( /turf/closed/wall, /area/station/commons/locker) @@ -60888,24 +60945,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard) -"riB" = ( -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/mixing/hallway) "riC" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -61019,17 +61058,6 @@ /obj/effect/spawner/random/clothing/costume, /turf/open/floor/plating, /area/station/maintenance/starboard) -"rjT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/security/prison) "rjV" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -61072,6 +61100,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"rkV" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/processing) "rkW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/machinery/firealarm/directional/east, @@ -61137,19 +61176,6 @@ /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, /area/station/security/interrogation) -"rmi" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) "rmI" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/ausbushes/fullgrass, @@ -61207,16 +61233,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/office) -"rmZ" = ( -/obj/machinery/computer/bank_machine, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) "rna" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61231,17 +61247,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/bar) -"rnc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Desk" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/paramedic) "rnj" = ( /obj/item/clothing/suit/hooded/techpriest{ pixel_y = 8 @@ -61346,6 +61351,14 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"roF" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Server Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/turf/open/floor/iron/dark, +/area/station/science/server) "roT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -61353,17 +61366,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/command/bridge) -"roY" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "rpb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -61609,6 +61611,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/cargo/warehouse) +"rrK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "cargo-maint-passthrough" + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "rrO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -61619,9 +61635,13 @@ /turf/open/floor/plating, /area/station/maintenance/aft) "rrQ" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/rust, -/area/station/maintenance/port/lesser) +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "rrS" = ( /obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ dir = 4 @@ -61713,17 +61733,19 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/warehouse) -"rtj" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, +"rsZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/iron/dark, -/area/station/security/processing) +/area/station/maintenance/starboard/fore) "rtr" = ( /obj/structure/table/glass, /obj/item/folder/white, @@ -61841,23 +61863,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"rui" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Law Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, -/turf/open/floor/iron/dark, -/area/station/service/lawoffice) "ruo" = ( /obj/machinery/computer/secure_data{ dir = 8 @@ -62199,27 +62204,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/cargo/storage) -"ryR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "ryW" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -62379,6 +62363,17 @@ /obj/structure/transit_tube/curved/flipped, /turf/open/space/basic, /area/space/nearstation) +"rBE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "atmospherics maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "rBH" = ( /obj/machinery/airalarm/directional/east, /turf/open/floor/wood{ @@ -62410,14 +62405,6 @@ "rCi" = ( /turf/closed/wall, /area/station/hallway/secondary/entry) -"rCw" = ( -/obj/machinery/door/airlock/maintenance{ - name = "e.v.a. maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/command/eva, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) "rCH" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -62437,6 +62424,18 @@ /obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, /turf/open/floor/iron, /area/station/engineering/atmos) +"rCX" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "rDe" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -62515,18 +62514,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/dark, /area/ai_monitored/command/storage/eva) -"rDs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/engineering/storage/tech) "rDO" = ( /obj/structure/frame/computer{ anchored = 1; @@ -62711,6 +62698,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"rFD" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "rFK" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/tile/neutral, @@ -62739,19 +62734,6 @@ /obj/machinery/light/small/directional/west, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"rGu" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "rGv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -62969,6 +62951,19 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"rKj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Council Chamber" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "rKk" = ( /turf/closed/wall/rust, /area/station/medical/surgery/aft) @@ -63001,6 +62996,13 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/fore) +"rKB" = ( +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall/r_wall, +/area/station/science/test_area) "rKI" = ( /obj/machinery/rnd/production/protolathe/department/science, /obj/effect/turf_decal/bot, @@ -63189,33 +63191,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/locker) -"rNE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/freezer{ - name = "Kitchen Coldroom" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/dark, -/area/station/service/kitchen/coldroom) "rNJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, /turf/open/floor/iron/showroomfloor, /area/station/security/medical) +"rNK" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_all, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/open/floor/iron/dark, +/area/station/engineering/storage/tech) "rNN" = ( /obj/structure/chair{ name = "Judge" @@ -63391,16 +63388,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/port/greater) -"rQj" = ( -/obj/machinery/door/airlock/security{ - id_tag = "IsolationCell"; - name = "Isolation Cell" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron, -/area/station/security/prison/safe) "rQl" = ( /obj/effect/turf_decal/plaque{ icon_state = "L11" @@ -63462,6 +63449,14 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"rQZ" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "rRm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/random/structure/crate, @@ -63595,16 +63590,6 @@ "rSi" = ( /turf/closed/wall/rust, /area/station/medical/surgery/fore) -"rSm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/aft) "rSL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -63654,16 +63639,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"rTO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "supermatter maintenance" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) "rTS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral, @@ -63892,21 +63867,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"rXA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/effect/landmark/navigate_destination, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "atmos-entrance" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos) "rXG" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 4 @@ -63949,6 +63909,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/service/library) +"rYh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) "rYi" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -64014,6 +63984,13 @@ /obj/structure/lattice/catwalk, /turf/open/floor/plating/airless, /area/station/solars/starboard/fore) +"rZC" = ( +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall/r_wall/rust, +/area/station/science/test_area) "rZE" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -64103,18 +64080,6 @@ }, /turf/open/misc/asteroid, /area/space/nearstation) -"saA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) "saE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -64154,15 +64119,6 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/wood/parquet, /area/station/command/heads_quarters/captain/private) -"sbB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post" - }, -/obj/effect/turf_decal/siding/red/corner, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) "sbC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -64341,6 +64297,19 @@ /obj/structure/noticeboard/directional/west, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) +"sdp" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/item/folder, +/obj/item/stamp/ce, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) "sdy" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -64350,10 +64319,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/starboard) -"sdM" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/maintenance/aft) "seb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -64455,14 +64420,17 @@ /obj/effect/landmark/start/prisoner, /turf/open/floor/iron, /area/station/security/prison/safe) -"sfr" = ( +"sft" = ( /obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, /obj/effect/mapping_helpers/airlock/unres{ - dir = 8 + dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, /turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) +/area/station/maintenance/port/greater) "sfx" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -64479,20 +64447,6 @@ }, /turf/open/floor/plating, /area/station/cargo/warehouse) -"sfP" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "sfV" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -64551,17 +64505,15 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/office) -"sgD" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 +"sgE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) +/turf/open/floor/plating, +/area/station/science/server) "sgF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -64650,6 +64602,16 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/lesser) +"sij" = ( +/obj/machinery/door/airlock/maintenance{ + name = "virology maintenance" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/turf/open/floor/iron/dark, +/area/station/maintenance/department/medical/central) "siF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue{ @@ -64686,42 +64648,40 @@ /obj/machinery/duct, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) -"siJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/duct, -/obj/machinery/door/airlock{ - name = "Bar" - }, -/obj/effect/turf_decal/siding/white/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/bar, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) "siL" = ( /obj/structure/table/bronze, /obj/machinery/light/small/directional/west, /obj/item/toy/plush/ratplush, /turf/open/floor/bronze/filled, /area/station/maintenance/department/chapel) -"siW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post" +"siS" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock" }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/engineering) +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "kilo-maint-1" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "sjG" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/station/service/chapel/monastery) +"sjV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "skB" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, @@ -64729,6 +64689,13 @@ "skC" = ( /turf/closed/wall/rust, /area/station/security/brig) +"skI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/station/maintenance/disposal) "skM" = ( /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, @@ -64889,10 +64856,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron, /area/station/security/brig) -"smY" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/command/bridge) "sne" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -65140,6 +65103,23 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"sqg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Law Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, +/turf/open/floor/iron/dark, +/area/station/service/lawoffice) "sqh" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -65159,20 +65139,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/security/office) -"sql" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock{ - name = "Theatre Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/access/all/service/theatre, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/service) "sqz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -65244,6 +65210,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/security/checkpoint/engineering) +"srf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/entrance, +/turf/open/floor/iron/dark, +/area/station/security/brig) "srg" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/turf_decal/bot, @@ -65294,6 +65268,19 @@ /obj/machinery/light/small/directional/south, /turf/open/floor/iron, /area/station/cargo/storage) +"srW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/turf/open/floor/iron/dark, +/area/station/security/detectives_office) "srX" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -65372,19 +65359,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) -"ssy" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) "ssF" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -65399,17 +65373,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/chapel, /area/station/service/chapel/monastery) -"ssS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/maintenance/port/fore) "ssU" = ( /obj/structure/flora/grass/jungle, /obj/effect/turf_decal/stripes/line{ @@ -65478,14 +65441,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/medical/surgery/aft) -"svm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) "svG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -65499,6 +65454,14 @@ icon_state = "panelscorched" }, /area/station/maintenance/disposal/incinerator) +"svV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/turf/open/floor/iron/dark, +/area/station/cargo/qm) "svW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -65553,6 +65516,15 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) +"swZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security{ + name = "Armoury" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/ai_monitored/security/armory) "sxe" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -65563,6 +65535,14 @@ "sxi" = ( /turf/closed/wall/r_wall, /area/station/service/chapel/office) +"sxl" = ( +/obj/machinery/door/airlock/atmos{ + name = "Filter Chamber" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "sxn" = ( /obj/structure/table/reinforced, /obj/item/crowbar/red, @@ -65681,17 +65661,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/chemistry) -"szV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/science/research) "szY" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -65710,18 +65679,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) -"sAb" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/maintenance/disposal/incinerator) "sAm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -65732,19 +65689,6 @@ "sAv" = ( /turf/closed/wall/r_wall, /area/station/security/prison) -"sAO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) "sAR" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -65801,6 +65745,10 @@ /obj/machinery/firealarm/directional/south, /turf/open/floor/iron/dark, /area/station/engineering/atmos) +"sBz" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/command/gateway) "sBC" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -65982,6 +65930,19 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron, /area/station/commons/storage/primary) +"sEc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/assembly/flash/handheld, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) "sEp" = ( /turf/open/floor/plating/airless{ icon_state = "platingdmg1" @@ -66058,13 +66019,6 @@ /obj/machinery/atmospherics/components/trinary/filter/atmos/o2, /turf/open/floor/iron/showroomfloor, /area/station/engineering/atmos) -"sFN" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) "sGV" = ( /obj/effect/turf_decal/loading_area, /obj/effect/turf_decal/tile/green, @@ -66187,17 +66141,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/grimy, /area/station/security/prison) -"sId" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Security Post" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/supply) "sIf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/misc/asteroid, @@ -66459,18 +66402,6 @@ }, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/central/fore) -"sLe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Antechamber" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "ai-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat_interior) "sLf" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -66581,6 +66512,21 @@ }, /turf/open/floor/iron/dark, /area/station/security/processing) +"sMf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics" + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmos-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) "sMh" = ( /turf/closed/wall/rust, /area/station/hallway/secondary/exit/departure_lounge) @@ -66593,6 +66539,13 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) +"sMo" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) "sMI" = ( /obj/structure/table/glass, /obj/effect/turf_decal/tile/neutral, @@ -66653,21 +66606,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/command/bridge) -"sNm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology{ - name = "Virology Access" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viro-airlock" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) "sNo" = ( /obj/machinery/food_cart, /obj/structure/window/reinforced, @@ -66699,17 +66637,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/starboard/aft) -"sNw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/storage) "sNR" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -66912,31 +66839,6 @@ }, /turf/open/floor/iron, /area/station/command/bridge) -"sQl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/duct, -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, -/turf/open/floor/iron/dark, -/area/station/service/kitchen) "sQq" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -66989,6 +66891,17 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/security/office) +"sQT" = ( +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/turf/open/floor/iron/dark, +/area/station/science/research) "sRb" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -67195,16 +67108,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/showroomfloor, /area/station/security/prison) -"sTo" = ( -/obj/machinery/door/airlock/external{ - name = "Satellite External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/atmos) "sTv" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall, @@ -67282,18 +67185,6 @@ icon_state = "wood-broken7" }, /area/station/maintenance/starboard/fore) -"sUE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab" - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/obj/effect/mapping_helpers/airlock/access/all/science/robotics, -/turf/open/floor/iron/dark, -/area/station/science/robotics/lab) "sVh" = ( /turf/closed/wall/rust, /area/station/hallway/secondary/service) @@ -67341,6 +67232,14 @@ /obj/machinery/smartfridge, /turf/closed/wall, /area/station/service/hydroponics) +"sVB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, +/turf/open/floor/plating, +/area/station/maintenance/port/greater) "sVD" = ( /obj/structure/railing{ dir = 8 @@ -67383,6 +67282,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/maintenance/disposal/incinerator) +"sWb" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard/aft) "sWj" = ( /obj/machinery/computer/station_alert{ dir = 8 @@ -67416,6 +67326,17 @@ }, /turf/open/floor/iron/dark, /area/station/security/courtroom) +"sWV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/detective, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/open/floor/iron/dark, +/area/station/security/office) "sWX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/dark, @@ -67446,6 +67367,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) +"sXE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/dark, +/area/station/medical/storage) "sXP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -67517,20 +67449,6 @@ /obj/effect/spawner/structure/window/reinforced/plasma, /turf/open/floor/plating, /area/station/maintenance/disposal/incinerator) -"sYK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/ai_monitored/turret_protected/aisat/foyer) "sYL" = ( /obj/structure/table, /obj/item/assembly/timer, @@ -67694,18 +67612,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard/fore) -"sZT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Containment Chamber Blast Door" - }, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/station/science/xenobiology) "sZV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, @@ -67879,6 +67785,16 @@ /obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/station/maintenance/starboard) +"tco" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-entrance-left" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/plating, +/area/station/security/prison) "tcY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -67886,19 +67802,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/service/chapel/dock) -"tdd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-left" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/plating, -/area/station/security/prison) "tdf" = ( /obj/machinery/camera/autoname/directional/north, /turf/open/floor/iron/dark, @@ -68076,6 +67979,10 @@ }, /turf/open/floor/iron/grimy, /area/station/service/chapel/office) +"teU" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall/rust, +/area/station/engineering/supermatter/room) "tfG" = ( /obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/tile/red{ @@ -68272,10 +68179,6 @@ /obj/structure/chair/stool/bar/directional/south, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"tim" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/command/gateway) "tiz" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -68297,14 +68200,6 @@ /obj/machinery/airalarm/directional/east, /turf/open/floor/iron, /area/station/security/brig) -"tjn" = ( -/obj/machinery/door/airlock/atmos{ - name = "Filter Chamber" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) "tjv" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -68377,16 +68272,6 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/lesser) -"tka" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Closet" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "tkO" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -68434,6 +68319,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/engineering/lobby) +"tly" = ( +/obj/machinery/door/airlock/maintenance{ + name = "xenobiology maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -24 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard) "tlA" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/leafybush, @@ -68537,6 +68434,16 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/greater) +"tmU" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) "tmV" = ( /obj/structure/reagent_dispensers/beerkeg{ pixel_y = 5 @@ -68762,6 +68669,20 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/central) +"tpD" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "tpM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -68993,16 +68914,6 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/sorting) -"ttQ" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-left" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/plating, -/area/station/security/prison) "ttZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -69047,6 +68958,19 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard) +"tur" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) "tux" = ( /obj/machinery/light/directional/east, /obj/machinery/power/apc/auto_name/directional/east, @@ -69149,25 +69073,17 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/hallway/secondary/exit/departure_lounge) -"tws" = ( +"two" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security/glass{ + id_tag = "Abandoned Cell"; + name = "Abandoned Cell" + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "kitchen maintenance" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, /turf/open/floor/iron/dark, -/area/station/maintenance/department/bridge) +/area/station/maintenance/fore) "twu" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -69202,29 +69118,16 @@ /turf/closed/wall/r_wall/rust, /area/station/engineering/supermatter/room) "twR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/hydroponics/glass{ - name = "Hydroponics" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics, +/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, /turf/open/floor/iron/dark, -/area/station/service/hydroponics) +/area/station/maintenance/starboard/fore) "twV" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -69252,19 +69155,6 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/hallway/primary/central/fore) -"txp" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "txQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, @@ -69338,21 +69228,6 @@ /obj/machinery/status_display/evac/directional/east, /turf/open/floor/iron/dark/corner, /area/station/hallway/primary/central/fore) -"tzt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom" - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/service/lawyer, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) "tzF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -69497,6 +69372,15 @@ }, /turf/open/floor/iron/dark, /area/construction/mining/aux_base) +"tAJ" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/station/maintenance/port/fore) "tAN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ @@ -69665,17 +69549,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"tCH" = ( -/obj/effect/turf_decal/delivery, +"tCQ" = ( +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ - id_tag = "Abandoned Cell"; - name = "Abandoned Cell" + name = "Security Customs Checkpoint" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, -/area/station/maintenance/fore) +/area/station/security/checkpoint/customs) "tCU" = ( /turf/closed/wall, /area/station/maintenance/port/aft) @@ -69771,6 +69652,18 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) +"tEf" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/processing) "tEt" = ( /obj/machinery/microwave{ pixel_y = 5 @@ -69926,17 +69819,6 @@ icon_state = "platingdmg1" }, /area/station/maintenance/starboard) -"tGP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Break Room" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/storage) "tGQ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -70029,6 +69911,16 @@ /obj/effect/turf_decal/box/corners, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"tHT" = ( +/obj/machinery/computer/bank_machine, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) "tIk" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -70070,19 +69962,6 @@ }, /turf/open/floor/engine/n2o, /area/station/engineering/atmos) -"tJc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault{ - name = "Vault" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/supply/vault, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "tJK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -70178,18 +70057,6 @@ }, /turf/open/floor/wood, /area/station/service/lawoffice) -"tKI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) "tKM" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ dir = 5 @@ -70231,33 +70098,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"tLr" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -28 - }, -/obj/machinery/camera/directional/north{ - c_tag = "Mech Bay"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/science/robotics/mechbay) -"tLz" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/fore) "tLT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -70393,6 +70233,16 @@ }, /turf/open/floor/iron, /area/station/security/processing) +"tOh" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "tOl" = ( /obj/structure/table, /obj/structure/cable, @@ -70617,6 +70467,10 @@ /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"tSx" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/aisat_interior) "tSI" = ( /obj/machinery/door/airlock/grunge{ id_tag = "Cabin_4"; @@ -70793,6 +70647,17 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/bar) +"tVP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Prison Wing" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "brig-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron/dark, +/area/station/security/prison) "tVS" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/prisoner/management{ @@ -70803,19 +70668,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/warden) -"tVU" = ( -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/station/maintenance/disposal) "tWa" = ( /obj/machinery/computer/secure_data, /obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ @@ -70910,6 +70762,15 @@ "tXg" = ( /turf/closed/wall/r_wall, /area/station/maintenance/department/bridge) +"tXm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theater Secondary" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/turf/open/floor/iron/dark, +/area/station/medical/medbay/central) "tXr" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -71180,17 +71041,6 @@ }, /turf/open/floor/plastic, /area/station/security/prison) -"ubh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "research lab maintenance" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "cargo-maint-passthrough" - }, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard) "ubt" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -71231,6 +71081,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) +"ubC" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) "ubF" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/table/wood, @@ -71289,13 +71147,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/fore) -"ucB" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall/r_wall, -/area/station/science/test_area) "ucP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/east, @@ -71321,6 +71172,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) +"udA" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "udE" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -71403,16 +71264,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) -"ueA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) "ueJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -71698,18 +71549,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai_upload) -"uiI" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/access/all/engineering/external, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/station/maintenance/disposal) "uiN" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/chair/stool/directional/south, @@ -71816,6 +71655,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/carpet/red, /area/station/service/chapel/monastery) +"ukT" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/maintenance/port/lesser) "ukU" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -71891,6 +71734,26 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/cargo/warehouse) +"ulP" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera/directional/west{ + c_tag = "Brig Prison Access" + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/security/brig) "ulS" = ( /turf/closed/wall, /area/station/security/courtroom) @@ -71906,18 +71769,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/showroomfloor, /area/station/security/office) -"umn" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/fore) "umq" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71933,23 +71784,15 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) -"umw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"umJ" = ( +/obj/machinery/door/firedoor, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "sci-maint-passthrough" +/obj/machinery/door/airlock/security/glass{ + name = "Cremator Room" }, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/maintenance, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/checker, +/area/station/security/processing/cremation) "unb" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -72093,6 +71936,17 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/sorting) +"uoA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/structure/sign/warning/no_smoking{ + pixel_x = 30 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard) "uoB" = ( /obj/structure/table, /obj/effect/turf_decal/stripes/corner{ @@ -72133,6 +71987,20 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/cargo/sorting) +"upz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "cargo-mailroom" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/dark, +/area/station/cargo/sorting) "upB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters{ @@ -72141,10 +72009,6 @@ }, /turf/open/floor/plating, /area/station/security/prison) -"upH" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/engineering/storage/tech) "upK" = ( /obj/effect/turf_decal/siding/thinplating/dark/end, /turf/open/floor/glass/reinforced, @@ -72213,10 +72077,6 @@ dir = 4 }, /area/station/hallway/primary/fore) -"uqS" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall/rust, -/area/station/maintenance/starboard) "uqW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72286,33 +72146,10 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/station/maintenance/department/bridge) -"urG" = ( -/obj/machinery/door/airlock/research{ - name = "Testing Lab" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/science/research, -/turf/open/floor/iron/dark, -/area/station/science/mixing/hallway) "urM" = ( /obj/structure/fluff/divine/nexus, /turf/open/floor/mineral/silver, /area/station/service/chapel/office) -"urQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "uso" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -72350,17 +72187,6 @@ "usr" = ( /turf/closed/wall/r_wall, /area/station/engineering/gravity_generator) -"usP" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "command maintenance" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, -/turf/open/floor/iron/dark, -/area/station/command/teleporter) "usX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -72386,21 +72212,6 @@ /obj/effect/turf_decal/stripes/box, /turf/open/floor/iron, /area/station/engineering/lobby) -"utg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, -/obj/effect/mapping_helpers/airlock/access/any/science/genetics, -/turf/open/floor/iron/dark, -/area/station/science/genetics) "utk" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -72502,6 +72313,15 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood, /area/station/cargo/qm) +"uvm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) "uvG" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -72551,6 +72371,16 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/security/courtroom) +"uwp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) "uwG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -72651,20 +72481,25 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/courtroom) -"uxA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"uxH" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-maint-passthrough" - }, -/obj/machinery/door/airlock/security{ - name = "Prison Wing" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, /turf/open/floor/iron/dark, -/area/station/security/prison) +/area/station/security/lockers) "uxI" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -72677,10 +72512,6 @@ "uxN" = ( /turf/closed/wall/r_wall, /area/ai_monitored/command/nuke_storage) -"uya" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/maintenance/starboard/aft) "uyd" = ( /obj/machinery/conveyor{ dir = 1; @@ -72708,54 +72539,24 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/security/courtroom) -"uys" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-passthrough" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "uyK" = ( /turf/open/floor/engine, /area/station/engineering/supermatter/room) -"uyW" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/fore) "uyX" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/aft) -"uzZ" = ( +"uzD" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Connector" }, -/obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/abandoned, /obj/effect/mapping_helpers/airlock/unres{ - dir = 1 + dir = 8 }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, /turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) +/area/station/maintenance/port/lesser) "uAc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -72800,6 +72601,14 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/chapel/monastery) +"uAt" = ( +/obj/machinery/door/airlock/atmos/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/engine/vacuum, +/area/station/maintenance/disposal/incinerator) "uAA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -72836,19 +72645,6 @@ dir = 4 }, /area/station/service/chapel/dock) -"uAK" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "transit intersection" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/fore) "uAQ" = ( /obj/structure/table, /obj/item/kitchen/fork/plastic, @@ -72886,6 +72682,14 @@ icon_state = "panelscorched" }, /area/station/maintenance/starboard) +"uBG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/fore) "uBN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -72904,6 +72708,23 @@ /obj/effect/landmark/navigate_destination/gateway, /turf/open/floor/iron, /area/station/command/gateway) +"uBX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "viro-airlock" + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Access" + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/virology, +/turf/open/floor/iron/dark, +/area/station/medical/virology) "uCa" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -72961,13 +72782,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/lesser) -"uCP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/station/maintenance/disposal) "uCQ" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/frame/machine, @@ -73049,19 +72863,6 @@ "uDT" = ( /turf/open/floor/grass, /area/station/science/genetics) -"uDX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/medical/virology) "uEi" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -73272,14 +73073,6 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/medical/medbay/lobby) -"uHi" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) "uHj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/closed/wall/r_wall, @@ -73398,24 +73191,6 @@ /obj/structure/sign/poster/random/directional/north, /turf/open/floor/iron/showroomfloor, /area/station/science/mixing) -"uJe" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/backpack, -/obj/item/extinguisher{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/extinguisher, -/obj/structure/sign/warning/no_smoking{ - pixel_x = -30 - }, -/turf/open/floor/iron/dark, -/area/station/hallway/secondary/entry) "uJg" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -73424,6 +73199,23 @@ }, /turf/open/floor/plating, /area/station/maintenance/solars/port/aft) +"uJp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ + pixel_y = -24 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/engine, +/area/station/maintenance/disposal/incinerator) "uJs" = ( /obj/machinery/computer/security/telescreen/cmo{ dir = 1; @@ -73449,6 +73241,15 @@ }, /turf/open/floor/iron/dark, /area/station/science/research) +"uJN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) "uJV" = ( /turf/closed/wall, /area/station/commons/vacant_room/commissary) @@ -73695,17 +73496,6 @@ }, /turf/open/floor/iron/white, /area/station/security/prison) -"uNs" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "medbay_front_door"; - name = "Medbay" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/general, -/turf/open/floor/iron/dark, -/area/station/medical/medbay/central) "uNt" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -73743,6 +73533,10 @@ "uNO" = ( /turf/closed/wall, /area/station/commons/toilet/restrooms) +"uOa" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/engineering/gravity_generator) "uOd" = ( /obj/item/kirbyplants/random, /turf/open/floor/iron/dark, @@ -73797,13 +73591,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/orange/visible, /turf/open/floor/plating, /area/station/engineering/atmos) -"uOQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/brig, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) "uPm" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -73821,20 +73608,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/chapel/monastery) -"uPJ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "uPM" = ( /obj/machinery/door/airlock/public/glass{ name = "Security Hallway" @@ -74001,6 +73774,17 @@ /mob/living/carbon/human/species/monkey/punpun, /turf/open/floor/wood/large, /area/station/service/bar/atrium) +"uRZ" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable/layer3, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/ai_monitored/command/storage/satellite) "uSk" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -74112,19 +73896,15 @@ /obj/structure/sign/poster/contraband/random/directional/east, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"uTY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"uUk" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chamber" +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, /turf/open/floor/iron/dark, -/area/station/command/bridge) +/area/station/engineering/storage/tech) "uUm" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -74183,18 +73963,6 @@ /obj/machinery/bluespace_vendor/directional/north, /turf/open/floor/iron/dark, /area/station/service/chapel/monastery) -"uVN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Control Room" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/command/general, -/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, -/turf/open/floor/iron/dark, -/area/station/tcommsat/computer) "uVQ" = ( /turf/closed/wall, /area/station/maintenance/solars/starboard/fore) @@ -74311,6 +74079,19 @@ "uXZ" = ( /turf/closed/wall/rust, /area/station/hallway/primary/aft) +"uYb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "sci-maint-passthrough" + }, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "uYp" = ( /obj/structure/chair/stool/bar/directional/west, /mob/living/simple_animal/hostile/russian{ @@ -74357,18 +74138,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron/dark, /area/station/medical/virology) -"uYL" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/station/maintenance/port/aft) "uYM" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -74377,6 +74146,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"uYP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/effect/mapping_helpers/airlock/access/any/science/genetics, +/turf/open/floor/iron/dark, +/area/station/science/genetics) "uYQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/event_spawn, @@ -74390,6 +74174,10 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/greater) +"uZg" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/rust, +/area/station/command/heads_quarters/hos) "uZq" = ( /obj/structure/sink{ pixel_y = 20 @@ -74619,6 +74407,23 @@ "vbi" = ( /turf/closed/wall/r_wall/rust, /area/station/maintenance/fore) +"vbj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "atmos-entrance" + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Desk" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos/storage/gas) "vbo" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -74629,6 +74434,31 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/showroomfloor, /area/station/service/bar/atrium) +"vbu" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/circuitboard/aicore{ + pixel_y = 5 + }, +/obj/item/hand_labeler, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/obj/item/paicard{ + pixel_x = 6 + }, +/obj/item/aicard, +/obj/item/taperecorder{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/rd) "vbx" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -74689,15 +74519,6 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"vcG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/station/science/server) "vcI" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -74752,10 +74573,6 @@ }, /turf/open/floor/iron/dark, /area/station/security/detectives_office) -"vee" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/engineering/gravity_generator) "vef" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/east, @@ -74794,6 +74611,25 @@ icon_state = "platingdmg1" }, /area/station/maintenance/starboard/aft) +"veF" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/aft) +"veN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/detective, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/open/floor/iron/dark, +/area/station/security/medical) "veV" = ( /obj/machinery/smartfridge/chemistry/virology/preloaded, /obj/effect/turf_decal/delivery, @@ -74825,6 +74661,20 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"veZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Storage" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/ai_monitored/turret_protected/aisat/foyer) "vfb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -74843,10 +74693,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/engineering/main) -"vfC" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/maintenance/port/lesser) "vfF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -74884,16 +74730,6 @@ icon_state = "platingdmg3" }, /area/station/hallway/secondary/entry) -"vgc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "virology maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) "vgd" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate, @@ -74951,18 +74787,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"vgX" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "vha" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -75040,6 +74864,20 @@ icon_state = "platingdmg3" }, /area/station/maintenance/fore) +"vhp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/iron/dark, +/area/station/engineering/atmos) "vhx" = ( /mob/living/simple_animal/slime, /turf/open/floor/engine, @@ -75056,23 +74894,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/carpet/royalblue, /area/station/service/chapel/office) -"vhS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "atmos-entrance" - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Desk" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/engineering/atmos/storage/gas) "vhV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, @@ -75126,6 +74947,14 @@ "vjh" = ( /turf/closed/wall, /area/station/maintenance/port/greater) +"vjY" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/fore) "vkh" = ( /turf/closed/wall, /area/station/hallway/primary/central) @@ -75165,6 +74994,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/port/fore) +"vku" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/space/nearstation) "vkC" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -75222,6 +75055,18 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"vlm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/iron/dark, +/area/station/cargo/office) "vly" = ( /obj/structure/closet/secure_closet/atmospherics, /obj/effect/turf_decal/tile/neutral, @@ -75255,6 +75100,10 @@ /obj/structure/lattice/catwalk, /turf/open/space/basic, /area/space/nearstation) +"vlQ" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall/rust, +/area/station/security/prison) "vme" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -75446,10 +75295,10 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/engineering/atmos) -"vpl" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/rust, -/area/station/engineering/gravity_generator) +"vps" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/security) "vpD" = ( /obj/structure/table/glass, /obj/item/storage/box/bodybags{ @@ -75471,6 +75320,15 @@ /obj/item/clothing/glasses/hud/health, /turf/open/floor/iron/dark, /area/station/medical/storage) +"vpU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/effect/mapping_helpers/airlock/access/any/security/detective, +/obj/effect/mapping_helpers/airlock/access/any/security/general, +/turf/open/floor/iron/dark, +/area/station/security/office) "vpV" = ( /obj/structure/chair{ dir = 4 @@ -75512,13 +75370,16 @@ }, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/ce) -"vqo" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" +"vqj" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock" }, -/turf/closed/wall/r_wall/rust, -/area/station/science/test_area) +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, +/turf/open/floor/plating/airless, +/area/station/maintenance/disposal/incinerator) "vqr" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -75564,6 +75425,14 @@ "vqw" = ( /turf/closed/wall/r_wall, /area/station/tcommsat/computer) +"vqJ" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) "vqM" = ( /turf/closed/wall/r_wall, /area/station/engineering/storage/tech) @@ -75602,6 +75471,16 @@ icon_state = "platingdmg3" }, /area/station/maintenance/port/fore) +"vrl" = ( +/obj/machinery/power/smes, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/structure/spider/stickyweb, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/department/electrical) "vrq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -75681,17 +75560,6 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/grass, /area/station/medical/psychology) -"vsM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research/glass{ - name = "Research Lab" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/access/all/science/general, -/turf/open/floor/iron/dark, -/area/station/science/lab) "vsR" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/yellow, @@ -75719,19 +75587,19 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/security/brig) -"vtm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +"vtl" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control" +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron/dark, -/area/station/security/warden) +/area/station/maintenance/fore) "vto" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/tile/neutral, @@ -75858,10 +75726,6 @@ "vuQ" = ( /turf/closed/wall/r_wall, /area/station/hallway/primary/starboard) -"vuS" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall, -/area/station/tcommsat/computer) "vvd" = ( /obj/machinery/mech_bay_recharge_port, /obj/machinery/airalarm/directional/west, @@ -76512,6 +76376,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"vCr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "engi-entrance" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/storage_shared) "vCz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -76568,22 +76445,19 @@ }, /turf/open/floor/plating, /area/station/hallway/secondary/exit/departure_lounge) -"vDz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/security/detective, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/open/floor/iron/dark, -/area/station/security/medical) "vDD" = ( /obj/machinery/smartfridge/drinks, /turf/closed/wall, /area/station/hallway/secondary/service) +"vDO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Teleporter Access" + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/access/all/command/teleporter, +/turf/open/floor/iron/dark, +/area/station/command/teleporter) "vDZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -76615,17 +76489,6 @@ }, /turf/open/floor/glass/reinforced, /area/station/service/chapel/monastery) -"vEx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "vEC" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/disposalpipe/segment{ @@ -76747,6 +76610,10 @@ }, /turf/open/floor/iron, /area/station/service/hydroponics) +"vGu" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/maintenance/starboard/aft) "vGx" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -76898,6 +76765,21 @@ }, /turf/open/floor/engine/vacuum, /area/station/engineering/atmos) +"vIR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/rd, +/turf/open/floor/iron/dark, +/area/station/science/server) "vJc" = ( /turf/closed/wall/r_wall, /area/station/science/xenobiology) @@ -76932,24 +76814,6 @@ /obj/machinery/light/directional/east, /turf/open/floor/plating/airless, /area/station/hallway/secondary/entry) -"vJo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "brig-entrance-right" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) "vJs" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating{ @@ -77121,18 +76985,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/central) -"vKS" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/plating, -/area/station/maintenance/department/cargo) "vKV" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -77259,6 +77111,27 @@ /obj/item/paicard, /turf/open/floor/wood/tile, /area/station/service/library) +"vMW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen Coldroom" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/mapping_helpers/airlock/access/all/service/kitchen, +/turf/open/floor/iron/dark, +/area/station/service/kitchen/coldroom) "vNd" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -77304,29 +77177,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) -"vND" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"vNK" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/structure/crate, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/station/maintenance/aft) "vNL" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral, @@ -77416,10 +77266,6 @@ /obj/structure/extinguisher_cabinet/directional/east, /turf/open/floor/iron/dark, /area/station/command/gateway) -"vON" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall, -/area/station/maintenance/starboard/fore) "vOO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -77564,6 +77410,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, /turf/open/floor/iron, /area/station/engineering/hallway) +"vPW" = ( +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/access/all/science/general, +/turf/open/floor/iron/dark, +/area/station/science/research) "vPX" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -77600,19 +77458,6 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron, /area/station/hallway/secondary/exit/departure_lounge) -"vQo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office" - }, -/obj/effect/landmark/navigate_destination, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood/corner, -/obj/effect/mapping_helpers/airlock/access/all/command/hop, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) "vQD" = ( /obj/structure/chair/office/light{ dir = 1 @@ -77671,6 +77516,10 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"vRK" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/engineering/atmos) "vRN" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/storage/belt/medical, @@ -77793,17 +77642,6 @@ icon_state = "panelscorched" }, /area/station/engineering/supermatter/room) -"vSO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine" - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/engineering/supermatter/room) "vSU" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, @@ -77904,6 +77742,13 @@ /obj/structure/sign/departments/medbay/alt, /turf/closed/wall/rust, /area/station/maintenance/fore) +"vUp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "drone bay maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/turf/open/floor/plating, +/area/station/maintenance/department/cargo) "vUr" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -78021,17 +77866,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/bar) -"vVj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office" - }, -/obj/effect/mapping_helpers/airlock/access/any/security/detective, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/open/floor/iron/dark, -/area/station/security/office) "vVn" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -78065,14 +77899,6 @@ /obj/structure/sign/warning/fire, /turf/closed/wall, /area/station/maintenance/port/greater) -"vVI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/access/all/security/entrance, -/turf/open/floor/iron/dark, -/area/station/security/brig) "vVM" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -78227,11 +78053,12 @@ /obj/structure/sign/poster/contraband/random/directional/south, /turf/open/floor/plating, /area/station/cargo/storage) -"vXy" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, +"vXC" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector" + }, +/obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, @@ -78498,14 +78325,16 @@ /obj/machinery/firealarm/directional/west, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"wbB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Customs Checkpoint" +"wbo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "service maintenance" }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, -/turf/open/floor/iron/dark, -/area/station/security/checkpoint/customs) +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/command/maintenance, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/bar) "wbG" = ( /obj/effect/turf_decal/sand/plating, /obj/structure/disposalpipe/segment{ @@ -78550,16 +78379,6 @@ /obj/structure/table/wood, /turf/open/floor/carpet/blue, /area/station/command/heads_quarters/hop) -"wcd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Council Chamber" - }, -/obj/effect/mapping_helpers/airlock/access/all/command/general, -/turf/open/floor/iron/dark, -/area/station/security/courtroom) "wcg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -78641,6 +78460,10 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) +"wcV" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall/r_wall, +/area/station/maintenance/department/bridge) "wcX" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -78945,23 +78768,6 @@ /obj/machinery/light/directional/north, /turf/open/floor/iron/dark, /area/station/service/chapel/dock) -"wio" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "chem-passthrough" - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry" - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "wiw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -78973,16 +78779,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron/dark, /area/station/service/bar/atrium) -"wiH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) "wiM" = ( /obj/structure/cable, /obj/structure/table, @@ -79066,6 +78862,17 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"wjC" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/circuit/red/telecomms, +/area/station/tcommsat/server) "wjD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -79121,20 +78928,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/engineering/atmos) -"wkk" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "bankvault" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "wkp" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -79182,6 +78975,17 @@ /obj/item/photo/old, /turf/open/floor/iron, /area/station/security/prison) +"wkT" = ( +/obj/machinery/door/airlock/external{ + name = "Brig Shuttle Airlock"; + space_dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/exit/departure_lounge) "wlb" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -79501,12 +79305,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/medical/surgery/fore) -"woC" = ( -/obj/structure/sign/warning/secure_area{ - name = "WARNING: Station Limits" - }, -/turf/closed/wall/rust, -/area/space/nearstation) "woG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/directional/north, @@ -79583,6 +79381,12 @@ }, /turf/open/floor/iron/showroomfloor, /area/station/science/research) +"wpd" = ( +/obj/machinery/door/window/right/directional/east{ + pixel_y = 32 + }, +/turf/open/misc/asteroid/airless, +/area/space/nearstation) "wpe" = ( /obj/machinery/power/emitter/welded{ dir = 4 @@ -79638,20 +79442,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/fore) -"wps" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "engi-maint-passthrough" - }, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator Access" - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, -/turf/open/floor/iron/dark, -/area/station/maintenance/starboard/aft) "wpu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -79680,6 +79470,16 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"wpI" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/aft) "wpP" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -79701,10 +79501,6 @@ }, /turf/open/floor/iron, /area/station/command/heads_quarters/hop) -"wpU" = ( -/obj/structure/sign/warning/engine_safety, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter/room) "wqd" = ( /obj/item/radio/intercom/directional/west, /obj/machinery/modular_computer/console/preset/cargochat/service{ @@ -79996,27 +79792,6 @@ /obj/structure/sign/warning/deathsposal, /turf/closed/wall, /area/station/maintenance/starboard/aft) -"wuD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/iron, -/area/station/hallway/primary/central) "wuE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -80057,6 +79832,20 @@ }, /turf/open/floor/grass, /area/station/security/prison) +"wuT" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/lesser) "wvj" = ( /obj/structure/rack, /obj/effect/spawner/random/techstorage/command_all, @@ -80101,20 +79890,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/science/robotics/mechbay) -"wwz" = ( -/obj/machinery/atmospherics/components/tank/air{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "wwJ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -80136,6 +79911,15 @@ /obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plating, /area/station/maintenance/department/security) +"wxa" = ( +/obj/machinery/door/airlock/vault{ + id_tag = "bank"; + name = "Bank Vault" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/access/all/supply/vault, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "wxj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -80176,6 +79960,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/maintenance/starboard/fore) +"wxM" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "wxU" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -80297,6 +80088,17 @@ /obj/machinery/light/small/directional/north, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/aft) +"wyT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/port/fore) "wyX" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -80522,6 +80324,19 @@ icon_state = "platingdmg3" }, /area/station/maintenance/starboard/aft) +"wCl" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/disposal) "wCL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -80588,17 +80403,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/station/maintenance/department/chapel/monastery) -"wEo" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "wEt" = ( /turf/closed/wall/r_wall/rust, /area/station/service/bar/atrium) @@ -80727,6 +80531,17 @@ /obj/machinery/light/floor, /turf/open/floor/engine/plasma, /area/station/engineering/atmos) +"wFG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) "wFJ" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -80776,6 +80591,14 @@ /obj/effect/spawner/random/vending/colavend, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/bar) +"wGs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock" + }, +/turf/open/floor/iron/dark, +/area/station/cargo/warehouse) "wGx" = ( /obj/effect/turf_decal/tile/blue/fourcorners, /obj/effect/turf_decal/tile/neutral{ @@ -81205,26 +81028,6 @@ dir = 1 }, /area/station/service/chapel/monastery) -"wKR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/engineering/lobby) "wLp" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -81238,6 +81041,18 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/cargo/sorting) +"wLu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/command/general, +/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms, +/turf/open/floor/iron/dark, +/area/station/tcommsat/computer) "wLC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 @@ -81623,6 +81438,14 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/fore) +"wPX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) "wQc" = ( /obj/structure/chair/sofa/bench/right{ dir = 4 @@ -81688,9 +81511,18 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/port/greater) -"wRk" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, +"wRj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload, +/turf/open/floor/engine, /area/ai_monitored/turret_protected/ai_upload) "wRl" = ( /obj/effect/decal/cleanable/dirt, @@ -81754,25 +81586,6 @@ "wRU" = ( /turf/closed/wall, /area/station/engineering/atmos) -"wRV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Captain's Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/command/captain, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/captain) "wSh" = ( /obj/structure/sign/poster/official/fruit_bowl, /turf/closed/wall/r_wall, @@ -81944,14 +81757,6 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/fore) -"wUa" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) "wUJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -82125,21 +81930,26 @@ /obj/item/analyzer, /turf/open/floor/iron/dark, /area/station/science/research) +"wWQ" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office, +/turf/open/floor/carpet/royalblue, +/area/station/service/chapel/monastery) "wWW" = ( /obj/structure/sign/warning/radiation, /turf/closed/wall, /area/station/maintenance/disposal/incinerator) -"wXn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - name = "atmospherics maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos, -/turf/open/floor/iron/dark, -/area/station/maintenance/aft) "wXv" = ( /obj/structure/railing, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -82254,17 +82064,19 @@ /obj/structure/sign/warning, /turf/closed/wall, /area/station/maintenance/port/lesser) -"wZz" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, +"wZx" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, +/obj/machinery/door/airlock/maintenance{ + name = "Ordnance Lab Maintenance" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/science/mixing) "wZL" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -82394,16 +82206,6 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"xbz" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/fore) "xbH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -82503,14 +82305,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/dark, /area/station/service/library) -"xcQ" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "xcR" = ( /obj/structure/flora/grass/jungle{ icon_state = "bushc2" @@ -82589,6 +82383,16 @@ }, /turf/open/floor/iron/dark, /area/station/medical/morgue) +"xeo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator Chamber" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/station/engineering/gravity_generator) "xeq" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -82695,14 +82499,6 @@ }, /turf/open/floor/iron, /area/station/security/office) -"xgP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock" - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) "xgV" = ( /obj/item/trash/candy, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -82916,6 +82712,19 @@ dir = 4 }, /area/station/hallway/primary/central/fore) +"xjR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Access" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/iron/dark, +/area/station/hallway/primary/central/fore) "xke" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -82968,13 +82777,6 @@ }, /turf/open/floor/plating, /area/station/security/prison) -"xkG" = ( -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "xkP" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -83006,16 +82808,18 @@ }, /turf/open/floor/iron/dark, /area/station/service/library) -"xlg" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Armoury" +"xlf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office" }, -/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/mapping_helpers/airlock/access/all/supply/general, /turf/open/floor/iron/dark, -/area/ai_monitored/security/armory) +/area/station/cargo/office) "xlk" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ @@ -83135,6 +82939,31 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/grass, /area/station/medical/psychology) +"xmN" = ( +/obj/item/storage/medkit/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/medkit/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/medkit/fire, +/obj/item/storage/medkit/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 32 + }, +/turf/open/floor/iron/dark, +/area/station/medical/storage) "xnc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/circuitboard/computer/operating, @@ -83241,21 +83070,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/iron/showroomfloor, /area/station/engineering/hallway) -"xok" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/station/maintenance/solars/port/fore) "xoI" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -83309,6 +83123,14 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central/fore) +"xpa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/security/office) "xpv" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -83325,17 +83147,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"xpx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/greater) "xpJ" = ( /obj/machinery/telecomms/server/presets/supply, /obj/machinery/light/directional/east, @@ -83380,6 +83191,17 @@ icon_state = "panelscorched" }, /area/station/maintenance/fore) +"xqE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/engineering/general, +/turf/open/floor/iron/dark, +/area/station/engineering/supermatter/room) "xqQ" = ( /obj/machinery/exoscanner, /obj/structure/lattice/catwalk, @@ -83438,6 +83260,10 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"xsO" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/wall, +/area/station/maintenance/starboard/fore) "xsX" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -83666,10 +83492,6 @@ /obj/item/radio/intercom/directional/east, /turf/closed/wall, /area/station/maintenance/disposal) -"xvc" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/hallway/secondary/entry) "xvh" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -83719,6 +83541,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, /turf/open/floor/iron/showroomfloor, /area/station/science/server) +"xvG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Autopsy" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/detective, +/turf/open/floor/iron/dark, +/area/station/security/detectives_office) "xvM" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -83937,6 +83769,29 @@ icon_state = "platingdmg1" }, /area/station/maintenance/disposal) +"xxZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "justicedoor"; + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable, +/obj/machinery/button/door/directional/west{ + id = "justicedoor"; + name = "Justice Door Lock"; + normaldoorcontrol = 1; + req_access_txt = "3"; + silicon_access_disabled = 1; + specialfunctions = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/security/armory, +/turf/open/floor/iron/dark, +/area/station/security/execution/education) "xym" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -84072,15 +83927,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron/dark, /area/station/engineering/atmos) -"xAZ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/all/engineering/general, -/turf/open/floor/iron/dark, -/area/station/maintenance/solars/starboard/aft) "xBd" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84246,17 +84092,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"xCI" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/port/lesser) "xCP" = ( /obj/structure/closet/crate{ icon_state = "crateopen" @@ -84455,6 +84290,18 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"xFW" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/station/maintenance/port/fore) "xGh" = ( /obj/machinery/computer/telecomms/server, /obj/effect/turf_decal/bot, @@ -84500,10 +84347,6 @@ }, /turf/open/floor/iron/dark, /area/station/maintenance/port/greater) -"xGR" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/wall/r_wall, -/area/station/maintenance/port/greater) "xHb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -84549,6 +84392,28 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/science/xenobiology) +"xHU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance{ + name = "medbay maintenance" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/medical/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/greater) +"xIm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/entry) "xIq" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -84768,6 +84633,17 @@ }, /turf/open/floor/wood, /area/station/service/chapel/dock) +"xKW" = ( +/obj/machinery/door/airlock/maintenance{ + name = "mech bay maintenance" + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/turf/open/floor/iron/dark, +/area/station/maintenance/starboard/fore) "xLd" = ( /obj/structure/closet/crate/freezer/blood, /obj/effect/turf_decal/tile/neutral{ @@ -84779,6 +84655,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron/dark, /area/station/medical/surgery/aft) +"xLk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/duct, +/obj/machinery/door/airlock{ + name = "Service Hall" + }, +/obj/effect/mapping_helpers/airlock/access/all/service/general, +/turf/open/floor/iron/dark, +/area/station/hallway/secondary/service) "xLC" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ @@ -84818,6 +84709,17 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/aft) +"xLY" = ( +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/lesser) "xMs" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -84839,6 +84741,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/courtroom) +"xML" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Captain's Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/captain) "xMM" = ( /obj/structure/bodycontainer/morgue, /obj/effect/turf_decal/delivery, @@ -84873,6 +84794,16 @@ "xNe" = ( /turf/closed/wall, /area/station/cargo/sorting) +"xNu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Closet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/access/all/science/xenobio, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "xNJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -84881,6 +84812,16 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/port) +"xNN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock" + }, +/obj/effect/mapping_helpers/airlock/access/all/supply/mining, +/turf/open/floor/iron/dark, +/area/station/cargo/miningoffice) "xNP" = ( /obj/machinery/power/smes/engineering, /obj/structure/extinguisher_cabinet/directional/east, @@ -84970,17 +84911,26 @@ "xPk" = ( /turf/closed/wall, /area/station/maintenance/department/bridge) -"xPs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/access/all/security/general, +"xPy" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, /turf/open/floor/iron/dark, -/area/station/security/lockers) +/area/station/maintenance/port/lesser) +"xPO" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ + cycle_id = "bridge" + }, +/obj/effect/mapping_helpers/airlock/access/all/command/general, +/turf/open/floor/iron/dark, +/area/station/command/bridge) "xPT" = ( /obj/effect/turf_decal/tile/brown/half/contrasted{ dir = 1 @@ -85034,27 +84984,26 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/ai_monitored/turret_protected/aisat/atmos) -"xRi" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock" - }, +"xRm" = ( +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/mapping_helpers/airlock/access/all/supply/general, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/engineering/ce, /turf/open/floor/iron/dark, -/area/station/hallway/secondary/exit/departure_lounge) +/area/station/command/heads_quarters/ce) "xRv" = ( /obj/machinery/recharge_station, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai_upload) -"xRz" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/command/heads_quarters/hop) "xRB" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -85291,6 +85240,19 @@ /obj/machinery/holopad, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"xUy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/command{ + name = "Captain's Tactical Relocation" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/access/all/command/captain, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/captain) "xUB" = ( /obj/item/canvas/nineteen_nineteen, /obj/item/canvas/nineteen_nineteen, @@ -85357,6 +85319,16 @@ "xVm" = ( /turf/closed/wall/r_wall/rust, /area/station/engineering/gravity_generator) +"xVt" = ( +/obj/machinery/door/airlock/security{ + id_tag = "IsolationCell"; + name = "Isolation Cell" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/access/all/security/brig, +/turf/open/floor/iron, +/area/station/security/prison/safe) "xVz" = ( /obj/structure/chair/comfy/brown, /obj/effect/spawner/random/maintenance, @@ -85495,6 +85467,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/iron, /area/station/service/janitor) +"xWS" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall/rust, +/area/station/maintenance/starboard) "xXl" = ( /obj/machinery/atmospherics/pipe/smart/simple/dark/visible, /obj/effect/turf_decal/tile/purple{ @@ -85554,13 +85530,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"xXY" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/unres, -/obj/effect/mapping_helpers/airlock/access/any/security/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/port/lesser) "xYa" = ( /obj/machinery/computer/monitor{ dir = 8 @@ -85630,19 +85599,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/brig) -"xYU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/landmark/navigate_destination, -/obj/effect/mapping_helpers/airlock/access/all/security/detective, -/turf/open/floor/iron/dark, -/area/station/security/detectives_office) "xYY" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -85713,6 +85669,10 @@ /obj/effect/turf_decal/tile/brown, /turf/open/floor/iron, /area/station/cargo/drone_bay) +"yaG" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) "yaK" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -85805,6 +85765,18 @@ /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/maintenance/port/greater) +"ybX" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/access/all/engineering/external, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/disposal) "ycd" = ( /obj/machinery/computer/upload/ai{ dir = 1 @@ -85827,6 +85799,22 @@ /obj/structure/sign/poster/random/directional/north, /turf/open/floor/iron/dark, /area/station/maintenance/department/bridge) +"ycs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance" + }, +/obj/structure/sign/directions/evac{ + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/iron/dark, +/area/station/maintenance/port/aft) "ycx" = ( /turf/closed/wall/rust, /area/station/maintenance/port/greater) @@ -86009,22 +85997,6 @@ /obj/machinery/recharger, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/captain) -"yeC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/supply/mining, -/turf/open/floor/iron/dark, -/area/station/cargo/miningoffice) "yeH" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -86096,6 +86068,14 @@ /obj/structure/cable, /turf/open/floor/plating, /area/space/nearstation) +"yfv" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/all/supply/qm, +/turf/open/floor/iron/dark, +/area/station/cargo/qm) "yfA" = ( /obj/machinery/door/firedoor, /obj/structure/sign/directions/medical{ @@ -86140,6 +86120,15 @@ icon_state = "panelscorched" }, /area/station/maintenance/port/greater) +"ygf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/station/cargo/warehouse) "ygj" = ( /obj/item/radio/intercom/directional/east, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -86155,6 +86144,20 @@ }, /turf/open/floor/iron, /area/station/command/bridge) +"ygt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical{ + name = "Operating Theater B"; + req_access_txt = "45" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/access/all/medical/surgery, +/turf/open/floor/iron/dark, +/area/station/medical/surgery/aft) "ygA" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -86275,15 +86278,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"yhJ" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Ordnance Lab" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, -/turf/open/floor/iron/dark/airless, -/area/station/science/mixing/chamber) "yhR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -86312,6 +86306,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/engineering/atmos) +"yic" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Ordnance Lab" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/effect/mapping_helpers/airlock/access/all/science/ordnance, +/turf/open/floor/iron/dark/airless, +/area/station/science/mixing/chamber) "yid" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/shutters{ @@ -86325,21 +86328,6 @@ }, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) -"yig" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/station/maintenance/fore) "yip" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -86415,11 +86403,35 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/iron/showroomfloor, /area/station/security/office) +"yjj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab" + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/mapping_helpers/airlock/access/all/science/robotics, +/turf/open/floor/iron/dark, +/area/station/science/robotics/lab) "yjq" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/duct, /turf/open/floor/plating, /area/station/maintenance/department/crew_quarters/bar) +"yjC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/port/aft) "yjM" = ( /obj/machinery/plate_press, /obj/machinery/light/small/directional/south, @@ -86529,20 +86541,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron, /area/station/security/brig) -"yli" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/any/security/detective, -/obj/effect/mapping_helpers/airlock/access/any/security/general, -/turf/open/floor/iron/dark, -/area/station/security/interrogation) "yll" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -89787,7 +89785,7 @@ aaa aaa aaa aeu -woC +jyr aeu aaa aeu @@ -91414,12 +91412,12 @@ aeu dWG wSh dWG -oUR +nKO mWy vUO esv mWy -knb +ifQ aeU aeU aeU @@ -91665,7 +91663,7 @@ aeU aeU aeU aeu -oUR +nKO eJN eJN toh @@ -92184,7 +92182,7 @@ sfi wJw dWG dWG -rQj +xVt dWG cuS kvU @@ -93482,13 +93480,13 @@ kkV sAv sAv aeU -knb +ifQ mWy sAv sAv mWy mWy -jKZ +vlQ aaa aaa aaa @@ -93977,14 +93975,14 @@ aaa aaa aaa aaa -oND -oUR +vku +nKO eJN eJN -oUR +nKO eJN eJN -oUR +nKO qJs sAv xDG @@ -95540,7 +95538,7 @@ pLi mWy aeU aUz -knb +ifQ sAv mWy mWy @@ -96033,7 +96031,7 @@ aeu aeu aeu aeu -oND +vku aUz aaa acK @@ -96310,7 +96308,7 @@ sAv xky sAv sAv -knb +ifQ cmU cmU cmU @@ -96438,7 +96436,7 @@ aaa aaa aaa qJs -woC +jyr aeu aeu aeu @@ -96513,7 +96511,7 @@ aaa aaa aaa aeu -oND +vku acm aaQ aeo @@ -96526,7 +96524,7 @@ ycx vjh vjh acm -oND +vku aeu aeu aeu @@ -96540,8 +96538,8 @@ aeu aeu mtV mtV -pKF -xGR +wxa +hgL hBJ aeu aeu @@ -96556,7 +96554,7 @@ aaa aaa aaa aaa -oUR +nKO dWG oCE dWG @@ -96724,11 +96722,11 @@ teL itF agc qEV -oXF +fBt wFu aoM kXw -bFh +mSE fZz kQT kQT @@ -96768,7 +96766,7 @@ aeo aeo aeo aaQ -oND +vku aeu aeu aeu @@ -96789,7 +96787,7 @@ aeu aeu aeu aeu -oND +vku aeo aeo aeu @@ -97050,19 +97048,19 @@ aaQ aaa aaa aaa -oND +vku aeu ycx oxK oTP kZI ybH -wkk +iqU wrE pqD iza pqD -wEo +uzD iza acm aaa @@ -97288,7 +97286,7 @@ aeu aeu aeu aeu -oND +vku acm vjh cLa @@ -97298,7 +97296,7 @@ gfc vjh aeU aeU -oND +vku aeu aeu aeu @@ -97314,7 +97312,7 @@ lVD uQn bsZ uoB -poi +hPz pst pqD mMb @@ -97497,7 +97495,7 @@ sjG cRv cRv cRv -ciq +wWQ cRv cRv lOG @@ -97549,7 +97547,7 @@ aeu aaa vjh phh -xcQ +rrQ vjh sYs vjh @@ -97573,10 +97571,10 @@ mnY vjh vjh cQD -vgX +cUD pTO csP -eMb +ozg pqD wYX iTq @@ -97586,7 +97584,7 @@ iTq iyk yhf dWG -dpA +fQO dWG dWG gsc @@ -97824,7 +97822,7 @@ cry aoe aeu vjh -emB +aAR mid xnm vjh @@ -97852,7 +97850,7 @@ sxe qlc hwP eCl -knb +ifQ cmU cmU awn @@ -98066,9 +98064,9 @@ jeZ fJr hem paM -sgD +fvr fiE -uzZ +aqt oKK tPs xGQ @@ -98318,7 +98316,7 @@ aeU vjh uWS sgi -lyC +sjV spr xKn uYp @@ -98339,7 +98337,7 @@ lpF aeu vjh ycx -qfn +dsm vjh vjh lWV @@ -98349,8 +98347,8 @@ fzu uFV qPE uEL -xXY -pqr +jpM +rFD oLO fbz ngJ @@ -98584,7 +98582,7 @@ ycx mjB ycx vjh -fpl +vXC vVC ycx vjh @@ -98831,7 +98829,7 @@ aeU aeU ycx vjh -vXy +hOJ vjh vjh ycx @@ -98854,7 +98852,7 @@ kQf uOe foQ vjh -cqW +sft ycx pYj kFx @@ -98866,7 +98864,7 @@ sZG sUu iza pqD -qOy +qiM pqD iza wDz @@ -99086,7 +99084,7 @@ mMv cmU aeU aeU -poi +hPz cXy iVk ljc @@ -99108,7 +99106,7 @@ nxZ raj vjh ycx -kUo +mhO vjh ikZ gGI @@ -99374,12 +99372,12 @@ ycx tmT rlG hcW -mZu +dFM maK hbw sUu bWo -iSV +qWB kQw fiH wDz @@ -99394,7 +99392,7 @@ sAv sAv lrq sAv -knb +ifQ cmU cmU awn @@ -99581,7 +99579,7 @@ aaa aaa aeo acm -oND +vku aeU cmU cmU @@ -99891,7 +99889,7 @@ qug iza wyY rrt -dED +gBf pqD pqD pqD @@ -99899,8 +99897,8 @@ pqD wDz wDz wDz -ttQ -tdd +tco +ggp iVj wrc wrc @@ -100093,7 +100091,7 @@ aaa aaa aaa aaa -oND +vku aeu aeu aof @@ -100133,7 +100131,7 @@ dXA vjh vjh pue -uPJ +kHh vjh vjh sTv @@ -100145,7 +100143,7 @@ thW cKR hyQ iIP -qxd +dfS wyY kKW kLU @@ -100164,7 +100162,7 @@ lBQ iVj iVj iVj -dAJ +vps iVj aeU aeu @@ -100373,7 +100371,7 @@ ycx mZn vjh vXZ -oAv +sVB tqb icG wTx @@ -100412,10 +100410,10 @@ gmo iMA iMA ryn -elf +rQZ cOf kkV -jkr +gIt lBQ lBQ hMx @@ -100642,7 +100640,7 @@ ikO oeF icG dTQ -oAv +sVB bId oFl yfU @@ -100668,10 +100666,10 @@ iMA xad adf iza -rrQ +llh wDz -ttQ -tdd +tco +ggp iVj lFS wJo @@ -100924,14 +100922,14 @@ tKt iMA xad cnQ -wUa +vqJ sAv bSY lLt rbc wjK dbu -nJG +dPt xfx dbu dbu @@ -101177,7 +101175,7 @@ bJv bJv pqD wCL -xCI +htr iza aeu acW @@ -101192,7 +101190,7 @@ qbo wLN lKe aOf -sFN +iXs acm acK cmU @@ -101201,7 +101199,7 @@ aUz xfU aeU krY -bSO +qQq krY aeU aeu @@ -101433,7 +101431,7 @@ bJv bJv bJv pqD -jXs +fPs iza pqD aeu @@ -101449,7 +101447,7 @@ mMZ ogp cxv aOf -rbw +sMo aaQ acK cmU @@ -101646,7 +101644,7 @@ aeu aUz aeU pST -umn +fCc pST aeu aeu @@ -101673,7 +101671,7 @@ vHr hBJ pZe qZV -pVD +gCn vjh eNQ eNQ @@ -101715,7 +101713,7 @@ cRm tCU tCU uUS -hND +mGp sWl uUS aeu @@ -101891,7 +101889,7 @@ acm aaa acm acm -oND +vku aeu aeu aUz @@ -101914,7 +101912,7 @@ aeu aeu vjh pVz -xpx +bAX eWP eWP ugC @@ -101953,7 +101951,7 @@ iMA xad aDQ cBD -knb +ifQ fqx drF fjq @@ -102160,7 +102158,7 @@ aeu aeu tDC fzd -xok +gqc fzd fzd aeu @@ -102214,7 +102212,7 @@ mWy csx pEx uFv -fpf +xxZ bdH hPG rRW @@ -102222,7 +102220,7 @@ vvn tSN cuR bvR -qGQ +ubC aFd jZd kYI @@ -102478,7 +102476,7 @@ pZM qnc qKI qJR -hOX +hrz tCU tCU tSP @@ -102681,7 +102679,7 @@ aeu aeu pVz kyU -ssS +wyT tGV thJ ikX @@ -102719,7 +102717,7 @@ bJv bJv iza tKt -xkG +wxM pqD aeu cnR @@ -102738,12 +102736,12 @@ cuR gTs nMD tCU -gax +tmU tCU tCU cuR -pcF -fUj +kuL +hOh cuR kMe aeU @@ -102917,7 +102915,7 @@ aaa aaa aaa agt -qSI +wpd aeU aeu aeu @@ -102941,7 +102939,7 @@ htz flS iiP vrU -uyW +hBm vFH pVz eWP @@ -102952,7 +102950,7 @@ szL hBJ cyJ iUZ -cIv +nSy rWD vjh ycx @@ -102975,7 +102973,7 @@ npr npr pqD pqD -kjk +cZh pqD pqD aeu @@ -102994,12 +102992,12 @@ iVH iuv kYL ige -uYL +lZl xqk eFd -eKr +mij pFl -saA +yjC xqk tCU aeu @@ -103188,8 +103186,8 @@ pbY tpY esG eWP -cto -cBZ +kGj +hkO eWP jUa aTg @@ -103198,13 +103196,13 @@ rfD mFR dIQ dnz -ffZ +pmA xWl wTY eWP mtV vPr -wio +kac vPr mtV wQv @@ -103222,7 +103220,7 @@ csa csa csa vjh -ebM +rdM sRr trf oLa @@ -103240,13 +103238,13 @@ aeu cBD add wDz -rjT -uxA +tVP +fNo cuR bef gGJ rhy -rSm +uwp eUm uDh fnL @@ -103453,17 +103451,17 @@ eOf xBI pVz pVz -hQT +njL xBI liL mLm jfI -eZo +qlg uvT sNR gey wQV -uys +neJ iak hxU wmp @@ -103499,7 +103497,7 @@ pqD pqD anC fkb -lyO +dYY tsY aBm gBZ @@ -103508,7 +103506,7 @@ tCU tCU gPA tCU -bnR +ycs tCU tCU tCU @@ -103701,7 +103699,7 @@ pVz ijz bkS heI -iXo +mEj bfE oBF pVz @@ -103718,13 +103716,13 @@ fsJ eWP hBJ mtV -nOw +fEj mtV mtV hBJ vjh vjh -hzG +xHU vjh vjh kex @@ -103753,12 +103751,12 @@ mlB rEh oiR jHU -lyO +dYY aQD cHE gPA pQi -pwn +pPZ pQi tCU tZD @@ -103772,9 +103770,9 @@ tzL tCU cSp xtY -azV +hOU nbb -hIL +kZK gKV aaa aaa @@ -103956,7 +103954,7 @@ aeu pVz xBI pVz -evW +kKE pVz pVz rVx @@ -103973,7 +103971,7 @@ esG eWP eWP esG -dsN +xmN pgp eUs vRU @@ -104001,7 +103999,7 @@ gcL mOK jnj rha -urQ +xPy jdh htJ nJQ @@ -104011,8 +104009,8 @@ dwg bvj bRo wDz -fbT -aDj +jjS +kyq cuR iaY xDQ @@ -104212,7 +104210,7 @@ aeu aeu pVz mWj -aPM +jdA cUT uHW ejc @@ -104236,7 +104234,7 @@ igg fne ayc pKf -tGP +mPM kHw oMJ tEt @@ -104260,7 +104258,7 @@ sOy pjC pqD kzl -lwH +bXS stu kTK wDz @@ -104394,7 +104392,7 @@ aaa aaa aaa qJs -woC +jyr aeu aeu aeu @@ -104477,7 +104475,7 @@ knE vrk pVz pVz -eAO +ikr xBI pVz eWP @@ -104486,7 +104484,7 @@ sBO bjN jzB pDY -gbo +iGI thG taW ktA @@ -104498,7 +104496,7 @@ tAx pTc qGK vjh -vEx +wFG ycx vjh csa @@ -104527,7 +104525,7 @@ mrB rMl pon vMb -lIg +ulP iFU urx nAa @@ -104773,8 +104771,8 @@ ova pJK weW iza -oqs -sfP +ckJ +wuT iza pqD hCr @@ -104788,7 +104786,7 @@ gVi uMD gVi gVi -vVj +sWV kcW kBF pNe @@ -104799,7 +104797,7 @@ hwJ vUt rmT sgC -kRH +umJ lAW kUV lwp @@ -104997,7 +104995,7 @@ kkC tZc buJ kAR -ghL +gbB jBx lUM qGK @@ -105032,7 +105030,7 @@ joS pqD fNy bMY -wZz +xLY pqD cXh cXh @@ -105045,7 +105043,7 @@ nzW kZP ylu nzW -kIK +vpU aiN ebW pNe @@ -105055,7 +105053,7 @@ dUE aVI oKW joh -nFx +mDJ afL afL afL @@ -105245,7 +105243,7 @@ pVz pVz xBI pVz -odj +qKx pVz fFH ugc @@ -105518,8 +105516,8 @@ eQb jBO hHg qGK -sNw -iRX +iZm +sXE sJM tBh nGC @@ -105811,12 +105809,12 @@ cXh cXh vVt vtf -vDz +jgv rjg uCd uCd rNJ -jxt +veN iHP hgf kiZ @@ -106006,14 +106004,14 @@ exA aeu xBI pVz -dHf +tAJ hNF jQh gNE nJV gjD qku -hco +xFW xBI kCr pVz @@ -106040,7 +106038,7 @@ oKJ fth sJM hpv -iWR +ygt rKk hpv fYw @@ -106079,8 +106077,8 @@ oRT eqA oKW oKW -ifO -svm +dKK +xpa oKW afL dMH @@ -106271,7 +106269,7 @@ vks ike rKa ury -bFk +mCk lKn pVz bul @@ -106293,7 +106291,7 @@ mKo hDX lTu rSi -hca +cuU gbf sJM qSO @@ -106332,7 +106330,7 @@ ciY lGs oKW ijl -vVj +sWV ijl oKW var @@ -106557,7 +106555,7 @@ wOk uGU omi eBH -lpu +tXm vvf geO ivK @@ -106574,7 +106572,7 @@ eRy qId fNy ofz -gzO +jfe iza cXh cXh @@ -106591,18 +106589,18 @@ vMg lDV vtf veu -cKd +mun aqq sqh thy oHm -dtp +kAt nuZ mTK xPY nYa uQj -cmY +uZg aeU aeU aeU @@ -106785,14 +106783,14 @@ gWT kMw pzV qLO -ffk +qEs cZb xBI rEM jIg pdI cUk -pHg +fcv paU tdB wcN @@ -106839,7 +106837,7 @@ plj qKS wDs lmF -ayO +pAQ hCd xmD jck @@ -107060,7 +107058,7 @@ wEJ kRu rFt sSJ -gVf +lAu sSJ rFt owm @@ -107073,9 +107071,9 @@ sRZ cjS gkv ivK -fcb +iYf iyI -uDX +eMW uqF dEF rhN @@ -107321,12 +107319,12 @@ fYU bdM vkE mpv -amY +opL kHG ofg ofg nlR -qYS +uBX iyI dEF iYW @@ -107567,7 +107565,7 @@ eMB xvW xvW nbg -rnc +qvi xvW nbg mbc @@ -107615,7 +107613,7 @@ cSX mpd lAk eKT -oVD +abB wVc eWu smR @@ -107803,7 +107801,7 @@ aba acm acm acm -oND +vku wbG aeu aeu @@ -107816,7 +107814,7 @@ rhf uKJ eoa hXv -ieO +idY xjI yhI eby @@ -107827,8 +107825,8 @@ uUm oWQ fxx pBd -uNs -irD +cTI +gAO rFt lJL ozt @@ -107839,10 +107837,10 @@ yaZ tVu aTe pcG -qjg +mnG uEX nCU -sNm +llY iBm qZS egU @@ -107880,7 +107878,7 @@ ijl mkq jhg umj -xlg +hkR caO tnH alx @@ -108068,7 +108066,7 @@ aeu aeu xBI xBI -aIP +pWo pVz sRL cVn @@ -108116,7 +108114,7 @@ pzh hri jWD oce -iOl +tOh pqD skC cXh @@ -108127,7 +108125,7 @@ uKO lGs vMg vMg -vtm +iBy vMg lGs sJW @@ -108137,7 +108135,7 @@ oKW cIk yhw jaM -pgD +swZ ctt ibJ aly @@ -108156,7 +108154,7 @@ aaa aaa aaa aaa -oND +vku aaa aaa aaa @@ -108248,7 +108246,7 @@ aaa aaa aaa qJs -woC +jyr aeu aeu aeu @@ -108348,7 +108346,7 @@ xKr xKr xKr vmr -ctp +gIF vbT etY nri @@ -108386,11 +108384,11 @@ pXU qDX bJm qbY -tKI +qbv mdp ycF oNH -atm +kJq jUJ rFh iYq @@ -108593,7 +108591,7 @@ dbK pDs geV wbf -evd +mCg sTZ foP lnc @@ -108619,7 +108617,7 @@ oJH iyI rXQ kJW -uHi +bwW qzu nCs pEu @@ -108643,15 +108641,15 @@ tiY nzW wPK eDx -vVI +srf veu dZA rrY -avZ +aEO yaE jtL sQI -icX +iPa alP oMr cdF @@ -108873,7 +108871,7 @@ xoK evD gZI ofB -vgc +sij als mYQ rhN @@ -108886,19 +108884,19 @@ rhN gZM amn pqD -oqs -ptR +ckJ +siS wDz kTK wDz wDz cXh lqn -yli +oQz cXh cXh lqn -qkv +bUJ cXh cXh mRg @@ -108906,11 +108904,11 @@ wMe ktu dzS moz -xPs -bCB +mgC +mop aka aka -icX +iPa aWK yid aka @@ -109096,7 +109094,7 @@ aeu aeu agt efG -uAK +mZR qlC rIl aUW @@ -109145,7 +109143,7 @@ rhN pqD llI haC -gXK +cUY jwg dPR wDz @@ -109158,9 +109156,9 @@ gvx ate jeR cXh -oia +rhH sFF -vJo +ppu dzS bHv dtt @@ -109345,7 +109343,7 @@ aaa aaa aaa cmU -oND +vku aeu aeu aeu @@ -109362,7 +109360,7 @@ oLs nax dkh jUU -aFP +nqm dkh dkh iYY @@ -109418,7 +109416,7 @@ skC gJL odc eoM -lHT +ksM rFK qVs anz @@ -109456,7 +109454,7 @@ aeu aeU aeU aeu -pmw +icx qJs aaa aaa @@ -109645,7 +109643,7 @@ idQ wzA jQE jQE -bEr +pEt jQE rhN rhN @@ -109661,7 +109659,7 @@ oFG iza feO tTW -vfC +ukT wDz rqx oJs @@ -109684,7 +109682,7 @@ qbf qJO qbf fQM -nkq +uxH rhd hmO xgs @@ -109901,7 +109899,7 @@ eJE mWq qox sJY -itq +hdj qCX rVA pZO @@ -109929,9 +109927,9 @@ lYG lOY weR hAP -lub +dqd sFF -cub +cCp rhd lbD hCl @@ -110171,7 +110169,7 @@ dLk uAA uwR pqD -sfr +kPk pqD sDq bRa @@ -110195,16 +110193,16 @@ rkG rhd rkG rhd -lRr +jSE rkG rhd oZE awi sMe lRJ -rtj +rkV lIr -oFJ +tEf aaa aaa aaa @@ -110435,7 +110433,7 @@ rPa yll kTK wDz -aCP +jRR wDz wDz jXN @@ -110451,7 +110449,7 @@ naw ttn psP igC -phU +iwL ntR iYS xgs @@ -110676,7 +110674,7 @@ jCm cXT jCm jCm -isr +qnK cXT qZf pHD @@ -110708,10 +110706,10 @@ nJj oBq fWX boE -laI +kgE qwi iZv -psN +gpy fiR uap lnU @@ -110899,7 +110897,7 @@ lgL efG qlC efG -kRs +bJM qlC efG qlC @@ -110936,7 +110934,7 @@ ror tBJ jCm rhT -rui +sqg rhT rxJ ssx @@ -110951,7 +110949,7 @@ tjX tTW eTg kUR -ofU +gdA kbl xCh weh @@ -111148,8 +111146,8 @@ aeu aeu aeu qlC -mdb -tCH +uBG +two efG efG xqB @@ -111186,7 +111184,7 @@ fgo egs vxa hZS -icb +bdF qHV nQY tVC @@ -111218,14 +111216,14 @@ sMa oBq nXW ekM -mJe +aVs mCm gmG gmG pDM lTj qlD -uOQ +gtU nZE tOB plp @@ -111477,7 +111475,7 @@ wWm lbX wgr nFe -enF +cmc pCm cpK pCm @@ -111665,7 +111663,7 @@ qlC gbU wpo tLT -cqw +vtl oSt hFv psR @@ -111703,10 +111701,10 @@ jCm cXT jCm jCm -ldd +wbo jCm cXT -mhu +pzA tKB foU gFO @@ -111720,14 +111718,14 @@ qhf hKB pqD iza -oWM +pvs pqD tpl duM cZW duM vlJ -xYU +srW hkq nOI buU @@ -111764,9 +111762,9 @@ gyV vac pyv tPz -qwk +dZS vKm -jAr +uAt vKm vKm vKm @@ -111978,7 +111976,7 @@ nam vkh lep ylM -euo +xvG kqs ikT glX @@ -112181,10 +112179,10 @@ gGq nZC qlC nNT -bbt +nrh efG efG -roY +hOt efG mKP sOS @@ -112221,7 +112219,7 @@ pVK jCm cXT ulS -tzt +nex ulS ulS jPB @@ -112520,7 +112518,7 @@ uWz gTD rTi agt -oND +vku qgx kCk kCk @@ -112698,7 +112696,7 @@ skR pxl mrf lAC -yig +dfm sLG hpj qlC @@ -112923,19 +112921,19 @@ aeu aeu agt acM -oND +vku aeu coy aUz aeu -oND +vku acm aaQ aeo aeo aeo acm -oND +vku acm aaQ aeo @@ -112943,7 +112941,7 @@ aeo aeo aeo acm -oND +vku aeu aeu aeu @@ -112960,7 +112958,7 @@ tVr gGs lgL efG -xbz +quG qlC efG qlC @@ -113005,7 +113003,7 @@ hQF fNe tuF fmo -akd +qKX rYv peT oNo @@ -113016,7 +113014,7 @@ ekM vGJ tdv rRA -bIs +rCX fhw sDe gmG @@ -113035,14 +113033,14 @@ uhp rTi acm osW -fkq +vqj mLN isO ePm bfA fdp mLN -fkq +vqj nmo gxi qmR @@ -113223,7 +113221,7 @@ gMK fIa uco vho -iyu +vjY scN guC sFg @@ -113244,7 +113242,7 @@ cgj lKF jCm jCm -raN +eeC jCm cXT ulS @@ -113261,15 +113259,15 @@ lUD tzI gWw tuF -oGK +dsg ekM bza nYG qUi -ety +eiY nYG pxK -pVc +bBr rvj nsQ gDJ @@ -113301,7 +113299,7 @@ vCV mLN ekp dtb -cJD +uJp yma yma kPK @@ -113521,13 +113519,13 @@ uok vkh ekM tBT -kOd +drC kbv uXZ pNV eAa ekM -fhk +lar xLH xXz gmG @@ -113549,14 +113547,14 @@ hSv wRU wRU acF -ffg +dsY kCk eyx qsv bfA drk mLN -cIs +bjJ dtb laf pOG @@ -113745,23 +113743,23 @@ dBw crM jlw jlw -gLQ +mNz dBw dBw jlw sVh -sql +pFT eCd cXT jCm nUn -dXw +iUM jCm jJx ljy gHc sIO -wcd +eMC pog bUV fyf @@ -113805,7 +113803,7 @@ cEu dCX eBi vWC -pxa +hxi vJZ vNB eEz @@ -113815,7 +113813,7 @@ qOG mLN acK yma -pwC +tur grK yma kix @@ -113961,9 +113959,9 @@ pfM pYO mQS adR -sTo +qvc aak -dNf +oVl cHu cHu aeS @@ -113977,9 +113975,9 @@ aeS cHu cHu cHu -eZr +bWI nTx -gPQ +bbl vcM uBN efG @@ -113993,7 +113991,7 @@ nIq qlk mfD gkb -cUY +pvb jdY wor yip @@ -114063,7 +114061,7 @@ oZT qEL ilD lsf -sAb +mIb mLN cud fLu @@ -114245,12 +114243,12 @@ aDQ aDQ acW uxN -rmZ +tHT skB taM hjE uCR -tJc +hJy cyp gFA kbY @@ -114263,14 +114261,14 @@ rna mma oSD lvy -siJ +fEE oPz eiz cIC dkH nvP jyI -qrM +ehF kca qAc qAc @@ -114282,7 +114280,7 @@ nby nby gLO nby -vQo +mqa nby nby ulS @@ -114459,7 +114457,7 @@ aeu aeu asZ asZ -qqk +dCu raM qUO alz @@ -114470,10 +114468,10 @@ pIy asZ adg azv -sLe +grQ azv adg -sYK +veZ chD chD chD @@ -114485,16 +114483,16 @@ acm acm aaQ aeo -oND +vku aaQ aeo aeo acm aeo -oND +vku acm qlC -cyV +pVM efG efG aDQ @@ -114541,7 +114539,7 @@ wzk hxQ lrO cVH -xRz +pxE olN ufE tmZ @@ -114561,7 +114559,7 @@ ajH gmG nIh ydj -wXn +rBE kZz bBE srX @@ -114577,7 +114575,7 @@ pED xsZ dxq jkB -cIs +bjJ kCk kCk kCk @@ -114725,7 +114723,7 @@ ceD cdV hbf mtA -qUD +tSx mha cgp tqQ @@ -114734,7 +114732,7 @@ eXj yiF iGD lTc -aag +mMj ccP ccY bzS @@ -114778,7 +114776,7 @@ ele tZB ixv vDD -ocW +xLk rnG xXp gZl @@ -114807,14 +114805,14 @@ hXK hAJ fqQ hAJ -rDs -upH +dUK +kDR hAJ fqQ woJ fhs gmG -qok +jLM gmG rRm aOg @@ -114968,7 +114966,7 @@ aaa aaa aaa aeU -pmw +icx aeu aAg asZ @@ -115018,7 +115016,7 @@ oSs sac uxN yjd -pOd +kut itn uxN qNr @@ -115047,7 +115045,7 @@ fYh fYh hbE fYh -uTY +rKj fYh fYh cEr @@ -115239,11 +115237,11 @@ ceq atB xmB acu -pKg +flL acx mIX aKI -qUs +kQQ adI xxJ mld @@ -115272,12 +115270,12 @@ kZX yfq yfq yfq -pHO +oZv fOf pll sCC goC -equ +xjR hRo sne tUe @@ -115486,7 +115484,7 @@ anH aeu asZ aAg -sAO +sEc aaI vPL cdZ @@ -115500,7 +115498,7 @@ adg lxf nIX wSY -bQx +glG msW cij cio @@ -115535,7 +115533,7 @@ qNp mDb rIY qNr -aMj +dbD bjd uwT eLp @@ -115581,13 +115579,13 @@ rIk seU htZ qYO -kTi +uUk giA nfN mjh xhH uUO -dSW +jSC pCm kHr cfL @@ -115753,7 +115751,7 @@ abC abC tlS krv -qUD +tSx ixf ccr myg @@ -115762,7 +115760,7 @@ qfq apx irE ill -fDm +aSa ccX cdl bzS @@ -115838,7 +115836,7 @@ rIk rIk viM ifv -iCv +dHq nbH nwh cfL @@ -115868,7 +115866,7 @@ cCe rTi gva rTi -oND +vku acm gGF acm @@ -116001,9 +115999,9 @@ aeu aeu asZ aAg -ssy +ata kbf -dLf +lLi abD abM poZ @@ -116012,10 +116010,10 @@ egV asZ alV acG -ecp +dsI chV adg -qPV +clm ciM chI chI @@ -116027,16 +116025,16 @@ acm aaQ aeo aeo -oND +vku aeo aeo aaQ aeo aeo -oND +vku acm qlC -cMw +ofv efG efG tPD @@ -116048,7 +116046,7 @@ bxx oTw oZP pzP -iDB +kkS jEd bsc xDm @@ -116066,7 +116064,7 @@ pyW nal mZW kLy -smY +dyK vZv kNS faN @@ -116080,18 +116078,18 @@ lMZ eyU cEr cEr -rdy +qxA ivG cEr hbE fYh fYh -ryR +dMF hyl rsw prX gBT -ltR +rNK rIk iqd mGz @@ -116309,7 +116307,7 @@ orT szg sJJ pxN -hcw +aHW mXO uet ttd @@ -116336,20 +116334,20 @@ gMg wOB wtz gHE -nPt +bdo wHR vrD smq pik -fHh +dfi vfb fgJ iQY -mEJ +iiM hAJ kax hAJ -jzl +oqN hAJ fqQ gmG @@ -116366,7 +116364,7 @@ tbk woc kuf riI -gcK +vRK enr ejX jUz @@ -116525,11 +116523,11 @@ asZ aAg asZ ihg -ePw +uRZ yah wrp fJz -aCB +fmx jpX rZN acm @@ -116563,10 +116561,10 @@ bkN rWg rsT orT -vuS +aIq suF tGZ -cnT +wLu mlw eDT fzL @@ -116613,7 +116611,7 @@ jQT wZL lDB cvR -tjn +sxl gGx sRV pDM @@ -116811,16 +116809,16 @@ qlC xHb efG tPD -hIv +wjC uWU nYp mLJ jBi vvH dRF -jQr +mIq myS -lYn +nms uMf rLh vqw @@ -116850,12 +116848,12 @@ bXj fqG tZk lGF -lek +xPO vRP bqy qoT vJB -qLC +dLh tWL tmZ inF @@ -116863,7 +116861,7 @@ oMk qsb uvi qHe -fPl +czj qsb qsb cfL @@ -116872,7 +116870,7 @@ jOw jPr gmG qYr -vNK +veF gmG pLl sOV @@ -116896,7 +116894,7 @@ tHs gva rTi rTi -pmw +icx acm cow acm @@ -117030,7 +117028,7 @@ coy aUz aeU aeu -oND +vku aeu aUz dVd @@ -117047,7 +117045,7 @@ rZN ihg acm acm -oND +vku aaQ aeo aeo @@ -117055,7 +117053,7 @@ aeo acm acm aaQ -oND +vku aeu qlC rtx @@ -117063,7 +117061,7 @@ pFd lKE tlb hoX -qZZ +kFG ete yhg dBs @@ -117078,7 +117076,7 @@ jEC rsT orT pDK -uVN +dsc aFn vqw rQl @@ -117094,7 +117092,7 @@ inT diG mZW sIf -smY +dyK vGy jRe pgQ @@ -117108,24 +117106,24 @@ swY eyU cEr cEr -bMt +hNR cEr ivG cEr fYh fYh -wuD +lDl hyl qvG kTq boN rAr rFg -eCD +mow eqV mjh -sdM -kmy +csW +olP pDM kDy nEe @@ -117392,7 +117390,7 @@ dIN cfL wRU oup -mEA +vhp wLM wLM wRU @@ -117556,12 +117554,12 @@ aeu aeu aeu aeu -oND +vku acm aaQ aeo acm -oND +vku aaa aaa aaa @@ -117577,7 +117575,7 @@ dDO txQ xnc jas -bDc +bvl nYE yhg rMH @@ -117637,7 +117635,7 @@ rFc jKz toZ bSi -rCw +kBd inQ rRm gmG @@ -117836,7 +117834,7 @@ duC pMm lRk fvU -fdJ +eBk lRk tuR iUT @@ -117888,7 +117886,7 @@ nnV wpD vKQ xGw -cXt +fXS oBA pqb lTM @@ -117911,7 +117909,7 @@ dof pvu lqU uuK -djF +qRp jrR hBk coj @@ -118132,7 +118130,7 @@ rzE rcM lpt rcM -wRV +xML rcM rcM bBS @@ -118141,7 +118139,7 @@ wVA dJd jmj fvb -bLj +vDO kPo hyl xRB @@ -118166,7 +118164,7 @@ baC fse ouk blw -lUd +bSg pJJ eaw fts @@ -118376,7 +118374,7 @@ tjU oOT qRy qUj -sQl +bDr dvk niQ dvk @@ -118385,7 +118383,7 @@ gbs tXg cEr bgn -oBn +jwi rcM scg vuF @@ -118409,7 +118407,7 @@ uvi qHe qsb cfL -lCe +wpI mjh mCE nZF @@ -118620,7 +118618,7 @@ vXa exN byy jKt -tim +sBz hEa sIq ePU @@ -118639,11 +118637,11 @@ mej sNo isA pEc -anV +wcV tmD fbF wnJ -ijG +mHc qxh iOD dKN @@ -118651,7 +118649,7 @@ vOH sHf bBS bBS -usP +bhk tqz jlh jlh @@ -118675,7 +118673,7 @@ fEu qFb jzw mHa -rXA +sMf wRO uCS twu @@ -118877,7 +118875,7 @@ fCH kGD ubt bHK -iyo +kVY spZ waL dom @@ -118891,12 +118889,12 @@ uew uew teH eHu -tws +pyJ gka gzL nAE fiy -gHF +hMZ ygj wMt gRP @@ -118906,7 +118904,7 @@ bvA ssr vSa ulp -hMv +xUy ezl rAQ wmn @@ -119186,13 +119184,13 @@ aWD rWT jGe mYt -vhS +vbj knh pRO jBs fGu chS -dLT +kep npR gwk pVF @@ -119360,7 +119358,7 @@ aaa aaa aaa aaa -oND +vku aeu aeu aeu @@ -119382,14 +119380,14 @@ iVF rTb hIs gJw -rGu +rsZ oEL bLH lRk lRk fvU -qBk -diF +xsO +eQO oLR lRk nbU @@ -119425,7 +119423,7 @@ tqz fxd civ dba -pUn +fLy oYi ufy nfa @@ -119457,7 +119455,7 @@ pLs sDy pLs pLs -jxo +pal pLs pLs ygU @@ -119648,7 +119646,7 @@ wfF knk kmw kmw -txp +oXx iKy eMf oHh @@ -119658,7 +119656,7 @@ tBj uQS iWm luh -rNE +vMW ghp qeZ oGo @@ -119671,7 +119669,7 @@ vTs dvk sbz fun -jRs +hUy oPr lrk cau @@ -119898,7 +119896,7 @@ lRk fvU lRk fvU -euz +kzT lRk lRk xaw @@ -119921,7 +119919,7 @@ dMp eBu jDF rzV -jbU +jgB gmr kjK rOX @@ -119960,7 +119958,7 @@ hTB tGz vMk ipf -siW +jYd usp ljb sPG @@ -120150,14 +120148,14 @@ cIX lRk fvU lRk -gsv +twR fvU fhH qjE lRk snT lRk -tLr +iJf npi vvd luQ @@ -120168,7 +120166,7 @@ sIq tlW jds jds -lNZ +kZx nGW mwe ios @@ -120220,7 +120218,7 @@ bxE jBs fGu chS -kBW +oIS qUU jBs bty @@ -120228,7 +120226,7 @@ xTb mkV fKg twN -rmi +bJi ekm gFQ twN @@ -120244,7 +120242,7 @@ aEf aEr aEu aeU -oND +vku aeu aaa aaa @@ -120441,7 +120439,7 @@ xPk dcE niQ ejQ -wRk +yaG kEm cTh gjc @@ -120449,7 +120447,7 @@ jat kvo wfD pmI -wRk +yaG nuL aGZ kFl @@ -120480,7 +120478,7 @@ tKS kXS nUZ ekm -qpq +teU izf dQK ekm @@ -120654,11 +120652,11 @@ aeu cIV cIU bTj -fgP +hib cIY cIV cIY -fgP +hib cJR cIU lRk @@ -120668,7 +120666,7 @@ fvU lRk kDE oCR -vON +bot tTY lRk kll @@ -120691,7 +120689,7 @@ fUZ hJm qSa eeb -fmL +gTA jHT mzs xPk @@ -120729,7 +120727,7 @@ qkm dHb qkm rqI -aEW +ewK qkm tPP bsT @@ -120922,12 +120920,12 @@ tkT lRk mmu giJ -qAD +jOn uVA tuR iJB fhY -oqf +xKW piX uVe xbH @@ -120951,7 +120949,7 @@ vJN hat qvh sRh -kmO +qXn tnc niQ kPt @@ -121179,7 +121177,7 @@ lRk fvU onm fXD -azB +qeJ nxr fvU lDW @@ -121250,7 +121248,7 @@ qOi feD ydw mmE -vSO +dLN oDG tCp qOq @@ -121262,7 +121260,7 @@ xOX okp cgb sCV -kKo +fgH aGp dES wpe @@ -121444,7 +121442,7 @@ iUT lZi bBF mWS -sUE +yjj mWS mWS bBF @@ -121469,7 +121467,7 @@ sWI nch niQ abJ -wRk +yaG xWm eON jRF @@ -121477,7 +121475,7 @@ dsC aAq nDK vPz -wRk +yaG acm skM nKn @@ -121502,12 +121500,12 @@ hlJ utf oBP ocQ -lPw +hil iEG qVN rEW goG -cAP +pHy vxC iQT qOq @@ -121682,8 +121680,8 @@ fvU lRk lRk fvU -ntb -oDH +pBN +fyA nqs cJw ahK @@ -121731,7 +121729,7 @@ tXg tXg arl arl -vND +wRj arl arl arl @@ -121744,22 +121742,22 @@ wTA kPO bax bax -bXX +eao bax fuB cuV cuV -jbo +kYU cuV xOI lrU sHk tlu -wKR +bTZ kGc mPP vww -qJu +vCr lQj gDu xtc @@ -121776,7 +121774,7 @@ pXs lOX paN hNj -clc +piD uyK uyK rKf @@ -121933,9 +121931,9 @@ aaa aca aji ius -iys +udA gwt -gPj +lRZ fQH uFM mec @@ -121976,7 +121974,7 @@ vGt eYl sMi eYd -qQu +fmV pqu pjX sWI @@ -122202,7 +122200,7 @@ rSd ikH pAx ikH -tLz +jcp ikH kat rSd @@ -122226,7 +122224,7 @@ hat xuA hsC wxq -twR +mqF evp feG sVz @@ -122238,14 +122236,14 @@ wxq hat xPk xPk -nxs +nTK xPk tXg tXg tXg arl arl -mVF +ipA arl jMF xuM @@ -122267,23 +122265,23 @@ qZX qZX qZX sxF -rfk +xRm sxF fvC vfd -aLh +ePY vfd iKg ekm twN -mBL +xqE exD ekm dgo uqD -jgS +kBz vyN -bWj +mda vyN dGG vyN @@ -122294,7 +122292,7 @@ rea gPX rBO tHO -jJR +oLT ekm aeu aeu @@ -122517,7 +122515,7 @@ bcb gwW bwk diA -fYt +gBC xwi ipO qZX @@ -122535,7 +122533,7 @@ doU eOW aGR eEZ -cUp +uJN vUD gsA lhm @@ -122708,7 +122706,7 @@ qmW nQx qmW lZi -evv +rcN xXo lZi gpI @@ -122788,7 +122786,7 @@ oDh dJw jgt bkn -iMe +uvm dGX tyI pSh @@ -122804,7 +122802,7 @@ lGp lOX hqW hNj -clc +piD uyK uyK oiS @@ -122963,7 +122961,7 @@ aeu vJc jhN qmW -dUb +kmG wpw ieb xcf @@ -122989,7 +122987,7 @@ bla lGQ qoF nJK -eXQ +moD oQH cMj iDh @@ -123037,7 +123035,7 @@ itT jjs tzH sXC -bdj +sdp hRa cEa snU @@ -123228,7 +123226,7 @@ wpw jhN qmW wRn -pZF +hZn jhN qmW wRn @@ -123275,7 +123273,7 @@ gUK eqz bMF oZw -htG +fkV ihU xNe gtC @@ -123297,7 +123295,7 @@ vqg gYS eYE dxU -jYk +pqF dpR eto uMk @@ -123318,7 +123316,7 @@ xOX lOX xwE oow -ueA +rYh rvG dES rKV @@ -123480,7 +123478,7 @@ mwp vXW wpw iPY -gTQ +odd wpw ffN nIc @@ -123501,7 +123499,7 @@ jBh lYg app jBh -pbN +iNU jBh bBF sxB @@ -123540,7 +123538,7 @@ ihU xHc vhl kua -bjX +fuq hnA sLw xWw @@ -123559,11 +123557,11 @@ xCr kmo gMC vOq -wpU +bGY wTe inf eJs -cUp +uJN nHC iwS wXM @@ -123748,7 +123746,7 @@ iCe aLS lZi rAO -umw +hZP lZi tFq kwV @@ -123762,18 +123760,18 @@ tfV wWD wdf sxB -iVb -kqW +sQT +vPW sxB aND tBH jGf -gZY +eej aND lie cqm lDu -iMz +kNY rZV rZV oNO @@ -123781,7 +123779,7 @@ oId bDR oNO vTN -pMR +xlf liB wOa hKV @@ -123813,12 +123811,12 @@ jjs qZX qZX uSH -nVG +dmf xOB qZX qZX qZX -rTO +hjj jjs qZX rKn @@ -123826,7 +123824,7 @@ lyu lDb lyu vRo -occ +ifB mjE qai rIm @@ -123987,7 +123985,7 @@ vJc qmW bXa qmW -sZT +kaP lev cQx bqi @@ -124013,7 +124011,7 @@ hIq gVC gDT ebV -osS +ngi lKC lJU qDZ @@ -124065,7 +124063,7 @@ vHF cuV xhC iFa -bkU +cAq vvT uQi cuV @@ -124079,7 +124077,7 @@ uxx aov qZX xNP -qKg +ckB xtO rnp sWj @@ -124100,7 +124098,7 @@ joY oam joY oam -oND +vku aaa aaa aaa @@ -124260,17 +124258,17 @@ nqE xgz xHR nPl -itk +uYb rHm uXI -jDK +pnI mXX aAy oyk ieV hma hZr -utg +uYP tNe mVm eog @@ -124279,28 +124277,28 @@ eog eog riC qmG -vsM +rhK ffd iQd mfY nFb nFb lWw -ubh +qwR xqV mrt -iIg +aMp viW fQg snw gQJ xoO fGI -sId +rfF sKy vRl nnA -bix +qAn qJi nIR jYL @@ -124324,7 +124322,7 @@ aNB mFb wHa veE -bkU +cAq sGW fuB cuV @@ -124342,7 +124340,7 @@ pKR qZX qZX qZX -fHM +ljA qZX jjs oTf @@ -124585,7 +124583,7 @@ xGH bOI pbS mFb -lhd +pDm egj xJc nrL @@ -124597,13 +124595,13 @@ wHa xVa mFb xvM -jea +aiB sNq vBR ppR -hVH +cFq esk -hRB +dOF dZp dZp tWI @@ -124612,7 +124610,7 @@ bZL cLX iEK oam -uCP +skI joY acm aaa @@ -124776,11 +124774,11 @@ wMs eoV lDu avo -quk +leB rST lDu nfX -eWL +vIR nfX gtW imS @@ -124802,7 +124800,7 @@ knu lNP oLH tPN -psm +uoA rZV erl pnl @@ -124812,11 +124810,11 @@ aEC vWA dyj hJa -bix +qAn hJa liB uqI -blm +upz xNe xNe fKx @@ -124827,14 +124825,14 @@ vWv oGV vzy vWF -oTK +jTa vzy vzy vzy fuB cuV cuV -jkn +ehc cuV fuB cuV @@ -124864,7 +124862,7 @@ mwv cuV vuz pop -iXy +imE quE sht gqX @@ -125022,7 +125020,7 @@ iSS ioC wpw aQl -tka +xNu uXM doy rDg @@ -125041,7 +125039,7 @@ xvr uvP gtW sBl -qVU +vbu imS imS imS @@ -125058,15 +125056,15 @@ rKI dfv xwJ lDu -fdb +rrK rZV rZV cBP -czU +qek cBP dYw -lSu -cyS +hUw +vlm lKq svW uCi @@ -125089,13 +125087,13 @@ cXX rdD nPV jSJ -qEW +cvM rgv vfZ agF etF keE -uJe +lgb cuV cuV fuB @@ -125113,8 +125111,8 @@ fuB cuV cuV fuB -wps -uya +hiQ +vGu cuV vuz kzY @@ -125128,7 +125126,7 @@ tDm oam oam joY -oND +vku aaa aaa aaa @@ -125284,7 +125282,7 @@ wpw gpI qmW vuI -pZF +hZn gpI qmW vuI @@ -125296,7 +125294,7 @@ oLH jOZ qhx lVL -nEK +gSW nzz gVt hNk @@ -125309,7 +125307,7 @@ wPp lKk vFY vFY -sbB +bhr rOJ vFY vOX @@ -125346,7 +125344,7 @@ xWq rqb rqb gRq -qCr +nyw rpb fgu djQ @@ -125531,7 +125529,7 @@ aeu aeu aeu vJc -ppY +aqP qmW vuI uXM @@ -125550,8 +125548,8 @@ eHW ckA rAL lDu -vcG -jlL +sgE +roF pMT gtW hTb @@ -125578,7 +125576,7 @@ dRW hwn nPk nEx -awj +yfv cTX lJD eKk @@ -125632,16 +125630,16 @@ nCf fuB cuV qZX -jbx -xAZ +qpj +mbS jjs qZX xxW col yfh -uiI +ybX ceH -tVU +wCl gny aeU aaa @@ -125792,7 +125790,7 @@ qmW nQx qmW wpw -wwz +tpD aew uXM jhN @@ -125821,7 +125819,7 @@ wzI gER pdg dvC -szV +cYA iwB wAC nvq @@ -125833,7 +125831,7 @@ rZV vOX oXw wyG -kfx +qnv uvj cBP iht @@ -125852,7 +125850,7 @@ jnp tOy wJn wJn -vKS +fBh cQR cQR pIl @@ -125866,8 +125864,8 @@ eLm eLm eLm mkk -gWF -qEW +xIm +cvM mkk rCi jEK @@ -125884,8 +125882,8 @@ aeu usr xVm usr -lRD -vee +xeo +jzH usr aeu xTG @@ -126050,7 +126048,7 @@ fEC wRn lDu osn -gOA +tly lDu oLH lDu @@ -126107,7 +126105,7 @@ tOy akD shW bAS -nCi +vUp byb oLo uAc @@ -126115,7 +126113,7 @@ cQR rDh eZL hIm -gdf +cPZ vJh iWL hSy @@ -126139,7 +126137,7 @@ bUp aUz aeu usr -pAV +uOa cJf ijc uPm @@ -126298,7 +126296,7 @@ aaa aaa aeu aeu -oND +vku aeU aeu vJc @@ -126338,7 +126336,7 @@ bWZ mDQ qGq qGq -bZB +nIg sRW tAU lDu @@ -126348,7 +126346,7 @@ rZV dYw cBP cBP -qsN +svV dYw lmO orD @@ -126378,7 +126376,7 @@ lmi aXA gNM pvF -wbB +tCQ slC lhx owX @@ -126577,7 +126575,7 @@ eGp vGx bQD pio -gTu +qpZ eGp tAG vOX @@ -126586,12 +126584,12 @@ lDu lDu wzI ovo -aYj +qhH imS wzI rql -gop -riB +eBl +loo gQS mSe yfJ @@ -126661,7 +126659,7 @@ xVm aeu xTG xTG -hti +eGL xTG xTG aeu @@ -126822,15 +126820,15 @@ vOX rZV seT mrt -fQy +fsd kWf eGp rZV cQJ -iHI +iFd sHw fML -jNG +gxW oHR fkP vKE @@ -126890,7 +126888,7 @@ iSw nXu eLm koa -wbB +tCQ eLm eLm dnl @@ -127085,13 +127083,13 @@ rZV vOX rZV rZV -cdk -arA +lcZ +fpz rZV vOX rZV pJs -hUJ +npg vOX rZV rZV @@ -127118,8 +127116,8 @@ fyS vOX qAR oUz -xgP -wiH +wPX +xNN qAR qAR mCL @@ -127167,7 +127165,7 @@ bUd aeu aeu usr -vpl +dxm lzc lAs qqM @@ -127175,16 +127173,16 @@ usr aeu aeu uyX -nEH +sWb uyX aeU aeU aeu aeu aeu -pmw +icx aeu -oND +vku aeU aaa aaa @@ -127340,7 +127338,7 @@ rZV aeu aeu asj -bBw +cly ntG rZK xeI @@ -127360,7 +127358,7 @@ llU mwm fhp hag -urG +qEc gbv qnS dbY @@ -127394,7 +127392,7 @@ tDG kTD cQR frK -kVR +qih tNQ dNx xhJ @@ -127607,7 +127605,7 @@ vOX kIE hyo wmB -goe +aGu bOD kWf rxo @@ -128135,15 +128133,15 @@ gQS ior jNr gQS -mHV +aOI yel -kpe +cPo yel yel lDu lDu kWf -bYK +eJy izu iRq aLI @@ -128178,7 +128176,7 @@ tej wkB iWT iOW -jSE +mnK iOW vOW aeu @@ -128368,12 +128366,12 @@ aeu aeu aeu rpl -eNe +oVy eki rxX dBe gVc -nSI +vrl vOX fhe kLn @@ -128388,14 +128386,14 @@ tKn rfQ iue rfQ -lkG +ipS xXl qXl pQf fQP eLb xTg -yhJ +yic rhz tKM lDu @@ -128642,9 +128640,9 @@ acK gJi fWd frq -hzn +bdY qVG -cKL +oiX rbj rbj cbo @@ -128661,7 +128659,7 @@ rZV gKI qAR oUz -yeC +dez oUz gKI qAR @@ -128890,8 +128888,8 @@ aeu aeu lDu lDu -mrY -uqS +lWm +xWS lDu kWf pJs @@ -128909,7 +128907,7 @@ rbj rbj rbj tQH -yhJ +yic pQX nKD oLH @@ -128939,7 +128937,7 @@ sMh iZX lkp nqx -lpG +awt qjK evu seN @@ -128947,7 +128945,7 @@ iVy gLK rZO qjK -hwR +heX oHG tBn yeK @@ -129167,7 +129165,7 @@ gXR hpZ nxP vEK -cJE +cZx lDu iZa mrt @@ -129222,7 +129220,7 @@ bYe mkk rCi rCi -xvc +pcC aeU cmU cmU @@ -129418,7 +129416,7 @@ ued iZa lDu iZa -mqa +haU rrl sYL rbj @@ -129432,7 +129430,7 @@ rZV qJs rLR oUz -jVY +fxY oUz fae qJs @@ -129452,7 +129450,7 @@ acm vOW wJe wJe -kkp +iCP pZA fGM iOW @@ -129462,7 +129460,7 @@ kQO iOW gqn sMh -xRi +fkT iOW iOW vOW @@ -129670,7 +129668,7 @@ rZV tck vQe mrt -fQy +fsd kWf eGp mMA @@ -129831,7 +129829,7 @@ aaa aaa aaa qJs -woC +jyr aeu aeu aeu @@ -129918,7 +129916,7 @@ aeu aeu uVQ uVQ -dUk +mbl uVQ uVQ aeu @@ -130182,7 +130180,7 @@ aeu aeu rZV avo -pXJ +lpp khy vOX sJS @@ -130196,7 +130194,7 @@ efD viL nIf cZp -qDB +wZx kWf sJS aaa @@ -130432,7 +130430,7 @@ aeu aeu aeu waT -opp +hdY waT aeu aeu @@ -130480,7 +130478,7 @@ aaa aaa aaa iOW -pDc +wkT wzy emb iOW @@ -130490,7 +130488,7 @@ qJs iOW emb wzy -qhF +fxw iOW aaa aaa @@ -130638,7 +130636,7 @@ aeu aeu aeu dME -qwJ +ygf wAv qgV itR @@ -130962,12 +130960,12 @@ aaa rZV mtc mtc -oQt +dWj ymc fbD wIF gIZ -dMy +daG vGx vOX aaa @@ -131195,7 +131193,7 @@ aaa aaa aaa aaa -oND +vku aeu aeU aUz @@ -131991,7 +131989,7 @@ qJs aeu aeU aeU -oND +vku acm aeo aaa @@ -132185,7 +132183,7 @@ wpu amU dsD heD -fIY +wGs dME uZS itR @@ -132497,11 +132495,11 @@ rZl cmU cmU aUz -oND +vku aeo aeo aaQ -oND +vku aeu aeu aeu @@ -133276,7 +133274,7 @@ aaa aeu aeu aeu -oND +vku acm acm aaa @@ -133721,7 +133719,7 @@ aeu aeu aeu aeu -lfI +brh ogA ogA ogA @@ -133782,12 +133780,12 @@ pyg cmU aeU aeU -oND +vku acm aaQ aeo acm -oND +vku aeu aeU aUz @@ -135317,7 +135315,7 @@ acm acm aeo acm -oND +vku aeu aeu aeu @@ -135491,7 +135489,7 @@ aaa aaa aaa qJs -woC +jyr aeu aeu aeu @@ -135582,7 +135580,7 @@ amq aeU aeu aeu -oND +vku acm aaQ aeo @@ -136087,7 +136085,7 @@ aeo aeo acm aaQ -oND +vku aeu aeu aeu @@ -137636,9 +137634,9 @@ aeo acm acm acm -oND +vku aeu -oND +vku acm aeo aeo @@ -138329,7 +138327,7 @@ aaa aaa aaa aaa -woC +jyr aeu aeu aeu @@ -138911,7 +138909,7 @@ aaa aaa aaa aeu -oND +vku aeU aUz aaa @@ -139698,7 +139696,7 @@ aeu aeu aeu aeu -oND +vku aaQ aeo aeo @@ -141771,7 +141769,7 @@ aeU aUz aeU aeu -pmw +icx aaa aaa aaa @@ -142526,7 +142524,7 @@ aeu aeu coy cmU -pmw +icx acm aeo aaQ @@ -142536,7 +142534,7 @@ acm acm aaQ aeo -pmw +icx aeu aeu aeu @@ -143047,7 +143045,7 @@ nst oDK kHL oDK -vqo +rZC aeu aeu aeu @@ -143230,7 +143228,7 @@ aaa aaa aaa aaa -woC +jyr aeu aeu aeu @@ -144585,7 +144583,7 @@ aeu aeu aeu aeu -ucB +rKB oDK uFm oDK @@ -145048,7 +145046,7 @@ aeu aeu aeu aeu -woC +jyr aaa aaa aaa @@ -147130,14 +147128,14 @@ aaa aaa aaa aaa -woC +jyr aaa aaa aaa aaa aaa aaa -woC +jyr aeu aaa aaa @@ -147667,12 +147665,12 @@ aaa aaa aaa aeU -woC +jyr aUz aeU aeu aeu -woC +jyr aeU aaa aaa diff --git a/_maps/map_files/KiloStation/KiloStation_skyrat.dmm b/_maps/map_files/KiloStation/KiloStation_skyrat.dmm index d44648d0ed7..54075e3b550 100644 --- a/_maps/map_files/KiloStation/KiloStation_skyrat.dmm +++ b/_maps/map_files/KiloStation/KiloStation_skyrat.dmm @@ -38519,7 +38519,6 @@ pixel_x = 5 }, /obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/lawyer, /obj/effect/turf_decal/bot, /obj/structure/mirror/directional/north, /turf/open/floor/iron/dark, @@ -44753,9 +44752,9 @@ /obj/structure/table, /obj/item/clipboard, /obj/item/folder/yellow, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /obj/item/pen/fountain, /turf/open/floor/carpet/orange, /area/station/cargo/qm) @@ -55110,10 +55109,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, /obj/item/clothing/neck/stethoscope{ pixel_y = 5 }, @@ -57866,10 +57865,9 @@ "mjr" = ( /obj/structure/table, /obj/item/clipboard, -/obj/item/computer_hardware/hard_drive/role/roboticist, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /obj/item/circuitboard/aicore{ pixel_y = 5 }, @@ -73903,9 +73901,9 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/item/folder, /obj/item/stamp/ce, /turf/open/floor/iron/dark, diff --git a/_maps/map_files/KiloStation/skyrat_old/KiloStation_skyrat_old.dmm b/_maps/map_files/KiloStation/skyrat_old/KiloStation_skyrat_old.dmm index b6e906f0255..908f5c0305e 100644 --- a/_maps/map_files/KiloStation/skyrat_old/KiloStation_skyrat_old.dmm +++ b/_maps/map_files/KiloStation/skyrat_old/KiloStation_skyrat_old.dmm @@ -38401,7 +38401,6 @@ pixel_x = 5 }, /obj/structure/table, -/obj/item/computer_hardware/hard_drive/role/lawyer, /obj/structure/cable, /obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/iron/dark, @@ -44063,9 +44062,9 @@ }, /obj/item/clipboard, /obj/item/folder/yellow, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /turf/open/floor/iron, /area/station/cargo/qm) "gQJ" = ( @@ -53701,10 +53700,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, /obj/item/clothing/neck/stethoscope{ pixel_y = 5 }, @@ -56224,10 +56223,9 @@ }, /obj/structure/table, /obj/item/clipboard, -/obj/item/computer_hardware/hard_drive/role/roboticist, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /obj/item/circuitboard/aicore{ pixel_y = 5 }, @@ -70899,9 +70897,9 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/item/folder, /obj/item/stamp/ce, /turf/open/floor/iron/dark, diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 31f04f324a5..f67340a02e8 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -5499,17 +5499,6 @@ /obj/machinery/light_switch/directional/east, /turf/open/floor/iron, /area/station/service/hydroponics) -"bZL" = ( -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/effect/turf_decal/tile/neutral/half/contrasted{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/command/heads_quarters/ce) "bZR" = ( /obj/structure/closet, /obj/effect/spawner/random/maintenance, @@ -6009,6 +5998,19 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/iron, /area/station/security/prison) +"cnp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/library, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 2 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) "cnv" = ( /obj/machinery/power/terminal{ dir = 1 @@ -7437,6 +7439,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/service/hydroponics) +"cOh" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/table/wood, +/obj/item/folder/red{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/folder/red{ + pixel_x = -7 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/hos) "cOl" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -11365,22 +11380,6 @@ /obj/structure/rack, /turf/open/floor/plating, /area/station/maintenance/starboard/aft) -"egy" = ( -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/table/wood, -/obj/item/computer_hardware/hard_drive/role/detective, -/obj/item/folder/red{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/folder/red{ - pixel_x = -7 - }, -/obj/item/computer_hardware/hard_drive/role/detective, -/obj/item/computer_hardware/hard_drive/role/detective, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/hos) "egN" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/bot{ @@ -16194,17 +16193,6 @@ /obj/effect/spawner/xmastree, /turf/open/floor/wood, /area/station/commons/lounge) -"gag" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance" - }, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "gaw" = ( /obj/machinery/power/apc/auto_name/directional/west, /obj/structure/table/reinforced, @@ -20404,21 +20392,6 @@ /obj/machinery/holopad/secure, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/ai) -"hzl" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -10; - pixel_y = 9 - }, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/turf/open/floor/wood, -/area/station/cargo/qm) "hzF" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -25129,25 +25102,6 @@ /obj/machinery/portable_atmospherics/canister/anesthetic_mix, /turf/open/floor/iron/dark, /area/station/medical/cryo) -"iZY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/rd) "jak" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 @@ -26723,6 +26677,17 @@ "jzp" = ( /turf/closed/wall, /area/station/commons/vacant_room/office) +"jzq" = ( +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/structure/table/reinforced, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/command/heads_quarters/ce) "jzw" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -34524,6 +34489,21 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/engine, /area/station/engineering/supermatter) +"msy" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/taperecorder, +/obj/machinery/button/door/directional/south{ + id = "lawyer_shutters"; + name = "law office shutter control"; + req_access_txt = "38" + }, +/turf/open/floor/wood, +/area/station/service/lawoffice) "msN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/reagent_dispensers/watertank, @@ -34619,6 +34599,25 @@ /obj/effect/mapping_helpers/airlock/access/all/security/general, /turf/open/floor/iron, /area/station/security/brig) +"mtI" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + dir = 4 + }, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/rd) "mtL" = ( /obj/structure/sign/warning/pods, /turf/closed/wall, @@ -34719,18 +34718,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/station/service/theater) -"mvt" = ( -/obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, -/obj/machinery/light_switch/directional/north, -/obj/machinery/vending/wallmed/directional/west, -/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ - dir = 1 - }, -/turf/open/floor/iron/white, -/area/station/command/heads_quarters/cmo) "mvR" = ( /turf/closed/wall/r_wall, /area/station/science/lab) @@ -46134,6 +46121,17 @@ }, /turf/open/floor/iron/dark, /area/station/medical/office) +"qvI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance" + }, +/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, +/obj/effect/mapping_helpers/airlock/access/any/service/library, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plating, +/area/station/maintenance/port) "qvJ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -53320,19 +53318,6 @@ /obj/item/exodrone, /turf/open/floor/plating, /area/station/cargo/drone_bay) -"sQx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/access/any/service/maintenance, -/obj/effect/mapping_helpers/airlock/access/any/service/library, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 2 - }, -/turf/open/floor/plating, -/area/station/maintenance/port) "sQB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -57000,22 +56985,6 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/iron/dark, /area/station/engineering/atmospherics_engine) -"ucz" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/taperecorder, -/obj/item/computer_hardware/hard_drive/role/lawyer, -/obj/machinery/button/door/directional/south{ - id = "lawyer_shutters"; - name = "law office shutter control"; - req_access_txt = "38" - }, -/turf/open/floor/wood, -/area/station/service/lawoffice) "ucE" = ( /obj/machinery/light_switch/directional/south, /turf/open/floor/iron/dark, @@ -65764,6 +65733,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/ai_monitored/aisat/exterior) +"xeF" = ( +/obj/structure/table/glass, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, +/obj/machinery/light_switch/directional/north, +/obj/machinery/vending/wallmed/directional/west, +/obj/effect/turf_decal/tile/blue/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/iron/white, +/area/station/command/heads_quarters/cmo) "xff" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -66965,6 +66946,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"xAN" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/item/paper_bin/carbon{ + pixel_x = -10; + pixel_y = 9 + }, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/turf/open/floor/wood, +/area/station/cargo/qm) "xAR" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -85858,7 +85854,7 @@ jLb tTa krf mbi -hzl +xAN krf dHc dHc @@ -87928,7 +87924,7 @@ pOa pOa pOa pOa -gag +qvI pOa pOa pOa @@ -89737,7 +89733,7 @@ jfa mda rur knK -sQx +cnp mif vXH pOa @@ -92578,7 +92574,7 @@ ePX svQ dRq pKP -mvt +xeF rQd cJm jGw @@ -99723,7 +99719,7 @@ iJd nVy stk daC -ucz +msy xNU hLj usP @@ -102266,7 +102262,7 @@ aaa mxn yeV gSx -egy +cOh jTH gMZ gMZ @@ -102863,7 +102859,7 @@ pBd uhT wtP nup -iZY +mtI pVk vQb jbg @@ -108213,7 +108209,7 @@ uXd tKS nLz vGl -bZL +jzq iIP rSb sqE diff --git a/_maps/map_files/MetaStation/MetaStation_skyrat.dmm b/_maps/map_files/MetaStation/MetaStation_skyrat.dmm index 394059472db..e1c01010381 100644 --- a/_maps/map_files/MetaStation/MetaStation_skyrat.dmm +++ b/_maps/map_files/MetaStation/MetaStation_skyrat.dmm @@ -14307,9 +14307,9 @@ /area/station/commons/fitness/recreation) "dtB" = ( /obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, /obj/machinery/light_switch/directional/north, /obj/machinery/vending/wallmed/directional/west, /obj/effect/turf_decal/tile/blue/anticorner/contrasted{ @@ -33457,7 +33457,6 @@ "kMr" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/table/wood, -/obj/item/computer_hardware/hard_drive/role/detective, /obj/item/folder/red{ pixel_x = -7; pixel_y = 6 @@ -33465,8 +33464,6 @@ /obj/item/folder/red{ pixel_x = -7 }, -/obj/item/computer_hardware/hard_drive/role/detective, -/obj/item/computer_hardware/hard_drive/role/detective, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) @@ -44673,9 +44670,9 @@ /obj/effect/turf_decal/siding{ dir = 4 }, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) "oRu" = ( @@ -48894,11 +48891,11 @@ /turf/open/floor/iron/white, /area/station/medical/chemistry) "qxl" = ( -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/effect/turf_decal/tile/neutral/half/contrasted{ dir = 4 }, @@ -50083,9 +50080,9 @@ pixel_x = -10; pixel_y = 9 }, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /turf/open/floor/wood, /area/station/cargo/qm) "qWv" = ( @@ -51593,7 +51590,6 @@ }, /obj/item/pen, /obj/item/taperecorder, -/obj/item/computer_hardware/hard_drive/role/lawyer, /obj/machinery/button/door/directional/south{ id = "lawyer_shutters"; name = "law office shutter control"; diff --git a/_maps/map_files/MetaStation/skryat_old/MetaStation_skyrat_old.dmm b/_maps/map_files/MetaStation/skryat_old/MetaStation_skyrat_old.dmm index 50f9d12ea85..a70f0930112 100644 --- a/_maps/map_files/MetaStation/skryat_old/MetaStation_skyrat_old.dmm +++ b/_maps/map_files/MetaStation/skryat_old/MetaStation_skyrat_old.dmm @@ -15081,9 +15081,9 @@ /area/station/commons/fitness/recreation) "dtB" = ( /obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, /obj/effect/turf_decal/tile/blue{ dir = 8 }, @@ -35231,7 +35231,6 @@ "kMr" = ( /obj/machinery/power/apc/auto_name/directional/east, /obj/structure/table/wood, -/obj/item/computer_hardware/hard_drive/role/detective, /obj/item/folder/red{ pixel_x = -7; pixel_y = 6 @@ -35239,8 +35238,6 @@ /obj/item/folder/red{ pixel_x = -7 }, -/obj/item/computer_hardware/hard_drive/role/detective, -/obj/item/computer_hardware/hard_drive/role/detective, /obj/structure/cable, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/hos) @@ -47006,9 +47003,9 @@ /obj/effect/turf_decal/siding{ dir = 4 }, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/rd) "oRu" = ( @@ -51332,11 +51329,11 @@ /turf/open/floor/iron/white, /area/station/medical/chemistry) "qxl" = ( -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -52576,9 +52573,9 @@ pixel_x = -10; pixel_y = 9 }, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /turf/open/floor/wood, /area/station/cargo/qm) "qWv" = ( @@ -54130,7 +54127,6 @@ }, /obj/item/pen, /obj/item/taperecorder, -/obj/item/computer_hardware/hard_drive/role/lawyer, /obj/machinery/button/door/directional/south{ id = "lawyer_shutters"; name = "law office shutter control"; diff --git a/_maps/map_files/NSSJourney/NSSJourney.dmm b/_maps/map_files/NSSJourney/NSSJourney.dmm index 7a96a5f0abf..99adbe7dfb0 100644 --- a/_maps/map_files/NSSJourney/NSSJourney.dmm +++ b/_maps/map_files/NSSJourney/NSSJourney.dmm @@ -289,9 +289,9 @@ }, /obj/structure/table, /obj/item/coin/silver, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /obj/item/clipboard, /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -9598,9 +9598,9 @@ /obj/structure/table, /obj/item/folder/white, /obj/item/pen, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /obj/item/stamp/rd{ pixel_x = 3; pixel_y = -2 @@ -29748,10 +29748,10 @@ /area/station/security/brig) "cjY" = ( /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -45331,7 +45331,6 @@ }, /obj/structure/table/wood, /obj/item/taperecorder, -/obj/item/computer_hardware/hard_drive/role/lawyer, /turf/open/floor/wood, /area/station/service/lawoffice) "mNa" = ( diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index 29442a6c8ea..739855e0b53 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -600,10 +600,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/centcom/courtroom) -"bR" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/admin/storage) "bS" = ( /obj/structure/closet{ anchored = 1; @@ -705,10 +701,6 @@ /obj/structure/mirror/directional/west, /turf/open/floor/iron/white, /area/tdome/observation) -"ce" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/armory) "cf" = ( /obj/effect/turf_decal/siding/wood{ dir = 9 @@ -1965,10 +1957,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/iron, /area/centcom/fore) -"fC" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/indestructible/riveted, -/area/tdome/observation) "fD" = ( /obj/effect/turf_decal/siding/wood{ dir = 1 @@ -2388,6 +2376,10 @@ /obj/machinery/status_display/evac/directional/north, /turf/open/floor/iron/dark, /area/centcom/courtroom) +"gS" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/indestructible/riveted, +/area/centcom/ferry) "gT" = ( /obj/item/kirbyplants{ icon_state = "plant-21" @@ -3061,10 +3053,6 @@ /obj/structure/sign/nanotrasen, /turf/closed/indestructible/riveted, /area/centcom/prison) -"iI" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/prison/cells) "iJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -3836,6 +3824,10 @@ icon_state = "alien19" }, /area/abductor_ship) +"kR" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/indestructible/riveted, +/area/centcom/admin/storage) "kS" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -5497,20 +5489,6 @@ /obj/structure/flora/grass/both, /turf/open/misc/asteroid/snow/airless, /area/syndicate_mothership) -"px" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/iron, -/area/centcom/ferry) "py" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -5613,17 +5591,6 @@ /obj/structure/flora/ausbushes/palebush, /turf/open/misc/asteroid, /area/tdome/observation) -"pP" = ( -/obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/gps/mining, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/iron, -/area/centcom/supply) "pQ" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -5807,6 +5774,10 @@ /obj/item/food/grown/apple, /turf/open/floor/plastic, /area/syndicate_mothership/expansion_fridgerummage) +"qq" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/indestructible/riveted, +/area/centcom/admin) "qr" = ( /obj/structure/closet/crate/bin, /obj/effect/turf_decal/tile/green{ @@ -6132,10 +6103,6 @@ /obj/machinery/newscaster/directional/west, /turf/open/floor/iron/white, /area/centcom/admin) -"rz" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/ferry) "rB" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/donut_box, @@ -6276,6 +6243,10 @@ /obj/machinery/light/directional/east, /turf/open/floor/engine/cult, /area/wizard_station) +"rY" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/indestructible/riveted, +/area/centcom/armory) "rZ" = ( /obj/machinery/shower{ dir = 8 @@ -6645,6 +6616,20 @@ }, /turf/open/floor/wood, /area/centcom/admin) +"tn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/iron, +/area/centcom/ferry) "to" = ( /obj/machinery/computer/shuttle/ferry{ dir = 4 @@ -6840,10 +6825,6 @@ }, /turf/open/floor/iron, /area/centcom/control) -"tP" = ( -/obj/structure/sign/warning/secure_area, -/turf/closed/indestructible/riveted, -/area/centcom/control) "tR" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -10200,6 +10181,10 @@ }, /turf/open/floor/engine/cult, /area/wizard_station) +"DF" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/indestructible/riveted, +/area/tdome/observation) "DG" = ( /obj/structure/chair/office{ dir = 4 @@ -10796,6 +10781,10 @@ /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/mineral/plastitanium/red, /area/syndicate_mothership/expansion_bombthreat) +"Fq" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/indestructible/riveted, +/area/centcom/control) "Fr" = ( /obj/machinery/light/cold/directional/north, /turf/open/floor/mineral/titanium, @@ -10950,6 +10939,17 @@ /obj/machinery/hydroponics/constructable, /turf/open/floor/mineral/titanium/tiled, /area/syndicate_mothership/expansion_bioterrorism) +"FO" = ( +/obj/structure/table/reinforced, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/gps/mining, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/iron, +/area/centcom/supply) "FP" = ( /obj/structure/window/reinforced/survival_pod{ name = "Tinted Window"; @@ -17575,10 +17575,6 @@ initial_gas_mix = "TEMP=2.7" }, /area/syndicate_mothership) -"YI" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/indestructible/riveted, -/area/centcom/admin) "YJ" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -17687,6 +17683,10 @@ }, /turf/open/floor/mineral/titanium/tiled/yellow, /area/syndicate_mothership/expansion_bombthreat) +"YX" = ( +/obj/structure/sign/warning/secure_area, +/turf/closed/indestructible/riveted, +/area/centcom/prison/cells) "YY" = ( /obj/item/storage/medkit/toxin, /obj/item/storage/medkit/o2{ @@ -53980,7 +53980,7 @@ vE wt xg wt -px +tn mD pD pX @@ -55522,7 +55522,7 @@ mD ss fw tr -rz +gS SM WR RH @@ -55762,7 +55762,7 @@ aa aa On On -YI +qq On gI pE @@ -56289,7 +56289,7 @@ dz Nr Xq Rg -rz +gS wz TK xR @@ -56550,7 +56550,7 @@ mD su fw wh -rz +gS NN MJ TI @@ -57323,11 +57323,11 @@ fw ts mD Ya -ce +rY ST VO ST -ce +rY Ya Ya aa @@ -58085,7 +58085,7 @@ On YU YU Rj -bR +kR YU oe qR @@ -58337,7 +58337,7 @@ iF yd oM pi -pP +FO Tq YU Sh @@ -58373,7 +58373,7 @@ at QC QC QC -fC +DF QC QC QC @@ -59122,11 +59122,11 @@ xh wu mD Ya -ce +rY Ya Ya Ya -ce +rY Ya Ya Dq @@ -59895,7 +59895,7 @@ ys mR zF Am -tP +Fq iu io gl @@ -61194,7 +61194,7 @@ Mu Mu Mu aB -fC +DF BW BW NV @@ -62940,7 +62940,7 @@ aa Jb ir iB -iI +YX ir iB Jb @@ -62952,7 +62952,7 @@ iB Jb ir iB -iI +YX ir iB Jb @@ -63225,7 +63225,7 @@ io io io io -tP +Fq UO io io @@ -65510,7 +65510,7 @@ aa Jb ir iB -iI +YX ir iB Jb @@ -65522,7 +65522,7 @@ iB Jb ir iB -iI +YX ir iB Jb diff --git a/_maps/map_files/generic/CentCom_skyrat.dmm b/_maps/map_files/generic/CentCom_skyrat.dmm index 6884fc8086e..c52d70cb41f 100644 --- a/_maps/map_files/generic/CentCom_skyrat.dmm +++ b/_maps/map_files/generic/CentCom_skyrat.dmm @@ -5426,9 +5426,9 @@ /area/centcom/admin) "pP" = ( /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /obj/item/gps/mining, /obj/effect/turf_decal/stripes/line{ dir = 6 diff --git a/_maps/map_files/tramstation/skryat_old/tramstation_skyrat_old.dmm b/_maps/map_files/tramstation/skryat_old/tramstation_skyrat_old.dmm index d3c17959ae6..1d52473f982 100644 --- a/_maps/map_files/tramstation/skryat_old/tramstation_skyrat_old.dmm +++ b/_maps/map_files/tramstation/skryat_old/tramstation_skyrat_old.dmm @@ -12844,9 +12844,9 @@ "cWa" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/cafeteria{ dir = 5 @@ -53075,10 +53075,10 @@ /area/ai_monitored/turret_protected/aisat/hallway) "rxV" = ( /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, @@ -64925,8 +64925,8 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 }, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /obj/item/clipboard, /turf/open/floor/iron, /area/station/cargo/qm) @@ -66204,9 +66204,9 @@ dir = 8 }, /obj/item/screwdriver, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/cmo) "wiy" = ( diff --git a/_maps/map_files/tramstation/tramstation.dmm b/_maps/map_files/tramstation/tramstation.dmm index 377d80d7941..fe5bfe47d39 100644 --- a/_maps/map_files/tramstation/tramstation.dmm +++ b/_maps/map_files/tramstation/tramstation.dmm @@ -545,6 +545,16 @@ }, /turf/open/space/openspace, /area/space) +"akG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/open/floor/iron, +/area/station/engineering/atmos) "akI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet, @@ -581,6 +591,17 @@ }, /turf/open/floor/iron, /area/station/engineering/break_room) +"akZ" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/tram/right) "alu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line, @@ -923,10 +944,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/central/greater) -"asQ" = ( -/obj/structure/sign/warning/no_smoking, -/turf/closed/wall, -/area/station/engineering/atmos) "atg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, @@ -1607,6 +1624,17 @@ /mob/living/simple_animal/bot/secbot/beepsky/armsky, /turf/open/floor/iron, /area/ai_monitored/security/armory) +"aLv" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/cargo/storage) "aLB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -1848,15 +1876,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/station/hallway/primary/central) -"aQq" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/station/hallway/primary/central) "aQw" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -4790,6 +4809,17 @@ "bNz" = ( /turf/closed/wall/r_wall, /area/station/engineering/atmospherics_engine) +"bNB" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) "bNF" = ( /obj/structure/chair/comfy/black{ dir = 1 @@ -5061,6 +5091,17 @@ }, /turf/open/floor/catwalk_floor, /area/station/maintenance/tram/left) +"bRq" = ( +/obj/structure/sign/warning/no_smoking{ + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/machinery/computer/atmos_control/nocontrol/incinerator{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/maintenance/disposal/incinerator) "bRv" = ( /obj/machinery/door/airlock/command/glass{ name = "EVA Storage"; @@ -5130,6 +5171,22 @@ /obj/effect/turf_decal/siding/wood, /turf/open/floor/wood/large, /area/station/service/library) +"bSl" = ( +/obj/structure/cable/multilayer/multiz, +/obj/machinery/camera{ + c_tag = "Service - Lower Power Hatch"; + dir = 9; + network = list("ss13","Service") + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "bSE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -7169,10 +7226,6 @@ "cxA" = ( /turf/open/floor/iron/grimy, /area/station/service/chapel/office) -"cxR" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/science/xenobiology) "cxS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -7770,14 +7823,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/secondary/command) -"cHk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/hallway/primary/tram/left) "cHn" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/open/floor/grass, @@ -8455,20 +8500,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron, /area/station/service/kitchen) -"cTp" = ( -/obj/structure/cable/multilayer/multiz, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/greater) "cTq" = ( /obj/machinery/door/airlock/external{ name = "External Access" @@ -9425,6 +9456,13 @@ }, /turf/open/floor/vault, /area/station/hallway/primary/tram/center) +"djb" = ( +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/station/science/test_area) "djg" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -10411,6 +10449,20 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/hallway/secondary/entry) +"dxs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/smartfridge/organ, +/obj/structure/sign/warning/cold_temp{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/iron/freezer, +/area/station/medical/coldroom) "dxw" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -10951,6 +11003,15 @@ }, /turf/open/floor/iron/white, /area/station/command/heads_quarters/cmo) +"dEu" = ( +/obj/machinery/power/smes, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/solars/port/aft) "dEy" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -11835,6 +11896,16 @@ /obj/structure/closet/secure_closet/psychology, /turf/open/floor/wood/parquet, /area/station/medical/psychology) +"dUM" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/clipboard, +/turf/open/floor/iron, +/area/station/cargo/qm) "dUO" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, @@ -12987,10 +13058,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark, /area/station/security/courtroom) -"esc" = ( -/obj/structure/sign/warning/electric_shock, -/turf/closed/wall/r_wall, -/area/station/engineering/supermatter) "ese" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -13081,13 +13148,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) -"etf" = ( -/obj/machinery/ntnet_relay, -/obj/structure/sign/warning/no_smoking{ - pixel_y = -32 - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/station/tcommsat/server) "etm" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 5 @@ -13192,6 +13252,17 @@ /obj/machinery/door/window/left/directional/north, /turf/open/floor/plating, /area/station/science/mixing/launch) +"euY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron/cafeteria{ + dir = 5 + }, +/area/station/command/heads_quarters/rd) "evg" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 1 @@ -13311,17 +13382,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"exv" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/crew_quarters/dorms) "eyc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15716,16 +15776,6 @@ /obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, /turf/closed/wall/r_wall, /area/station/maintenance/disposal/incinerator) -"frV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/open/floor/iron, -/area/station/engineering/atmos) "fsa" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -17004,25 +17054,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"fSf" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/fluorine{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/bottle/iodine{ - pixel_x = 1 - }, -/obj/structure/sign/warning/chem_diamond{ - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/dark/textured_edge, -/area/station/medical/medbay/central) "fSi" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -17168,6 +17199,17 @@ /obj/machinery/shieldgen, /turf/open/floor/plating, /area/station/engineering/engine_smes) +"fVk" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/hallway/primary/tram/right) "fVC" = ( /obj/effect/turf_decal/trimline/yellow/warning{ dir = 1 @@ -18285,6 +18327,17 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"gmD" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/station/maintenance/solars/port/aft) "gmH" = ( /obj/structure/destructible/cult/item_dispenser/archives/library, /turf/open/floor/engine/cult, @@ -18686,6 +18739,17 @@ /obj/effect/spawner/random/maintenance/seven, /turf/open/floor/iron/smooth, /area/station/maintenance/central/greater) +"guh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/sign/warning/no_smoking{ + pixel_y = -32 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/main) "guj" = ( /obj/machinery/light/small/directional/south, /turf/open/misc/asteroid/airless, @@ -18767,17 +18831,6 @@ /obj/item/stamp/hos, /turf/open/floor/carpet, /area/station/command/heads_quarters/hos) -"gwy" = ( -/obj/structure/sign/warning/no_smoking{ - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/computer/atmos_control/nocontrol/incinerator{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/maintenance/disposal/incinerator) "gwR" = ( /obj/machinery/airalarm/directional/south, /turf/open/floor/iron/dark, @@ -18870,6 +18923,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/dark, /area/station/service/hydroponics) +"gyh" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/hallway/primary/tram/left) "gyj" = ( /obj/machinery/door/airlock/highsecurity{ name = "Gravity Generator Room"; @@ -18993,15 +19057,6 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/command) -"gzZ" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 8 - }, -/obj/structure/sign/warning/engine_safety{ - pixel_x = -32 - }, -/turf/open/floor/iron, -/area/station/engineering/break_room) "gAk" = ( /obj/machinery/light/small/directional/east, /obj/machinery/button/door/directional/west{ @@ -19202,20 +19257,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/surgery/fore) -"gDl" = ( -/obj/machinery/power/smes/engineering, -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering - SMES"; - dir = 10; - network = list("ss13","engineering") - }, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/engine_smes) "gDp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/decal/cleanable/dirt, @@ -19527,17 +19568,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/science/research) -"gJv" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/right) "gJG" = ( /obj/structure/table, /obj/item/storage/box/rubbershot{ @@ -20308,17 +20338,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/genetics) -"gUQ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/effect/landmark/event_spawn, -/turf/open/floor/iron/cafeteria{ - dir = 5 - }, -/area/station/command/heads_quarters/rd) "gVh" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Telecomms Relay Access"; @@ -20410,19 +20429,6 @@ /obj/effect/turf_decal/trimline/red/filled/corner, /turf/open/floor/iron, /area/station/security/courtroom) -"gWr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area{ - name = "HIGH SECURITY STORAGE"; - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "gWt" = ( /obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ dir = 8 @@ -20520,15 +20526,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/hallway/secondary/entry) -"gXG" = ( -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/solars/port/aft) "gXP" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -22216,6 +22213,17 @@ "hDI" = ( /turf/closed/wall/r_wall, /area/station/engineering/supermatter) +"hDN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/obj/machinery/airalarm/mixingchamber{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/iron/white, +/area/station/science/mixing/chamber) "hDO" = ( /obj/effect/spawner/random/trash/food_packaging, /obj/effect/decal/cleanable/dirt, @@ -23083,6 +23091,15 @@ /obj/machinery/newscaster/directional/north, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) +"hSX" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/end, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/lesser) "hTa" = ( /obj/effect/turf_decal/trimline/neutral/filled/line, /turf/open/floor/iron, @@ -23359,20 +23376,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/tram/left) -"hXS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/smartfridge/organ, -/obj/structure/sign/warning/cold_temp{ - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/iron/freezer, -/area/station/medical/coldroom) "hYk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/landmark/event_spawn, @@ -23532,15 +23535,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/tram/left) -"iaJ" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/catwalk_floor, -/area/station/maintenance/central/greater) "iaT" = ( /obj/structure/cable, /turf/open/floor/iron/dark, @@ -23615,13 +23609,6 @@ }, /turf/open/floor/iron, /area/station/security/prison/safe) -"icr" = ( -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/station/science/test_area) "icv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/trimline/white/filled/line{ @@ -23691,6 +23678,17 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plating, /area/station/maintenance/central/greater) +"idX" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/tram/left) "ied" = ( /obj/structure/closet/secure_closet/brig/genpop, /obj/effect/turf_decal/bot, @@ -23714,6 +23712,15 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) +"iem" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/station/science/server) "iev" = ( /obj/structure/training_machine, /obj/item/target, @@ -24408,17 +24415,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/tram/right) -"ipx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/warning/secure_area{ - name = "HIGH SECURITY STORAGE"; - pixel_y = 32 - }, -/turf/open/floor/iron/dark, -/area/ai_monitored/command/nuke_storage) "ipC" = ( /obj/structure/chair{ dir = 8 @@ -24498,15 +24494,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, /area/station/science/xenobiology) -"iqZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/station/science/server) "ird" = ( /obj/structure/railing/corner, /obj/effect/turf_decal/siding/thinplating{ @@ -25782,20 +25769,6 @@ }, /turf/open/floor/iron, /area/station/security/brig) -"iPo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) "iPs" = ( /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -27083,6 +27056,25 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) +"jlg" = ( +/obj/structure/rack, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/fluorine{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/iodine{ + pixel_x = 1 + }, +/obj/structure/sign/warning/chem_diamond{ + pixel_y = -32 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/iron/dark/textured_edge, +/area/station/medical/medbay/central) "jlh" = ( /obj/effect/turf_decal/trimline/yellow/warning, /obj/machinery/light/small/directional/north, @@ -28500,17 +28492,6 @@ /obj/effect/turf_decal/tile/red/fourcorners, /turf/open/floor/iron, /area/station/service/kitchen) -"jIJ" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/right) "jIV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment{ @@ -28904,18 +28885,6 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel) -"jPv" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/window/right/directional/east{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/iron/white, -/area/station/science/research) "jPx" = ( /obj/machinery/gulag_teleporter, /obj/machinery/camera/directional/south{ @@ -29082,15 +29051,6 @@ }, /turf/open/floor/wood, /area/station/commons/vacant_room/office) -"jSe" = ( -/obj/effect/turf_decal/trimline/neutral/filled/line{ - dir = 5 - }, -/obj/structure/sign/warning/rad_shelter{ - pixel_y = 32 - }, -/turf/open/floor/iron, -/area/station/hallway/secondary/exit) "jSi" = ( /obj/structure/table, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -30678,17 +30638,6 @@ /obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) -"kuQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/iron, -/area/station/security/office) "kuX" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/bot, @@ -31050,6 +30999,20 @@ }, /turf/open/floor/cult, /area/station/service/chapel/office) +"kAF" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "kAL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -32208,24 +32171,6 @@ }, /turf/open/floor/iron, /area/station/commons/storage/primary) -"kSR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Science - Cytology Lab"; - dir = 9; - network = list("ss13","rd") - }, -/turf/open/floor/iron/white, -/area/station/science/cytology) "kSV" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/light/directional/south, @@ -32307,20 +32252,6 @@ "kUo" = ( /turf/open/floor/iron/dark, /area/station/service/chapel) -"kUv" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "kUx" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner, /turf/open/floor/iron, @@ -32633,17 +32564,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/station/commons/vacant_room/office) -"kYG" = ( -/obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/ce) "kYH" = ( /obj/machinery/light/small/directional/south, /turf/open/floor/plating, @@ -32781,17 +32701,6 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"lbg" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/cargo/storage) "lbq" = ( /obj/effect/turf_decal/trimline/neutral/filled/line{ dir = 4 @@ -32922,6 +32831,20 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) +"ldT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) "lem" = ( /obj/structure/rack, /obj/item/wirecutters, @@ -33445,6 +33368,17 @@ dir = 5 }, /area/station/science/breakroom) +"lmQ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/security/office) "lmR" = ( /obj/modular_map_root/tramstation{ key = "maintenance_miningsolar_cavetunnel" @@ -33607,6 +33541,20 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) +"lpJ" = ( +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/starboard/greater) "lpK" = ( /obj/effect/turf_decal/siding/thinplating{ dir = 1 @@ -34663,14 +34611,6 @@ dir = 4 }, /area/station/service/chapel) -"lHD" = ( -/obj/machinery/power/smes, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/solars/starboard) "lHH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/yellow/warning{ @@ -36256,6 +36196,23 @@ }, /turf/open/floor/plating, /area/station/science/robotics/mechbay) +"mno" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/sign/warning/no_smoking{ + pixel_y = 32 + }, +/obj/item/experi_scanner{ + pixel_x = 5 + }, +/obj/item/experi_scanner, +/obj/item/experi_scanner{ + pixel_x = -5 + }, +/turf/open/floor/iron/white, +/area/station/science/research) "mnv" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/components/unary/passive_vent{ @@ -36582,6 +36539,19 @@ /obj/machinery/status_display/evac/directional/south, /turf/open/floor/carpet, /area/station/medical/psychology) +"msU" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/sign/warning/test_chamber{ + pixel_y = -32 + }, +/turf/open/floor/iron, +/area/station/science/mixing/launch) "msV" = ( /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 @@ -37373,17 +37343,6 @@ /obj/effect/turf_decal/sand/plating, /turf/open/floor/plating/airless, /area/mine/explored) -"mFb" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/security) "mFg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/neutral/filled/line{ @@ -39073,6 +39032,10 @@ /obj/effect/turf_decal/trimline/purple/filled/line, /turf/open/floor/iron, /area/station/science/robotics/mechbay) +"niK" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/engineering/supermatter) "niO" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -39420,17 +39383,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/service/janitor) -"npe" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/airalarm/mixingchamber{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/iron/white, -/area/station/science/mixing/chamber) "npf" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -41610,13 +41562,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/medical/medbay/lobby) -"ocK" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/sign/warning/secure_area{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/tcommsat/computer) "odl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -41679,6 +41624,15 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"ofg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/secure_area{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/station/science/server) "ofn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/cafeteria, @@ -41915,17 +41869,6 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/port/fore) -"oiQ" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/tram/left) "ojj" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -42353,6 +42296,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/white, /area/station/medical/virology) +"oqJ" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/station/science/research) "oqS" = ( /obj/structure/chair/pew/left, /turf/open/floor/iron/chapel{ @@ -42711,22 +42664,6 @@ /obj/structure/cable, /turf/open/floor/iron/white, /area/station/science/research) -"oyl" = ( -/obj/structure/cable/multilayer/multiz, -/obj/machinery/camera{ - c_tag = "Service - Lower Power Hatch"; - dir = 9; - network = list("ss13","Service") - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) "oys" = ( /turf/closed/wall/r_wall, /area/station/maintenance/starboard/central) @@ -43887,19 +43824,6 @@ }, /turf/open/floor/iron, /area/station/engineering/atmos) -"oUa" = ( -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/sign/warning/test_chamber{ - pixel_y = -32 - }, -/turf/open/floor/iron, -/area/station/science/mixing/launch) "oUs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/trimline/yellow/warning{ @@ -44166,15 +44090,6 @@ /obj/structure/lattice/catwalk, /turf/open/floor/iron, /area/station/maintenance/tram/left) -"oZW" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/end, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "oZZ" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 8 @@ -44798,20 +44713,6 @@ }, /turf/open/floor/iron, /area/station/engineering/main) -"pkJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/iron/dark, -/area/station/science/xenobiology) "pkL" = ( /obj/effect/turf_decal/trimline/brown/filled/corner{ dir = 1 @@ -45252,6 +45153,19 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/ai_monitored/security/armory) +"psd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/structure/sign/warning/secure_area{ + pixel_x = 32 + }, +/turf/open/floor/iron/white, +/area/station/science/lower) "psh" = ( /obj/effect/turf_decal/sand/plating, /obj/effect/spawner/random/structure/girder, @@ -45503,6 +45417,17 @@ }, /turf/open/floor/plating, /area/station/maintenance/department/medical) +"pvm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/secure_area{ + name = "HIGH SECURITY STORAGE"; + pixel_y = 32 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "pvn" = ( /obj/structure/mirror/directional/north, /obj/structure/sink{ @@ -45771,16 +45696,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/engineering/gravity_generator) -"pzp" = ( -/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ - name = "Burn Chamber Interior Airlock" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ - pixel_y = 32 - }, -/turf/open/floor/engine, -/area/station/science/mixing/chamber) "pzt" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, @@ -46573,6 +46488,17 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/atmospherics_engine) +"pPm" = ( +/obj/structure/table/reinforced, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/ce) "pPo" = ( /obj/effect/turf_decal/bot, /obj/machinery/power/port_gen/pacman, @@ -47092,17 +47018,6 @@ }, /turf/open/floor/iron/dark, /area/station/cargo/miningdock/oresilo) -"pZp" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/hallway/primary/tram/left) "pZr" = ( /mob/living/simple_animal/mouse/brown/tom, /turf/open/misc/asteroid, @@ -48113,6 +48028,14 @@ /obj/effect/landmark/start/hangover/closet, /turf/open/floor/iron/smooth, /area/station/hallway/primary/tram/center) +"qqq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/catwalk_floor, +/area/station/hallway/primary/tram/left) "qqx" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -49892,6 +49815,17 @@ }, /turf/open/floor/plating, /area/station/maintenance/tram/left) +"qWl" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/station/maintenance/department/crew_quarters/dorms) "qWn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -50540,6 +50474,13 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) +"rjp" = ( +/obj/machinery/ntnet_relay, +/obj/structure/sign/warning/no_smoking{ + pixel_y = -32 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/station/tcommsat/server) "rju" = ( /obj/structure/table, /obj/item/clothing/gloves/color/yellow, @@ -51153,19 +51094,6 @@ }, /turf/open/floor/iron/white, /area/station/medical/medbay/central) -"ruk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/sign/warning/secure_area{ - pixel_x = 32 - }, -/turf/open/floor/iron/white, -/area/station/science/lower) "run" = ( /turf/closed/wall/r_wall, /area/station/security/medical) @@ -51522,6 +51450,15 @@ /obj/item/radio/intercom/directional/east, /turf/open/floor/iron, /area/station/security/checkpoint/medical) +"rAJ" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/station/hallway/primary/central) "rAK" = ( /obj/structure/stairs/north, /turf/open/floor/iron/stairs/medium, @@ -51737,6 +51674,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/security/prison/safe) +"rEf" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/structure/sign/warning/rad_shelter{ + pixel_y = 32 + }, +/turf/open/floor/iron, +/area/station/hallway/secondary/exit) "rEu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -51847,17 +51793,6 @@ }, /turf/open/floor/iron, /area/station/maintenance/tram/right) -"rGd" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/station/maintenance/solars/port/aft) "rGi" = ( /turf/open/floor/iron/dark, /area/station/service/chapel/office) @@ -51883,6 +51818,18 @@ }, /turf/open/floor/iron, /area/station/security/brig) +"rGP" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/sign/warning/chem_diamond{ + pixel_x = 32 + }, +/obj/structure/chair/office/light, +/obj/effect/landmark/start/chemist, +/turf/open/floor/iron/white, +/area/station/medical/chemistry) "rGU" = ( /obj/structure/table, /obj/effect/turf_decal/trimline/yellow/filled/line{ @@ -52662,6 +52609,16 @@ /obj/effect/landmark/start/hangover/closet, /turf/open/floor/iron/smooth, /area/station/hallway/primary/tram/left) +"rSc" = ( +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{ + name = "Burn Chamber Interior Airlock" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix{ + pixel_y = 32 + }, +/turf/open/floor/engine, +/area/station/science/mixing/chamber) "rSv" = ( /obj/effect/turf_decal/trimline/neutral/filled/corner{ dir = 1 @@ -54139,16 +54096,6 @@ }, /turf/open/misc/asteroid/airless, /area/mine/explored) -"suK" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/clipboard, -/turf/open/floor/iron, -/area/station/cargo/qm) "suO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -54828,17 +54775,6 @@ /obj/item/dest_tagger, /turf/open/floor/iron, /area/station/cargo/sorting) -"sJY" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_y = -32 - }, -/obj/machinery/power/apc/auto_name/directional/east, -/obj/structure/cable, -/turf/open/floor/iron, -/area/station/engineering/main) "sKg" = ( /turf/closed/wall, /area/station/commons/fitness) @@ -55240,6 +55176,14 @@ /obj/structure/cable, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) +"sQs" = ( +/obj/machinery/power/smes, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/station/maintenance/solars/starboard) "sQu" = ( /obj/machinery/modular_computer/console/preset/curator{ dir = 4 @@ -58021,18 +57965,6 @@ }, /turf/open/floor/plating, /area/station/maintenance/tram/mid) -"tMg" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/structure/sign/warning/chem_diamond{ - pixel_x = 32 - }, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/chemist, -/turf/open/floor/iron/white, -/area/station/medical/chemistry) "tMh" = ( /turf/open/floor/iron, /area/station/hallway/primary/central) @@ -58095,17 +58027,6 @@ /obj/machinery/telecomms/message_server/preset, /turf/open/floor/iron/dark/telecomms, /area/station/tcommsat/server) -"tNp" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/maintenance/starboard/lesser) "tNv" = ( /obj/machinery/door/airlock/maintenance_hatch{ req_one_access_txt = "12" @@ -58878,6 +58799,17 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"ucb" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/central/greater) "ucg" = ( /obj/structure/chair{ dir = 1 @@ -59027,6 +58959,13 @@ /obj/effect/turf_decal/trimline/blue/filled/corner, /turf/open/floor/iron/white, /area/station/medical/treatment_center) +"uer" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/turf/open/floor/iron, +/area/station/tcommsat/computer) "ueE" = ( /obj/effect/turf_decal/trimline/yellow/filled/corner{ dir = 4 @@ -59151,6 +59090,24 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/cargo/storage) +"ugj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Science - Cytology Lab"; + dir = 9; + network = list("ss13","rd") + }, +/turf/open/floor/iron/white, +/area/station/science/cytology) "ugl" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 4 @@ -59683,6 +59640,19 @@ }, /turf/open/floor/iron, /area/station/security/checkpoint/engineering) +"upK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area{ + name = "HIGH SECURITY STORAGE"; + pixel_y = 32 + }, +/turf/open/floor/iron/dark, +/area/ai_monitored/command/nuke_storage) "upQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60348,6 +60318,15 @@ /obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/cargo/storage) +"uzx" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/sign/warning/electric_shock{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/catwalk_floor, +/area/station/maintenance/central/greater) "uzG" = ( /obj/machinery/computer/mechpad, /obj/effect/turf_decal/trimline/purple/filled/line{ @@ -63469,6 +63448,14 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/mail_sorting, /turf/open/floor/iron, /area/station/cargo/sorting) +"vDv" = ( +/obj/structure/table/glass, +/obj/item/computer_hardware/hard_drive/portable/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/iron/dark, +/area/station/command/heads_quarters/cmo) "vDH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /obj/effect/turf_decal/trimline/red/filled/corner{ @@ -64569,16 +64556,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/engineering/atmos) -"vZt" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electric_shock{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/science/research) "vZy" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -65304,6 +65281,10 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel/monastery) +"wnS" = ( +/obj/structure/sign/warning/no_smoking, +/turf/closed/wall, +/area/station/engineering/atmos) "wof" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 9 @@ -65968,23 +65949,6 @@ /obj/machinery/pdapainter/security, /turf/open/floor/carpet, /area/station/command/heads_quarters/hos) -"wAt" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/no_smoking{ - pixel_y = 32 - }, -/obj/item/experi_scanner{ - pixel_x = 5 - }, -/obj/item/experi_scanner, -/obj/item/experi_scanner{ - pixel_x = -5 - }, -/turf/open/floor/iron/white, -/area/station/science/research) "wAD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, /obj/effect/turf_decal/sand/plating, @@ -66531,15 +66495,6 @@ /obj/structure/table, /turf/open/floor/iron/dark, /area/station/cargo/miningdock/oresilo) -"wMn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/secure_area{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/station/science/server) "wMu" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/brown{ @@ -67161,17 +67116,6 @@ /obj/structure/cable, /turf/open/floor/iron/showroomfloor, /area/station/security/warden) -"wZv" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/structure/sign/warning/electric_shock{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/station/maintenance/department/medical) "wZG" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -68129,6 +68073,20 @@ /obj/structure/ladder, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"xnk" = ( +/obj/machinery/power/smes/engineering, +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/electric_shock{ + pixel_x = -32 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "Engineering - SMES"; + dir = 10; + network = list("ss13","engineering") + }, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/engineering/engine_smes) "xnP" = ( /obj/structure/cable, /turf/closed/wall/r_wall, @@ -68544,6 +68502,20 @@ /obj/structure/cable, /turf/open/floor/catwalk_floor, /area/station/maintenance/starboard/greater) +"xvk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/iron/dark, +/area/station/science/xenobiology) "xvJ" = ( /obj/structure/window/reinforced/spawner, /turf/open/floor/iron/stairs/medium, @@ -68888,6 +68860,10 @@ /mob/living/simple_animal/bot/floorbot, /turf/open/floor/iron/dark, /area/ai_monitored/turret_protected/aisat_interior) +"xBs" = ( +/obj/structure/sign/warning/electric_shock, +/turf/closed/wall/r_wall, +/area/station/science/xenobiology) "xBB" = ( /obj/effect/turf_decal/trimline/purple/filled/corner{ dir = 8 @@ -68910,6 +68886,15 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/command/heads_quarters/hop) +"xCE" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/sign/warning/engine_safety{ + pixel_x = -32 + }, +/turf/open/floor/iron, +/area/station/engineering/break_room) "xCZ" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -69126,14 +69111,18 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/iron, /area/station/hallway/secondary/command) -"xHv" = ( -/obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/role/chemistry, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/effect/turf_decal/tile/blue/fourcorners, -/turf/open/floor/iron/dark, -/area/station/command/heads_quarters/cmo) +"xHB" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/right/directional/east{ + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/science/research) "xHW" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, @@ -69327,6 +69316,17 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/iron, /area/station/commons/dorms) +"xLP" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electric_shock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/security) "xMa" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 5 @@ -69340,6 +69340,17 @@ }, /turf/open/floor/iron/dark, /area/station/service/chapel/office) +"xMe" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/sign/warning/electric_shock{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/station/maintenance/department/medical) "xMf" = ( /obj/structure/sink{ dir = 4; @@ -70388,17 +70399,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/freezer, /area/station/commons/toilet) -"ydC" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electric_shock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/station/maintenance/central/greater) "ydD" = ( /obj/effect/turf_decal/tile{ dir = 8 @@ -88285,7 +88285,7 @@ gcp xgi mhZ nUZ -oiQ +idX gNy iRQ xgi @@ -90325,7 +90325,7 @@ lAw ezH tmw tmw -gWr +upK jug lQM lQM @@ -91353,7 +91353,7 @@ jnW tLI tmw tmw -ipx +pvm qfd lQM lQM @@ -94402,7 +94402,7 @@ dDG hFr hFr xwf -iaJ +uzx jjX pAl vzY @@ -95461,7 +95461,7 @@ hFr hFr xwf qeZ -ydC +ucb xwf dhe dDG @@ -96286,7 +96286,7 @@ iMU tvd bso jkU -exv +qWl bso dhe dhe @@ -97835,7 +97835,7 @@ ney osd qrr uou -etf +rjp vNH dhe aRN @@ -98083,7 +98083,7 @@ jIG tVt hAE eqi -ocK +uer ngp dwR dwR @@ -99360,7 +99360,7 @@ pkp nJQ bgg uQW -gDl +xnk uQW qgs nPN @@ -99576,7 +99576,7 @@ hFr dhe dhe xwf -oyl +bSl xUb rtt xwf @@ -101183,7 +101183,7 @@ lEf jyF jyF jyF -esc +niK ima oiG xfC @@ -101943,7 +101943,7 @@ tNf mVg dSN dSN -sJY +guh qHs ggv fuj @@ -102184,7 +102184,7 @@ bbj rww lBb lJH -gzZ +xCE equ bbj roB @@ -103481,7 +103481,7 @@ gAF fqt hOh qoX -kYG +pPm sHH sHH sHH @@ -104755,7 +104755,7 @@ rHk rBe nHX xsc -frV +akG eYa rHk rDj @@ -105024,7 +105024,7 @@ rRc ukN cPM cPM -asQ +wnS cPM cPM oqh @@ -109404,7 +109404,7 @@ rCd tXV pis eAD -gwy +bRq qjJ cjG ngg @@ -109642,7 +109642,7 @@ pLP lJo mwK umP -tNp +bNB fYD lxM mwK @@ -110083,7 +110083,7 @@ dDG dhe dhe naa -lHD +sQs kgc vSJ oHw @@ -112169,7 +112169,7 @@ uGW uGW arE qiL -cTp +lpJ arE ovz arE @@ -112467,7 +112467,7 @@ tIK lPe mwK mwK -oZW +hSX lvi jaP mwK @@ -112995,7 +112995,7 @@ rkE qdl qdl sYT -kUv +kAF wzL npf qdl @@ -115576,7 +115576,7 @@ eNS dUO cfu gzi -cxR +xBs qdl qdl qdl @@ -116058,13 +116058,13 @@ pvn jjw bYs bwJ -iPo +ldT iaC iaC cAy knk knk -ruk +psd mfC mwK hvT @@ -117107,7 +117107,7 @@ rkE qdl qdl pCa -pkJ +xvk jAZ mGa qdl @@ -117583,7 +117583,7 @@ wnn hKj myD sVs -gJv +akZ stO jwx hKj @@ -119137,7 +119137,7 @@ dhe qxm tTp oys -npe +hDN ieK uOO dSM @@ -119395,7 +119395,7 @@ qxm tTp oys hth -pzp +rSc pit rmk kRw @@ -120175,7 +120175,7 @@ dRt oyA xWt eqk -oUa +msU eqF eqF dhe @@ -129426,11 +129426,11 @@ dhe dhe dhe dhe -icr +djb gBR xkb gBR -icr +djb dhe dhe dhe @@ -130968,11 +130968,11 @@ dhe dhe dhe dhe -icr +djb gBR kXF gBR -icr +djb dhe dhe dhe @@ -153563,7 +153563,7 @@ fMN ojT tkv ook -cHk +qqq khH khH dzU @@ -153821,7 +153821,7 @@ ojT ofA ook dpA -pZp +gyh tkv bhk ojT @@ -157890,7 +157890,7 @@ gTU qxT hbK syV -kuQ +lmQ tLg iuO iuO @@ -160278,7 +160278,7 @@ whz mFF xqS dCh -gXG +dEu lxv jxS aMU @@ -160997,7 +160997,7 @@ omm omm tFJ mKx -mFb +xLP tFJ dhe dhe @@ -161822,7 +161822,7 @@ xqS xqS dCh xJj -rGd +gmD dCh dhe dhe @@ -163869,7 +163869,7 @@ dhe kRL fsy hEj -hXS +dxs spv ykW whz @@ -165112,7 +165112,7 @@ sbx sOh vaC wei -aQq +rAJ oNr aQo pvK @@ -165161,7 +165161,7 @@ cpl uBr rbC sKl -xHv +vDv wdj dhe dhe @@ -167476,7 +167476,7 @@ keD jHN rzD sHm -fSf +jlg jYS fOv ygi @@ -169535,7 +169535,7 @@ jqP jLK jYS qrR -tMg +rGP fkR jYS qgt @@ -175178,7 +175178,7 @@ dhe dhe dhe mBq -wZv +xMe puo mMl mBq @@ -177705,7 +177705,7 @@ fcg kIf aFR pKs -lbg +aLv usY mPw lZW @@ -178003,7 +178003,7 @@ doK doK szB ebW -vZt +oqJ weI tml soq @@ -178481,7 +178481,7 @@ qDp iPD xia fgV -suK +dUM nkt whL eKt @@ -178773,7 +178773,7 @@ hBR hzq hzq hzq -jPv +xHB ixW vEX hzq @@ -179798,7 +179798,7 @@ nyF svv icL tPZ -wAt +mno tby hTG oPT @@ -180832,7 +180832,7 @@ hTG bSE cjE mAQ -gUQ +euY xYj wwn bSE @@ -182907,7 +182907,7 @@ qSS qSS qSS qSS -kSR +ugj hGn vBE tvT @@ -183119,7 +183119,7 @@ rxO lCE vUE rxO -jIJ +fVk cEC eAG kKn @@ -183652,9 +183652,9 @@ hen rfq pPD hvJ -wMn +ofg qTk -iqZ +iem hvJ oii nzE @@ -184653,7 +184653,7 @@ azX vHa hHP lCy -jSe +rEf doD qbu riS diff --git a/_maps/map_files/tramstation/tramstation_skyrat.dmm b/_maps/map_files/tramstation/tramstation_skyrat.dmm index 1732e3b46a2..8d2f7239826 100644 --- a/_maps/map_files/tramstation/tramstation_skyrat.dmm +++ b/_maps/map_files/tramstation/tramstation_skyrat.dmm @@ -11862,9 +11862,9 @@ "cWa" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, -/obj/item/computer_hardware/hard_drive/role/signal/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, +/obj/item/computer_hardware/hard_drive/portable/ordnance, /obj/effect/landmark/event_spawn, /turf/open/floor/iron/cafeteria{ dir = 5 @@ -27568,9 +27568,9 @@ /area/space/nearstation) "ior" = ( /obj/structure/table/glass, -/obj/item/computer_hardware/hard_drive/role/chemistry, -/obj/item/computer_hardware/hard_drive/role/medical, -/obj/item/computer_hardware/hard_drive/role/medical, +/obj/item/computer_hardware/hard_drive/portable/chemistry, +/obj/item/computer_hardware/hard_drive/portable/medical, +/obj/item/computer_hardware/hard_drive/portable/medical, /obj/effect/turf_decal/tile/blue/fourcorners, /turf/open/floor/iron/dark, /area/station/command/heads_quarters/cmo) @@ -53025,10 +53025,10 @@ /area/ai_monitored/turret_protected/aisat/hallway) "rxV" = ( /obj/structure/table/reinforced, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/engineering, -/obj/item/computer_hardware/hard_drive/role/atmos, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/engineering, +/obj/item/computer_hardware/hard_drive/portable/atmos, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 }, @@ -65046,8 +65046,8 @@ /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 }, -/obj/item/computer_hardware/hard_drive/role/quartermaster, -/obj/item/computer_hardware/hard_drive/role/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, +/obj/item/computer_hardware/hard_drive/portable/quartermaster, /obj/item/clipboard, /turf/open/floor/iron, /area/station/cargo/qm) diff --git a/code/__DEFINES/devices.dm b/code/__DEFINES/devices.dm index 3ce3052fb00..cacda58a9ea 100644 --- a/code/__DEFINES/devices.dm +++ b/code/__DEFINES/devices.dm @@ -1,20 +1,3 @@ -// Role disk defines - -#define DISK_POWER (1<<0) -#define DISK_ATMOS (1<<1) -#define DISK_MED (1<<2) -#define DISK_CHEM (1<<3) -#define DISK_MANIFEST (1<<4) -#define DISK_NEWS (1<<5) -#define DISK_SIGNAL (1<<6) -#define DISK_STATUS (1<<7) -#define DISK_CARGO (1<<8) -#define DISK_ROBOS (1<<9) -#define DISK_JANI (1<<10) -#define DISK_SEC (1<<11) -#define DISK_BUDGET (1<<12) -#define DISK_SCI (1<<13) - // Used to stringify message targets before sending the signal datum. #define STRINGIFY_PDA_TARGET(name, job) "[name] ([job])" diff --git a/code/__DEFINES/machines.dm b/code/__DEFINES/machines.dm index b8b6c4cffdf..48b034144a6 100644 --- a/code/__DEFINES/machines.dm +++ b/code/__DEFINES/machines.dm @@ -64,7 +64,6 @@ //Modular computer part defines #define MC_CPU "CPU" #define MC_HDD "HDD" -#define MC_HDD_JOB "HDD_JOB" #define MC_SDD "SDD" #define MC_CARD "CARD" #define MC_CARD2 "CARD2" @@ -75,7 +74,6 @@ #define MC_CHARGE "CHARGE" #define MC_AI "AI" #define MC_SENSORS "SENSORS" -#define MC_SIGNALER "SIGNALER" #define MC_IDENTIFY "IDENTIFY" //NTNet stuff, for modular computers @@ -113,7 +111,8 @@ #define FIREDOOR_OPEN 1 #define FIREDOOR_CLOSED 2 - +#define DETOMATIX_RESIST_MINOR 1 +#define DETOMATIX_RESIST_MAJOR 2 // These are used by supermatter and supermatter monitor program, mostly for UI updating purposes. Higher should always be worse! #define SUPERMATTER_ERROR -1 // Unknown status, shouldn't happen but just in case. diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm index dce19307f7c..c81617b92d1 100644 --- a/code/game/objects/items/storage/boxes.dm +++ b/code/game/objects/items/storage/boxes.dm @@ -562,14 +562,6 @@ /obj/item/storage/box/pdas/PopulateContents() for(var/i in 1 to 4) new /obj/item/modular_computer/tablet/pda(src) - new /obj/item/computer_hardware/hard_drive/role/head(src) - - var/new_disk = pick( /obj/item/computer_hardware/hard_drive/role/engineering, - /obj/item/computer_hardware/hard_drive/role/security, - /obj/item/computer_hardware/hard_drive/role/medical, - /obj/item/computer_hardware/hard_drive/role/signal/ordnance, - /obj/item/computer_hardware/hard_drive/role/quartermaster) - new new_disk(src) /obj/item/storage/box/silver_ids name = "box of spare silver IDs" @@ -603,9 +595,8 @@ illustration = "pda" /obj/item/storage/box/seccarts/PopulateContents() - new /obj/item/computer_hardware/hard_drive/role/detective(src) for(var/i in 1 to 6) - new /obj/item/computer_hardware/hard_drive/role/security(src) + new /obj/item/computer_hardware/hard_drive/portable/security(src) /obj/item/storage/box/firingpins name = "box of standard firing pins" diff --git a/code/game/objects/items/storage/uplink_kits.dm b/code/game/objects/items/storage/uplink_kits.dm index 42a6b1735c7..8e04dec7941 100644 --- a/code/game/objects/items/storage/uplink_kits.dm +++ b/code/game/objects/items/storage/uplink_kits.dm @@ -128,7 +128,7 @@ /obj/item/storage/backpack/duffelbag/syndie/sabotage new /obj/item/camera_bug(src) new /obj/item/sbeacondrop/powersink(src) - new /obj/item/computer_hardware/hard_drive/role/virus/deto(src) + new /obj/item/computer_hardware/hard_drive/portable/virus/deto(src) new /obj/item/storage/toolbox/syndicate(src) new /obj/item/pizzabox/bomb(src) new /obj/item/storage/box/syndie_kit/emp(src) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm index d8468c4d22b..df3a69561ef 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm @@ -7,7 +7,7 @@ ..() new /obj/item/storage/bag/garment/engineering_chief (src) - new /obj/item/computer_hardware/hard_drive/role/ce(src) + new /obj/item/computer_hardware/hard_drive/portable/command/ce(src) new /obj/item/radio/headset/heads/ce(src) new /obj/item/megaphone/command(src) new /obj/item/areaeditor/blueprints(src) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm index 816d4819128..80af312f3c2 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm @@ -77,7 +77,7 @@ new /obj/item/clothing/suit/bio_suit/cmo(src) new /obj/item/clothing/head/bio_hood/cmo(src) new /obj/item/storage/bag/garment/chief_medical(src) - new /obj/item/computer_hardware/hard_drive/role/cmo(src) + new /obj/item/computer_hardware/hard_drive/portable/command/cmo(src) new /obj/item/radio/headset/heads/cmo(src) new /obj/item/megaphone/command(src) new /obj/item/defibrillator/compact/loaded(src) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm index 4a21d6785fd..afd09bcefc1 100755 --- a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm @@ -9,7 +9,7 @@ new /obj/item/clothing/suit/bio_suit/scientist(src) new /obj/item/clothing/head/bio_hood/scientist(src) new /obj/item/storage/bag/garment/research_director(src) - new /obj/item/computer_hardware/hard_drive/role/rd(src) + new /obj/item/computer_hardware/hard_drive/portable/command/rd(src) new /obj/item/radio/headset/heads/rd(src) new /obj/item/megaphone/command(src) new /obj/item/storage/lockbox/medal/sci(src) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index ebaceeb9649..a35b4dc94af 100755 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -12,7 +12,6 @@ new /obj/item/clothing/neck/petcollar(src) new /obj/item/pet_carrier(src) new /obj/item/storage/bag/garment/captain(src) - new /obj/item/computer_hardware/hard_drive/role/captain(src) new /obj/item/storage/box/silver_ids(src) new /obj/item/radio/headset/heads/captain/alt(src) new /obj/item/radio/headset/heads/captain(src) @@ -31,7 +30,7 @@ ..() new /obj/item/storage/bag/garment/hop(src) new /obj/item/storage/lockbox/medal/service(src) - new /obj/item/computer_hardware/hard_drive/role/hop(src) + new /obj/item/computer_hardware/hard_drive/portable/command/hop(src) new /obj/item/radio/headset/heads/hop(src) new /obj/item/storage/box/ids(src) new /obj/item/storage/box/ids(src) @@ -53,7 +52,7 @@ /obj/structure/closet/secure_closet/hos/PopulateContents() ..() - new /obj/item/computer_hardware/hard_drive/role/hos(src) + new /obj/item/computer_hardware/hard_drive/portable/command/hos(src) new /obj/item/radio/headset/heads/hos(src) new /obj/item/storage/bag/garment/hos(src) new /obj/item/storage/lockbox/medal/sec(src) diff --git a/code/modules/cargo/exports/parts.dm b/code/modules/cargo/exports/parts.dm index ff6e8786746..ea00dd65cf5 100644 --- a/code/modules/cargo/exports/parts.dm +++ b/code/modules/cargo/exports/parts.dm @@ -192,12 +192,6 @@ export_types = list(/obj/item/computer_hardware/sensorpackage) include_subtypes = TRUE -/datum/export/modular_part/integratedsignaler - cost = CARGO_CRATE_VALUE * 0.2 - unit_name = "integrated computer signaler" - export_types = list(/obj/item/computer_hardware/radio_card) - include_subtypes = TRUE - /datum/export/modular_part/misc cost = CARGO_CRATE_VALUE * 0.1 unit_name = "miscellaneous computer part" diff --git a/code/modules/modular_computers/computers/_modular_computer_shared.dm b/code/modules/modular_computers/computers/_modular_computer_shared.dm index dbe6d5bf8eb..550d544e379 100644 --- a/code/modules/modular_computers/computers/_modular_computer_shared.dm +++ b/code/modules/modular_computers/computers/_modular_computer_shared.dm @@ -1,30 +1,32 @@ /obj/proc/is_modular_computer() - return + return FALSE + +//item +/obj/item/modular_computer/is_modular_computer() + return TRUE + +//machine +/obj/machinery/modular_computer/is_modular_computer() + return TRUE /obj/proc/get_modular_computer_part(part_type) return null -/obj/item/modular_computer/is_modular_computer() - return TRUE - +//item /obj/item/modular_computer/get_modular_computer_part(part_type) if(!part_type) stack_trace("get_modular_computer_part() called without a valid part_type") return null return all_components[part_type] - -/obj/machinery/modular_computer/is_modular_computer() - return TRUE - +//machine /obj/machinery/modular_computer/get_modular_computer_part(part_type) if(!part_type) stack_trace("get_modular_computer_part() called without a valid part_type") return null return cpu?.all_components[part_type] - /obj/proc/get_modular_computer_parts_examine(mob/user) . = list() if(!is_modular_computer()) diff --git a/code/modules/modular_computers/computers/item/computer.dm b/code/modules/modular_computers/computers/item/computer.dm index d5b56ad74bf..b7cdb712e8c 100644 --- a/code/modules/modular_computers/computers/item/computer.dm +++ b/code/modules/modular_computers/computers/item/computer.dm @@ -303,7 +303,7 @@ GLOBAL_LIST_EMPTY(TabletMessengers) // a list of all active messengers, similar . = ..() context[SCREENTIP_CONTEXT_ALT_LMB] = "Remove ID" - context[SCREENTIP_CONTEXT_CTRL_SHIFT_LMB] = "Remove Job Disk" + context[SCREENTIP_CONTEXT_CTRL_SHIFT_LMB] = "Remove Disk" return CONTEXTUAL_SCREENTIP_SET @@ -340,11 +340,12 @@ GLOBAL_LIST_EMPTY(TabletMessengers) // a list of all active messengers, similar if(.) return - var/obj/item/computer_hardware/hard_drive/role/ssd = all_components[MC_HDD_JOB] + var/obj/item/computer_hardware/hard_drive/ssd = all_components[MC_SDD] if(!ssd) return if(uninstall_component(ssd, usr)) user.put_in_hands(ssd) + playsound(src, 'sound/machines/card_slide.ogg', 50) /obj/item/modular_computer/proc/turn_on(mob/user) var/issynth = issilicon(user) // Robots and AIs get different activation messages. diff --git a/code/modules/modular_computers/computers/item/computer_ui.dm b/code/modules/modular_computers/computers/item/computer_ui.dm index cd2b780e8a3..6fbfeb7e3c0 100644 --- a/code/modules/modular_computers/computers/item/computer_ui.dm +++ b/code/modules/modular_computers/computers/item/computer_ui.dm @@ -66,7 +66,6 @@ data["disk"] = null var/obj/item/computer_hardware/card_slot/cardholder = all_components[MC_CARD] - var/obj/item/computer_hardware/hard_drive/role/ssd = all_components[MC_HDD_JOB] data["cardholder"] = FALSE if(cardholder) @@ -87,20 +86,9 @@ IDJob = cardholder.current_job, ) - if(ssd) - data["disk"] = ssd - data["disk_name"] = ssd.name - - for(var/datum/computer_file/program/prog in ssd.stored_files) - var/running = FALSE - if(prog in idle_threads) - running = TRUE - - data["disk_programs"] += list(list("name" = prog.filename, "desc" = prog.filedesc, "running" = running, "icon" = prog.program_icon, "alert" = prog.alert_pending)) - data["removable_media"] = list() if(all_components[MC_SDD]) - data["removable_media"] += "removable storage disk" + data["removable_media"] += "Eject Disk" var/obj/item/computer_hardware/ai_slot/intelliholder = all_components[MC_AI] if(intelliholder?.stored_card) data["removable_media"] += "intelliCard" @@ -168,13 +156,10 @@ var/prog = params["name"] var/is_disk = params["is_disk"] var/datum/computer_file/program/P = null - var/obj/item/computer_hardware/hard_drive/role/ssd = all_components[MC_HDD_JOB] var/mob/user = usr if(hard_drive && !is_disk) P = hard_drive.find_file_by_name(prog) - if(ssd && is_disk) - P = ssd.find_file_by_name(prog) if(!P || !istype(P)) // Program not found or it's not executable program. to_chat(user, span_danger("\The [src]'s screen shows \"I/O ERROR - Unable to run program\" warning.")) @@ -228,20 +213,13 @@ var/param = params["name"] var/mob/user = usr switch(param) - if("removable storage disk") + if("Eject Disk") var/obj/item/computer_hardware/hard_drive/portable/portable_drive = all_components[MC_SDD] if(!portable_drive) return if(uninstall_component(portable_drive, usr)) user.put_in_hands(portable_drive) playsound(src, 'sound/machines/card_slide.ogg', 50) - if("job disk") - var/obj/item/computer_hardware/hard_drive/role/ssd = all_components[MC_HDD_JOB] - if(!ssd) - return - if(uninstall_component(ssd, usr)) - user.put_in_hands(ssd) - playsound(src, 'sound/machines/card_slide.ogg', 50) if("intelliCard") var/obj/item/computer_hardware/ai_slot/intelliholder = all_components[MC_AI] if(!intelliholder) diff --git a/code/modules/modular_computers/computers/item/role_tablet_presets.dm b/code/modules/modular_computers/computers/item/role_tablet_presets.dm index 7196c491563..e361dd02277 100644 --- a/code/modules/modular_computers/computers/item/role_tablet_presets.dm +++ b/code/modules/modular_computers/computers/item/role_tablet_presets.dm @@ -1,85 +1,24 @@ -/obj/item/modular_computer/tablet/pda/medical - name = "medical PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/medical - greyscale_config = /datum/greyscale_config/tablet/stripe_thick - greyscale_colors = "#FAFAFA#000099#3F96CC" - -/obj/item/modular_computer/tablet/pda/viro - name = "virology PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/medical - greyscale_config = /datum/greyscale_config/tablet/stripe_split - greyscale_colors = "#FAFAFA#355FAC#57C451" - -/obj/item/modular_computer/tablet/pda/engineering - name = "engineering PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/engineering - greyscale_config = /datum/greyscale_config/tablet/stripe_thick - greyscale_colors = "#D99A2E#69DBF3#E3DF3D" - -/obj/item/modular_computer/tablet/pda/security - name = "security PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/security - greyscale_colors = "#EA3232#0000cc" - -/obj/item/modular_computer/tablet/pda/detective - name = "detective PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/detective - greyscale_colors = "#805A2F#990202" - -/obj/item/modular_computer/tablet/pda/warden - name = "warden PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/security - greyscale_config = /datum/greyscale_config/tablet/stripe_split - greyscale_colors = "#EA3232#0000CC#363636" - -/obj/item/modular_computer/tablet/pda/janitor - name = "janitor PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/janitor - greyscale_colors = "#933ea8#235AB2" - -/obj/item/modular_computer/tablet/pda/science - name = "scientist PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/signal/ordnance - greyscale_config = /datum/greyscale_config/tablet/stripe_thick - greyscale_colors = "#FAFAFA#000099#B347BC" +/** + * Command + */ /obj/item/modular_computer/tablet/pda/heads - default_disk = /obj/item/computer_hardware/hard_drive/role/head greyscale_config = /datum/greyscale_config/tablet/head greyscale_colors = "#67A364#a92323" + default_applications = list( + /datum/computer_file/program/crew_manifest, + /datum/computer_file/program/status, + /datum/computer_file/program/science, + /datum/computer_file/program/robocontrol, + /datum/computer_file/program/budgetorders, + ) -/obj/item/modular_computer/tablet/pda/heads/hop - name = "head of personnel PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/hop +/obj/item/modular_computer/tablet/pda/heads/Initialize(mapload) + . = ..() + install_component(new /obj/item/computer_hardware/card_slot/secondary) -/obj/item/modular_computer/tablet/pda/heads/hos - name = "head of security PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/hos - greyscale_config = /datum/greyscale_config/tablet/head - greyscale_colors = "#EA3232#0000CC" - -/obj/item/modular_computer/tablet/pda/heads/ce - name = "chief engineer PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/ce - greyscale_config = /datum/greyscale_config/tablet/stripe_thick/head - greyscale_colors = "#D99A2E#69DBF3#FAFAFA" - -/obj/item/modular_computer/tablet/pda/heads/cmo - name = "chief medical officer PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/cmo - greyscale_config = /datum/greyscale_config/tablet/stripe_thick/head - greyscale_colors = "#FAFAFA#000099#3F96CC" - -/obj/item/modular_computer/tablet/pda/heads/rd - name = "research director PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/rd - greyscale_config = /datum/greyscale_config/tablet/stripe_thick/head - greyscale_colors = "#FAFAFA#000099#B347BC" - insert_type = /obj/item/pen/fountain - -/obj/item/modular_computer/tablet/pda/captain +/obj/item/modular_computer/tablet/pda/heads/captain name = "captain PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/captain greyscale_config = /datum/greyscale_config/tablet/captain greyscale_colors = "#2C7CB2#FF0000#FFFFFF#FFD55B" insert_type = /obj/item/pen/fountain @@ -88,10 +27,205 @@ . = ..() RegisterSignal(src, COMSIG_TABLET_CHECK_DETONATE, .proc/tab_no_detonate) +/obj/item/modular_computer/tablet/pda/heads/hop + name = "head of personnel PDA" + default_applications = list( + /datum/computer_file/program/crew_manifest, + /datum/computer_file/program/status, + /datum/computer_file/program/science, + /datum/computer_file/program/robocontrol, + /datum/computer_file/program/budgetorders, + /datum/computer_file/program/records/security, + /datum/computer_file/program/job_management, + ) + +/obj/item/modular_computer/tablet/pda/heads/hos + name = "head of security PDA" + greyscale_config = /datum/greyscale_config/tablet/head + greyscale_colors = "#EA3232#0000CC" + default_applications = list( + /datum/computer_file/program/crew_manifest, + /datum/computer_file/program/status, + /datum/computer_file/program/science, + /datum/computer_file/program/robocontrol, + /datum/computer_file/program/budgetorders, + /datum/computer_file/program/records/security, + ) + +/obj/item/modular_computer/tablet/pda/heads/ce + name = "chief engineer PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_thick/head + greyscale_colors = "#D99A2E#69DBF3#FAFAFA" + default_applications = list( + /datum/computer_file/program/crew_manifest, + /datum/computer_file/program/status, + /datum/computer_file/program/science, + /datum/computer_file/program/robocontrol, + /datum/computer_file/program/budgetorders, + /datum/computer_file/program/atmosscan, + /datum/computer_file/program/alarm_monitor, + /datum/computer_file/program/power_monitor, + /datum/computer_file/program/supermatter_monitor, + ) + +/obj/item/modular_computer/tablet/pda/heads/cmo + name = "chief medical officer PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_thick/head + greyscale_colors = "#FAFAFA#000099#3F96CC" + default_applications = list( + /datum/computer_file/program/crew_manifest, + /datum/computer_file/program/status, + /datum/computer_file/program/science, + /datum/computer_file/program/robocontrol, + /datum/computer_file/program/budgetorders, + /datum/computer_file/program/phys_scanner/all, + /datum/computer_file/program/records/medical, + ) + +/obj/item/modular_computer/tablet/pda/heads/rd + name = "research director PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_thick/head + greyscale_colors = "#FAFAFA#000099#B347BC" + insert_type = /obj/item/pen/fountain + default_applications = list( + /datum/computer_file/program/crew_manifest, + /datum/computer_file/program/status, + /datum/computer_file/program/science, + /datum/computer_file/program/robocontrol, + /datum/computer_file/program/budgetorders, + /datum/computer_file/program/phys_scanner/chemistry, + /datum/computer_file/program/signal_commander, + ) + +/** + * Security + */ + +/obj/item/modular_computer/tablet/pda/security + name = "security PDA" + greyscale_colors = "#EA3232#0000cc" + default_applications = list( + /datum/computer_file/program/records/security, + /datum/computer_file/program/crew_manifest, + /datum/computer_file/program/robocontrol, + ) + +/obj/item/modular_computer/tablet/pda/detective + name = "detective PDA" + greyscale_colors = "#805A2F#990202" + default_applications = list( + /datum/computer_file/program/records/security, + /datum/computer_file/program/crew_manifest, + /datum/computer_file/program/robocontrol, + /datum/computer_file/program/phys_scanner/medical, + ) + +/obj/item/modular_computer/tablet/pda/warden + name = "warden PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_split + greyscale_colors = "#EA3232#0000CC#363636" + default_applications = list( + /datum/computer_file/program/records/security, + /datum/computer_file/program/crew_manifest, + /datum/computer_file/program/robocontrol, + ) + +/** + * Engineering + */ + +/obj/item/modular_computer/tablet/pda/engineering + name = "engineering PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_thick + greyscale_colors = "#D99A2E#69DBF3#E3DF3D" + default_applications = list( + /datum/computer_file/program/power_monitor, + /datum/computer_file/program/supermatter_monitor, + ) + +/obj/item/modular_computer/tablet/pda/atmos + name = "atmospherics PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_thick + greyscale_colors = "#EEDC43#00E5DA#727272" + default_applications = list( + /datum/computer_file/program/atmosscan, + /datum/computer_file/program/alarm_monitor, + ) + +/** + * Science + */ + +/obj/item/modular_computer/tablet/pda/science + name = "scientist PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_thick + greyscale_colors = "#FAFAFA#000099#B347BC" + default_applications = list( + /datum/computer_file/program/atmosscan, + /datum/computer_file/program/signal_commander, + ) + +/obj/item/modular_computer/tablet/pda/roboticist + name = "roboticist PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_split + greyscale_colors = "#484848#0099CC#D94927" + default_applications = list( + /datum/computer_file/program/robocontrol, + ) + +/obj/item/modular_computer/tablet/pda/geneticist + name = "geneticist PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_split + greyscale_colors = "#FAFAFA#000099#0097CA" + default_applications = list( + /datum/computer_file/program/phys_scanner/medical, + /datum/computer_file/program/records/medical, + ) + +/** + * Medical + */ + +/obj/item/modular_computer/tablet/pda/medical + name = "medical PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_thick + greyscale_colors = "#FAFAFA#000099#3F96CC" + default_applications = list( + /datum/computer_file/program/phys_scanner/medical, + /datum/computer_file/program/records/medical, + /datum/computer_file/program/robocontrol, + ) + +/obj/item/modular_computer/tablet/pda/viro + name = "virology PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_split + greyscale_colors = "#FAFAFA#355FAC#57C451" + default_applications = list( + /datum/computer_file/program/phys_scanner/medical, + /datum/computer_file/program/records/medical, + /datum/computer_file/program/robocontrol, + ) + +/obj/item/modular_computer/tablet/pda/chemist + name = "chemist PDA" + greyscale_config = /datum/greyscale_config/tablet/stripe_thick + greyscale_colors = "#FAFAFA#355FAC#EA6400" + default_applications = list( + /datum/computer_file/program/phys_scanner/chemistry, + ) + +/** + * Supply + */ + /obj/item/modular_computer/tablet/pda/cargo name = "cargo technician PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/quartermaster greyscale_colors = "#D6B328#6506CA" + default_applications = list( + /datum/computer_file/program/shipping, + /datum/computer_file/program/budgetorders, + /datum/computer_file/program/robocontrol, + ) /obj/item/modular_computer/tablet/pda/quartermaster/Initialize(mapload) . = ..() @@ -99,9 +233,13 @@ /obj/item/modular_computer/tablet/pda/quartermaster name = "quartermaster PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/quartermaster greyscale_config = /datum/greyscale_config/tablet/stripe_thick greyscale_colors = "#D6B328#6506CA#927444" + default_applications = list( + /datum/computer_file/program/shipping, + /datum/computer_file/program/budgetorders, + /datum/computer_file/program/robocontrol, + ) /obj/item/modular_computer/tablet/pda/quartermaster/Initialize(mapload) . = ..() @@ -112,6 +250,17 @@ greyscale_config = /datum/greyscale_config/tablet/stripe_thick greyscale_colors = "#927444#D6B328#6C3BA1" +/** + * Service + */ + +/obj/item/modular_computer/tablet/pda/janitor + name = "janitor PDA" + greyscale_colors = "#933ea8#235AB2" + default_applications = list( + /datum/computer_file/program/radar/custodial_locator, + ) + /obj/item/modular_computer/tablet/pda/chaplain name = "chaplain PDA" greyscale_config = /datum/greyscale_config/tablet/chaplain @@ -119,21 +268,17 @@ /obj/item/modular_computer/tablet/pda/lawyer name = "lawyer PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/lawyer greyscale_colors = "#4C76C8#FFE243" insert_type = /obj/item/pen/fountain + default_applications = list( + /datum/computer_file/program/records/security, + ) /obj/item/modular_computer/tablet/pda/botanist name = "botanist PDA" greyscale_config = /datum/greyscale_config/tablet/stripe_thick greyscale_colors = "#50E193#E26F41#71A7CA" -/obj/item/modular_computer/tablet/pda/roboticist - name = "roboticist PDA" - greyscale_config = /datum/greyscale_config/tablet/stripe_split - greyscale_colors = "#484848#0099CC#D94927" - default_disk = /obj/item/computer_hardware/hard_drive/role/roboticist - /obj/item/modular_computer/tablet/pda/cook name = "cook PDA" greyscale_colors = "#FAFAFA#A92323" @@ -142,27 +287,9 @@ name = "bartender PDA" greyscale_colors = "#333333#C7C7C7" -/obj/item/modular_computer/tablet/pda/atmos - name = "atmospherics PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/atmos - greyscale_config = /datum/greyscale_config/tablet/stripe_thick - greyscale_colors = "#EEDC43#00E5DA#727272" - -/obj/item/modular_computer/tablet/pda/chemist - name = "chemist PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/chemistry - greyscale_config = /datum/greyscale_config/tablet/stripe_thick - greyscale_colors = "#FAFAFA#355FAC#EA6400" - -/obj/item/modular_computer/tablet/pda/geneticist - name = "geneticist PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/medical - greyscale_config = /datum/greyscale_config/tablet/stripe_split - greyscale_colors = "#FAFAFA#000099#0097CA" - /obj/item/modular_computer/tablet/pda/clown name = "clown PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/virus/clown + loaded_cartridge = /obj/item/computer_hardware/hard_drive/portable/virus/clown icon_state = "pda-clown" greyscale_config = null greyscale_colors = null @@ -179,7 +306,7 @@ /obj/item/modular_computer/tablet/pda/clown/proc/AfterSlip(mob/living/carbon/human/M) if (istype(M) && (M.real_name != saved_identification)) - var/obj/item/computer_hardware/hard_drive/role/virus/clown/cart = all_components[MC_HDD_JOB] + var/obj/item/computer_hardware/hard_drive/portable/virus/clown/cart = all_components[MC_SDD] if(istype(cart) && cart.charges < 5) cart.charges++ playsound(src,'sound/machines/ping.ogg',30,TRUE) @@ -189,7 +316,7 @@ /obj/item/modular_computer/tablet/pda/mime name = "mime PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/virus/mime + loaded_cartridge = /obj/item/computer_hardware/hard_drive/portable/virus/mime greyscale_config = /datum/greyscale_config/tablet/mime greyscale_colors = "#FAFAFA#EA3232" insert_type = /obj/item/toy/crayon/mime @@ -205,11 +332,13 @@ /obj/item/modular_computer/tablet/pda/curator name = "curator PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/curator greyscale_config = null greyscale_colors = null icon_state = "pda-library" insert_type = /obj/item/pen/fountain + default_applications = list( + /datum/computer_file/program/newscaster, + ) /obj/item/modular_computer/tablet/pda/curator/Initialize(mapload) . = ..() @@ -219,6 +348,10 @@ for(var/datum/computer_file/program/messenger/msg in hdd.stored_files) msg.allow_emojis = TRUE +/** + * Non-roles + */ + /obj/item/modular_computer/tablet/pda/syndicate name = "military PDA" greyscale_colors = "#891417#80FF80" diff --git a/code/modules/modular_computers/computers/item/tablet.dm b/code/modules/modular_computers/computers/item/tablet.dm index beec22f61b0..5067cdc807f 100644 --- a/code/modules/modular_computers/computers/item/tablet.dm +++ b/code/modules/modular_computers/computers/item/tablet.dm @@ -80,6 +80,17 @@ remove_pen(user) +///Finds how hard it is to send a virus to this tablet, checking all programs downloaded. +/obj/item/modular_computer/tablet/proc/get_detomatix_difficulty() + var/detomatix_difficulty + + var/obj/item/computer_hardware/hard_drive/hdd = all_components[MC_HDD] + if(hdd) + for(var/datum/computer_file/program/downloaded_apps as anything in hdd.stored_files) + detomatix_difficulty += downloaded_apps.detomatix_resistance + + return detomatix_difficulty + /obj/item/modular_computer/tablet/proc/tab_no_detonate() SIGNAL_HANDLER return COMPONENT_TABLET_NO_DETONATE @@ -118,7 +129,7 @@ if(T) T.hotspot_expose(700,125) - if(istype(all_components[MC_HDD_JOB], /obj/item/computer_hardware/hard_drive/role/virus/deto)) + if(istype(all_components[MC_SDD], /obj/item/computer_hardware/hard_drive/portable/virus/deto)) explosion(src, devastation_range = -1, heavy_impact_range = 1, light_impact_range = 3, flash_range = 4) else explosion(src, devastation_range = -1, heavy_impact_range = -1, light_impact_range = 2, flash_range = 3) @@ -277,7 +288,10 @@ bypass_state = TRUE allow_chunky = TRUE - var/default_disk = 0 + ///All applications this tablet has pre-installed + var/list/default_applications = list() + ///The pre-installed cartridge that comes with the tablet + var/loaded_cartridge /obj/item/modular_computer/tablet/pda/update_overlays() . = ..() @@ -305,8 +319,13 @@ install_component(new /obj/item/computer_hardware/identifier) install_component(new /obj/item/computer_hardware/sensorpackage) - if(default_disk) - var/obj/item/computer_hardware/hard_drive/portable/disk = new default_disk(src) + if(!isnull(default_applications)) + var/obj/item/computer_hardware/hard_drive/small/hard_drive = find_hardware_by_name("solid state drive") + for(var/datum/computer_file/program/default_programs as anything in default_applications) + hard_drive.store_file(new default_programs) + + if(loaded_cartridge) + var/obj/item/computer_hardware/hard_drive/portable/disk = new loaded_cartridge(src) install_component(disk) if(insert_type) diff --git a/code/modules/modular_computers/computers/item/tablet_presets.dm b/code/modules/modular_computers/computers/item/tablet_presets.dm index 1bb4124fdf5..b69088d2721 100644 --- a/code/modules/modular_computers/computers/item/tablet_presets.dm +++ b/code/modules/modular_computers/computers/item/tablet_presets.dm @@ -28,8 +28,7 @@ install_component(hard_drive) install_component(new /obj/item/computer_hardware/card_slot) install_component(new /obj/item/computer_hardware/network_card) - install_component(new /obj/item/computer_hardware/radio_card) - hard_drive.store_file(new /datum/computer_file/program/signaler) + hard_drive.store_file(new /datum/computer_file/program/signal_commander) /obj/item/modular_computer/tablet/preset/cargo/Initialize(mapload) . = ..() diff --git a/code/modules/modular_computers/file_system/program.dm b/code/modules/modular_computers/file_system/program.dm index 02cf70e9194..68ef0f7a5f8 100644 --- a/code/modules/modular_computers/file_system/program.dm +++ b/code/modules/modular_computers/file_system/program.dm @@ -43,6 +43,8 @@ var/alert_silenced = FALSE /// Whether to highlight our program in the main screen. Intended for alerts, but loosely available for any need to notify of changed conditions. Think Windows task bar highlighting. Available even if alerts are muted. var/alert_pending = FALSE + /// How well this program will help combat detomatix viruses. + var/detomatix_resistance = NONE /datum/computer_file/program/New(obj/item/modular_computer/comp = null) ..() diff --git a/code/modules/modular_computers/file_system/programs/alarm.dm b/code/modules/modular_computers/file_system/programs/alarm.dm index 134472c27e2..93334744673 100644 --- a/code/modules/modular_computers/file_system/programs/alarm.dm +++ b/code/modules/modular_computers/file_system/programs/alarm.dm @@ -6,7 +6,7 @@ program_icon_state = "alert-green" extended_desc = "This program provides visual interface for a station's alarm system." requires_ntnet = 1 - size = 5 + size = 4 tgui_id = "NtosStationAlertConsole" program_icon = "bell" /// If there is any station alert diff --git a/code/modules/modular_computers/file_system/programs/budgetordering.dm b/code/modules/modular_computers/file_system/programs/budgetordering.dm index b7fad7e93b7..6d48e545f88 100644 --- a/code/modules/modular_computers/file_system/programs/budgetordering.dm +++ b/code/modules/modular_computers/file_system/programs/budgetordering.dm @@ -6,7 +6,7 @@ extended_desc = "Nanotrasen Internal Requisition Network interface for supply purchasing using a department budget account." requires_ntnet = TRUE usage_flags = PROGRAM_LAPTOP | PROGRAM_TABLET - size = 20 + size = 10 tgui_id = "NtosCargo" ///Are you actually placing orders with it? var/requestonly = TRUE diff --git a/code/modules/modular_computers/file_system/programs/crewmanifest.dm b/code/modules/modular_computers/file_system/programs/crewmanifest.dm index 31140aaa201..ba0680da318 100644 --- a/code/modules/modular_computers/file_system/programs/crewmanifest.dm +++ b/code/modules/modular_computers/file_system/programs/crewmanifest.dm @@ -9,6 +9,7 @@ size = 4 tgui_id = "NtosCrewManifest" program_icon = "clipboard-list" + detomatix_resistance = DETOMATIX_RESIST_MAJOR /datum/computer_file/program/crew_manifest/ui_static_data(mob/user) var/list/data = list() diff --git a/code/modules/modular_computers/file_system/programs/ntmessenger.dm b/code/modules/modular_computers/file_system/programs/ntmessenger.dm index 54d3b1a69a2..3c6fa2e7160 100644 --- a/code/modules/modular_computers/file_system/programs/ntmessenger.dm +++ b/code/modules/modular_computers/file_system/programs/ntmessenger.dm @@ -158,7 +158,7 @@ to_chat(usr, span_notice("ERROR: Device has receiving disabled.")) return if(sending_virus) - var/obj/item/computer_hardware/hard_drive/role/virus/disk = computer.all_components[MC_HDD_JOB] + var/obj/item/computer_hardware/hard_drive/portable/virus/disk = computer.all_components[MC_SDD] if(istype(disk)) disk.send_virus(target, usr) return(UI_UPDATE) @@ -176,8 +176,6 @@ /datum/computer_file/program/messenger/ui_data(mob/user) var/list/data = get_header_data() - var/obj/item/computer_hardware/hard_drive/role/disk = computer.all_components[MC_HDD_JOB] - data["owner"] = computer.saved_identification data["messages"] = messages data["ringer_status"] = ringer_status @@ -188,9 +186,14 @@ data["isSilicon"] = is_silicon data["photo"] = photo_path + var/obj/item/computer_hardware/card_slot/card_slot = computer.all_components[MC_CARD] + if(card_slot) + var/obj/item/card/id/id_card = card_slot ? card_slot.stored_card : "" + data["canSpam"] = (ACCESS_LAWYER in id_card?.access) + + var/obj/item/computer_hardware/hard_drive/portable/virus/disk = computer.all_components[MC_SDD] if(disk) - data["canSpam"] = disk.CanSpam() - data["virus_attach"] = istype(disk, /obj/item/computer_hardware/hard_drive/role/virus) + data["virus_attach"] = istype(disk, /obj/item/computer_hardware/hard_drive/portable/virus) data["sending_virus"] = sending_virus return data @@ -332,7 +335,7 @@ L = get(holder.holder, /mob/living/silicon) if(L && (L.stat == CONSCIOUS || L.stat == SOFT_CRIT)) - var/reply = "(Reply)" + var/reply = "(Reply)" var/hrefstart var/hrefend if (isAI(L)) @@ -360,7 +363,7 @@ switch(href_list["choice"]) if("Message") send_message(usr, list(locate(href_list["target"]))) - if("Mess_us_up") + if("mess_us_up") if(!HAS_TRAIT(src, TRAIT_PDA_CAN_EXPLODE)) var/obj/item/modular_computer/tablet/comp = computer comp.explode(usr, from_message_menu = TRUE) diff --git a/code/modules/modular_computers/file_system/programs/phys_scanner.dm b/code/modules/modular_computers/file_system/programs/phys_scanner.dm index 804ada70b8e..8f0efa35c01 100644 --- a/code/modules/modular_computers/file_system/programs/phys_scanner.dm +++ b/code/modules/modular_computers/file_system/programs/phys_scanner.dm @@ -1,3 +1,6 @@ +#define TABLET_MEDICAL_MODE (1<<0) +#define TABLET_CHEMISTRY_MODE (1<<1) + /datum/computer_file/program/phys_scanner filename = "phys_scanner" filedesc = "Physical Scanner" @@ -10,32 +13,32 @@ program_icon = "barcode" var/current_mode = 0 - var/available_modes = 0 + var/available_modes = NONE var/last_record = "" /datum/computer_file/program/phys_scanner/proc/ReadModes() var/reads = list() - if(available_modes & DISK_CHEM) + if(available_modes & TABLET_CHEMISTRY_MODE) reads += "Reagent" - if(available_modes & DISK_MED) + if(available_modes & TABLET_MEDICAL_MODE) reads += "Health" return reads /datum/computer_file/program/phys_scanner/proc/ReadCurrent() - if(current_mode & DISK_CHEM) + if(current_mode & TABLET_CHEMISTRY_MODE) return "Reagent" - if(current_mode & DISK_MED) + if(current_mode & TABLET_MEDICAL_MODE) return "Health" /datum/computer_file/program/phys_scanner/tap(atom/A, mob/living/user, params) . = ..() switch(current_mode) - if(DISK_CHEM) + if(TABLET_CHEMISTRY_MODE) if(!isnull(A.reagents)) if(A.reagents.reagent_list.len > 0) var/reagents_length = A.reagents.reagent_list.len @@ -46,7 +49,7 @@ last_record = "No active chemical agents found in [A]." else last_record = "No significant chemical agents found in [A]." - if(DISK_MED) + if(TABLET_MEDICAL_MODE) var/mob/living/carbon/carbon = A if(istype(carbon)) carbon.visible_message(span_notice("[user] analyzes [A]'s vitals.")) @@ -61,9 +64,9 @@ if("selectMode") switch(params["newMode"]) if("Reagent") - current_mode = DISK_CHEM + current_mode = TABLET_CHEMISTRY_MODE if("Health") - current_mode = DISK_MED + current_mode = TABLET_MEDICAL_MODE return UI_UPDATE @@ -76,3 +79,15 @@ data["available_modes"] = ReadModes() return data + +/datum/computer_file/program/phys_scanner/medical + available_modes = TABLET_MEDICAL_MODE + +/datum/computer_file/program/phys_scanner/chemistry + available_modes = TABLET_CHEMISTRY_MODE + +/datum/computer_file/program/phys_scanner/all + available_modes = TABLET_MEDICAL_MODE | TABLET_CHEMISTRY_MODE + +#undef TABLET_MEDICAL_MODE +#undef TABLET_CHEMISTRY_MODE diff --git a/code/modules/modular_computers/file_system/programs/powermonitor.dm b/code/modules/modular_computers/file_system/programs/powermonitor.dm index 8e30fe57c7b..a52cff40c1c 100644 --- a/code/modules/modular_computers/file_system/programs/powermonitor.dm +++ b/code/modules/modular_computers/file_system/programs/powermonitor.dm @@ -10,9 +10,10 @@ transfer_access = list(ACCESS_ENGINE) usage_flags = PROGRAM_CONSOLE requires_ntnet = 0 - size = 9 + size = 8 tgui_id = "NtosPowerMonitor" program_icon = "plug" + detomatix_resistance = DETOMATIX_RESIST_MINOR var/has_alert = 0 var/datum/weakref/attached_wire_ref diff --git a/code/modules/modular_computers/file_system/programs/radar.dm b/code/modules/modular_computers/file_system/programs/radar.dm index 9ae7777a0f4..026ae4afda1 100644 --- a/code/modules/modular_computers/file_system/programs/radar.dm +++ b/code/modules/modular_computers/file_system/programs/radar.dm @@ -258,6 +258,7 @@ available_on_ntnet = TRUE program_icon = "broom" size = 2 + detomatix_resistance = DETOMATIX_RESIST_MINOR /datum/computer_file/program/radar/custodial_locator/find_atom() return locate(selected) in GLOB.janitor_devices diff --git a/code/modules/modular_computers/file_system/programs/records.dm b/code/modules/modular_computers/file_system/programs/records.dm index d96f89779fe..e0329103814 100644 --- a/code/modules/modular_computers/file_system/programs/records.dm +++ b/code/modules/modular_computers/file_system/programs/records.dm @@ -9,6 +9,7 @@ size = 4 usage_flags = PROGRAM_TABLET | PROGRAM_LAPTOP available_on_ntnet = FALSE + detomatix_resistance = DETOMATIX_RESIST_MINOR var/mode diff --git a/code/modules/modular_computers/file_system/programs/robocontrol.dm b/code/modules/modular_computers/file_system/programs/robocontrol.dm index 9b361916d86..5ed2eb18b01 100644 --- a/code/modules/modular_computers/file_system/programs/robocontrol.dm +++ b/code/modules/modular_computers/file_system/programs/robocontrol.dm @@ -6,15 +6,14 @@ program_icon_state = "robot" extended_desc = "A remote controller used for giving basic commands to non-sentient robots." requires_ntnet = TRUE - size = 12 + size = 6 tgui_id = "NtosRoboControl" program_icon = "robot" ///Number of simple robots on-station. var/botcount = 0 ///Access granted by the used to summon robots. var/list/current_access = list() - ///Whether or not this is the cartridge program version. - var/cart_mode = FALSE + ///List of all ping types you can annoy drones with. var/list/drone_ping_types = list( "Low", "Medium", @@ -29,23 +28,18 @@ var/list/botlist = list() var/list/mulelist = list() - var/obj/item/computer_hardware/hard_drive/role/job_disk = computer ? computer.all_components[MC_HDD_JOB] : null var/obj/item/computer_hardware/card_slot/card_slot = computer ? computer.all_components[MC_CARD] : null data["have_id_slot"] = !!card_slot if(computer) var/obj/item/card/id/id_card = card_slot ? card_slot.stored_card : "" data["id_owner"] = id_card - if(cart_mode && job_disk) - data["id_owner"] = "JOB DISK OVERRIDE" botcount = 0 for(var/mob/living/simple_animal/bot/simple_bot as anything in GLOB.bots_list) if(simple_bot.z != zlevel || !(simple_bot.bot_mode_flags & BOT_MODE_REMOTE_ENABLED)) //Only non-emagged bots on the same Z-level are detected! continue - if(computer && !simple_bot.check_access(user) && !cart_mode) // Only check Bots we can access) - continue - if(!(simple_bot.bot_type in job_disk.bot_access) && cart_mode) + if(computer && !simple_bot.check_access(user)) // Only check Bots we can access) continue var/list/newbot = list( "name" = simple_bot.name, diff --git a/code/modules/modular_computers/file_system/programs/signaler.dm b/code/modules/modular_computers/file_system/programs/signalcommander.dm similarity index 54% rename from code/modules/modular_computers/file_system/programs/signaler.dm rename to code/modules/modular_computers/file_system/programs/signalcommander.dm index dd434ed73ea..f0a0e795c33 100644 --- a/code/modules/modular_computers/file_system/programs/signaler.dm +++ b/code/modules/modular_computers/file_system/programs/signalcommander.dm @@ -1,4 +1,4 @@ -/datum/computer_file/program/signaler +/datum/computer_file/program/signal_commander filename = "signaler" filedesc = "SignalCommander" category = PROGRAM_CATEGORY_MISC @@ -15,35 +15,18 @@ /// Radio connection datum used by signalers. var/datum/radio_frequency/radio_connection -/datum/computer_file/program/signaler/run_program(mob/living/user) - . = ..() - if (!.) - return - var/obj/item/computer_hardware/hard_drive/role/signal/disk = computer?.get_modular_computer_part(MC_HDD_JOB) - if(!(computer?.get_modular_computer_part(MC_SIGNALER) || istype(disk))) //Giving a clue to users why the program is spitting out zeros. - to_chat(user, span_warning("\The [computer] flashes an error: \"hardware\\signal_hardware\\startup.bin -- file not found\".")) - - -/datum/computer_file/program/signaler/ui_data(mob/user) +/datum/computer_file/program/signal_commander/ui_data(mob/user) var/list/data = get_header_data() - var/obj/item/computer_hardware/radio_card/sensor = computer?.get_modular_computer_part(MC_SIGNALER) - var/obj/item/computer_hardware/hard_drive/role/signal/disk = computer?.get_modular_computer_part(MC_HDD_JOB) - if(sensor?.check_functionality() || istype(disk)) - data["frequency"] = signal_frequency - data["code"] = signal_code - data["minFrequency"] = MIN_FREE_FREQ - data["maxFrequency"] = MAX_FREE_FREQ + data["frequency"] = signal_frequency + data["code"] = signal_code + data["minFrequency"] = MIN_FREE_FREQ + data["maxFrequency"] = MAX_FREE_FREQ return data -/datum/computer_file/program/signaler/ui_act(action, list/params) +/datum/computer_file/program/signal_commander/ui_act(action, list/params) . = ..() if(.) return - var/obj/item/computer_hardware/radio_card/sensor = computer?.get_modular_computer_part(MC_SIGNALER) - var/obj/item/computer_hardware/hard_drive/role/signal/disk = computer?.get_modular_computer_part(MC_HDD_JOB) - if(!(sensor?.check_functionality() || istype(disk))) - playsound(src, 'sound/machines/scanbuzz.ogg', 100, FALSE) - return switch(action) if("signal") INVOKE_ASYNC(src, .proc/signal) @@ -63,7 +46,7 @@ signal_code = initial(signal_code) . = TRUE -/datum/computer_file/program/signaler/proc/signal() +/datum/computer_file/program/signal_commander/proc/signal() if(!radio_connection) return @@ -78,7 +61,7 @@ var/datum/signal/signal = new(list("code" = signal_code), logging_data = logging_data) radio_connection.post_signal(computer, signal) -/datum/computer_file/program/signaler/proc/set_frequency(new_frequency) +/datum/computer_file/program/signal_commander/proc/set_frequency(new_frequency) SSradio.remove_object(computer, signal_frequency) signal_frequency = new_frequency radio_connection = SSradio.add_object(computer, signal_frequency, RADIO_SIGNALER) diff --git a/code/modules/modular_computers/file_system/programs/statusdisplay.dm b/code/modules/modular_computers/file_system/programs/statusdisplay.dm index 30f7c297f18..c6b10c1f56b 100644 --- a/code/modules/modular_computers/file_system/programs/statusdisplay.dm +++ b/code/modules/modular_computers/file_system/programs/statusdisplay.dm @@ -4,7 +4,7 @@ program_icon = "signal" program_icon_state = "generic" requires_ntnet = TRUE - size = 4 + size = 1 extended_desc = "An app used to change the message on the station status displays." tgui_id = "NtosStatus" diff --git a/code/modules/modular_computers/file_system/programs/techweb.dm b/code/modules/modular_computers/file_system/programs/techweb.dm index 0a23fbb4b66..4f1d86c645d 100644 --- a/code/modules/modular_computers/file_system/programs/techweb.dm +++ b/code/modules/modular_computers/file_system/programs/techweb.dm @@ -5,7 +5,7 @@ program_icon_state = "research" extended_desc = "Connect to the internal science server in order to assist in station research efforts." requires_ntnet = TRUE - size = 16 + size = 10 tgui_id = "NtosTechweb" program_icon = "atom" required_access = list(ACCESS_HEADS, ACCESS_RND) diff --git a/code/modules/modular_computers/hardware/hard_drive.dm b/code/modules/modular_computers/hardware/hard_drive.dm index 957a9e48d59..a8e3204bcef 100644 --- a/code/modules/modular_computers/hardware/hard_drive.dm +++ b/code/modules/modular_computers/hardware/hard_drive.dm @@ -192,7 +192,7 @@ store_file(messenger) // Syndicate variant - very slight better -/obj/item/computer_hardware/hard_drive/small/syndicate +/obj/item/computer_hardware/hard_drive/portable/syndicate desc = "An efficient SSD for portable devices developed by a rival organisation." power_usage = 8 max_capacity = 70 diff --git a/code/modules/modular_computers/hardware/job_disk.dm b/code/modules/modular_computers/hardware/job_disk.dm deleted file mode 100644 index 529fdab68d2..00000000000 --- a/code/modules/modular_computers/hardware/job_disk.dm +++ /dev/null @@ -1,256 +0,0 @@ -/obj/item/computer_hardware/hard_drive/role - name = "job data disk" - desc = "A disk meant to give a worker the needed programs to work." - power_usage = 0 - icon_state = "datadisk6" - w_class = WEIGHT_CLASS_TINY - critical = FALSE - max_capacity = 500 - device_type = MC_HDD_JOB - default_installs = FALSE - - var/disk_flags = 0 // bit flag for the programs - var/can_spam = FALSE - var/list/bot_access = list() - -/obj/item/computer_hardware/hard_drive/role/on_remove(obj/item/modular_computer/remove_from, mob/user) - return - -/obj/item/computer_hardware/hard_drive/role/Initialize(mapload) - . = ..() - var/list/progs_to_store = list() - - if(disk_flags & DISK_POWER) - progs_to_store += new /datum/computer_file/program/power_monitor(src) - progs_to_store += new /datum/computer_file/program/supermatter_monitor(src) - - if(disk_flags & DISK_ATMOS) - progs_to_store += new /datum/computer_file/program/atmosscan(src) - - if(disk_flags & DISK_MANIFEST) - progs_to_store += new /datum/computer_file/program/crew_manifest(src) - - if(disk_flags & DISK_SEC) - progs_to_store += new /datum/computer_file/program/records/security(src) - - if(disk_flags & DISK_JANI) - progs_to_store += new /datum/computer_file/program/radar/custodial_locator(src) - - if((disk_flags & DISK_CHEM) || (disk_flags & DISK_MED)) - var/datum/computer_file/program/phys_scanner/scanner = new(src) - - if(disk_flags & DISK_CHEM) - scanner.available_modes += DISK_CHEM - - if(disk_flags & DISK_MED) - progs_to_store += new /datum/computer_file/program/records/medical(src) - scanner.available_modes += DISK_MED - - progs_to_store += scanner - - if(disk_flags & DISK_ROBOS) - var/datum/computer_file/program/robocontrol/robo = new(src) - robo.cart_mode = TRUE - progs_to_store += robo - - if(disk_flags & DISK_CARGO) - progs_to_store += new /datum/computer_file/program/shipping(src) - - if(disk_flags & DISK_SIGNAL) - progs_to_store += new /datum/computer_file/program/signaler(src) - - if(disk_flags & DISK_NEWS) - progs_to_store += new /datum/computer_file/program/newscaster(src) - - if(disk_flags & DISK_BUDGET) - progs_to_store += new /datum/computer_file/program/budgetorders(src) - - if(disk_flags & DISK_STATUS) - progs_to_store += new /datum/computer_file/program/status(src) - - if(disk_flags & DISK_SCI) - progs_to_store += new /datum/computer_file/program/science(src) - - for (var/datum/computer_file/program/prog in progs_to_store) - prog.usage_flags = PROGRAM_ALL - prog.required_access = list() - prog.transfer_access = list() - store_file(prog) - - - -/obj/item/computer_hardware/hard_drive/role/proc/CanSpam() - return can_spam - -// Disk Definitions - -/obj/item/computer_hardware/hard_drive/role/engineering - name = "Power-ON disk" - desc = "Engineers ignoring station power-draw since 2400." - icon_state = "datadisk2" - disk_flags = DISK_POWER - -/obj/item/computer_hardware/hard_drive/role/atmos - name = "\improper BreatheDeep disk" - icon_state = "datadisk2" - disk_flags = DISK_ATMOS | DISK_ROBOS - bot_access = list( - FLOOR_BOT, - FIRE_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/medical - name = "\improper Med-U disk" - icon_state = "datadisk7" - disk_flags = DISK_MED | DISK_ROBOS - bot_access = list( - MED_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/chemistry - name = "\improper ChemWhiz disk" - icon_state = "datadisk7" - disk_flags = DISK_CHEM - -/obj/item/computer_hardware/hard_drive/role/security - name = "\improper R.O.B.U.S.T. disk" - icon_state = "datadisk9" - disk_flags = DISK_SEC | DISK_MANIFEST | DISK_ROBOS - bot_access = list( - SEC_BOT, - ADVANCED_SEC_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/detective - name = "\improper D.E.T.E.C.T. disk" - icon_state = "datadisk9" - disk_flags = DISK_MED | DISK_SEC | DISK_MANIFEST | DISK_ROBOS - bot_access = list( - SEC_BOT, - ADVANCED_SEC_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/janitor - name = "\improper CustodiPRO disk" - icon_state = "datadisk5" - desc = "The ultimate in clean-room design." - disk_flags = DISK_JANI | DISK_ROBOS - bot_access = list( - CLEAN_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/lawyer - name = "\improper P.R.O.V.E. disk" - icon_state = "datadisk9" - disk_flags = DISK_SEC - can_spam = TRUE - -/obj/item/computer_hardware/hard_drive/role/curator - name = "\improper Lib-Tweet disk" - icon_state = "datadisk2" - disk_flags = DISK_NEWS - -/obj/item/computer_hardware/hard_drive/role/roboticist - name = "\improper B.O.O.P. Remote Control disk" - icon_state = "datadisk5" - desc = "Packed with heavy duty quad-bot interlink!" - disk_flags = DISK_ROBOS - bot_access = list( - FLOOR_BOT, - CLEAN_BOT, - MED_BOT, - FIRE_BOT, - VIBE_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/signal - name = "generic signaler disk" - icon_state = "datadisk5" - desc = "A data disk with an integrated radio signaler module." - disk_flags = DISK_SIGNAL - -/obj/item/computer_hardware/hard_drive/role/signal/ordnance - name = "\improper Signal Ace 2 disk" - icon_state = "datadisk5" - desc = "Complete with integrated radio signaler!" - disk_flags = DISK_ATMOS | DISK_SIGNAL | DISK_CHEM - -/obj/item/computer_hardware/hard_drive/role/quartermaster - name = "space parts & space vendors disk" - icon_state = "datadisk0" - desc = "Perfect for the Quartermaster on the go!" - disk_flags = DISK_CARGO | DISK_ROBOS | DISK_BUDGET - bot_access = list( - MULE_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/head - name = "\improper Easy-Record DELUXE disk" - icon_state = "datadisk7" - disk_flags = DISK_MANIFEST | DISK_STATUS | DISK_BUDGET | DISK_SCI - -/obj/item/computer_hardware/hard_drive/role/hop - name = "\improper HumanResources9001 disk" - icon_state = "datadisk7" - disk_flags = DISK_MANIFEST | DISK_STATUS | DISK_JANI | DISK_SEC | DISK_NEWS | DISK_CARGO | DISK_ROBOS | DISK_BUDGET | DISK_SCI - bot_access = list( - MULE_BOT, - CLEAN_BOT, - VIBE_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/hos - name = "\improper R.O.B.U.S.T. DELUXE disk" - icon_state = "datadisk7" - disk_flags = DISK_MANIFEST | DISK_STATUS | DISK_SEC | DISK_ROBOS | DISK_BUDGET | DISK_SCI - bot_access = list( - SEC_BOT, - ADVANCED_SEC_BOT, - ) - - -/obj/item/computer_hardware/hard_drive/role/ce - name = "\improper Power-On DELUXE disk" - icon_state = "datadisk7" - disk_flags = DISK_POWER | DISK_ATMOS | DISK_MANIFEST | DISK_STATUS | DISK_ROBOS | DISK_BUDGET | DISK_SCI - bot_access = list( - FLOOR_BOT, - FIRE_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/cmo - name = "\improper Med-U DELUXE disk" - icon_state = "datadisk7" - disk_flags = DISK_MANIFEST | DISK_STATUS | DISK_CHEM | DISK_ROBOS | DISK_BUDGET | DISK_SCI - bot_access = list( - MED_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/rd - name = "\improper Signal Ace DELUXE disk" - icon_state = "rndmajordisk" - disk_flags = DISK_ATMOS | DISK_MANIFEST | DISK_STATUS | DISK_CHEM | DISK_ROBOS | DISK_BUDGET | DISK_SIGNAL | DISK_SCI - bot_access = list( - FLOOR_BOT, - CLEAN_BOT, - MED_BOT, - FIRE_BOT, - VIBE_BOT, - ) - -/obj/item/computer_hardware/hard_drive/role/captain - name = "\improper Value-PAK disk" - icon_state = "datadisk8" - desc = "Now with 350% more value!" //Give the Captain...EVERYTHING! (Except Mime, Clown, and Syndie) - disk_flags = ~0 - can_spam = TRUE - bot_access = list( - SEC_BOT, - ADVANCED_SEC_BOT, - MULE_BOT, - FLOOR_BOT, - CLEAN_BOT, - MED_BOT, - FIRE_BOT, - VIBE_BOT, - ) diff --git a/code/modules/modular_computers/hardware/program_disks.dm b/code/modules/modular_computers/hardware/program_disks.dm new file mode 100644 index 00000000000..101447c1d9a --- /dev/null +++ b/code/modules/modular_computers/hardware/program_disks.dm @@ -0,0 +1,154 @@ +/** + * Command + */ +/obj/item/computer_hardware/hard_drive/portable/command + icon_state = "datadisk7" + + +/obj/item/computer_hardware/hard_drive/portable/command/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/crew_manifest(src)) + store_file(new /datum/computer_file/program/science(src)) + store_file(new /datum/computer_file/program/status(src)) + +/obj/item/computer_hardware/hard_drive/portable/command/captain + name = "captain data disk" + desc = "Removable disk used to download essential Captain tablet apps." + icon_state = "datadisk10" + +/obj/item/computer_hardware/hard_drive/portable/command/captain/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/records/security(src)) + store_file(new /datum/computer_file/program/records/medical(src)) + store_file(new /datum/computer_file/program/phys_scanner/all(src)) + +/obj/item/computer_hardware/hard_drive/portable/command/cmo + name = "chief medical officer data disk" + desc = "Removable disk used to download essential CMO tablet apps." + +/obj/item/computer_hardware/hard_drive/portable/command/cmo/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/phys_scanner/all(src)) + store_file(new /datum/computer_file/program/records/medical(src)) + +/obj/item/computer_hardware/hard_drive/portable/command/rd + name = "research director data disk" + desc = "Removable disk used to download essential RD tablet apps." + +/obj/item/computer_hardware/hard_drive/portable/command/rd/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/signal_commander(src)) + store_file(new /datum/computer_file/program/phys_scanner/chemistry(src)) + +/obj/item/computer_hardware/hard_drive/portable/command/hos + name = "head of security data disk" + desc = "Removable disk used to download essential HoS tablet apps." + icon_state = "datadisk9" + +/obj/item/computer_hardware/hard_drive/portable/command/hos/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/records/security(src)) + +/obj/item/computer_hardware/hard_drive/portable/command/hop + name = "head of personnel data disk" + desc = "Removable disk used to download essential HoP tablet apps." + +/obj/item/computer_hardware/hard_drive/portable/command/hop/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/records/security(src)) + store_file(new /datum/computer_file/program/job_management(src)) + +/obj/item/computer_hardware/hard_drive/portable/command/ce + name = "chief engineer data disk" + desc = "Removable disk used to download essential CE tablet apps." + +/obj/item/computer_hardware/hard_drive/portable/command/ce/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/power_monitor(src)) + store_file(new /datum/computer_file/program/supermatter_monitor(src)) + store_file(new /datum/computer_file/program/atmosscan(src)) + store_file(new /datum/computer_file/program/alarm_monitor(src)) + +/** + * Security + */ +/obj/item/computer_hardware/hard_drive/portable/security + name = "security officer data disk" + desc = "Removable disk used to download security-related tablet apps." + icon_state = "datadisk9" + +/obj/item/computer_hardware/hard_drive/portable/security/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/records/security(src)) + store_file(new /datum/computer_file/program/crew_manifest(src)) + +/** + * Medical + */ +/obj/item/computer_hardware/hard_drive/portable/medical + name = "medical doctor data disk" + desc = "Removable disk used to download medical-related tablet apps." + icon_state = "datadisk7" + +/obj/item/computer_hardware/hard_drive/portable/medical/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/phys_scanner/medical(src)) + store_file(new /datum/computer_file/program/records/medical(src)) + +/obj/item/computer_hardware/hard_drive/portable/chemistry + name = "chemistry data disk" + desc = "Removable disk used to download chemistry-related tablet apps." + icon_state = "datadisk5" + +/obj/item/computer_hardware/hard_drive/portable/chemistry/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/phys_scanner/chemistry(src)) + +/** + * Supply + */ +/obj/item/computer_hardware/hard_drive/portable/quartermaster + name = "cargo data disk" + desc = "Removable disk used to download cargo-related tablet apps." + icon_state = "cargodisk" + +/obj/item/computer_hardware/hard_drive/portable/quartermaster/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/shipping(src)) + store_file(new /datum/computer_file/program/budgetorders(src)) + +/** + * Science + */ +/obj/item/computer_hardware/hard_drive/portable/ordnance + name = "ordnance data disk" + desc = "Removable disk used to download ordnance-related tablet apps." + icon_state = "datadisk5" + +/obj/item/computer_hardware/hard_drive/portable/ordnance/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/signal_commander(src)) + +/** + * Engineering + */ +/obj/item/computer_hardware/hard_drive/portable/engineering + name = "station engineer data disk" + desc = "Removable disk used to download engineering-related tablet apps." + icon_state = "datadisk6" + +/obj/item/computer_hardware/hard_drive/portable/engineering/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/power_monitor(src)) + store_file(new /datum/computer_file/program/supermatter_monitor(src)) + +/obj/item/computer_hardware/hard_drive/portable/atmos + name = "atmospheric technician data disk" + desc = "Removable disk used to download atmos-related tablet apps." + icon_state = "datadisk6" + + +/obj/item/computer_hardware/hard_drive/portable/atmos/install_default_programs() + . = ..() + store_file(new /datum/computer_file/program/atmosscan(src)) + store_file(new /datum/computer_file/program/alarm_monitor(src)) diff --git a/code/modules/modular_computers/hardware/sensor_package.dm b/code/modules/modular_computers/hardware/sensor_package.dm index 0579b752fb0..c0363bc809b 100644 --- a/code/modules/modular_computers/hardware/sensor_package.dm +++ b/code/modules/modular_computers/hardware/sensor_package.dm @@ -6,12 +6,3 @@ w_class = WEIGHT_CLASS_TINY device_type = MC_SENSORS expansion_hw = TRUE - -/obj/item/computer_hardware/radio_card - name = "integrated radio card" - desc = "An integrated signaling assembly for computers to send an outgoing frequency signal. Required by certain programs." - icon_state = "signal_card" - w_class = WEIGHT_CLASS_TINY - device_type = MC_SIGNALER - expansion_hw = TRUE - power_usage = 10 diff --git a/code/modules/modular_computers/hardware/virus_disk.dm b/code/modules/modular_computers/hardware/virus_disk.dm index 6a5c923b60d..036899ed2c6 100644 --- a/code/modules/modular_computers/hardware/virus_disk.dm +++ b/code/modules/modular_computers/hardware/virus_disk.dm @@ -1,15 +1,15 @@ -/obj/item/computer_hardware/hard_drive/role/virus +/obj/item/computer_hardware/hard_drive/portable/virus name = "\improper generic virus disk" icon_state = "virusdisk" var/charges = 5 -/obj/item/computer_hardware/hard_drive/role/virus/proc/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) +/obj/item/computer_hardware/hard_drive/portable/virus/proc/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) return -/obj/item/computer_hardware/hard_drive/role/virus/clown +/obj/item/computer_hardware/hard_drive/portable/virus/clown name = "\improper H.O.N.K. disk" -/obj/item/computer_hardware/hard_drive/role/virus/clown/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) +/obj/item/computer_hardware/hard_drive/portable/virus/clown/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) if(charges <= 0) to_chat(user, span_notice("ERROR: Out of charges.")) return @@ -21,10 +21,10 @@ else to_chat(user, span_notice("ERROR: Could not find device.")) -/obj/item/computer_hardware/hard_drive/role/virus/mime +/obj/item/computer_hardware/hard_drive/portable/virus/mime name = "\improper sound of silence disk" -/obj/item/computer_hardware/hard_drive/role/virus/mime/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) +/obj/item/computer_hardware/hard_drive/portable/virus/mime/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) if(charges <= 0) to_chat(user, span_notice("ERROR: Out of charges.")) return @@ -41,22 +41,16 @@ else to_chat(user, span_notice("ERROR: Could not find device.")) -/obj/item/computer_hardware/hard_drive/role/virus/deto +/obj/item/computer_hardware/hard_drive/portable/virus/deto name = "\improper D.E.T.O.M.A.T.I.X. disk" charges = 6 -/obj/item/computer_hardware/hard_drive/role/virus/deto/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) +/obj/item/computer_hardware/hard_drive/portable/virus/deto/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) if(charges <= 0) to_chat(user, span_notice("ERROR: Out of charges.")) return - var/difficulty = 0 - var/obj/item/computer_hardware/hard_drive/role/disk = target.all_components[MC_HDD_JOB] - - if(disk) - difficulty += bit_count(disk.disk_flags & (DISK_MED | DISK_SEC | DISK_POWER | DISK_MANIFEST)) - if(disk.disk_flags & DISK_MANIFEST) - difficulty++ //if cartridge has manifest access it has extra snowflake difficulty + var/difficulty = target.get_detomatix_difficulty() if(SEND_SIGNAL(target, COMSIG_TABLET_CHECK_DETONATE) & COMPONENT_TABLET_NO_DETONATE || prob(difficulty * 15)) user.show_message(span_danger("ERROR: Target could not be bombed."), MSG_VISUAL) charges-- @@ -81,13 +75,13 @@ ADD_TRAIT(target, TRAIT_PDA_MESSAGE_MENU_RIGGED, reference) addtimer(TRAIT_CALLBACK_REMOVE(target, TRAIT_PDA_MESSAGE_MENU_RIGGED, reference), 10 SECONDS) -/obj/item/computer_hardware/hard_drive/role/virus/frame +/obj/item/computer_hardware/hard_drive/portable/virus/frame name = "\improper F.R.A.M.E. disk" var/telecrystals = 0 var/current_progression = 0 -/obj/item/computer_hardware/hard_drive/role/virus/frame/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) +/obj/item/computer_hardware/hard_drive/portable/virus/frame/send_virus(obj/item/modular_computer/tablet/target, mob/living/user) if(charges <= 0) to_chat(user, span_notice("ERROR: Out of charges.")) return @@ -126,7 +120,7 @@ else to_chat(user, span_notice("ERROR: Could not find device.")) -/obj/item/computer_hardware/hard_drive/role/virus/frame/attackby(obj/item/I, mob/user, params) +/obj/item/computer_hardware/hard_drive/portable/virus/frame/attackby(obj/item/I, mob/user, params) . = ..() if(istype(I, /obj/item/stack/telecrystal)) if(!charges) diff --git a/code/modules/research/designs/computer_part_designs.dm b/code/modules/research/designs/computer_part_designs.dm index e9cc46ee745..5e338981615 100644 --- a/code/modules/research/designs/computer_part_designs.dm +++ b/code/modules/research/designs/computer_part_designs.dm @@ -252,12 +252,3 @@ build_path = /obj/item/computer_hardware/sensorpackage category = list("Computer Parts") departmental_flags = DEPARTMENTAL_FLAG_SCIENCE | DEPARTMENTAL_FLAG_ENGINEERING - -/datum/design/signaler_part - name = "Integrated Signaler" - id = "signalpart" - build_type = PROTOLATHE | AWAY_LATHE - materials = list(/datum/material/iron = 400, /datum/material/glass = 100) - build_path = /obj/item/computer_hardware/radio_card - category = list("Computer Parts") - departmental_flags = DEPARTMENTAL_FLAG_SCIENCE | DEPARTMENTAL_FLAG_ENGINEERING diff --git a/code/modules/uplink/uplink_items/device_tools.dm b/code/modules/uplink/uplink_items/device_tools.dm index 32a3a151452..916844bb061 100644 --- a/code/modules/uplink/uplink_items/device_tools.dm +++ b/code/modules/uplink/uplink_items/device_tools.dm @@ -104,13 +104,13 @@ when used cause the targeted tablet to become a new uplink with zero TCs, and immediately become unlocked. \ You will receive the unlock code upon activating the virus, and the new uplink may be charged with \ telecrystals normally." - item = /obj/item/computer_hardware/hard_drive/role/virus/frame + item = /obj/item/computer_hardware/hard_drive/portable/virus/frame cost = 4 restricted = TRUE /datum/uplink_item/device_tools/frame/spawn_item(spawn_path, mob/user, datum/uplink_handler/uplink_handler, atom/movable/source) . = ..() - var/obj/item/computer_hardware/hard_drive/role/virus/frame/target = . + var/obj/item/computer_hardware/hard_drive/portable/virus/frame/target = . if(!target) return target.current_progression = uplink_handler.progression_points diff --git a/code/modules/uplink/uplink_items/explosive.dm b/code/modules/uplink/uplink_items/explosive.dm index 6eed450dce0..ec7b08bbc14 100644 --- a/code/modules/uplink/uplink_items/explosive.dm +++ b/code/modules/uplink/uplink_items/explosive.dm @@ -50,7 +50,7 @@ detonate tablets of crewmembers who have their message feature enabled. \ The concussive effect from the explosion will knock the recipient out for a short period, and deafen them for longer." progression_minimum = 30 MINUTES - item = /obj/item/computer_hardware/hard_drive/role/virus/deto + item = /obj/item/computer_hardware/hard_drive/portable/virus/deto cost = 6 restricted = TRUE diff --git a/code/modules/vending/assist.dm b/code/modules/vending/assist.dm index 2f2a803f0ed..07f0d24476f 100644 --- a/code/modules/vending/assist.dm +++ b/code/modules/vending/assist.dm @@ -9,7 +9,7 @@ /obj/item/assembly/igniter = 3, /obj/item/assembly/signaler = 4, /obj/item/wirecutters = 1, - /obj/item/computer_hardware/hard_drive/role/signal = 4, + /obj/item/computer_hardware/hard_drive/portable/ordnance = 4, /obj/item/stock_parts/matter_bin = 3, /obj/item/stock_parts/manipulator = 3, /obj/item/stock_parts/micro_laser = 3, diff --git a/code/modules/vending/cartridge.dm b/code/modules/vending/cartridge.dm index 701bfd5eaaf..2df30a57523 100644 --- a/code/modules/vending/cartridge.dm +++ b/code/modules/vending/cartridge.dm @@ -7,14 +7,13 @@ icon_deny = "cart-deny" panel_type = "panel6" products = list( - /obj/item/computer_hardware/hard_drive/role/medical = 10, - /obj/item/computer_hardware/hard_drive/role/engineering = 10, - /obj/item/computer_hardware/hard_drive/role/security = 10, - /obj/item/computer_hardware/hard_drive/role/janitor = 10, - /obj/item/computer_hardware/hard_drive/role/signal/ordnance = 10, + /obj/item/computer_hardware/hard_drive/portable/medical = 10, + /obj/item/computer_hardware/hard_drive/portable/engineering = 10, + /obj/item/computer_hardware/hard_drive/portable/security = 10, + /obj/item/computer_hardware/hard_drive/portable/ordnance = 10, + /obj/item/computer_hardware/hard_drive/portable/quartermaster = 10, + /obj/item/computer_hardware/hard_drive/portable/command/captain = 3, /obj/item/modular_computer/tablet/pda/heads = 10, - /obj/item/computer_hardware/hard_drive/role/captain = 3, - /obj/item/computer_hardware/hard_drive/role/quartermaster = 10 ) refill_canister = /obj/item/vending_refill/cart default_price = PAYCHECK_COMMAND @@ -25,4 +24,3 @@ /obj/item/vending_refill/cart machine_name = "PTech" icon_state = "refill_smoke" - diff --git a/code/modules/vending/modularpc.dm b/code/modules/vending/modularpc.dm index 33bde2082ba..790d3dc8df4 100644 --- a/code/modules/vending/modularpc.dm +++ b/code/modules/vending/modularpc.dm @@ -26,7 +26,6 @@ /obj/item/computer_hardware/printer/mini = 2, /obj/item/computer_hardware/recharger/apc_recharger = 2, /obj/item/paicard = 2, - /obj/item/computer_hardware/radio_card = 1 ) refill_canister = /obj/item/vending_refill/modularpc default_price = PAYCHECK_CREW diff --git a/icons/obj/module.dmi b/icons/obj/module.dmi index a9096a91b3b2904c4d444b51c055f3952180d789..1c2217f6bbec11a255eba09507ba392e53392fa1 100644 GIT binary patch literal 18780 zcmcG$by$?|w=O;~AYFoVDFPxQ-Ki4NrF0{m(m8aODBU3?-AD`w2uSzPDIG({z`%L= ze82l#`*&UY{La~b>_1-Knrr5X^{jQTd)*HaDoQeV*p%2H5C~89y`&llgkl675}1#G zCxJtSULX)^xYq|Q7fCZ`Qzt7&7b^#Q5Xd7VGx?YOJO^&*$gw*4K|T4`hP~!@`13lr zqIEM=n04JVdY{H}{(hRBfUlUl!i4g|^d7HFRAwi<=iJ(W-M|TyHx}35Rlkeq&ecnX z(Ix#hQGU(4(cIeniWE<6@%yTb!j~$&WD8Egi5g*6(%9!odrlu;@u9NeFW);QhE;ux zCzWKLJ*JhC`l>|u5;os0q_{Vmg}L3JC2;2W0=6;q+xpfs-ZJ3rZ~E&Yoq?xV-f>^~ z-HNrWC*14(yHc;LnfwI5wWs|tw73p$Fe9@IVtZb5{f-HRV4U*I@|z<)Rc#b??V!$) zP-I->i(Ba`@Z+xZp;scU%7*QF9sFbtFF3Ii;_~-+qfr{wKUc#GD~>i;yDF1*BL8Aq z58)p92|Tu}MWB3}{bsb(;Lk9v+RQDSr*Tq)7w$~bXsu#lENP>sb+$B9l75RX@J_R+ zgf%qa!@+|8&bc~jVzrqBfPcMubCB2OBX4wh!znpkic^S0?~tH zCEtAT$T(>8_8~cMyT8{%$9jqv{+e)Mg1FVh_Q`OdB70gnwX>z%)4H?1H$>J*rr?Vi zty21;JR_?lv3m$S;wP?`oWgb%~xW>W{5 zTK?E`)e?8!Tzl-Vb0?1s?{U`(S9*?ki*c{3k)XdJM0HqDb==Npkz_9RYWMt%|5yyKD@=vFm zLs*OCd46tt%aEIcmmQ{YqI^b+8$ZQd<-8uBpW7*-u+#l;K(aGZswa_gwZ10u?_uDZ9dNW6A2Ieph7A zf~&iejeI!IggX|HUfa$ZC?Bly^?dJ2>P*dJN2u=bqQ@t$siWwbNq~;d#^(I3X27$b zF6$v}TqI}rwLc>Dlno8*l>O)h$}98JE!ET>8zNSo8Bn^`$z)O~>33$o_Q+=UbtLj@ zUh!2^SHJGpgm(T4!ni5d63(WUa!4=Z=S;qdcc?nvSlxM?k>xuGO$(;%nk>If7iKVQ!~ri5a%nytl>kp^GR4^ zb%A4{kni&{Nf*AZ9|HVUMf^$d$?Z?5uc6g?`s+x z|8!z3)vTm#5)g%XulK~%v0G!*1sP;v+!~aNQt{h=_YLJ689rEESfH+lI6FIQezy&P zD(UD@Vi3^&)op~}WL0biu@^Wly26ez?m)~r<%&_#cP_tf9M8;_QqDLtK<&%o^o#ZL zPhcl{*}JDx-%C*3v|i+(6b_i6A??-I&q0LD}kv6F+nccSwSkx8vc~Iz(v~S3+HTC3jV4gs6dqFUpuH5kUd7L1s z8{D1v3@v|}H(DS`&p5g}-vLAP%pJWRb4HJu1Z6(PyFJ}JjaOYch|a;88|HGvJ-F0! z5T{Gkj@T{j>gRYhiSb@haicGuLGSbLC!pI^0zb_3``tbG#L`j^)er*;8@AtC1hZDN z%Z`72RO8i*f!ZJS-}Mq~=XM-V|L%R`{-(8NgME-;CsNg#gfU%M+eGN*P(oMLu$@hV z;FRh3wezbgll9dJy1cSr{w{OM(%JdB`*kkI>>WwBa^Raoa?Zf$XxtygTxaJblG4(l z=AA8aPuay!P%(1oGHAQ?_YQf{jWLFXhVy?k}tJewyQU1H7HYH_cMUoWnBF3ds}WE?`^!SL`<4pU)3!iZJT~Q__Vz_9_Kbgcva0SuOCn(W!c20ft zb*+ec4Cb68|5k8Ra&J#?g)t;*Wad1M6=Q#ClPQe43wLpTL6pH5hvI|a3fEQIyrQG` z6=KUfa8!*N0>ai0?q^CbQ7?Lod*MKpdVYG^(Z=>9uJ>JHQKV0uZTNEO&`4h&Js~Dx zhP~q1yguEEjksIaLXLS&mi@Y=Ij$C@s;snhJByLx$pL4u|H{@LVmZPEf`>IeHVM8LEr zOwGF~2E%DJ;2;f4xiIUG`m;;$0sP~Y*7@EZf$$GQwVG*Fx4#-%W8%W+nq^wKyNj?#PQp&dJ_qI`%L)fSF8;EZs<^r9e@e|L(PxCggU8vu zMn*CveAS5+>v6Z;w8rS>5Llk%$_56s>HH2#!3o<@VmTZB${7NjD;94^?8i?0rIYh^ znRe&B#4H)V{eC&A?%+k*vC0OXzn1db-kYaH!RegsPQBuJJ?5@q_%H16*UB=G9uxoR zqgR-LD}*K;|6?~v(68GHKF^RU<78;7gU^`223dRRMcn-g&6I@m}Qcsz`i3vu`b)`*+ zRME&K@G<2}K|lb0(Q0X!)*8NrRCLT%&`E>jsN_)k=(6MN`>r>Inq^^~HD&`>V{wpA zAvN@vd}F03utwvQk&CZ#poZiRUt69N7n>c=@i8f+D9FlU{roA0ugM<*6%5@Nn3x5C z5dy*Y&>f56?2eSdqBSAx-#@a`)8zp>?mc5xNRe=@H~9%6r|r88-sj8ltr4#E+zs=7 z-$J;1hacsaHI!xS4bp0~*KaQ{`K?)zNwXc_xTKW1uM^RYp3CpWyYgR0#M3SIr`+7% z7WC-;9TBrPF{`Swi&lJhZhTHtxy-nJ|0WQ~6E};DJ3Dh}aPaFVMbe^m%;(@C+N#1t z6?~R>#Pzuity}!6{XP{~KH7T;?te>sy3M6WP;B6c-T_;iC~PZ#B3FYd@o~;pP^@GEsYv23hkeUK z<|zA`;Y0=oA+V>WE_U{sE?cm?0{zWfg=Xu=7>roe2rIZI-s2mOm3y~ST?9qZLrLkx zvfVgPi_6Q=(FF)*>aj&sAJ2R?qQ=z-ZDe?cQm(`|3!Xm6HJq-$4R038bBMc>d(qlT z=)cw&#d7XXcXabhe2J&BU`7p@(CG66W`jgrW`UR1Ouc0pm7l;+>n9t31wXf2`aAeM z=_>8*=420ez{bzo1rRhvB2P z1nQvKR;-6qLh*KXc0{iGIYH3VL|OeOPKRNzN3J-er*QXSTPSNg1`w{LUcFOlN} zcEq(iyJT-4;z+|ceFUho^#ohf(3iKe?Sj(#V*e@oh>J^|GtxbTX)^$N;c3uxO1R)Q zZ&zl}mX^q>spCbY1*5y<!KMPrf=xge=l zKyzZ+*tau_=Qql?jGVuhIXC=s#a!mfbJOFpzy@kflS}%siZ|qURM`Hdp$j^GYKL_ z&@E@g%04$=cZR!vgJV%zkt2=1Cu^h|y8F_IZsaG2HVj#S>>JaKRCG0csaB?XvOU(Y zL}&?=MUI2n5Cy;J-J{9hNJ~HZ_<>?xFV3Hvi>tV#BtXC53sQIBY>21|u-N;G93n#R zfOqRXM1!Kais9>*aBhrNA5SkWc91_1Pd=GX*Lc`rMdnrcw!F2khCH_++95{D%nK+K?o%u-#<9m#W)`S=v^r3Gtyz~*iN&b>w1xX2z*7qENpRpl3g}LENP%c?+tM3x>CsR{^M4hi_3(;y z^AfkipiarB=tgnqdtp1xFLS-go!j~8hGC^<)UT$n@X>f(--NOzp;|30izHeQ6<>*9 zZMh)zb;r{-we3rB2nO{%YgzcOdvD$qEZJa0%QWB^zxA`}h|eH)b*u>*k0oA$m+lhO%kH0f>#djaN#J8z!I?msiJ1<3c$;Us+t#A5M?5Liu zh4=K-vTG2J%TA{8VzvMt05)?p(cHGhd~t3m{mC6ofwrl!VC~qW_~b);r6O107XV(O z27rF;T#s5UN;OqcS7Dr-`gcTBU>7d?t+CfH`*pB{cd|v6dO(%U_^-?xLh@R=jNJp- zj(6Mx8FTk5;yjqO`~>IE@tWZ(w9(KGp=-;cw;F1n)mj#Hv`5?FWKW)yfOJQM;}%dF z7&oaM8|~_?CYVqI0>TQ7G4kI>?a>lp>`(F2-A1os_Si&0D13$vn3_a;IkJ3|33Vd7 z@ZZjUn$L5{P*sFept!?oRHK7j89O;SQMWw#cqY}(k4(W8(8z#L&ZtaXCf-bnoklScXEi@y zgJHB+yhg^3jst9s@N7H5f_T4T$PHj|G<0)|;ZSV>JuQ?y5qvW?;pT!al&AoT#X1It2<>ch}uO*oj z*XMg4=eCDv`q})LzyJ&5%ZX*fb#g#gB93Sta;gc78n3)L8jU&18tbIqEsr$Un*7Gb zYF+!T2_BZ)krVY0p|!TQ?(6I0=>M_v@uG2bk`&3iGuCvyneKTpYr*pB)%T{Rl(2i;iB;Aa$Sd$YagnB77{5dnn*ix+&wnCoo5UT zK@#--z4>ie(;^v|J{w{mhb9b&9A4j?g#9X}b4JtSZNnbV!B(g6H;L>rjIw7yp#1tM zJp!u+r$bv=IPpG%vPT-N=jyD)wSdGMa8s2Q5F-CbDg%q5G+y+LjSU)!RTY~qBP|E3 zDA~q^B2p$9gR;tnqB&o-7p%XF3{*d(e`8(2#$;XYmy3q{`icI^ml}JRv25W=_7>50 z5$Kp0GWc4u1mnoxyIq%Rx`@#~@>^u7w>M}g{Km`dh9Y)ki%QVv>L}59Yq+4gI^Kw* zufg}pzR$Tb4=?X$z-+!GC0&5CN8EQ*tp90+JoR%U@yW~ko}Qj60!vlPyfcfz6rzir zN=PM96;uKy*9X3}WONRitCC4i!mLrNtD>x>faIXxG|3&j$@*{=nWkdc9p=Gl-VtRU{=jP|FY;B+O z@+N-&{v0GEEd2ANpS7g4G#yLCI&quc@?T?=3UU-I)BE}LAR< zEi8(3Vr&eBW8B&}Y@UOBT6fNb$)%^o>)hJ(D`$p(?JBKB2h(E;6!7Haq>8#aH$BpT zVdao@?-CW|D2_mpgJ53a5)+^>6i4&V-L9G&Q7$2k<%rGNfV4D9A2u-$VIF6mXj;)U zdEM6q-@gYl$|q_03SIO^5Hn*w3Q|b@4EA$I#u#^neqQq2icd)B-iN>1{M~4P=J7}E zq#07+Oz{i+%FIChWodoMSZxf+l6k&8JycXam z=R`Mt(%j(PKF^_@J<=OOW`NlN{0Se~GX3+FF(DyAs}LvWh1~kiM3LX!#k>PB0B@%5 z4>u-D)B!W9zP$I21!Le7;y&Vk8EG z=G`TRoC1gre6%{Y%CH4qUf#M9OM;**N(JKQHG z+$&*ToGV{eKf$cczkU10FcOHV`r*U(em)|!reFegT5=gs$@veM_#--?t37lYq~0HFvo@ZA|g#|t3B^#Jbr1M~8S z!@9dve{x4Ua`xxvDNMVSYZsCf{8Q?O6f-R+lFQn@#*Sm_$OM#$svY!StQutk43J9* zg=3wjI`eMgB-YfWzjr#-#XCnYLVwm+gWMruN`rH@CDaap4s@An)M;O#!|B|+&DXHK z-RlY7b;#hAr&|6wL4>^5tpfSm3=AAh(4hf2QsMf`C=PCk5irqQoox+9Cd9^O&wnm= zGr-2Ik%IQ>Jh?^Meey#0*=o04hc=5?{mKGrk{JGAYDg&x_VD7L@m}L~X0fTmMuznB zHXJgJ@+a8CY>gkq0Y36v1_$|vl8UNpH=0J6uT?Dg{wdpZHm9kyR%V;`C6k_CD3p6B zWi=Y|?%mrnQ%_b8a#EQk;~v<&kgGTt^YgMOc%BeE1*5Pe<8c;VxLE|^+K=%cpsOXi z`W^W2Klxg9mZQ;Wx$L6bO3htS?x&G;CjV|2DR*z&-adV_M6=hRn?$gf* z&f7Ton=4{`bYIbv%&l{-kv%-XV*@vfZpd@nmODh1mD^5B1G%R5$b_FMjjM>NTv>#_>6D>s`Ja@x+Zg@<-|3ng8Gxa6EhJv^_S=sP zK6pFSr3E|f#fLo-LBe8$(E;bbDe0j1`_CQkb6Q_`XZNm*5PEDRMj%@G{I&NOK#Dm^ zwi|6JrEmt7L)uk~fJ;86_xE!rPQa6&Hy0GH6>RLi4&TIRF}<4IF0?|+CF2kXY>sBC zufstEo-?h2pAlPeG)gu$MVv^eH|p(ygP(f3jt*iO(^*)WOZaV3^Wsl+z=6)p14NM>^T6w(995Wf+SYFTCKxK(7S+w?j%_(t= z8()PtoytBNVZQ)XJ^6e#@T%f{Y@d#6XWZMF#v;rxW@}|C_;Ut9JhA(WtPi~o-5(!O zz19C^FDJoY$AOGbyF(E^&p%jLEOO5_|M*hnEOUwu%_UCkbj+#h*U#J!1CWWqQ7?Yp zRHb;kX@bW*3LeP$ORDyeCA@<-abYN*B)q=Rftti^=Pn`dG{uc@>i3xrF|Ta9IBqbJ zvFGCEb)Fh$iln|4=NMpPBFj3kd~mu7z~@x2De)AYhj9V?8iypyzhO9#X#Dx}Cw3un z|2yEkM51K~Lj^oNv9@!>!_P6eAEV#|(hCGj{?9RT|7WuAb9<5jA=;bmbbxuQuWWqV zYuf=hO%)t$Y;r-T=OBP!|6W*#IyyIJt>9p1w{f;JA#yQeO7i5%pL7-Uff5z`9|%Wv z^>3WMO7=;&%fZ}{K$ZbO&f$!ol-peM0K!l;G;~OD^z{`57++9MK|x3=x5eD#r>Bph zPTAOB^wSj$Wfr+9mfwlFPSv-s+*Ws?2>6vz`4dnnuY30uy}W$!&OQ@^Ra-1uCl`0| zATu%VK)r&C9^`?zdfUOXA7EQ^Ga3HJU*D`s=s5&&W+fd1^j^becp3J5HZirt=$d4Z{MY5oGY!)wQ*>)0~UqXXgOC0CUT-H7`Kq4xUkLvoK>e6_AIeBsX)4thCy&R z9vVgfdlr|JL`qNLuPlB*FQ`o==8NC~CZ30nuV?CumIu7;va_Kn>jK2a$mMh8I6pxL zga+5sT#L@L^E!EY!W94{HcG)hnp6IHI%o^{?kYMxG*f|1d|c6SzEK9Sdaw};zr?1} z;b*&ziM)sIJ`dVyb0y$EO`EeG38t&j8~Pw0LC>VF*7hP`7uR*mzgp$5g5H4S7VVe% z`_+tBq^TQ5Q2wdU#gjU2V$hF(A?$>hL+QCg+!tZwz&Nrhy?i|bTX#GyLCC@aL#?95 z6-TXW)O>b>dNsJM#-E$cJyD+{=d(ovVcdhTa8;Z(}^aQ91P| zaYX8IFRWDLkfNmT1wS)t>61Gy*(LaO{!Yua++0F7*`=mz?e#i6VFp#5%zTlQUPZ=h zJIoQ3%B{PU`>W#`qc=%HM2YL_dMWDkqlu4ZtJ~hzPXyP#?Wsis^zCIAgFD(TD>Np? zdyZn{msZ;2AhF(X{qhR!S}tP@Iw@5>v25ijMY4{)X$biA&#Hv#I~-1` zp9gtH#uId~zyDlNFcp|LAN2C)|Dgp~nNSvv_VOb6A@fIL9BDa8E zXcYk1a~k@Zspe3CMtH-9jZc(8^<02Ie89nmxOt8+(glxLuA{^+B(F)YujY*M5Gq9wS6KvSAc16_&eBozirf}mt138K*6`>iDxR3v}XV6bg*M~m7 zFMbU;T!Y4W4ui$$)2beymi48|9UwIT9j)6PR$U{`Jiz`bxHGm88k)3Kd@8=^pvu_4 zE2Rvcu9b4m&fHz0c(sg(5XbciUKen11&@Cgb~VmvgMijG7BG$G-e)*-2&(xGu(i;B zKi)I~_%lLcASkM8$4z^N>WI&=d zmxt8+!%1!_?2arAFC+_FTRW$=qy(xCKq|Q}j1lh8mLD?R=^HIQ8VoPlVfoFkgw0IW zrbgPkyE9+*TKx1+RO0U?9qdWZ#yGSqdBA)kAOGe{EpGxj4^Yj^qO(#R<0X-bC|MgX zkpJjkRtELEjU0`)0!$+b`P3JPtN=m910fuW{!JV&IJ*kz8T>{{N@}-IF&z^vuf=_k2;iPb z-E1p4yf#uMKyF1Kw5PNWl9ezzNJ>UVMln&o{#^Fju(umtm-u=4C%#0ufb1{xat#Kmw+$s8~>6pJ;p$|d z;r@QnzHwt9S`dA830|0L4ls}Oc#zhip@pAsOd*PjF?@vb6-{*H7(ptNX2af6R1IGb z3;6-^g^P;|R4i9&(rqx&6k|@JC_Yx~spEY{GoqA<;cnH{yn~YAJS>n^J-!f7QBjEb2mlxqmriU!fSys!Q2Z)}T9C_F z`t~lyHMhZXPuJSw@abb(biv?34TDJIB5UnCRu@ zV1A=Ewsq(x(>4~DiNgz+aK7knRU-L3y~`Yp9toFEpuShuXp^GMCugd&4{;UQmS>nV zGsAr4&cIq+?6n3hiEugUurm-Y&#pb^c6@<&=|M04p%*^Y50oj`C30E6q|<~BY%YxOrsSV$=EmD$SnJaVSmw63l$c*w@eiWApUHqmz{ zr?8O8p8W-ghj=noi6BcTEcOvNCK=j_l+&fw1cQQ ztL(7~Gt`r2AC{~$a5pgu#@ix9A?8TNlj1akCvIq3_ZP@d?&egQAzOdVe@|2_%?Abv z8mY&&c=!K0B$3pjdYr>gKB|n2qY)16T{r$0;-bWi69XE$y}$qW@1JjV4Gm7alPvP{ zt1p8Boo~e2U!@8?3B1TmyejnRYlH}8|0F}rP}bMa*lM+C5_8G)O&y2~==G?!syr+? zc)6EG%l=wQ^_9bSC7{HB_}|)%hF5P-fD%cujF`HbNDDVr>6!Og;I<;wP4g!yn;?Cn z;)$z%U+Z5#btV&&rZ3|+6EzL03s|)PL(xZgjD$}Nj^)eP!9$Y(VWW4N@*2du7V^wB z>?IcGN=62?3_?n%oE_)(nT@DVNA6zji}e_?VR^RoMSBTF@o#xn{k_OY^!wpR6_sZxV1;c?lg zAry1^8!XlaSsE7_BQIS}526Z_@Oz$TTgVUtiq=<*fFPvVrFt)Q#RMV8*{#EF(Cvf% zhCH%60sQbg=lqwg!-@pwSz9sn1|r=y(8I~+fkSp0?{PR!-uSk8{R+l<-B$N*z3`)R z40q|^=+{V6&z5Obcba8Yo_6A}KmU%=hjD(s zdu`f#GDX$$tR~s--ut|(M;c(#(2ZXZxnr-z19st_SWs+G$yZsX5EaOKS}%rg2?)fF%4K1N3^5HbWj1;Qa_?;Ly({^)R zm3d=vn*P%}%3L6nWu&fwth<`QfkN7bZ*fUMU}hoI;!gR|VT#`SB}IJ$1GOJ- zhGpmgYdyW%XZdzkVFfyAZ9NGu7Oq>`{C*Q${-m2!LfU?hs=j#XG(niwiQD=Vw@B5<|F zK9zWTiYJ&MPvs#6bV8*|r-`H#h`>#la^o zVfr#UQ`Gz7aT}C|-vq?D;gSvEr>H67mXZGMm%JEn5`-MzX-92(wgwPT> zl<7I3;*AlyUylNyl;SGzqm#Jf%>^x4oC zHbSx$2XZ7t%vKnBtfD6aRAiw>;YsRitx9ri@6^ z_|>e!In%5DA?e#xgrB7{Q{4?SD(VE|ND%)uxE7;YR@kug7M7u!i@C06_-bm<@Xtq8 zuPz$f%Mm`%@Kfu13$mU2uf(6T@?MBsE;##2|N4jdKkK}Kx6^(0Itc$1Dw9gaTHT%m z^(Z_J?@9L|lPo)>+5m&hNe>%tkE0uxAuYLnQy(>@%1$@a9Z-*EOyjgG;4K3d+at$= z5n2{9Mi`)ehUs=P`0HieP^iUlMYt=fa9#c}L;sWMN6w{}dQGjA zGlhNwDI&N7UV(gNc++kTdfl?mB^^WgM1vh5>lW*6G%N2znwoRVXQ%tq?8-q3srNkU z&^yz@S6==shWFKc_kRqlH~$!hq}Bs6jql`@Ogd0o3LLW6p8))0w%QqDd^%)q$KshA zC+jC;6qZ{#!k=DWaN_CtcVi=D2gB_zIRfERtF0RW(~X4bQWmzG-g>+<%y!_jVLkRH zSh=LdoFG6${Wnl@>ZNga1diYxI&sLtC~PZzNJoGh$bVItl`{H@Rr3X0cN301w=&&R z1U^3lHV%ARPiKx^bzkyiE?WX#15ZsPiTR2Bu=94RA(aXAn4Ly4{L67-h;SD5!lPdC zyRj7aS+ismo#0Z#FI2qNB+2@2sYDcDpX&j`!sg~Vj#bO}qYmc|Klpx2Y|QN*0xx#g zq0PNCA8~0PlYuWsqFY-_Gu3{%{eI;TLFrws7cLszb z`7&{b>J0W^=%w)eup$(vc*)78+tViN_G4>Qbd&?+H2n$*`4Y9;-ouI2&fp%% z?NH*+f!wR-yX-gHDYC~hfD-11u@1fWMmW*!ZPd{1(MJKVJbZtC;g%XaFSLbZtV>o@ z=vA{Y!-xuGA^Z35q0Bfj%FhTWb2f?Z7~Kg%&ncpLf3{Kk^k4+V5$^0zb+|dOx;@sd zciZy!@i_oLnl69xgS3FxpNBnZu%;RTk?FzQ#`px`B7+f9bO%Ezb1kg0Ghoa##xpr& zGnHXwy*F-RKBNg!M6V_e5wvZ+<~BTl=OKRo8ye6tBl7&Fw=1tNwmNaE1}GnQwT-lm zO@P7(o3X&E`C99R(U{w0>xftqN-%bY5+H2Pzv7A&aF|EWQ(LeocPx{yXH^w7433xQBCx zFHthevatK7Wmo7a{P-2uYapil0b<5`S=m(}Wk?dz!tu6@gV;D3 zw$cCNyYs$$`ErTAfHLHR>_#dhYia4Rt3la&G+?K~ zD2||@;O@sRy=}M;xSXJB8jp?Fc5dv#ZE635X(Z&$Gk~8BHu!0s67?P)>|NwZ4U4l1 zVe)Dvey#Bwl@$0&u;+u@?<8cX;5Wg12pa!MYV!ZT8^R|^C71fcO$8(3-A6<6jDM%& z7TLHoME{46)bpMlrPh9dMZvX&mv)d8(`H@o(E;wY&5DqYGn0;Bg#ejvw|GIodV z1-M-iVGgN5KpqazA@o#f)5nyLA6b?mxST@skmqWweZMPFFBkEf|0v?qWdYJsuZstC zSYjj_^vm~mzMzK}A6}iVozB+Yi&yV%i2w)aw)p}!DC?C9^ddq~mOX5UKi$>vJ+{f0 z{7tKZ(pQF5n3i;!6eJlq+~$Kup|tu#DZc<^nCj_@p@s|F`d`qJ?vrnjcR~4x!Ia!T zK@5m`zTI>|pTFfOL*f(XVb8!&%u677w3iZ=6vy^LlLoayj`%>dL*#tJY3LmymC2q4 z>^X|u*{_$~m5n5d+S_*Smjls3fbPYsLEld_M^QfEE+K{r*htDBcjkEtveU^sYo{8& zpKkT^Vf}uuA9a3{XSYl`pXAH5?Xb9OdkG!!yXy0Y()po@=&(MxYR@GZuyx$Fdslde zM&R;1@8ZWtl1frxQbq(~f1mQ!|0eZ?zqL4*_r6woc1G}AqFuQ3eshy)Y0Y8}CX>;4 zQu}70?os|-oB<+5HDB5Z9vMh`3cc=5myYawZQr!_2n0>O6SdqEgcrydMA~>F<=*T! zd1JI<`iSzpp@S5N%kLFIE22thA|{nb5$X9Xm4>WH13P9z#MOV6y69ya>7h2mvq0@H z{#41fQv+jt2=$fD1msY}MSk`u-2OW1Bp>uu{7Y?3-=6!~jQh3b_*;?g%B&S;C(2~p zrDO1E{g_CVVNJlCp^Ms$_EOzD8u`@f&y?C%cd6D4H13@{42z0Tn7+P$ zB!ITl|0a+w8b`zn-w6=2NWaVjL^tcgo0ztzn|Mg*OX?_SR%8>Pej)M|eWI$bvJwv5 zdn`OcT1s+tNPe{x&MHjP@x)7AhM)4YQKA5F0ztv7ob8`HR_Rf&OcL3hsTUZm>~*E8M^#B zQXHG|IprGPNYKKbJ-qfgD*qP!`F81NJB9!W5G-HQ=Cr?g7uer&>>;u;T`0PJT%~Aw2AqJtl8d(46EHupWnstmxO zqUTG;{GBYBuHsTXV}?=1T;X2%u7K-G{bbt`+&+`;?h(z@`J`;3-+O4GXNbEA2)o;3 z7)_VyiP?(S`4klvhL)AR;(DwVmRx==An3Hy;(tr|~z+oThof&K@_Ee&hG}6=HaIZ|1W%JoP)^-`X8N7`C?w zu-c?~Dg9=sC@X96Vl&l0Oic%i$#ZPcGi%s*wio*8E2ap*wBg>;FpV-mH_V z3IaWHfB3%u|A(z}PRtqf0)WQVxfv@k=%0x7f7x3{$h>jiARS|tMt}AoaO@7SuQTt8 z;ZY_oy*NlGoE$(q8j}>CQeHD%}-)6eA+1(VXqK%hSasoo`=t)1ttpRK0vi zLD$6Yc~mvVP$Px>h9t9rq~m-#WM56F&@Zy(7Hv^@_Uo;h8zGP-Vm>kYdOtTs&R>;u zM-vTBH##ixy8joq1|Wp|=$|R<&Sf)Q2E5gEXq$2(?(gdZ0h?6G&24EbN=m8~2Cx~P zaFcp5xPg`A8N`Pw@n9&fuAdqkPbUd3zqmb}MADGni=>M(NQ0{E7lo+O(zRYAe#1cI zr?c#BVnsK4&cZa8HDIkm9CFrPNh zf*`D(0INlNFjF`gP$M^k?Ay*Y@)EVRwO@8D{B$lUF0T5)5<8|j5(@P8e9t=&biC=m zw|hi;?*O`861e~oXY)&S?Bv!oOh+~d4&R7h(deKp@Rm1DT&vTe3&KN7Urof3pj;L> zFnXbt%5+#zZT5ZSpA?7PqWjkqp+*B2A?%-S)#KpUZ+T3(jNHu_fBkeu8S-$gv9ZaQ z?$9WrKP#QDs1ad`&ITe*gD+yuIcbsswa1HF??T%!F_@L>tB zaVJ^jP$FEet$fDr*t%hz(jd(zV*rv@y*RhFkk z!D(r@D=TSVw21aai;UDrdvg&oTrdt{kv`VpsIrxOOdpK!B?seKagDtmk2^&H)<{a9JL~%*^l<#PsRmDF~Y) z;ER6oHO|X^o2#~^M=bUEIw$Jtm~`>Q{nqau0l)eW&$?nMt->4uZ`-zwojZ4`k3ar6 z+qP|sSbq1r-&M1+vaD=E7`eH*F5g2wwbTQ7UU2OIbq=`vPzvM+K)FY;bQ?r6&`7!7 zSiUC+-Ek?3(q|?8MhqkWJ28|72$`|hUq+r6%KX~A?Dlr7z7x(@UatM2Ll@viY}y1s zYHF%x$b0sLjazXMPS3%*7hMw9_eLCl9e`oOKVo0yKIYB6sbAg02HFpJ(V`{lK=gHV zBaRn4`T_gOyWMIWFb#V^SzxUJ>*$7h@eSAT?n?*zEMrYU$UEWAZeq&;cTX#%rD;ZJ z>UEG$9$w03Wbt`hO^K?T_OM^fldfl^( z`|eqWlMljiT3--^=){x*j+a|*xy3m3KHHy$CJ4PDIpDJ!TOLO#rYi`7&^Pixc0mvX zhY$l61VL~JFpzV$w9y=y(+x7PdqFgXQzgFrcnR5$G{1$onFy=`j%t`YVKPEdd6z!A{ zR;d~HP>OZ#gh5*Rn=f1+)k~wAl%{k%;s>9)s1JIMSw&P(^b#M!N>UC zvEKyTerQ`wxYzi1rCeG)g9yd9rS=<|UxnA2QrQNvKlyzn`3!^P?<2THyaN+$m3WMf z*}dkGwLE5mHnM&H?qf4v0+OSN8P0o`g~y>UWdcq;U0Oo9SKMB3oG)qM8@BS?yijzP zkI9}M0-?iL0{BZ9xl%;&w`>UnKhYP6RIyk+enX5uw8489k`$tsl;P;7@NI~79muAd{DVA_jAqA zlL}9lVxrRhOH1VQrklCYWiRZMLuvKlS#eBR$EG3kOGUpA@mH2Ra$DQkES@FL&Z_># z4XMb>@_-}g`cWt37Mb#)gsBhB?_h-`jwXM{=ROmj}sEow-n82tQ{6ESXAjC}F% zi_9256C%IM5q|oqhEDYRzNg=??pLJLtj9yV@{lZ_HG^pMvykALw-V;BA`aL#uc_+j zaS87`y?@Q_Vl~a5AC@4=Ecd{PZ_n#0CO@`_|ERec()jX-f$YOgIY<{L$eTaeP%3v9QuS-Z2)$OrV;6Ng#;m!0AfZcZ zO}U{#VZ)-$ZfV`W=^@D-cAJm+kS&bCMZ#8z#D=_CO5?BgG zhuGo{`2SOZdesdJ+qiyAqd{t+rXh20o*y)Ar!JbyiELSQJe9BS?37@qCVW7MGgob? zt|t(>leLVjTlOl!Io`>OCDwMAj>%P0P|9v?jh2sp@T1%o=H|es$ua)oB}{dS|KXM* zv#S+m6aP$ArA5+Cq+hJueF^GB#bmC4m*w@Huh(wXs^5=4d)hu}xt{!*O`MY)zAH^Y zX{$AEGc0&X{9!L{bjubo$zWrm_riuFnH`x6Woap7;)$mqYFEd>1{pGz5ow3|ewF@U z2%CA?C5~<@F77))Af&h9xPc2uoY078Po5kXkc_PNaECQbHEea?ySYlgxcZB`eX{Mm z%qk?5QsJ}tl1|Ve8`=mwSSh7UmN&kz028-gTQFhrC;lYEBuVXct$4(IuLisimkH>M z^~`kYpw4rkDOfF!DvMrqO06>y&_@-#&2)4)A2t6paTM*bLkokxzrXAG9n=2V!<`8Z z;);)wL|XH+rGa0S#}}l(Bil(XQ7c(^_o%4ad)`l~eUATlfl%=lDjPkT^eO1&_Z=H{ z?+nJz&(C)l$%;MeNcvVE`0__d$-1+wSXZP8as1b>?U8g_sU#dLF$Asm!wlDYYP<4_ zig=AXgZ->$>WmqD7T&$UnEjw8Kk}C_JMpRYLh@_N7a&~Ns*$VuPTIQmFXjaOG}zAy zdlTml8{6|v`KUn;p2ERZ3k0iDs+4QZUaFt6GV#-=*7_5iY;2ENWof>_pd}dA4PKUX z;Xq$WmVzY;)2NDJOM6cRS$@P)yW+@cp^__gA?6mJ>@4QU5qzUcVGGb;UAu-5KI`d9 ztEm^$r8>M0j*S)Wj*i@{R9V>Yc!P41n_VyOFOiW#LJC>i8|U_Rc89JU8WQ(bL%s5?Qr?jAnTNy4yz3cW?HIQ z&=~zfC$0Y7i-+e~%0yj)hFWfn$>02+iW#Y2iVr2^e-t%7#jzDMhcmO*K|GZfonXxNpLqmEI&Ys<`n-TSM@0nnEZXDNB#x zec_3Z3>2N_ixy1PGydM4dxX6NcgI2C&39&h?xrx`)g}?JbZnou&m9;xr3`kYk z_70kk%Al98PVeb*3VBb)^0w^K!j4WP#dFWt!n3f07Wu6xEG;cHR89A2*}|)fOd z0_DO|MbDRS_6m=JingX4Hr-~yv4;hW=S8rBjOv=2yQ!a_pRYgeB)B^MX?3agfXcw* zv8$`AMsqd3|Haq@WtPY(jX_p!+SyxfC;#`1jr)__#9}PC&DC}P-Aj^eek<|9?GSFU!M2~@Z~70eSQ~J5*sj8| zwh1H@R4?(LyO6(#d{wBDrOY+kX8U<+bnxEM^k*M2M$Oh2r(;!*Z(V%-K7M=@@Ya8Y z&^s4ejszKA|DxK$b&W^3(#Q&!w4cYD>g&^M={eqG47F1nfbtgT~(I~S7j^$iAKakAw+)G%{yGix?p4QD%5Et6CO zTW&tcb}~qxw#3j7GNy_8_N}ITZ+qjpq#KGJLUEN7#=uO9 z_cb|rXCSXK7vi;7q1T|s+gL%g;kc0-g6w)eV1p_@2mIrEch}|5DXBTorvjP5Ja%53 zLn%_e>f}l_ggcJf~8qd!38iZibExxG?GK7bPg%ZDUo7# zJnjCsM5z6LtI#>E^?;}clFz7&3}hl?&*fR66#Bx?&KH10@;_60m)%%fme%n4A5`Ib z#=RU--C$J9KjzL8;kQrm@S#CgSANY-o9JTC8UIWvxA9|*KA4bk<4VGfb_@*k;LTOn zQhqvtE871lc=Xdn_!6j8x2_zjHlF((riClBVOu@HRPuq@QG6%bfXL&3f2xXEcATOh zGb&1c3vT-~;rowu?Rp0`8XB67jpxtt5gId}w!md%M&e-3j_bc#-$NAB_!Dw-ul2^W z_>~^>@g>+UWV%ST(PGHikKv+rE7O(~{YH4engWJaO@6;1pP%jGz}T<`B*>k2U+Xbi z?5^PZ|IOW*Se_=}Q@xk{!jz+R#pL|89BC*G0GI5}bj~t^By(SW#;ujb@MZox|FO6E$BqWBZD~6)*@YozG-3 z5>X?~Zu2#VIS^2-asw3N9s?LotT5NOd;Z>J51LTCUdvO(6 zWg@|ofbH#^`1X-(1`J(TewP+B6o4F=9#?oE=V*{e3PlE>i2leJ;84`tTtlGC7L#8xop{Pp`XpyKgrN9WstKiUCYonVX4VIKFwN4 zM7ZHrM3UUOL;HHsr5>eJznQ43U1dg8@}cZE;#p-5c-7h<)zWOTS2aD|Rjuv8**$p@ z>2^@wdDQQv;ESRl8jQTOatPMGEcls10He1E1l`~Er1(;#n2u{QjHAhw@QmB3U4bAm z`^ls_^q~;$ydmZ_}rF2vF1a`UkkewL{nJ=!#?kjZILXdD$Er#f%zr;i|t`W~yA zI!|nf;n89cDDJBtZTq%S?Dld!cKz(i1Hd@+^-NGWu_&_3F~<+}OO9cS2Iklw?&6FX4o4;-KS=GJ%1U#nD(2zC$jwd!?HRMf}B zQg(4o&01Ua{(e>M1>>BZAX))eUjI&;%y)H9}zDAlcJa< zw)93DH_(#@uN&&q1s{~q!orALeI#hq90xz?P(OnYUcapCy7g=n-&Y}_3F$&kKZklf z)%d#OgRS>)p4HmQib*>54ax=QF`sw3e1|s6%1RW|ZARlRX0xTneblY2eNY}GC_(iS zQi1b^E#N(5=A%=h+4}~aBV1iWeT9P#{=>n5>stCJtg^=cahWy{Zw#ptL$%-2nkXbP zC}xM2TExc-Yb@K)D!R?F*)n+75A~pO$ce^G_CE7|_Gl^lpjVM%el zXmuVj_SxqZqfEXRzSgvji!LX22+XAkzFHU-fKs#sz*%BLH%wY~M}NhN;J%e@gfRz% z`a~E7VoTxaG5-Dk3(|qhn~{D4=8%b$Nsxs^c)tmsDiP~k+<=2ra9XG1^jhV%;P#qC z@Xpa9DA+Y#y9Mwxu~RJ36M8?e`T6M$exiS4iP&1a5o*(AMqt&&=K?a5qhd6{IGNU{Q^8SA|4t#@aK8^% zjD!v|Q$y1=iGGk_$d;NA#%?>#9aB|a3IH?A3hLb{f8KaubrP|x*woZVz#bp^Z6%X% z#$H|BMF?aeDh1;=3Yg3U83(*m(gUb zFlKqG>OHpiAq9kQ$)r~+q}@r^gICz{u3@tQ(T2;^S)uj*xz9@~nokE9OF!1!ub3Hh zr7^_LUQ3Rk^1q`S z5gdkAMw8V;a{F0e@P7O@&U z&0I326WQn6wbazqENpBxHu~dV^Yed8Pgj(Xzy#6L)9ZQd7EDe}4dXEUQg9)yHs&g= ztL}LRs;B-?_OS;D@`-~h>Ln!GN<&>R#2(9>r%kIFZ$-K96#o)w z9{6g5{Pw)A?WAvyulao5T0=`qU0;7V&Azptgo-n#rG?(8da0A6?mvy%`QkpD%D45z zS&&$(YpL9yy_**k=f}^VIfaF0Z;>rB?fP2NS;W}wVD8r)!uwqMEJjCSoZ?x_3#*NA z8~{qi?CDnESXo)U|488>^4j@T6un3yfi4F?IRzIeB+dH@ouB?P`GbcOq?qPP1i84$ zAY+knnAS0m1E{A(d(PF6Is=f$_y^64e^>1Tj0k^3S{&BhoJ~7P_O1u*UKjFOtv@fE zQ8J&*9QnPnR=?=H^AH2q9J@=ALl8{Oeb1OGwAMXq=CzKrs^G<Z6dMUNCt7Y6kDpIDOXw>~T@qTc7hzQ__rS8O`G9o=QT2Ebtn3c)^GnC*9>awlBanjZB=0%4k)B zKD&NiJ&$)#77I7_rMsRwYIz3$34*MTed7yo%Xmmc1G|C#^^2s6`o%cg+~)%i;4v4w zZ;6hn-tM=Hg)Uc^`w5?V&!Mv}w#2{jsh2N% z3lpAX65s=dhXoRv%D@z)Sch0=A^Bp1QtO(Ftqi^Fh{-0L^YS<2?plV_dM@5z({>&k zPx0e{gqLC6N6Va8hr3ggCtgoo^$@-*OM7>$9~t(_x2~j}GvY8U-^e=9@!=U}2I63P z6uo_OEQ~It>VdqBDe*f=7eZdf(3kI^p}Eo^Jxznd^jjt-UU>m}6`kM|jK-|+u_Dtr zz8$!(t}gB*F+0_plE$Iqj*7NLp~jY4=mSSqGprH70^jhS>6}w@*%N2t^nsmm2N{Ca zR49gb>sWLV6ZRjw6Ux3q%o_5L9akMA^z7B~eEj^OQ#4>d9}izV=wsXIEI#WG+8My2 z@79MTI&uxCZpQdYO6tM$JYRZH^UE$9_s%Q`yS8BBIgaXMEs$bO2~b;5y|xwstiq*_ zSg~3$=<+ZNzWag2EpX_GG^|$i6^z~*PJgB(DCq-mxHguyrV7?2mN*~nN);mMOKz8l zh!&T|NWrM*=j(sP+&WjY?WI}?{!Zw8&1B$bXF$qqG`Vgm){dmp@DH>39(~}PxKN7q znpLh|dVWjhVsRcKiEmi{LRD zzkRR2%?Pn!Sjll_j0ZOan_*2md5eKq4030q5*N-ecEbHE{_t>EUo(&XXq#Fvm*RSl z0-Q8p=JY0FyDKM1YA_^leO`C*ud~7YuI$V60xH5Dcr&k9AhZlkxeG~q@r{^v!^#iv zMo8QYc7uUo5N0th8gt^FLF}KfATSKkt|rRj9s~ZKq5|b>9_U98BK?p`CsVO5_=_xJ zcn_+NR*s~>?Cisos2h3_qv=<*mngFg;O+C6_*>1*O)l$)XBUTjFkorKKp*@1kiuOV z_QweqBFGR3N+TD(C%_26e_5*Ez(*Ot-=?RDospvM_b#uY=yJZAYIqyjv|H(4miPX_ z1j5>Wm&Dn;n65myHd5_M5lXN5LZ0EQ%*< zw`_@fXnHpABE@EXhPUi+;g=`tU1DTy>)E%NqTZcib~~KZqN(@tWSa`n?cEV?xEyn< zkS+|DzY^WZ*f5DkNJ62Xs|)FU8pVCD6lUUh?eWpjGWXM@w#(}bNVGKAxZ1ASwk+e< z(pz;V9LhhMu|-jbWY13`{Bn3PGv}Q+VUmn2n1`{gvYJ!Lt=ZpU0v*}c`o~02Hn(Qh zV9hp|z5^?Kn3gM!87k)vX&R#4Q4$AsD1>XQhDw6%tN9QiX<{aK`NI!}h)Av=D_h%5 z0zmiD-S|(ug&mB<9AMatlhuF# zKomYEiH(WzfSg?4lVVN@mE(Uy6U#*C?Bu*YCJrHmk(fQf{3op!@qe3>`;R&OZ`|J} zzdPF+I3@tt|Br_DAu;p*TIG5_H@CNWz2FugfLxbXR>sM$shLV&o}VB1sb1s(AD3l& z_3FDo&iz{T9EP!|)xyGO&dBC;#W`s3V`&YX^pt#yD)R~q;bFJ#aI(pnnY3qmhK8g0 z^6?-GOH1SP{W)Sjo$z1)oq}{~bl|Sj^aIaHUd->6_;t*!%VIj5dvJmn`748 zcep&{ovZ4NlC~;EnZ^Y3NK<}pXWTi(lZXF}QIhEBx#z%5QA5#FJp}m3!H{eBy)G8n zy*OC~1%j`5?L}F&@yS0(vV>i~bazWVqNO#ll6&2JvFvTEyC~=FpZS1B$SHq)Hx@9( z3-GN8W2DUdQ&K!G=PgB97g5v1IGfI)-lkE4>vl=5FV2VUT+FuQEIgG`c*^u&L(h?k z-Xg5E!F4_Il9lDxfc4}mqP6@w!FKPoXQq5r!7!M!^&!ModK`iad%Q}5gYg{U<@u6V zJt%f+*=nW(o_M3EOQ1DRni0uEjlgH%DRQ!E%k%=k$cf& zRHn(OS&AZ+F8acS#2f$TdoXW$s-`2euT!g*yoWJ#<|>a?BC z?XU)cJ$mqmhwKBB&+;5yQgN;CV+&6(E!1gRD5pA@^?6J$QhB1*T`}vg5BWa68xU;u z>ww)H9&g{3=dnmizby32YHG&jK2J4n1nnB21S$>ah$+~sNlVC7paL1i-(T=zDgzW0 zkW!l5|H(}x{4sYg)J*R-(5?~)6P`SKcDh@1;DfYm(ishxc&|hu@n2ei=;w3FjhWGn zpQ1xEq^fRyhhD|f34H^Qv~V$uZDN=T;17Ptc03L|3&P&UJ-MW}l`yB3h%2|0aIA+{ zyw{BV^WZ8=)b9xdc}CC-7_`FlqbYSVvF&*^1A|o|;XmZHfHSEDevaQ9o5jcu%S#(A zc#0q}FuyfD@IeL6tQQkxkU2EYSU;*T?roSgY1KbDoNxvFAL#PrgZ-?JiB~DcTMZl= zzP59>B?s9k>W%;{8RwOR@#f#Mc?}II0LT}7fRd;`p?MUFAz}WgT`oj0#8sE>$4xK_ zV&nV#Qi?z-)ert{9jbR+zpUhjr-^tx_+9vx zaBHaFQJD*~m)`<;!523JR(^Bb{$g~=y<&V|&*v@qi6WT#NAX@xZl`Lr99uYmKI8(_ zUa^I{{Fqap;Eev^EuPQEC;d7@4u~@m)KB45u;}*0#D_95bo~JXDvDk7z-|{>l7A6X zk_oGbeRG7&G@E@pJMxu4JkYq%JX#F>QM2cO{F&fiVi*y}6j?~$_arS3WHUZ)Oa|zM z2A?AO++E8((t|hQB^_VxsS``_po`kG7Y0{1k&4SXjxI5{+M909bRAaBo((HYsZpcb zc>`L~3|?^CXn(8#PzQ}?+{3A=(BfiMO}$#16r8Uqa~H9OWWv0*vy~mS^lEHccjy#D zPF{ZZmjRI31Jd(?wv3n&Tf1pFQGk_>^J4P1i?VZx5Z2eJey$FC!$t^hL|`38m$Tji zu?&2P6}-o~`iWbem02A1*O2j${XvDpFY$MF~<%Z3-Y^58!uoLB#c3!Ps-t@lQMgw}-O+&zMj&8?(q(Js&yV8A*_*C)>1 z4kpgejmht2j{I|H?e0#=jKQE*Max6()f|;c&dq(2E)-D<&{(VvRV+7JAq>2(h~K|? z4yKM7rJ&BrH1{=ER4jgFA$It8};^yV>QFWz!v4n4xo{GSo#RR=p{ygb@{jtXX}oIu3htqOj*UtU5hHNg)Mq0}mCn_+eEc0l?AQ*m zR&u7w*R_0LJEb#Ws_X8O{<#~^cSZ?lLtb7NneEFs73@lMEDQY%!z=jrAZ6fwLjz5? z`mGQM#>0q{-Fhep(>>grPcm@wL0@>a)N=CfQ3U^^zxes{X8;9Y$~n)rafh$?`1p`- zUpK7z8D$bms3!3pO-)p0xbU^8(#pmqCgQx+d`FpguH8%jIxiEx4)9iWe*}-yCmSF| zVm8SP?KI};9RNhT!|?gHU1%>Ks~f(CCc(x4!R^UD**nZx3& zVzP9=H90JvmmJ8I8n!Jv-;LZ-44+9BUX3w8BciFJH?DDLoWl~i=PgSvWU0Q)KL z?99s|8}nL4?qpIx*)LBvHYSa%4PvYRgB^)X6i)FD4<3C0n%Y%u8>MQzUm9tv%3Z`1 zg;!6ZaG#mp>U`4Wy45cvvd&E3ouLxa-7sev8x#e!j#O zLHOi2hK=-1^Hcw1kOVJNlT|ik(0|;%LuiAKK+Ch>z{JGF_sE>3()i?LIayg;7FppW z;!2rz+!tW(;Su@a^2zCG%=gYK{+5BVF?4_>eFKjs2kppge6LM-nMu>tB5;#^W+ehD zUN06d5P8hGAuR)5{ z0Q6X#dk~$cfSm8r$*e9Q;|$~#Ci-Kc&~2PH?j)ju*+C;NV@uZq_nk;-wHF4mY{9W2 z0X0PWh;=1knDaQ)MECSF7+GCPS<&i6%D|?=1CYI?ogJ`xgJNQcc^Ma%mzTTLaAJNf z0pLbLK|x`*8E|0}Uz0uvB@qK)V{Q7z=dFOa$?QA8LntXJIZl9`Ht+zE$XlkBAGHZs z0_k|XP>)}JC@&R*+Hy~)6M5wk;h*N1P9nZ+iEym$2N<{#NytRJ(NxMGsj8H2INIp* z79dtb`ToB}X||DHzdK38PKM0oznBB@T#{cM zz@k~M>m`+D&aY@-@9_hvlg+H3vifXnzFC$AepjZlje({BO#c0+Q8xVpF{9YNhd}im z&0;5Za(z&SJei~~@9y!hs;bi8rP{4+<#Nd77JGTZ)sguXr4&vnOQcP@retiK<2Ei$ z^~?9#ja%G!jOAayb_)5|=lvh`a%2eII3j)<4>jFdn+V*MnA0Z*tI~f&^@~LM`%o&@ zS;bn0k@G(QX~`n< z9!2+`(HF*{ZnB==64OeOTBfQ9x_qv4e->moMwknY1DP9a-G~AIBzE03PvQFDRyD%$ z=}1a$Lvhkj7S+vvo^w5{U*U)fYT5S8E2AR#m0BSn6kz0>M*mmhyU%;WiVR-MZ-1U= zjMe)ge9i`5uy~qv3nvVFV_Xim=-S!`EgK>e7&g4O>-Yu;!aJD8}W%(I;;{pVt&V7f?kMq}9Q# zTNolzP2itvh*p_I`pUG+h`IkE_j6v917D)PW|kK{W}b?yCG+Lp>{LMBD7M|4dBl_N zf1~)cvVXFERo$X5;(g;G>st6q&UgS5HQe_yk#oB+&2Ej;ym--NLdp27%uFa9ent*f z@LMzQg3F>1lIs9S1!$Jl}q(F102@Pgp2cfpt4%7hRCsKPj-KJ3Oz~7H2nbi^wCCP`xhEdU9P$Q5v zp`xTp*o4XB6-zSBUWmP9zcKHlmYHcpmWX>f&RBD$4urmi`fz&4a2K;=K&HrJQT-H$aLEyb`i&gu0eT{BJE)b#0F?#JZ( z4g)@e0|TAR2lgWwk#TNZLsY`foyyg#e;v_EEG61acKY3(_WYRH*1S!F7sTMFcTUqi5T{9qmn^hPCqO+XggO4cd9|^N3)H zXgM-&_PU!q7u*duc_$vVL@6f93DRE|WmO|36*?g8ziZeVgdOus+-%c)dNC^`p8wF$ z5ChC_5>5swE8j4z=-=v&Ajf)tK%=6wT?t^IY)-tlXIiPlEUlA8Xodo@dS_>+#lNKN z?Cd_Xvwfo0(++K2$1Uln}cspz_}BjD#}lA=$z0W9t4wYyIM(~PoGd=jN+2l$cc>1i1W2?>Eb z-oiN=e|{j9kfQLUP%-7xw5aPI1%RjWTMpE(9~t+2YF#cfc%ky)k#iI@uRD3g1({P` z9updhv$wZ5WXZjaxHZQ-|R4AO&<;{HaORO z{)X^t-?0oYjj8l&@0m_>P)<1tC88bL79-8cIZg?rN* zQ)gr|``d1vG11p`{9^8V@s%g5rG|^A?uEBAEOd&(Ba`d$qKQw0^4gx_FQY1C1<_q5 z%|NCwd@~50pQL=eHLkYjCz?>07!;+jZ;&bI`JFrOnMf|t@fjMKOrXxV_TCnksxT&8 zd%B?a95cE*pH18h_qj5MPCt0giGC8;I~$=7W`x{u z+XH&m?j87-m*rex@!xP5FkM_+98Nd-4PfcQt^=>qQd5D{>*W^4l9YbF*Nd2-M!YCB z(%{)}b_3$Oz1B~#$pQ$Lkouln3akK}H-_(wM=^*B+jv=9zXUek)}?LTlG&hqHjp{n z+2INUqb73}E12-Q5@!i#!)Q((_^;f&PkIhp@(kn3onOu!%FlnIJ2ca`F0)XQ17J#g z@@MJ%ySU<{`;VVt9j2Z|YJ4EPxz&=||6*m5(;|v2SNhZ%$khFA=qOl3-vWS_RawzD zZF$qeAoTSbI{fN>AStivMWA5D^UKu>6Xdo09ZEn3{VP9_La8YOSfaz=zcJbWV}U{X zA-3_D^Y$XFnm{Ic?YKYwX8(%njc;_*(y~Py>ngT5_2i<^h48@w`RL~FGnupA>#}`Y zWOB;7*u?rJIT4zg=h-VjQ;QdrIX8f3h!{RTC9w?P*`|kytA4^IXtBOWHb8qnyhFh z=H2JdBxj-b$J-KHEo!f*qGw)iOO>9{BCtSaRQtbCL(Z_Wx>RJ6zMD?Buzm9h4k%U( z`QrdNK>y_@cvOJ%Q^rBS0q6(G0@|QiFSI#>42E3`8*lI0dwO00@$}qA3cQvo ztrCTQ^l}|%UO)g#Q&}Byy3uFfD(VG)4gz1#jpF!ju)vkv+}!HgLPQX)DCQKeM?KDEo7X{wB4fxfRioj?ruSTQBvrxeU{+(e_)Ya(*Zy5 zs^vlfkzy*c*QZ2>Kr;TWoxskBqTvk%qz1`Z?#rHG{qd~4o~NI`Kn2Z++s;Nrj1j$2 zG+lsrgeBFZO^6eo9&HD=kD4r{Q67>k6I8pBO%+$y5WbdZWqb=eoURTY7+E1Q4#% z+pn|4`a#}8W9R&jZqF|o41~h=h6QBPFWSl59=#7juF*m-as1k{YGBjS>45BFRH(SE z(3r@N8CGGb-Blb>LN{f9yhK7IH3?isyW2%$_C~Gi8NqRgZNA0P^N5i>MjZ%*WBv>-mSy< zv*6J5;0Q|@E)5-U5NL08Kw^JxA){hL6D&EmNy;qo9vbhPS6ldY+pJH}Xq;NeMloiJiyo;r=BhC09EvE#3hLw!U&9qjh~vom0m?BQZO>_fJi3pyqtFC6ICR-p+9E z9GZLQ>Wat~F#Otk;?=yJ51hoBuMlZQr$RzJn zE+qfcvC98asH_O80%=cV`BP+u-iw!My}Y&7Z{XAZTO_WiiPT2ncd;WFO!lY5gp&NjR6~}N)4zSLoc!QdOw?VJuRLsS_gtJwu3^<_9T1Ib^+FEx1Q6AZ32*sE2 znqwlXJ$6-Ia^Ntzc3`Sey#m24PyV8n<WPHJZ%fj_HS-+Nc7KWWDyk&>yJRKX-Itw znAlNIn4ybub9oFruMMj`D|67!=+rq8PmoUo2x40L{0f+Ap+BMfYawI7Fp14Ul+H&m z!mx7ZQ5W%!ZXVnE#MuH@t}SytprY&|h6QF?^T{)s~WN_IOfx_W8`^FF4($ zp>on1+uKdKK$*e$Z5t~yjnSKky37Rd>!^+6KO7hP*H||g^@;C2%be9Zq6nP@mnvkj zZ{d1wMTL#z7$o=00iF0ENCw+X#;|q7leRT)o3Aj)p{ zh{P3xAo`CkBq#_ex>|@4*u)AdxiUDW8K&eV28i5-5Rt+1lAvdx=UDblW6;heQXJDVV{sQb1K37Hue^ z%9&S1=gq~uT%W?3xFaA9WsAlWTrw;ydZs2xNgwMUtp}UsSU*|Y{90Q>Ph8Ux)&9r` zt?cVDyitUqEqX--=!;WaXPh~Qhlg{)QE--%XuO7Lw3A+qJIdqO?f^=|YxWv8UG^DR zW?+CH5=b@wSrk=+{pun$0kE2R1gZeA+K=;t(d542I04qmUeLat>u}=dbZ4h-Sly zwu+pe_#6t?JV53X7S;MnApA#APb5|3E$Ivu4i)8N=YtZLz)FoE;{jLKEfT{eon>S}d(=*rUp}$&}E`3^CUkY_Ye2x}C6euX9>eH3eGT7_8 zD{T4~;2JXhke1GVSCBW^5%>g>0phmphCW9)2c?jPB%Z@6dl^m4s9*AJ z%pOPn#9R3KhSu~f(b3V5+JV#L$-L&u8c*AY1)w%f_yq+87^HaEioCVNGn13Eg{EO~ zUuXz|Qh?vxMy*+cqOSMTsue}!*Sjk|B7$qg88($9} za&NBE=jznYSA`S@D`?&yitacXXIUAsY|$Udx_sWJGoxpg=9iCG&*>||&8*FWDYjH8 zQy!XgTd-9DD%Gzm*G08W-Xw75qZI0n?spnJwZh^*wDTTt%K3k`j!!8zEc%S+-p756 z@(kBFZk)PzYVVmdGfo02hLAV4t<~=?DK9+IJfA1z+LCM*ncjVKfqRxRZtf~w{r0Va z!6kl%^KrXdZ{OE>VV1MjIH1Z)9^65B9lq{I=#|p~Ee9R0u)Wbd%_}XxwQzCehR~li zJ-7DmF0MJo6D=jK$;38erlIkgEtibG`rP)}v0SDg|5w?i`5YDh{`~Blwc+6Qe;XJc z*Uc%tkyquV3LTm}!Wjq(2H`;I4b!688q&XBKbr}h-c?aocRo>Yws3aeF%Q9l_~}3W z+z*s3m#j+O;Cdjes;l9xN)Xqf1*;!^`xfgcvBu@ELfdkk@cyRYpbueTMMWQh`vc>A zfYlCzUs`Hw@9l%X?SI%F>}_Yf8xjBS-R**hHTV99I`yZXzG9qv`TwJ8^NgAI&PnI% z*MHC5mh*e<^S|+`Um|Xu1g4ZXFK%2pfmJ#nCaVPz{w_@>nMuVg$?r+xKIoH{;bbjQBN z#3LIYx!5Nx-E(^JF~-vy_^-HrliJXjxZ-(yG3)z%6${QA-4bcpBkWf&c?Iu|X#Eb4 zh$^=g-C{fEHE%x6z`n}fI9cuR!@!gayb-5a{Uu$rwEL`+5BLFF{X0CbXmUJ05F~DS zT|#}ujo)3X`RSy7e0qA=Ct4?602#aD>+t>XI8SfNdFA87mzx^w4OlXhG y+$MpRhaF24Sj;8Afx0t?5?qPfi~Z<7qrb_agh(s(bHFo{7(8A5T-G@yGywp{C)6?k diff --git a/modular_skyrat/master_files/code/_globalvars/maint_loot_uncommon.dm b/modular_skyrat/master_files/code/_globalvars/maint_loot_uncommon.dm index 409796cb0a3..a753484293a 100644 --- a/modular_skyrat/master_files/code/_globalvars/maint_loot_uncommon.dm +++ b/modular_skyrat/master_files/code/_globalvars/maint_loot_uncommon.dm @@ -30,28 +30,14 @@ GLOBAL_LIST_INIT(uncommon_loot, list(//uncommon: useful items /obj/item/clothing/head/collectable/tophat = 1, /obj/item/clothing/head/collectable/welding = 1, /obj/item/clothing/head/collectable/wizard = 1, - /obj/item/clothing/head/collectable/xenom = 1 + /obj/item/clothing/head/collectable/xenom = 1, ) = 50, list( //Cartridges - /obj/item/computer_hardware/hard_drive/role/atmos = 100, - /obj/item/computer_hardware/hard_drive/role/captain = 5, - /obj/item/computer_hardware/hard_drive/role/ce = 5, - /obj/item/computer_hardware/hard_drive/role/chemistry = 50, - /obj/item/computer_hardware/hard_drive/role/cmo = 5, - /obj/item/computer_hardware/hard_drive/role/detective = 50, - /obj/item/computer_hardware/hard_drive/role/engineering = 50, - /obj/item/computer_hardware/hard_drive/role/head = 5, - /obj/item/computer_hardware/hard_drive/role/hop = 5, - /obj/item/computer_hardware/hard_drive/role/hos = 5, - /obj/item/computer_hardware/hard_drive/role/lawyer = 50, - /obj/item/computer_hardware/hard_drive/role/medical = 50, - /obj/item/computer_hardware/hard_drive/role/quartermaster = 5, - /obj/item/computer_hardware/hard_drive/role/rd = 5, - /obj/item/computer_hardware/hard_drive/role/roboticist = 50, - /obj/item/computer_hardware/hard_drive/role/security = 50, - /obj/item/computer_hardware/hard_drive/role/signal = 100, - /obj/item/computer_hardware/hard_drive/role/virus/clown = 5, - /obj/item/computer_hardware/hard_drive/role/virus/mime = 5 + /obj/item/computer_hardware/hard_drive/portable/command/captain = 1, + /obj/item/computer_hardware/hard_drive/portable/command/cmo = 1, + /obj/item/computer_hardware/hard_drive/portable/command/rd = 1, + /obj/item/computer_hardware/hard_drive/portable/command/ce = 1, + /obj/item/computer_hardware/hard_drive/portable/command/hos = 1, ) = 50, list( //Bot assemblies /obj/item/bot_assembly/cleanbot = 1, diff --git a/modular_skyrat/modules/contractor/code/datums/contractor_tablet.dm b/modular_skyrat/modules/contractor/code/datums/contractor_tablet.dm index d65d959c3ef..80b098a781e 100644 --- a/modular_skyrat/modules/contractor/code/datums/contractor_tablet.dm +++ b/modular_skyrat/modules/contractor/code/datums/contractor_tablet.dm @@ -29,7 +29,7 @@ return var/mob/living/user = usr - var/obj/item/computer_hardware/hard_drive/small/syndicate/hard_drive = computer.all_components[MC_HDD] + var/obj/item/computer_hardware/hard_drive/portable/syndicate/hard_drive = computer.all_components[MC_HDD] switch(action) if("PRG_contract-accept") @@ -127,7 +127,7 @@ /datum/computer_file/program/contract_uplink/ui_data(mob/user) var/list/data = list() - var/obj/item/computer_hardware/hard_drive/small/syndicate/hard_drive = computer.all_components[MC_HDD] + var/obj/item/computer_hardware/hard_drive/portable/syndicate/hard_drive = computer.all_components[MC_HDD] var/screen_to_be = null data["first_load"] = first_load diff --git a/modular_skyrat/modules/contractor/code/items/tablet.dm b/modular_skyrat/modules/contractor/code/items/tablet.dm index 644b72ff26a..4d90263cf74 100644 --- a/modular_skyrat/modules/contractor/code/items/tablet.dm +++ b/modular_skyrat/modules/contractor/code/items/tablet.dm @@ -1,6 +1,6 @@ /obj/item/modular_computer/tablet/syndicate_contract_uplink/preset/uplink/Initialize(mapload) . = ..() - var/obj/item/computer_hardware/hard_drive/small/syndicate/hard_drive = new + var/obj/item/computer_hardware/hard_drive/portable/syndicate/hard_drive = new var/datum/computer_file/program/contract_uplink/uplink = new active_program = uplink diff --git a/modular_skyrat/modules/nanotrasen_rep/code/nanotrasen_consultant.dm b/modular_skyrat/modules/nanotrasen_rep/code/nanotrasen_consultant.dm index b8eb9d4cf9e..0b59e179efa 100644 --- a/modular_skyrat/modules/nanotrasen_rep/code/nanotrasen_consultant.dm +++ b/modular_skyrat/modules/nanotrasen_rep/code/nanotrasen_consultant.dm @@ -113,7 +113,7 @@ /obj/item/modular_computer/tablet/pda/nanotrasen_consultant name = "nanotrasen consultant's PDA" - default_disk = /obj/item/computer_hardware/hard_drive/role/captain + loaded_cartridge = /obj/item/computer_hardware/hard_drive/portable/command/captain inserted_item = /obj/item/pen/fountain/captain greyscale_colors = "#017941#0060b8" @@ -147,7 +147,7 @@ new /obj/item/pet_carrier(src) new /obj/item/clothing/shoes/sneakers/brown(src) new /obj/item/clothing/suit/armor/vest(src) - new /obj/item/computer_hardware/hard_drive/role/captain(src) + new /obj/item/computer_hardware/hard_drive/portable/command/captain(src) new /obj/item/radio/headset/heads/nanotrasen_consultant/alt(src) new /obj/item/radio/headset/heads/nanotrasen_consultant(src) new /obj/item/clothing/glasses/sunglasses/gar/giga(src) diff --git a/tgstation.dme b/tgstation.dme index 819b39fc189..304ac980246 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3682,7 +3682,7 @@ #include "code\modules\modular_computers\file_system\programs\robocontrol.dm" #include "code\modules\modular_computers\file_system\programs\robotact.dm" #include "code\modules\modular_computers\file_system\programs\secureye.dm" -#include "code\modules\modular_computers\file_system\programs\signaler.dm" +#include "code\modules\modular_computers\file_system\programs\signalcommander.dm" #include "code\modules\modular_computers\file_system\programs\skill_tracker.dm" #include "code\modules\modular_computers\file_system\programs\sm_monitor.dm" #include "code\modules\modular_computers\file_system\programs\statusdisplay.dm" @@ -3696,10 +3696,10 @@ #include "code\modules\modular_computers\hardware\CPU.dm" #include "code\modules\modular_computers\hardware\hard_drive.dm" #include "code\modules\modular_computers\hardware\identifier.dm" -#include "code\modules\modular_computers\hardware\job_disk.dm" #include "code\modules\modular_computers\hardware\network_card.dm" #include "code\modules\modular_computers\hardware\portable_disk.dm" #include "code\modules\modular_computers\hardware\printer.dm" +#include "code\modules\modular_computers\hardware\program_disks.dm" #include "code\modules\modular_computers\hardware\recharger.dm" #include "code\modules\modular_computers\hardware\sensor_package.dm" #include "code\modules\modular_computers\hardware\virus_disk.dm" diff --git a/tgui/packages/tgui/interfaces/NtosMain.js b/tgui/packages/tgui/interfaces/NtosMain.js index 8374dd6ee4f..14135e8c125 100644 --- a/tgui/packages/tgui/interfaces/NtosMain.js +++ b/tgui/packages/tgui/interfaces/NtosMain.js @@ -1,5 +1,5 @@ import { useBackend } from '../backend'; -import { Button, ColorBox, Section, Table } from '../components'; +import { Button, ColorBox, Stack, Section, Table } from '../components'; import { NtosWindow } from '../layouts'; export const NtosMain = (props, context) => { @@ -29,21 +29,37 @@ export const NtosMain = (props, context) => { width={400} height={500}> - {!!has_light && ( + {Boolean(has_light || removable_media.length) && (
- - + + {!!has_light && ( + + + + + )} + {removable_media.map(device => ( + +
)} {!!(cardholder && show_imprint) && ( @@ -78,25 +94,6 @@ export const NtosMain = (props, context) => { )} - {!!removable_media.length && ( -
- - {removable_media.map(device => ( - - -
-
- )} {!!pai && (
@@ -169,9 +166,9 @@ export const NtosMain = (props, context) => { buttons={(
{disk_programs.map(program => ( diff --git a/tools/UpdatePaths/tablet_cartridges.txt b/tools/UpdatePaths/tablet_cartridges.txt new file mode 100644 index 00000000000..7f60a8f1295 --- /dev/null +++ b/tools/UpdatePaths/tablet_cartridges.txt @@ -0,0 +1,24 @@ +/obj/item/computer_hardware/hard_drive/role/medical : /obj/item/computer_hardware/hard_drive/portable/medical +/obj/item/computer_hardware/hard_drive/role/chemistry : /obj/item/computer_hardware/hard_drive/portable/chemistry +/obj/item/computer_hardware/hard_drive/role/engineering : /obj/item/computer_hardware/hard_drive/portable/engineering +/obj/item/computer_hardware/hard_drive/role/atmos : /obj/item/computer_hardware/hard_drive/portable/atmos +/obj/item/computer_hardware/hard_drive/role/signal : /obj/item/computer_hardware/hard_drive/portable/ordnance +/obj/item/computer_hardware/hard_drive/role/signal/ordnance : /obj/item/computer_hardware/hard_drive/portable/ordnance +/obj/item/computer_hardware/hard_drive/role/quartermaster : /obj/item/computer_hardware/hard_drive/portable/quartermaster +/obj/item/computer_hardware/hard_drive/role/rd : /obj/item/computer_hardware/hard_drive/portable/command/rd +/obj/item/computer_hardware/hard_drive/role/ce : /obj/item/computer_hardware/hard_drive/portable/command/ce +/obj/item/computer_hardware/hard_drive/role/cmo : /obj/item/computer_hardware/hard_drive/portable/command/cmo +/obj/item/computer_hardware/hard_drive/role/hos : /obj/item/computer_hardware/hard_drive/portable/command/hos +/obj/item/computer_hardware/hard_drive/role/hop : /obj/item/computer_hardware/hard_drive/portable/command/hop +/obj/item/computer_hardware/hard_drive/role/captain : /obj/item/computer_hardware/hard_drive/portable/command/captain +/obj/item/computer_hardware/hard_drive/role/virus/mime : /obj/item/computer_hardware/hard_drive/portable/virus/mime +/obj/item/computer_hardware/hard_drive/role/virus/clown : /obj/item/computer_hardware/hard_drive/portable/virus/clown +/obj/item/computer_hardware/hard_drive/role/virus/deto : /obj/item/computer_hardware/hard_drive/portable/virus/deto +/obj/item/computer_hardware/hard_drive/role/virus/frame : /obj/item/computer_hardware/hard_drive/portable/virus/frame + +/obj/item/computer_hardware/hard_drive/role/lawyer : @DELETE +/obj/item/computer_hardware/hard_drive/role/detective : @DELETE +/obj/item/computer_hardware/hard_drive/role/janitor : @DELETE +/obj/item/computer_hardware/hard_drive/role/curator : @DELETE +/obj/item/computer_hardware/hard_drive/role/roboticist : @DELETE +/obj/item/computer_hardware/hard_drive/role/signal : @DELETE