diff --git a/GainStation13/code/clothing/hud.dm b/GainStation13/code/clothing/hud.dm new file mode 100644 index 0000000000..447456ed96 --- /dev/null +++ b/GainStation13/code/clothing/hud.dm @@ -0,0 +1,14 @@ + +/obj/item/clothing/glasses/hud/health/gar + name = "gar health scanner HUD" + desc = "When you're scared, that's all the more reason to move forward!" + icon ='GainStation13/icons/obj/clothing/glasses.dmi' + mob_overlay_icon = 'GainStation13/icons/mob/eyes.dmi' + icon_state = "garh" + item_state = "garh" + force = 10 + throwforce = 10 + throw_speed = 4 + attack_verb = list("sliced") + hitsound = 'sound/weapons/bladeslice.ogg' + sharpness = IS_SHARP diff --git a/GainStation13/code/clothing/under.dm b/GainStation13/code/clothing/under.dm index d5b165d3cb..a9df7f4789 100644 --- a/GainStation13/code/clothing/under.dm +++ b/GainStation13/code/clothing/under.dm @@ -23,13 +23,13 @@ item_state = "r_suit" -/obj/item/clothing/under/shorts/yellowwshort +/obj/item/clothing/under/shorts/yellow name = "Yellow workout short" icon_state = "yellowwshort" icon = 'GainStation13/icons/obj/clothing/uniforms.dmi' mob_overlay_icon = 'GainStation13/icons/mob/uniform.dmi' -/obj/item/clothing/under/shorts/pinkwshort +/obj/item/clothing/under/shorts/pink name = "Pink workout short" icon_state = "pinkwshort" icon = 'GainStation13/icons/obj/clothing/uniforms.dmi' diff --git a/GainStation13/code/structures/table.dm b/GainStation13/code/structures/table.dm new file mode 100644 index 0000000000..112e6aec77 --- /dev/null +++ b/GainStation13/code/structures/table.dm @@ -0,0 +1,37 @@ +/obj/structure/table/plaswood + name = "plaswood table" + desc = "An strong and grey wooden table." + icon = 'GainStation13/icons/obj/smooth_structures/plaswoodpoker_table.dmi' + icon_state = "plaswood_table" + resistance_flags = FLAMMABLE + max_integrity = 200 + integrity_failure = 50 + armor = list("melee" = 10, "bullet" = 30, "laser" = 30, "energy" = 100, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 70) + canSmoothWith = list(/obj/structure/table/plaswood, + /obj/structure/table/plaswood/plaswoodpoker) + +/obj/structure/table/plaswood/plaswoodpoker + name = "gambling table" + desc = "A seedy table for seedy dealings in seedy places." + icon = 'GainStation13/icons/obj/smooth_structures/plaswoodpoker_table.dmi' + icon_state = "plaswoodpoker_table" + frame = /obj/structure/table_frame/plaswood + buildstack = /obj/item/stack/tile/carpet + +/obj/structure/table/gmushroom + name = "Mushroom table" + desc = "A pinkish table. And is fireproof!" + icon = 'GainStation13/icons/obj/smooth_structures/gmushroom_table.dmi' + icon_state = "gmushroom_table" + resistance_flags = FIRE_PROOF + max_integrity = 70 + canSmoothWith = list(/obj/structure/table/gmushroom, + /obj/structure/table/gmushroom/gmushroompoker) + +/obj/structure/table/gmushroom/gmushroompoker + name = "gambling table" + desc = "A seedy table for seedy dealings in seedy places." + icon = 'GainStation13/icons/obj/smooth_structures/gmushroompoker_table.dmi' + icon_state = "gmushroompoker_table" + frame = /obj/structure/table_frame/gmushroom + buildstack = /obj/item/stack/tile/carpet diff --git a/GainStation13/icons/mob/eyes.dmi b/GainStation13/icons/mob/eyes.dmi new file mode 100644 index 0000000000..6b15d4f965 Binary files /dev/null and b/GainStation13/icons/mob/eyes.dmi differ diff --git a/GainStation13/icons/obj/clothing/glasses.dmi b/GainStation13/icons/obj/clothing/glasses.dmi new file mode 100644 index 0000000000..a1ddbe39a1 Binary files /dev/null and b/GainStation13/icons/obj/clothing/glasses.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/alien/nest.dmi b/GainStation13/icons/obj/smooth_structures/alien/nest.dmi new file mode 100644 index 0000000000..4a1c757bc6 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/alien/nest.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/alien/resin_membrane.dmi b/GainStation13/icons/obj/smooth_structures/alien/resin_membrane.dmi new file mode 100644 index 0000000000..517838a653 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/alien/resin_membrane.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/alien/resin_wall.dmi b/GainStation13/icons/obj/smooth_structures/alien/resin_wall.dmi new file mode 100644 index 0000000000..eba082a830 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/alien/resin_wall.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/alien/weednode.dmi b/GainStation13/icons/obj/smooth_structures/alien/weednode.dmi new file mode 100644 index 0000000000..8d963d7c83 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/alien/weednode.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/alien/weeds1.dmi b/GainStation13/icons/obj/smooth_structures/alien/weeds1.dmi new file mode 100644 index 0000000000..b794b6853f Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/alien/weeds1.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/alien/weeds2.dmi b/GainStation13/icons/obj/smooth_structures/alien/weeds2.dmi new file mode 100644 index 0000000000..8917bade58 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/alien/weeds2.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/alien/weeds3.dmi b/GainStation13/icons/obj/smooth_structures/alien/weeds3.dmi new file mode 100644 index 0000000000..c7f0aa0ca9 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/alien/weeds3.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/alien_table.dmi b/GainStation13/icons/obj/smooth_structures/alien_table.dmi new file mode 100644 index 0000000000..1d60bcc82f Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/alien_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/brass_table.dmi b/GainStation13/icons/obj/smooth_structures/brass_table.dmi new file mode 100644 index 0000000000..f3cc8bb9ee Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/brass_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/catwalk.dmi b/GainStation13/icons/obj/smooth_structures/catwalk.dmi new file mode 100644 index 0000000000..4b71fb5073 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/catwalk.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/catwalk_clockwork.dmi b/GainStation13/icons/obj/smooth_structures/catwalk_clockwork.dmi new file mode 100644 index 0000000000..ecef1df389 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/catwalk_clockwork.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/catwalk_clockwork_large.dmi b/GainStation13/icons/obj/smooth_structures/catwalk_clockwork_large.dmi new file mode 100644 index 0000000000..675ebd91f6 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/catwalk_clockwork_large.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/clockwork_window.dmi b/GainStation13/icons/obj/smooth_structures/clockwork_window.dmi new file mode 100644 index 0000000000..10d5bcf631 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/clockwork_window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table.dmi new file mode 100644 index 0000000000..a57b165f4a Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_black.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_black.dmi new file mode 100644 index 0000000000..d4570e8a7c Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_black.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_blackred.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_blackred.dmi new file mode 100644 index 0000000000..0766c2f2f9 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_blackred.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_blue.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_blue.dmi new file mode 100644 index 0000000000..07e13e99e6 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_blue.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_cyan.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_cyan.dmi new file mode 100644 index 0000000000..4f1a90e33b Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_cyan.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_green.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_green.dmi new file mode 100644 index 0000000000..ea7f8daa99 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_green.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_monochrome.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_monochrome.dmi new file mode 100644 index 0000000000..54b1b17577 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_monochrome.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_orange.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_orange.dmi new file mode 100644 index 0000000000..fe0375ddbb Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_orange.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_purple.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_purple.dmi new file mode 100644 index 0000000000..c404a9eb5f Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_purple.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_red.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_red.dmi new file mode 100644 index 0000000000..8bca0ca8c9 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_red.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_royalblack.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_royalblack.dmi new file mode 100644 index 0000000000..064b7c1945 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_royalblack.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/fancy_table_royalblue.dmi b/GainStation13/icons/obj/smooth_structures/fancy_table_royalblue.dmi new file mode 100644 index 0000000000..9d0eba7265 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/fancy_table_royalblue.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/glass_table.dmi b/GainStation13/icons/obj/smooth_structures/glass_table.dmi new file mode 100644 index 0000000000..112499f380 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/glass_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/gmushroom_table.dmi b/GainStation13/icons/obj/smooth_structures/gmushroom_table.dmi new file mode 100644 index 0000000000..42feccf233 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/gmushroom_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/gmushroompoker_table.dmi b/GainStation13/icons/obj/smooth_structures/gmushroompoker_table.dmi new file mode 100644 index 0000000000..b5e396e30d Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/gmushroompoker_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/lattice.dmi b/GainStation13/icons/obj/smooth_structures/lattice.dmi new file mode 100644 index 0000000000..5adab0caf1 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/lattice.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/lattice_clockwork.dmi b/GainStation13/icons/obj/smooth_structures/lattice_clockwork.dmi new file mode 100644 index 0000000000..23beeecb27 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/lattice_clockwork.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/lattice_clockwork_large.dmi b/GainStation13/icons/obj/smooth_structures/lattice_clockwork_large.dmi new file mode 100644 index 0000000000..3b035d8736 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/lattice_clockwork_large.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/paperframes.dmi b/GainStation13/icons/obj/smooth_structures/paperframes.dmi new file mode 100644 index 0000000000..5ac2c27dd5 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/paperframes.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/plasma_window.dmi b/GainStation13/icons/obj/smooth_structures/plasma_window.dmi new file mode 100644 index 0000000000..941d332ae4 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/plasma_window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/plasmaglass_table.dmi b/GainStation13/icons/obj/smooth_structures/plasmaglass_table.dmi new file mode 100644 index 0000000000..808e79aa43 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/plasmaglass_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/plastitanium_window.dmi b/GainStation13/icons/obj/smooth_structures/plastitanium_window.dmi new file mode 100644 index 0000000000..82ac030615 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/plastitanium_window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/plaswood_table.dmi b/GainStation13/icons/obj/smooth_structures/plaswood_table.dmi new file mode 100644 index 0000000000..4710cea48c Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/plaswood_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/plaswoodpoker_table.dmi b/GainStation13/icons/obj/smooth_structures/plaswoodpoker_table.dmi new file mode 100644 index 0000000000..85bdbcbc79 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/plaswoodpoker_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/pod_window.dmi b/GainStation13/icons/obj/smooth_structures/pod_window.dmi new file mode 100644 index 0000000000..0fe7501225 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/pod_window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/poker_table.dmi b/GainStation13/icons/obj/smooth_structures/poker_table.dmi new file mode 100644 index 0000000000..2e16a5468d Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/poker_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/reinforced_table.dmi b/GainStation13/icons/obj/smooth_structures/reinforced_table.dmi new file mode 100644 index 0000000000..85de93594f Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/reinforced_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/reinforced_window.dmi b/GainStation13/icons/obj/smooth_structures/reinforced_window.dmi new file mode 100644 index 0000000000..d1e72b5527 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/reinforced_window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/rice_window.dmi b/GainStation13/icons/obj/smooth_structures/rice_window.dmi new file mode 100644 index 0000000000..f5e7a6dd57 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/rice_window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/rplasma_window.dmi b/GainStation13/icons/obj/smooth_structures/rplasma_window.dmi new file mode 100644 index 0000000000..8ef523bdb7 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/rplasma_window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/sandbags.dmi b/GainStation13/icons/obj/smooth_structures/sandbags.dmi new file mode 100644 index 0000000000..8ac099555a Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/sandbags.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/shadoww_table.dmi b/GainStation13/icons/obj/smooth_structures/shadoww_table.dmi new file mode 100644 index 0000000000..2d62fe8f9a Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/shadoww_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/shadowwpoker_table.dmi b/GainStation13/icons/obj/smooth_structures/shadowwpoker_table.dmi new file mode 100644 index 0000000000..1903c23c02 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/shadowwpoker_table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/shuttle_window.dmi b/GainStation13/icons/obj/smooth_structures/shuttle_window.dmi new file mode 100644 index 0000000000..2fbf93f703 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/shuttle_window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/swarmer_catwalk.dmi b/GainStation13/icons/obj/smooth_structures/swarmer_catwalk.dmi new file mode 100644 index 0000000000..b247132eac Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/swarmer_catwalk.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/table.dmi b/GainStation13/icons/obj/smooth_structures/table.dmi new file mode 100644 index 0000000000..17f5be5684 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/table.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/tinted_window.dmi b/GainStation13/icons/obj/smooth_structures/tinted_window.dmi new file mode 100644 index 0000000000..85e27e09a6 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/tinted_window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/window.dmi b/GainStation13/icons/obj/smooth_structures/window.dmi new file mode 100644 index 0000000000..f184eb8d3c Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/window.dmi differ diff --git a/GainStation13/icons/obj/smooth_structures/wood_table.dmi b/GainStation13/icons/obj/smooth_structures/wood_table.dmi new file mode 100644 index 0000000000..16fb364ad2 Binary files /dev/null and b/GainStation13/icons/obj/smooth_structures/wood_table.dmi differ diff --git a/_maps/metis_maps/BoxStation/BoxStation.dmm b/_maps/metis_maps/BoxStation/BoxStation.dmm index 27d5f29a79..097fc81bf1 100644 --- a/_maps/metis_maps/BoxStation/BoxStation.dmm +++ b/_maps/metis_maps/BoxStation/BoxStation.dmm @@ -35,7 +35,7 @@ "aaI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) "aaJ" = (/obj/machinery/washing_machine,/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) "aaK" = (/obj/machinery/light{dir = 4},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) -"aaL" = (/obj/structure/table,/obj/item/storage/pill_bottle/dice,/turf/open/floor/plasteel,/area/security/prison) +"aaL" = (/obj/structure/table,/obj/item/storage/dice,/turf/open/floor/plasteel,/area/security/prison) "aaM" = (/obj/structure/table,/obj/item/pen,/turf/open/floor/plasteel,/area/security/prison) "aaN" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) "aaO" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/computer/cryopod{dir = 8; pixel_x = 26},/turf/open/floor/plasteel/cafeteria,/area/security/prison) @@ -154,7 +154,7 @@ "acX" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) "acY" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/ai_monitored/security/armory"; dir = 4; name = "Armory APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) "acZ" = (/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/main) -"ada" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/bed/secbed,/mob/living/simple_animal/hostile/carp/cayenne/lia,/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) +"ada" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/bed/dogbed,/mob/living/simple_animal/hostile/carp/cayenne/lia,/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) "adb" = (/obj/structure/chair{dir = 1},/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) "adc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) "add" = (/obj/item/storage/secure/safe/HoS{pixel_x = 35},/obj/structure/closet/secure_closet/hos,/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) @@ -186,7 +186,7 @@ "adD" = (/obj/effect/landmark/event_spawn,/mob/living/simple_animal/bot/secbot{a_intent = "harm"; arrest_type = 1; health = 4; icon_state = "secbot1"; idcheck = 1; inertia_move_delay = 5; mob_biotypes = 4; name = "Sergeant-at-Armsky"; weaponscheck = 1; zone_selected = "chest"},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) "adE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) "adF" = (/obj/machinery/door/window/eastleft{name = "armoury desk"; req_access_txt = "1"},/obj/machinery/door/window/westleft{name = "armoury desk"; req_access_txt = "3"},/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"adG" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hos"; dir = 8; name = "Head of Security's Office APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) +"adG" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hos"; dir = 8; name = "Head of Security's Office APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/random,/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) "adH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "hos"; name = "HoS Office Shutters"; pixel_y = -25},/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) "adI" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) "adJ" = (/obj/machinery/light_switch{pixel_y = -23},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) @@ -320,7 +320,7 @@ "agh" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -30},/obj/machinery/camera{c_tag = "Brig Control Room"; dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/warden) "agi" = (/obj/machinery/computer/prisoner/management,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/warden) "agj" = (/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/warden) -"agk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/warden) +"agk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/warden) "agl" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/warden) "agm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/warden) "agn" = (/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/warden) @@ -393,7 +393,7 @@ "ahC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) "ahD" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) "ahE" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ahF" = (/obj/machinery/power/apc{areastring = "/area/security/main"; dir = 4; name = "Security Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/security/main) +"ahF" = (/obj/machinery/power/apc{areastring = "/area/security/main"; dir = 4; name = "Security Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/security/main) "ahG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/fore/secondary) "ahH" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore/secondary) "ahI" = (/obj/structure/table,/obj/item/folder/red,/obj/item/taperecorder,/turf/open/floor/plasteel/dark,/area/security/prison) @@ -410,7 +410,7 @@ "ahT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/filingcabinet/chestdrawer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/warden) "ahU" = (/obj/machinery/light_switch{pixel_y = -23},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/warden) "ahV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/warden) -"ahW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/security/main) +"ahW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/security/main) "ahX" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) "ahY" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/range) "ahZ" = (/turf/open/floor/plasteel,/area/security/range) @@ -863,7 +863,7 @@ "aqE" = (/obj/machinery/door/airlock/maintenance{name = "Dormitories Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary) "aqF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/dorms) "aqG" = (/turf/closed/wall,/area/crew_quarters/fitness) -"aqH" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"aqH" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) "aqI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/fitness) "aqJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness) "aqK" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) @@ -958,7 +958,7 @@ "asv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) "asw" = (/obj/machinery/light{dir = 8},/obj/structure/chair/sofa{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/fitness) "asx" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"asy" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/structure/table/wood,/obj/item/candle{pixel_x = 8; pixel_y = 6},/obj/item/storage/pill_bottle/dice{pixel_x = -3},/turf/open/floor/carpet,/area/crew_quarters/fitness) +"asy" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/structure/table/wood,/obj/item/candle{pixel_x = 8; pixel_y = 6},/obj/item/storage/dice{pixel_x = -3},/turf/open/floor/carpet,/area/crew_quarters/fitness) "asz" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) "asA" = (/obj/effect/turf_decal/bot,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) "asB" = (/obj/structure/bed,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) @@ -1125,8 +1125,8 @@ "avH" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) "avI" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/structure/table,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) "avJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "1stclassprivacy"; name = "privacy shutters"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) -"avK" = (/obj/machinery/button/door{id = "Dorm5"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/bedsheet/double_red,/obj/structure/double_bed,/turf/open/floor/wood,/area/crew_quarters/dorms) -"avL" = (/obj/machinery/button/door{id = "Dorm6"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/double_bed,/obj/item/bedsheet/double_blue,/turf/open/floor/wood,/area/crew_quarters/dorms) +"avK" = (/obj/machinery/button/door{id = "Dorm5"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/bedsheet/double_red,/obj/structure/bed/double,/turf/open/floor/wood,/area/crew_quarters/dorms) +"avL" = (/obj/machinery/button/door{id = "Dorm6"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/bed/double,/obj/item/bedsheet/double_blue,/turf/open/floor/wood,/area/crew_quarters/dorms) "avM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/door/poddoor/shutters/preopen{id = "Holodeckshutter"; name = "Holodeck Shutter"},/turf/open/floor/plating,/area/crew_quarters/fitness) "avN" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore) "avO" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore) @@ -1336,7 +1336,7 @@ "azK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/stairs/left{dir = 8},/area/crew_quarters/fitness) "azL" = (/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) "azM" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 8},/obj/structure/medkit_cabinet{pixel_y = 27},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"azN" = (/obj/structure/table/wood,/obj/item/storage/pill_bottle/dice,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azN" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/carpet,/area/crew_quarters/dorms) "azO" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/service"; dir = 1; name = "Service Hall APC"; pixel_y = 25},/turf/open/floor/plasteel,/area/hallway/secondary/service) "azP" = (/obj/machinery/rnd/production/techfab/department/service,/turf/open/floor/plasteel,/area/hallway/secondary/service) "azQ" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet,/area/maintenance/starboard/fore) @@ -1353,7 +1353,7 @@ "aAb" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) "aAc" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aAd" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aAe" = (/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/obj/effect/turf_decal/stripes/line,/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aAe" = (/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/obj/effect/turf_decal/stripes/line,/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aAf" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aAg" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aAh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) @@ -1399,7 +1399,7 @@ "aAV" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/turf/open/floor/carpet,/area/crew_quarters/dorms) "aAW" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) "aAX" = (/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAY" = (/obj/item/clothing/under/rank/mailman,/obj/item/clothing/head/mailman,/obj/structure/closet,/obj/effect/landmark/blobstart,/obj/item/storage/box/donkpockets/donkpockethonk,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"aAY" = (/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/obj/structure/closet,/obj/effect/landmark/blobstart,/obj/item/storage/box/donkpockets/donkpockethonk,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aAZ" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/service) "aBa" = (/obj/structure/table,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/hallway/secondary/service) "aBb" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard/fore) @@ -1474,7 +1474,7 @@ "aCs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/main) "aCt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) "aCu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main) -"aCv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/chapel/main) +"aCv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/chapel/main) "aCw" = (/turf/closed/wall,/area/chapel/main) "aCx" = (/obj/machinery/camera{c_tag = "Arrivals North"; dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) "aCy" = (/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/open/floor/plasteel/dark,/area/security/checkpoint/auxiliary) @@ -1525,7 +1525,7 @@ "aDr" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/dorms) "aDs" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/table/wood,/obj/item/clothing/mask/balaclava{pixel_x = -8; pixel_y = 8},/obj/item/storage/crayons,/obj/item/coin/silver,/turf/open/floor/plasteel,/area/crew_quarters/dorms) "aDt" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aDu" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aDu" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/item/kirbyplants/random,/obj/machinery/light{light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/crew_quarters/dorms) "aDv" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/dorms) "aDw" = (/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) "aDx" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) @@ -1534,7 +1534,7 @@ "aDA" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) "aDB" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness) "aDC" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aDD" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fitness Room South"; dir = 1},/obj/machinery/light,/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"aDD" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fitness Room South"; dir = 1},/obj/machinery/light,/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/crew_quarters/fitness) "aDE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aDF" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) "aDG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/starboard/fore) @@ -1595,7 +1595,7 @@ "aEK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet) "aEL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet/red,/area/crew_quarters/bar) "aEM" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aEN" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/gateway) +"aEN" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/gateway) "aEO" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atm{pixel_y = 30},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) "aEP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aEQ" = (/obj/machinery/door/airlock{name = "Service Hall"; req_one_access_txt = "25;26;35;28"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/secondary/service) @@ -1738,10 +1738,10 @@ "aHx" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/camera{c_tag = "Central Hallway East"; dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) "aHy" = (/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/theatre) "aHz" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre/clown) -"aHA" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/carpet/black,/area/hallway/primary/central) +"aHA" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/kirbyplants/random,/turf/open/floor/carpet/black,/area/hallway/primary/central) "aHB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) "aHC" = (/obj/machinery/computer/arcade/battle,/turf/open/floor/carpet/black,/area/hallway/primary/central) -"aHD" = (/obj/machinery/computer/arcade/minesweeper,/turf/open/floor/carpet/black,/area/hallway/primary/central) +"aHD" = (/obj/machinery/computer/arcade/orion_trail,/turf/open/floor/carpet/black,/area/hallway/primary/central) "aHE" = (/obj/machinery/light/small{dir = 8},/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) "aHF" = (/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/machinery/door/window/southright{base_state = "left"; dir = 4; icon_state = "left"; name = "Terrarium Door"},/turf/open/floor/grass,/area/hallway/primary/central) "aHG" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) @@ -1799,11 +1799,11 @@ "aIG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) "aIH" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/gateway) "aII" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/extinguisher,/obj/item/extinguisher,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aIJ" = (/obj/machinery/camera{c_tag = "EVA South"; dir = 1},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aIJ" = (/obj/machinery/camera{c_tag = "EVA South"; dir = 1},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) "aIK" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) "aIL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central) "aIM" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIN" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/camera{c_tag = "Central Hallway North"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIN" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/camera{c_tag = "Central Hallway North"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) "aIO" = (/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "aIP" = (/turf/open/floor/plasteel,/area/hallway/primary/central) "aIQ" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/stalkybush,/obj/structure/flora/ausbushes/ppflowers,/obj/machinery/door/window/southright{base_state = "left"; dir = 8; icon_state = "left"; name = "Terrarium Door"},/turf/open/floor/grass,/area/hallway/primary/central) @@ -1972,7 +1972,7 @@ "aLX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet/black,/area/hallway/primary/central) "aLY" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/mirror{pixel_y = 32},/obj/structure/sink{pixel_y = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) "aLZ" = (/obj/structure/table/wood,/obj/item/instrument/guitar,/obj/machinery/light{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aMa" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/crew_quarters/theatre) +"aMa" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/crew_quarters/theatre) "aMb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/theatre) "aMc" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/mirror{pixel_y = 32},/obj/structure/sink{pixel_y = 24},/obj/machinery/light_switch{pixel_x = 27},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) "aMd" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) @@ -1992,7 +1992,7 @@ "aMr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/library) "aMs" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/chapel/office) "aMt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aMu" = (/obj/structure/table/wood,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/turf/open/floor/plasteel/grimy,/area/chapel/office) +"aMu" = (/obj/structure/table/wood,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/turf/open/floor/plasteel/grimy,/area/chapel/office) "aMv" = (/obj/machinery/camera{c_tag = "Chapel North"},/turf/open/floor/plasteel/dark,/area/chapel/main) "aMw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) "aMx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) @@ -2064,7 +2064,7 @@ "aNL" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/table,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "aNM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation) "aNN" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/vending/mealdor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aNO" = (/obj/item/beacon,/obj/machinery/camera{c_tag = "Arrivals Bay 1 South"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aNO" = (/obj/item/beacon,/obj/machinery/camera{c_tag = "Arrivals Bay 1 South"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aNP" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aNQ" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aNR" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes{pixel_y = 2},/obj/item/lighter/greyscale{pixel_x = 4; pixel_y = 2},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) @@ -2179,7 +2179,7 @@ "aPW" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/library) "aPX" = (/obj/machinery/light/small,/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/engine/cult,/area/library) "aPY" = (/obj/effect/landmark/blobstart,/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/engine/cult,/area/library) -"aPZ" = (/obj/structure/destructible/cult/tome,/obj/item/clothing/under/suit_jacket/red,/obj/item/book/codex_gigas,/turf/open/floor/engine/cult,/area/library) +"aPZ" = (/obj/structure/destructible/cult/tome,/obj/item/clothing/under/suit/red,/obj/item/book/codex_gigas,/turf/open/floor/engine/cult,/area/library) "aQa" = (/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 4},/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main) "aQb" = (/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main) "aQc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) @@ -2220,7 +2220,7 @@ "aQM" = (/obj/structure/sign/directions/security{dir = 4; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 4; pixel_x = 32; pixel_y = -32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -40},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/port) "aQN" = (/obj/structure/table,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/open/floor/plasteel,/area/storage/art) "aQO" = (/turf/open/floor/plasteel,/area/storage/art) -"aQP" = (/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{pixel_x = 27},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/storage/art) +"aQP" = (/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{pixel_x = 27},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/storage/art) "aQQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) "aQR" = (/obj/machinery/door/airlock{name = "Port Emergency Storage"},/turf/open/floor/plating,/area/storage/emergency/port) "aQS" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/tools) @@ -2328,7 +2328,7 @@ "aSW" = (/obj/machinery/light{dir = 4},/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/carpet,/area/hallway/secondary/exit) "aSX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "aSY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"aSZ" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) +"aSZ" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) "aTa" = (/obj/docking_port/stationary{dir = 4; dwidth = 12; height = 18; id = "emergency_home"; name = "BoxStation emergency evac bay"; width = 32},/turf/open/space/basic,/area/space) "aTb" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aTc" = (/turf/closed/wall,/area/security/vacantoffice) @@ -2541,7 +2541,7 @@ "aXo" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/port) "aXt" = (/obj/structure/chair/bench/left{dir = 8},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "aXu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/sauna) -"aXv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/twohanded/required/kirbyplants/photosynthetic,/turf/open/floor/plasteel/dark/side{dir = 6},/area/crew_quarters/fitness/sauna) +"aXv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel/dark/side{dir = 6},/area/crew_quarters/fitness/sauna) "aXy" = (/obj/machinery/camera{c_tag = "Arrivals Hallway"; dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aXz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port) "aXA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/warehouse) @@ -2565,7 +2565,7 @@ "aXS" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/bridge) "aXT" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/bridge) "aXU" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXV" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/bridge) +"aXV" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/bridge) "aXW" = (/obj/structure/chair/comfy/blue{dir = 4},/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) "aXX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) "aXY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) @@ -2658,8 +2658,8 @@ "aZN" = (/obj/structure/flora/bush,/turf/open/floor/grass,/area/hallway/secondary/exit) "aZO" = (/turf/open/floor/grass,/area/hallway/secondary/exit) "aZP" = (/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hallway/secondary/exit) -"aZQ" = (/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/bridge) -"aZR" = (/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/bridge) +"aZQ" = (/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/bridge) +"aZR" = (/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/bridge) "aZS" = (/obj/machinery/vending/wardrobe/bar_wardrobe,/obj/machinery/camera{c_tag = "Bar Backroom"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet/red,/area/crew_quarters/bar) "aZT" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/starboard) "aZU" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel,/area/hydroponics) @@ -2675,15 +2675,15 @@ "bae" = (/obj/structure/table/wood,/obj/item/pen,/turf/open/floor/wood,/area/library) "baf" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/wood,/area/library) "bag" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table/wood,/turf/open/floor/wood,/area/library) -"bah" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/bar{dir = 4},/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main) +"bah" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/bar{dir = 4},/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main) "bai" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"baj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/bar{dir = 4},/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main) +"baj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/bar{dir = 4},/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main) "bak" = (/obj/machinery/power/apc{areastring = "/area/hallway/secondary/exit"; dir = 8; name = "Escape Hallway APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "bal" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "bam" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) "ban" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating/airless,/area/space/nearstation) "bao" = (/obj/machinery/light/small,/turf/open/floor/wood{icon_state = "wood-broken6"},/area/maintenance/port/fore) -"bap" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/security/vacantoffice) +"bap" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/security/vacantoffice) "baq" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice) "bar" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/port) "bas" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) @@ -2707,7 +2707,7 @@ "baL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) "baM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/wood,/area/bridge/meeting_room) "baN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) -"baO" = (/obj/structure/table,/obj/item/aiModule/reset,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"baO" = (/obj/structure/table,/obj/item/ai_module/reset,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "baP" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "baQ" = (/obj/structure/table,/obj/item/folder/blue,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "baR" = (/obj/structure/table,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) @@ -2752,9 +2752,9 @@ "bbH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) "bbI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/wood,/area/bridge/meeting_room) "bbJ" = (/obj/machinery/vending/mealdor,/turf/open/floor/wood,/area/bridge/meeting_room) -"bbK" = (/obj/structure/table,/obj/item/aiModule/supplied/quarantine,/obj/machinery/camera/motion{dir = 4; network = list("aiupload")},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"bbK" = (/obj/structure/table,/obj/item/ai_module/supplied/quarantine,/obj/machinery/camera/motion{dir = 4; network = list("aiupload")},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "bbL" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"bbM" = (/obj/structure/table,/obj/item/aiModule/supplied/freeform,/obj/structure/sign/plaques/kiddie{pixel_x = 32},/obj/machinery/camera/motion{dir = 8; network = list("aiupload")},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"bbM" = (/obj/structure/table,/obj/item/ai_module/supplied/freeform,/obj/structure/sign/plaques/kiddie{pixel_x = 32},/obj/machinery/camera/motion{dir = 8; network = list("aiupload")},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "bbN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) "bbO" = (/obj/structure/displaycase/captain,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) "bbP" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) @@ -2831,7 +2831,7 @@ "bdj" = (/obj/structure/flora/ausbushes/leafybush,/obj/machinery/door/window/southright{base_state = "left"; dir = 4; icon_state = "left"; name = "Terrarium Door"},/turf/open/floor/grass,/area/hallway/secondary/exit) "bdk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "bdl" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bdm" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"bdm" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "bdn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "bdo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "bdp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) @@ -2856,13 +2856,13 @@ "bdI" = (/obj/item/storage/fancy/donut_box,/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) "bdJ" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) "bdK" = (/obj/item/folder/blue,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) -"bdL" = (/obj/structure/table,/obj/item/aiModule/core/full/asimov,/obj/item/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/aiModule/core/full/custom,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"bdL" = (/obj/structure/table,/obj/item/ai_module/core/full/asimov,/obj/item/ai_module/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/ai_module/core/full/custom,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "bdM" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "bdN" = (/obj/machinery/computer/upload/ai{dir = 1},/obj/machinery/flasher{id = "AI"; pixel_y = -21},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) "bdO" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/ai_monitored/turret_protected/ai_upload"; name = "Upload APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) "bdP" = (/obj/machinery/computer/upload/borg{dir = 1},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) "bdQ" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"bdR" = (/obj/structure/table,/obj/item/aiModule/supplied/oxygen,/obj/item/aiModule/zeroth/oneHuman,/obj/machinery/door/window{dir = 8; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/aiModule/reset/purge,/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/aiModule/supplied/protectStation,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"bdR" = (/obj/structure/table,/obj/item/ai_module/supplied/oxygen,/obj/item/ai_module/zeroth/oneHuman,/obj/machinery/door/window{dir = 8; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/ai_module/reset/purge,/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/ai_module/supplied/protectStation,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "bdS" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/item/storage/lockbox/medal,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) "bdT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/maintenance/central/secondary) "bdU" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/stamp/captain,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) @@ -2970,7 +2970,7 @@ "bfU" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) "bfV" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/flora/bush,/turf/open/floor/grass,/area/hallway/secondary/exit) "bfW" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"bfX" = (/obj/machinery/camera{c_tag = "Arrivals Bay 3 & 4"; dir = 1},/obj/effect/turf_decal/stripes/line,/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfX" = (/obj/machinery/camera{c_tag = "Arrivals Bay 3 & 4"; dir = 1},/obj/effect/turf_decal/stripes/line,/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bfY" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bfZ" = (/obj/machinery/conveyor/inverted{dir = 5; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) "bga" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) @@ -2997,7 +2997,7 @@ "bgv" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"},/obj/machinery/camera{c_tag = "Cargo Delivery Office"; dir = 4},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel,/area/quartermaster/sorting) "bgw" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/door/window/westleft{dir = 1; name = "Disposal Loop"; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/sorting) "bgx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bgy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/table/reinforced,/obj/item/destTagger,/obj/item/destTagger,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bgy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/table/reinforced,/obj/item/dest_tagger,/obj/item/dest_tagger,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) "bgz" = (/obj/machinery/light{dir = 8},/obj/structure/chair/comfy/beige{dir = 4},/turf/open/floor/plasteel/grimy,/area/medical/medbay/central) "bgA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/sorting) "bgB" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) @@ -3019,7 +3019,7 @@ "bgR" = (/turf/open/floor/plasteel/white,/area/science/lab) "bgS" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/white,/area/science/lab) "bgT" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/item/crowbar,/obj/item/storage/bag/plants/portaseeder,/turf/open/floor/plasteel,/area/hydroponics/garden) -"bgU" = (/obj/structure/window{dir = 8},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/piano{icon_state = "piano"; pixel_y = 0},/turf/open/floor/carpet/black,/area/crew_quarters/bar) +"bgU" = (/obj/structure/window{dir = 8},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/musician/piano{icon_state = "piano"; pixel_y = 0},/turf/open/floor/carpet/black,/area/crew_quarters/bar) "bgV" = (/obj/machinery/suit_storage_unit/security,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/security/main) "bgW" = (/obj/effect/turf_decal/bot,/obj/structure/tank_dispenser/oxygen,/turf/open/floor/plasteel/dark,/area/security/main) "bgX" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/security/main) @@ -3048,7 +3048,7 @@ "bhu" = (/obj/machinery/light{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/security/sec,/turf/open/floor/plasteel,/area/security/main) "bhv" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/range) "bhw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/range) -"bhx" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/security/main) +"bhx" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/security/main) "bhy" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) "bhz" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) "bhA" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/turf/open/floor/plasteel,/area/security/main) @@ -3060,7 +3060,7 @@ "bhG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/main) "bhH" = (/obj/effect/landmark/start/security_officer,/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/security/main) "bhI" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/security/main) -"bhJ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/security/prison) +"bhJ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/security/prison) "bhK" = (/obj/machinery/door/airlock/security/glass{name = "Equipment Room"; req_access_txt = "1"},/turf/open/floor/plasteel/showroomfloor,/area/security/main) "bhL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main) "bhM" = (/turf/open/floor/plasteel/stairs/left,/area/security/main) @@ -3136,7 +3136,7 @@ "bje" = (/turf/open/floor/wood,/area/crew_quarters/fitness) "bjf" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/wood,/area/crew_quarters/fitness) "bjg" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/port/fore) -"bjh" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"bjh" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/fore) "bji" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/grass,/area/security/courtroom) "bjj" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/structure/weightmachine/weightlifter,/turf/open/floor/wood,/area/crew_quarters/fitness) "bjk" = (/obj/structure/pool/ladder,/turf/open/pool,/area/crew_quarters/fitness/pool) @@ -3145,7 +3145,7 @@ "bjn" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/scale,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "bjo" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/structure/weightmachine/stacklifter,/turf/open/floor/wood,/area/crew_quarters/fitness) "bjp" = (/obj/structure/pool/ladder{dir = 1; pixel_y = -24},/turf/open/pool,/area/crew_quarters/fitness/pool) -"bjq" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/closet/athletic_mixed,/obj/item/clothing/under/shorts/redwshort,/obj/item/clothing/under/shorts/redwshort,/obj/item/clothing/under/shorts/yellowwshort,/obj/item/clothing/under/shorts/yellowwshort,/obj/item/clothing/under/shorts/pinkwshort,/obj/item/clothing/under/shorts/pinkwshort,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness) +"bjq" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/closet/athletic_mixed,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/yellow,/obj/item/clothing/under/shorts/yellow,/obj/item/clothing/under/shorts/pink,/obj/item/clothing/under/shorts/pink,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness) "bjr" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 1},/area/crew_quarters/fitness/pool) "bjs" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness"; name = "Fitness Room APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore/secondary) "bjt" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/structure/closet/boxinggloves,/obj/item/clothing/shoes/jackboots,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness) @@ -3165,7 +3165,7 @@ "bjH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Fitness Room"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/closet/lasertag/blue,/turf/open/floor/plasteel,/area/crew_quarters/fitness) "bjI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Holodeckshutter"; name = "Holodeck Shutter"},/turf/open/floor/plating,/area/crew_quarters/fitness) "bjJ" = (/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bjK" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/lawoffice) +"bjK" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/lawoffice) "bjL" = (/obj/machinery/light/small{dir = 4},/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/wood,/area/crew_quarters/dorms) "bjM" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/closet/lasertag/red,/turf/open/floor/plasteel,/area/crew_quarters/fitness) "bjN" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) @@ -3174,7 +3174,7 @@ "bjQ" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/pastatomato{pixel_y = 5},/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/maintenance/port/fore) "bjR" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/obj/machinery/button/door{id = "Holodeckshutter"; name = "Shutters"; pixel_x = 0; pixel_y = 9},/turf/open/floor/plasteel,/area/crew_quarters/fitness) "bjS" = (/obj/machinery/door/airlock{name = "Clown Room"; req_access_txt = "46"},/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"bjT" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"bjT" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) "bjU" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/open/floor/plating,/area/maintenance/starboard/fore) "bjV" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/cryopod) "bjW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -3218,7 +3218,7 @@ "bkI" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/grass,/area/hallway/primary/central) "bkJ" = (/obj/structure/flora/ausbushes/grassybush,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hallway/primary/central) "bkK" = (/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 24},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bkL" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bkL" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/hallway/primary/central) "bkM" = (/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/grass,/area/hallway/primary/central) "bkN" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hallway/primary/central) "bkO" = (/obj/machinery/light{light_color = "#cee5d2"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/camera{c_tag = "Dormitory Toilets"; dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) @@ -3251,7 +3251,7 @@ "blp" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/camera{c_tag = "Central Hallway East"; dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "blq" = (/obj/machinery/vending/wardrobe/hydro_wardrobe,/turf/open/floor/plasteel,/area/hydroponics) "blr" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/library) -"bls" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/grimy,/area/chapel/office) +"bls" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/grimy,/area/chapel/office) "blt" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/chair/sofa/corner,/turf/open/floor/carpet,/area/hallway/secondary/exit) "blu" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "blv" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) @@ -3276,7 +3276,7 @@ "blO" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Kitchen"; dir = 6},/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) "blP" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/rock/pile/largejungle{pixel_x = 0; pixel_y = -35},/obj/structure/flora/junglebush/c{pixel_x = 10; pixel_y = -5},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/grass,/area/hallway/primary/port) "blQ" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/grass,/area/hallway/primary/port) -"blR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"blR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "blS" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/bar) "blT" = (/obj/structure/table/plasmaglass,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/crew_quarters/bar) "blU" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/table/plasmaglass,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -4; pixel_y = 6},/turf/open/floor/plasteel,/area/crew_quarters/bar) @@ -3295,8 +3295,8 @@ "bmh" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/primary/port) "bmi" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/junglebush/large{pixel_x = -23; pixel_y = 0},/obj/machinery/light,/turf/open/floor/grass,/area/hallway/primary/port) "bmj" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/chair/sofa/corner{dir = 1},/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"bmk" = (/obj/structure/window{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bml" = (/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bmk" = (/obj/structure/window{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bml" = (/obj/item/kirbyplants,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) "bmm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) "bmn" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) "bmo" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{icon_state = "steel_panel"; name = "steel pannel"},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) @@ -3329,7 +3329,7 @@ "bmP" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/mint,/obj/item/stack/packageWrap,/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) "bmQ" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/hydroponics) "bmR" = (/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/hydroponics) -"bmS" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/library) +"bmS" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/library) "bmT" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) "bmU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "bmV" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) @@ -3421,7 +3421,7 @@ "boG" = (/obj/structure/window/reinforced,/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hallway/secondary/exit) "boH" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/flora/bush,/turf/open/floor/grass,/area/hallway/secondary/exit) "boI" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/science/misc_lab) -"boJ" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/security/vacantoffice) +"boJ" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/security/vacantoffice) "boL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/crew_quarters/fitness/sauna) "boM" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) "boN" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) @@ -3445,7 +3445,7 @@ "bpf" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness/sauna) "bpg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness/sauna) "bph" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Detective Maintenance"; req_access_txt = "4"},/turf/open/floor/plating,/area/maintenance/port) -"bpi" = (/obj/structure/disposalpipe/segment,/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bpi" = (/obj/structure/disposalpipe/segment,/obj/item/kirbyplants/random,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) "bpj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) "bpk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Central Access"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bpl" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/door/firedoor/border_only{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) @@ -3457,7 +3457,7 @@ "bpr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) "bps" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bpt" = (/obj/machinery/camera{c_tag = "Locker Room South"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) -"bpu" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) +"bpu" = (/obj/item/kirbyplants/random,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) "bpv" = (/obj/machinery/camera{c_tag = "Central Hallway East"; dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/status_display{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bpw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bpx" = (/obj/machinery/door/firedoor/border_only{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) @@ -3504,7 +3504,7 @@ "bqn" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/exit) "bqo" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "bqp" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"bqq" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bqq" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bqr" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 4"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "bqs" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 3"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "bqt" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) @@ -3556,7 +3556,7 @@ "bru" = (/obj/structure/chair,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "brv" = (/obj/structure/chair,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "brw" = (/obj/structure/chair,/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"brx" = (/obj/structure/medkit_cabinet{pixel_y = 27},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"brx" = (/obj/structure/medkit_cabinet{pixel_y = 27},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "bry" = (/obj/structure/filingcabinet,/obj/machinery/newscaster{pixel_x = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/medical) "brz" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/light/small{dir = 8},/obj/item/paper/guides/jobs/medical/morgue{pixel_x = 5; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) "brA" = (/turf/open/floor/plasteel/dark,/area/medical/morgue) @@ -3668,7 +3668,7 @@ "btD" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/radio/intercom{pixel_y = 20},/turf/open/floor/plasteel,/area/quartermaster/storage) "btE" = (/obj/machinery/camera{c_tag = "Cargo Bay North"},/obj/machinery/vending/wardrobe/cargo_wardrobe,/turf/open/floor/plasteel,/area/quartermaster/storage) "btF" = (/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/quartermaster/storage) -"btG" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 30},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/quartermaster/storage) +"btG" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 30},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/quartermaster/storage) "btH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel,/area/quartermaster/storage) "btI" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -1; pixel_y = 24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/quartermaster/storage) "btJ" = (/obj/machinery/photocopier,/obj/item/radio/intercom{pixel_y = 20},/obj/machinery/light_switch{pixel_x = -27},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/quartermaster/sorting) @@ -4068,7 +4068,7 @@ "bBn" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/table,/obj/machinery/camera{c_tag = "vault Lobby"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "bBo" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) "bBp" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bBq" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bBq" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) "bBr" = (/turf/closed/wall/r_wall,/area/teleporter) "bBs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/teleporter) "bBt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/teleporter) @@ -4174,7 +4174,7 @@ "bDp" = (/turf/open/floor/plasteel/dark,/area/science/robotics/lab) "bDq" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) "bDr" = (/obj/machinery/computer/operating{dir = 1; name = "Robotics Operating Computer"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bDs" = (/obj/structure/window/reinforced{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bDs" = (/obj/structure/window/reinforced{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) "bDt" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/science/robotics/lab) "bDu" = (/obj/machinery/camera{c_tag = "Robotics Lab - South"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/robotics/lab) "bDv" = (/obj/machinery/light,/turf/open/floor/plasteel/white,/area/science/robotics/lab) @@ -4290,7 +4290,7 @@ "bFB" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) "bFC" = (/obj/structure/table,/obj/item/folder/blue,/obj/item/stack/packageWrap{pixel_x = -1; pixel_y = -1},/obj/item/hand_labeler,/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) "bFD" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) -"bFE" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/hop) +"bFE" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/item/kirbyplants/random,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/hop) "bFF" = (/obj/structure/bed,/obj/item/bedsheet/hop,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/hop) "bFG" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/light,/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/hallway/primary/central) "bFH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -4363,7 +4363,7 @@ "bGW" = (/obj/item/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/vending/mealdor,/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) "bGX" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = -30},/obj/machinery/camera{c_tag = "Head of Personnel's Office"; dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) "bGY" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) -"bGZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) +"bGZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) "bHa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) "bHb" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) "bHc" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -4619,7 +4619,7 @@ "bLS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) "bLT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) "bLU" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) -"bLV" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) +"bLV" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) "bLW" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/turf/open/floor/plasteel/white,/area/science/circuit) "bLX" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/white,/area/science/circuit) "bLY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit) @@ -4632,7 +4632,7 @@ "bMf" = (/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 1; name = "Quartermaster APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) "bMg" = (/turf/open/floor/plasteel/dark,/area/quartermaster/qm) "bMh" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) -"bMi" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/quartermaster/qm) +"bMi" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/quartermaster/qm) "bMj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel/dark,/area/quartermaster/qm) "bMk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{dir = 8; id = "cargoshut2"; name = "shutters"},/turf/open/floor/plating,/area/quartermaster/qm) "bMl" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/ore_box,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/miningdock) @@ -4652,11 +4652,11 @@ "bMz" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bMA" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bMB" = (/obj/machinery/light,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bMC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bMC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) "bMD" = (/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = -40},/obj/structure/sign/directions/medical{dir = 4; pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 4; pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bME" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bMF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bMG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = -32},/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bMG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = -32},/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bMH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bMI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Primary Hallway South"; dir = 1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bMJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -4697,7 +4697,7 @@ "bNs" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/pen,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science) "bNt" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/research) "bNu" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white/side{dir = 9},/area/science/research) -"bNv" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hor"; dir = 8; name = "RD Office APC"; pixel_x = -25},/obj/structure/cable,/obj/machinery/light_switch{pixel_y = -23},/obj/item/twohanded/required/kirbyplants/dead,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) +"bNv" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hor"; dir = 8; name = "RD Office APC"; pixel_x = -25},/obj/structure/cable,/obj/machinery/light_switch{pixel_y = -23},/obj/item/kirbyplants/dead,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) "bNw" = (/obj/machinery/keycard_auth{pixel_y = -24},/obj/machinery/light,/obj/machinery/computer/card/minor/rd{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) "bNx" = (/obj/structure/table,/obj/item/cartridge/signal/toxins,/obj/item/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("ss13","rd")},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) "bNy" = (/obj/structure/closet/secure_closet/RD,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/hor) @@ -4869,7 +4869,7 @@ "bQI" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/tech) "bQJ" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/tech) "bQK" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/tech) -"bQL" = (/obj/structure/table,/obj/item/aicard,/obj/item/aiModule/reset,/turf/open/floor/plating,/area/storage/tech) +"bQL" = (/obj/structure/table,/obj/item/aicard,/obj/item/ai_module/reset,/turf/open/floor/plating,/area/storage/tech) "bQM" = (/turf/open/floor/plating,/area/storage/tech) "bQN" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plating,/area/storage/tech) "bQO" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/storage/tech) @@ -5014,7 +5014,7 @@ "bTx" = (/obj/item/stack/ore/iron,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/miningdock) "bTy" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) "bTz" = (/obj/structure/closet/crate,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bTA" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bTA" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/quartermaster/miningdock) "bTB" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock) "bTC" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/pickaxe{pixel_x = 5},/obj/item/shovel{pixel_x = -5},/turf/open/floor/plasteel,/area/quartermaster/miningdock) "bTD" = (/obj/machinery/computer/security/mining{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) @@ -5310,7 +5310,7 @@ "bZh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel,/area/engine/atmos) "bZi" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) "bZj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/engine/atmos) -"bZk" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/atmos) +"bZk" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/atmos) "bZl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) "bZm" = (/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/engine/atmos) "bZn" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) @@ -5381,7 +5381,7 @@ "caA" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) "caB" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) "caC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/medical/virology) -"caD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/white,/area/medical/virology) +"caD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/white,/area/medical/virology) "caE" = (/obj/item/storage/secure/safe{pixel_x = 5; pixel_y = 29},/obj/machinery/camera{c_tag = "Virology Break Room"; network = list("ss13","medbay")},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) "caF" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel/white,/area/medical/virology) "caG" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/plasteel/white,/area/medical/virology) @@ -5687,7 +5687,7 @@ "cgu" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) "cgv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) "cgw" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"cgx" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/atmos) +"cgx" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/atmos) "cgy" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) "cgz" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) "cgA" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) @@ -5789,7 +5789,7 @@ "cis" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) "cit" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) "ciu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/sign/warning/securearea,/turf/closed/wall,/area/engine/atmos) -"civ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/atmos) +"civ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/atmos) "ciw" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "External to Filter"},/turf/open/floor/plasteel,/area/engine/atmos) "cix" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) "ciy" = (/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/engine/atmos) @@ -5938,7 +5938,7 @@ "cll" = (/obj/machinery/disposal/bin,/obj/structure/sign/warning/deathsposal{pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) "clm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/virology) "cln" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/white,/area/medical/virology) -"clo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/white,/area/medical/virology) +"clo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/white,/area/medical/virology) "clp" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{dir = 8; id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/engine,/area/science/xenobiology) "clq" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/xenobiology) "clr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/xenobiology) @@ -6186,7 +6186,7 @@ "cpZ" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "cqa" = (/obj/structure/table,/obj/item/multitool,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) "cqb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cqc" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cqc" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/tcommsat/computer) "cqd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/computer) "cqe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) "cqf" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) @@ -6295,7 +6295,7 @@ "cse" = (/obj/machinery/power/apc{areastring = "/area/maintenance/port/aft"; dir = 8; name = "Port Quarter Maintenance APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "csf" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "csg" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) -"csh" = (/obj/item/clothing/head/kitty,/obj/item/clothing/under/maid,/obj/item/clothing/mask/muzzle,/turf/open/floor/plating,/area/maintenance/bar) +"csh" = (/obj/item/clothing/head/kitty,/obj/item/clothing/under/costume/maid,/obj/item/clothing/mask/muzzle,/turf/open/floor/plating,/area/maintenance/bar) "csi" = (/obj/item/clothing/under/color/grey,/turf/open/floor/plating,/area/maintenance/bar) "csj" = (/turf/open/space,/area/space/nearstation) "csk" = (/obj/machinery/light/small{dir = 4},/obj/structure/table/wood,/turf/open/floor/wood,/area/maintenance/bar) @@ -6316,7 +6316,7 @@ "csz" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) "csA" = (/obj/structure/disposalpipe/segment{dir = 4},/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/plasteel,/area/hallway/primary/aft) "csB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/break_room) -"csC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/break_room) +"csC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/break_room) "csD" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) "csE" = (/obj/machinery/camera{c_tag = "Engineering Foyer"; dir = 1},/obj/structure/noticeboard{dir = 1; pixel_y = -27},/turf/open/floor/plasteel,/area/engine/break_room) "csF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) @@ -6363,7 +6363,7 @@ "ctu" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port/aft) "ctv" = (/obj/machinery/door/airlock/maintenance/abandoned{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/aft) "ctw" = (/obj/item/restraints/handcuffs/fake,/turf/open/floor/plating,/area/maintenance/bar) -"ctx" = (/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath,/obj/structure/double_bed,/obj/item/bedsheet/double_gato,/turf/open/floor/plating,/area/maintenance/bar) +"ctx" = (/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath,/obj/structure/bed/double,/obj/item/bedsheet/double_gato,/turf/open/floor/plating,/area/maintenance/bar) "cty" = (/obj/item/electropack/shockcollar,/obj/item/assembly/signaler,/turf/open/floor/plating,/area/maintenance/bar) "ctz" = (/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/bridge) "ctA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port/aft) @@ -6413,7 +6413,7 @@ "cus" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/chief) "cut" = (/obj/machinery/button/door{id = "ceprivacy"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/machinery/holopad,/obj/machinery/light{dir = 1; pixel_y = 16},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) "cuu" = (/obj/structure/rack,/obj/item/lighter,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/stock_parts/cell/high/plus,/obj/item/reagent_containers/pill/patch/silver_sulf,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"cuv" = (/obj/structure/filingcabinet/chestdrawer,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) +"cuv" = (/obj/structure/filingcabinet/chestdrawer,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/mob/living/simple_animal/parrot/Polly,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) "cuw" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/heads/chief"; dir = 4; name = "CE Office APC"; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) "cux" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) "cuy" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) @@ -6554,7 +6554,7 @@ "cxd" = (/obj/machinery/computer/atmos_alert,/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},/turf/open/floor/plasteel/dark,/area/engine/engineering) "cxe" = (/obj/machinery/computer/apc_control{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) "cxf" = (/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cxg" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/twohanded/rcl/pre_loaded,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cxg" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/rcl/pre_loaded,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) "cxh" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/paper/monitorkey,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) "cxi" = (/obj/structure/cable{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) "cxj" = (/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) @@ -6695,7 +6695,7 @@ "czO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port/aft) "czP" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering) "czQ" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/engineering) -"czR" = (/obj/effect/turf_decal/bot{dir = 1},/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/storage/box/lights/mixed,/obj/structure/cable{icon_state = "1-2"},/obj/item/twohanded/rcl/pre_loaded,/obj/item/twohanded/rcl/pre_loaded,/turf/open/floor/plasteel,/area/engine/engineering) +"czR" = (/obj/effect/turf_decal/bot{dir = 1},/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/storage/box/lights/mixed,/obj/structure/cable{icon_state = "1-2"},/obj/item/rcl/pre_loaded,/obj/item/rcl/pre_loaded,/turf/open/floor/plasteel,/area/engine/engineering) "czS" = (/obj/effect/turf_decal/bot{dir = 1},/obj/structure/closet/crate/solarpanel_small,/turf/open/floor/plasteel,/area/engine/engineering) "czT" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) "czU" = (/obj/effect/turf_decal/bot{dir = 1},/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) @@ -6705,9 +6705,9 @@ "czY" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/chief) "czZ" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/chief) "cAa" = (/obj/machinery/door/airlock/command/glass{name = "Chief Engineer"; req_access_txt = "56"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/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},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cAb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engineering) +"cAb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engineering) "cAc" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cAd" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engineering) +"cAd" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engineering) "cAe" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) "cAf" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos) "cAg" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) @@ -6924,7 +6924,7 @@ "cEj" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engine_smes) "cEk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes) "cEl" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engine_smes) -"cEm" = (/obj/structure/sign/warning/electricshock{pixel_x = -32},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engineering) +"cEm" = (/obj/structure/sign/warning/electricshock{pixel_x = -32},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engineering) "cEn" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) "cEo" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) "cEp" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/turf/open/floor/plasteel,/area/engine/engineering) @@ -6940,12 +6940,12 @@ "cEz" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/starboard/aft) "cEA" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/lattice/catwalk,/turf/open/floor/plating/airless,/area/space/nearstation) "cEB" = (/obj/machinery/door/airlock/abandoned{name = "Observatory Access"},/turf/open/floor/plating,/area/maintenance/port/aft) -"cEC" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/engine/engine_smes"; name = "SMES room APC"; pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engine_smes) +"cEC" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/engine/engine_smes"; name = "SMES room APC"; pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engine_smes) "cED" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engine_smes) "cEE" = (/obj/structure/table,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/item/stock_parts/cell/high/plus,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engine_smes) "cEF" = (/obj/machinery/camera{c_tag = "Engineering Storage"; dir = 4},/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel,/area/engine/engineering) "cEG" = (/obj/structure/table,/obj/item/stack/rods/fifty,/turf/open/floor/plasteel,/area/engine/engineering) -"cEH" = (/obj/structure/sign/warning/pods{pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engineering) +"cEH" = (/obj/structure/sign/warning/pods{pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/engineering) "cEI" = (/obj/machinery/camera{c_tag = "Engineering Escape Pod"; dir = 4},/turf/open/floor/plating,/area/engine/engineering) "cEJ" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/obj/structure/lattice/catwalk,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) "cEK" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) @@ -6980,7 +6980,7 @@ "cFn" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) "cFo" = (/obj/machinery/camera{c_tag = "Engineering MiniSat Access"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) "cFp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cFq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plating,/area/engine/engineering) +"cFq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plating,/area/engine/engineering) "cFr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/engineering) "cFs" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft) "cFt" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/aft) @@ -7226,7 +7226,7 @@ "cJZ" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "cKa" = (/obj/machinery/camera{c_tag = "MiniSat External South"; network = list("minisat"); start_active = 1},/turf/open/space,/area/space/nearstation) "cPz" = (/obj/structure/lattice,/obj/item/stack/marker_beacon{anchored = 1; icon_state = "markerburgundy-on"; light_color = "#FA644B"; light_power = 3; light_range = 2; name = "landing marker"; picked_color = "Burgundy"},/turf/open/space/basic,/area/space) -"cRr" = (/obj/structure/closet,/obj/item/clothing/head/chefhat,/obj/item/clothing/suit/apron/chef,/obj/item/clothing/under/rank/chef,/obj/item/clothing/under/maid,/obj/item/clothing/under/maid,/obj/item/clothing/under/maid,/obj/item/clothing/shoes/laceup,/obj/item/clothing/shoes/laceup,/obj/item/clothing/shoes/laceup,/turf/open/floor/wood,/area/maintenance/port/fore) +"cRr" = (/obj/structure/closet,/obj/item/clothing/head/chefhat,/obj/item/clothing/suit/apron/chef,/obj/item/clothing/under/rank/chef,/obj/item/clothing/under/costume/maid,/obj/item/clothing/under/costume/maid,/obj/item/clothing/under/costume/maid,/obj/item/clothing/shoes/laceup,/obj/item/clothing/shoes/laceup,/obj/item/clothing/shoes/laceup,/turf/open/floor/wood,/area/maintenance/port/fore) "dgb" = (/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/quartermaster/storage) "djR" = (/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/quartermaster/storage) "dmF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/aft) @@ -7281,7 +7281,7 @@ "hsZ" = (/obj/structure/bookcase/random,/turf/open/floor/wood,/area/library) "huU" = (/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) "hzo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/wardrobe/mixed,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/fitness/sauna) -"hzA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/twohanded/required/kirbyplants/photosynthetic,/turf/open/floor/plasteel/dark/side{dir = 9},/area/crew_quarters/fitness/sauna) +"hzA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel/dark/side{dir = 9},/area/crew_quarters/fitness/sauna) "hAV" = (/obj/effect/landmark/carpspawn,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) "hIG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) "hLR" = (/obj/effect/spawner/lootdrop/fiftypercent_chocoslimespawn,/turf/open/floor/engine,/area/science/xenobiology) @@ -7375,7 +7375,7 @@ "nSi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "nVj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/sauna) "nVk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/kink,/turf/open/floor/plasteel/dark/side{dir = 9},/area/crew_quarters/fitness/sauna) -"nWV" = (/obj/item/conveyor_construct/treadmill,/turf/open/floor/wood,/area/crew_quarters/fitness) +"nWV" = (/obj/machinery/treadmill,/turf/open/floor/wood,/area/crew_quarters/fitness) "ooZ" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/library) "orq" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) "otM" = (/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) diff --git a/_maps/metis_maps/Deltastation/DeltaStation2.dmm b/_maps/metis_maps/Deltastation/DeltaStation2.dmm index 77d590b053..7fba1bfbc8 100644 --- a/_maps/metis_maps/Deltastation/DeltaStation2.dmm +++ b/_maps/metis_maps/Deltastation/DeltaStation2.dmm @@ -340,7 +340,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -388,7 +388,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "acp" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/yellow{ dir = 1 }, @@ -1023,7 +1023,7 @@ name = "Construction RC"; pixel_y = 32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/yellow{ dir = 1 }, @@ -1086,7 +1086,7 @@ dir = 1 }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel, @@ -1096,7 +1096,7 @@ dir = 1 }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel, @@ -1113,7 +1113,7 @@ dir = 1 }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -1377,14 +1377,14 @@ /area/hallway/secondary/entry) "agk" = ( /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) "agl" = ( /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel, @@ -1690,7 +1690,7 @@ dir = 4; pixel_x = -24 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -1934,7 +1934,7 @@ /area/maintenance/starboard/fore) "aio" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/sign/poster/contraband/random{ pixel_y = 32 }, @@ -2005,7 +2005,7 @@ /area/maintenance/starboard/fore) "ais" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -2668,7 +2668,7 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -2728,7 +2728,7 @@ "ajR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -3147,7 +3147,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "akJ" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/neutral, @@ -3171,7 +3171,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "akN" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/neutral{ @@ -3424,7 +3424,7 @@ /turf/open/floor/plasteel/grimy, /area/security/vacantoffice) "alo" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ pixel_y = 24 }, @@ -3505,7 +3505,7 @@ pixel_x = 26; pixel_y = 26 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -3930,7 +3930,7 @@ /turf/open/floor/plasteel/grimy, /area/hallway/secondary/entry) "amq" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/hallway/secondary/entry) "amr" = ( @@ -4190,7 +4190,7 @@ }, /obj/item/wirerod, /obj/item/wrench, -/obj/item/clothing/under/waiter, +/obj/item/clothing/under/suit/waiter, /obj/item/clothing/accessory/waistcoat, /obj/structure/sign/poster/contraband/random{ pixel_x = -32 @@ -4198,7 +4198,7 @@ /turf/open/floor/plasteel/dark, /area/crew_quarters/electronic_marketing_den) "amN" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -4229,7 +4229,7 @@ /turf/open/floor/wood, /area/crew_quarters/electronic_marketing_den) "amQ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/electronic_marketing_den) "amR" = ( @@ -4259,7 +4259,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/electronic_marketing_den) "amV" = ( @@ -4553,7 +4553,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/fore) "anB" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -4583,7 +4583,7 @@ /turf/open/floor/plasteel, /area/maintenance/starboard/fore) "anD" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red{ dir = 1 @@ -5321,7 +5321,7 @@ /turf/open/floor/plasteel/dark, /area/engine/atmospherics_engine) "aoM" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/crew_quarters/electronic_marketing_den) "aoN" = ( @@ -5622,7 +5622,7 @@ /turf/open/floor/plasteel, /area/maintenance/starboard/fore) "apt" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plating, /area/maintenance/starboard/fore) "apu" = ( @@ -6022,7 +6022,7 @@ /turf/open/floor/plasteel/grimy, /area/security/vacantoffice) "aqf" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/security/vacantoffice) "aqg" = ( @@ -6116,7 +6116,7 @@ /obj/machinery/newscaster{ pixel_y = -32 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel/grimy, @@ -6513,7 +6513,7 @@ /turf/open/floor/wood, /area/crew_quarters/electronic_marketing_den) "aqT" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/cable/white, /obj/machinery/power/apc{ areastring = "/area/crew_quarters/electronic_marketing_den"; @@ -6991,7 +6991,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "arM" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/neutral{ @@ -7027,7 +7027,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "arQ" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/neutral{ @@ -8514,7 +8514,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/neutral{ @@ -8572,7 +8572,7 @@ /area/hallway/secondary/entry) "auq" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/neutral, @@ -9967,7 +9967,7 @@ /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) "awM" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/camera{ c_tag = "Auxiliary Restroom"; dir = 2; @@ -10269,7 +10269,7 @@ "axr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/bot, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "axs" = ( @@ -10421,7 +10421,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "axG" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, @@ -12361,7 +12361,7 @@ /turf/open/floor/plasteel, /area/hydroponics/garden/abandoned) "aBh" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light/small{ dir = 1 }, @@ -12406,7 +12406,7 @@ /turf/open/floor/plasteel, /area/hydroponics/garden/abandoned) "aBm" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/status_display{ pixel_y = 32 }, @@ -12425,7 +12425,7 @@ /turf/open/floor/plasteel, /area/hydroponics/garden/abandoned) "aBo" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light/small{ dir = 1 }, @@ -13724,7 +13724,7 @@ /turf/open/floor/plasteel/grimy, /area/hallway/secondary/service) "aDH" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/sign/nanotrasen{ pixel_x = 32 }, @@ -14645,7 +14645,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aFu" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -14836,7 +14836,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aFH" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -14852,7 +14852,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aFJ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, @@ -15759,7 +15759,7 @@ /turf/open/floor/plasteel/dark, /area/maintenance/disposal/incinerator) "aGX" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -15912,7 +15912,7 @@ /area/engine/atmospherics_engine) "aHj" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -15982,7 +15982,7 @@ /turf/open/floor/plasteel, /area/maintenance/port/fore) "aHq" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/newscaster{ pixel_x = -32 }, @@ -16072,7 +16072,7 @@ /turf/open/floor/plasteel/grimy, /area/crew_quarters/bar) "aHx" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18612,7 +18612,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/fore) "aLO" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/brown{ dir = 1 }, @@ -18716,7 +18716,7 @@ /turf/open/floor/plasteel, /area/security/checkpoint/supply) "aLV" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -18909,7 +18909,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -19179,7 +19179,7 @@ /turf/open/floor/plasteel/grimy, /area/crew_quarters/abandoned_gambling_den/secondary) "aMR" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/crew_quarters/abandoned_gambling_den/secondary) "aMS" = ( @@ -19189,7 +19189,7 @@ /turf/open/floor/plasteel/grimy, /area/crew_quarters/abandoned_gambling_den/secondary) "aMT" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm{ pixel_y = 23 @@ -19212,7 +19212,7 @@ }, /area/crew_quarters/abandoned_gambling_den/secondary) "aMV" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/abandoned_gambling_den/secondary) "aMW" = ( @@ -19604,7 +19604,7 @@ /area/security/prison) "aND" = ( /obj/structure/table, -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -20082,7 +20082,7 @@ /turf/open/floor/plasteel/dark, /area/engine/atmos) "aOo" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -20308,7 +20308,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/crew_quarters/bar/atrium) "aOH" = ( @@ -20343,7 +20343,7 @@ /area/crew_quarters/bar/atrium) "aOJ" = ( /obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -21066,7 +21066,7 @@ /turf/open/floor/plasteel/checker, /area/engine/atmos) "aPO" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -21091,7 +21091,7 @@ /turf/open/floor/plasteel, /area/engine/atmos) "aPQ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -21566,7 +21566,7 @@ "aQC" = ( /obj/structure/table, /obj/item/folder/yellow, -/obj/item/destTagger, +/obj/item/dest_tagger, /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -21586,7 +21586,7 @@ /area/quartermaster/sorting) "aQE" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -21824,7 +21824,7 @@ /area/security/prison) "aRb" = ( /obj/machinery/light/small, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red{ dir = 8 @@ -21869,7 +21869,7 @@ /turf/open/floor/plasteel, /area/security/prison) "aRg" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small, /turf/open/floor/plating{ @@ -23790,7 +23790,7 @@ /turf/open/floor/plasteel, /area/quartermaster/office) "aTY" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 4 }, @@ -24634,7 +24634,7 @@ /turf/open/floor/engine/air, /area/engine/atmos) "aVc" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den/secondary) @@ -24733,7 +24733,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/camera{ c_tag = "Service Hallway - Aft"; @@ -26046,7 +26046,7 @@ /turf/open/floor/plasteel/dark, /area/crew_quarters/bar/atrium) "aWX" = ( -/obj/structure/piano{ +/obj/structure/musician/piano{ icon_state = "piano" }, /obj/machinery/airalarm{ @@ -27350,7 +27350,7 @@ /turf/open/floor/plasteel, /area/quartermaster/office) "aYR" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 4; pixel_x = -24; @@ -27397,7 +27397,7 @@ /turf/open/floor/plasteel, /area/quartermaster/storage) "aYU" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -27502,7 +27502,7 @@ /turf/open/floor/plasteel, /area/quartermaster/qm) "aZd" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light, /obj/machinery/newscaster{ pixel_y = -32 @@ -27585,7 +27585,7 @@ /turf/open/floor/plating, /area/quartermaster/qm) "aZk" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/cable/white{ icon_state = "2-8" }, @@ -28386,7 +28386,7 @@ /obj/machinery/newscaster{ pixel_x = -32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -28491,7 +28491,7 @@ /turf/open/floor/plasteel, /area/quartermaster/office) "baK" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -28788,7 +28788,7 @@ /turf/open/floor/plasteel, /area/security/prison) "bbn" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/sign/warning/pods{ dir = 8; pixel_y = -32 @@ -30283,7 +30283,7 @@ "bdP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/brown{ @@ -30411,7 +30411,7 @@ /turf/open/floor/plasteel, /area/quartermaster/miningoffice) "beb" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/brown{ dir = 1 }, @@ -30650,7 +30650,7 @@ /area/engine/atmos) "beB" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 4; pixel_x = -24 @@ -30877,7 +30877,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/service) "beX" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -31843,7 +31843,7 @@ /turf/open/floor/plating, /area/quartermaster/miningoffice) "bgH" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -31897,7 +31897,7 @@ /area/quartermaster/miningoffice) "bgL" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -33003,7 +33003,7 @@ /turf/open/floor/plasteel, /area/security/brig) "biE" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/cable/white{ icon_state = "1-2" }, @@ -33032,7 +33032,7 @@ /turf/open/floor/plasteel, /area/security/brig) "biG" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -33103,7 +33103,7 @@ /obj/machinery/newscaster/security_unit{ pixel_y = 32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -33919,7 +33919,7 @@ /area/hallway/primary/fore) "bjR" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/brown, @@ -33985,7 +33985,7 @@ /area/quartermaster/miningoffice) "bjW" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/brown{ dir = 1 }, @@ -34981,7 +34981,7 @@ /area/hallway/primary/fore) "blJ" = ( /obj/machinery/light, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/brown, @@ -35355,7 +35355,7 @@ /turf/open/floor/plasteel, /area/security/main) "bmr" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -35505,7 +35505,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -35543,7 +35543,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -35739,7 +35739,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 9 }, @@ -36680,7 +36680,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/neutral{ @@ -36965,7 +36965,7 @@ /turf/open/floor/plating, /area/security/execution/transfer) "bpd" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -37757,7 +37757,7 @@ /turf/closed/wall/r_wall, /area/engine/atmos) "bqm" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/yellow{ @@ -39965,7 +39965,7 @@ /obj/structure/closet/secure_closet/hos, /obj/item/clothing/head/HoS/beret, /obj/item/clothing/suit/armor/hos/trenchcoat, -/obj/item/clothing/under/rank/head_of_security/grey, +/obj/item/clothing/under/rank/security/head_of_security/grey, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -40680,7 +40680,7 @@ /turf/open/floor/plasteel/dark, /area/security/main) "buT" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/power/apc{ areastring = "/area/crew_quarters/heads/hos"; dir = 2; @@ -40927,7 +40927,7 @@ /turf/open/floor/plasteel, /area/engine/atmos) "bvk" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light/small, /obj/machinery/light_switch{ pixel_x = 26; @@ -41372,7 +41372,7 @@ /turf/open/floor/plasteel, /area/security/execution/transfer) "bwc" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -41407,7 +41407,7 @@ /turf/open/floor/plasteel, /area/security/brig) "bwe" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -41452,7 +41452,7 @@ /turf/open/floor/plasteel, /area/security/main) "bwj" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ dir = 8 @@ -41510,7 +41510,7 @@ /obj/structure/cable/white{ icon_state = "2-4" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) @@ -41539,7 +41539,7 @@ /obj/structure/cable/white{ icon_state = "2-8" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, @@ -42120,7 +42120,7 @@ /turf/open/floor/plating, /area/security/execution/transfer) "bxo" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/red{ dir = 1 @@ -42526,7 +42526,7 @@ /area/engine/atmos) "bxT" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/yellow{ dir = 4 }, @@ -42958,7 +42958,7 @@ /obj/machinery/gulag_item_reclaimer{ pixel_y = 28 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/cable/white{ icon_state = "4-8" }, @@ -43029,7 +43029,7 @@ /turf/open/floor/plasteel, /area/security/execution/transfer) "byI" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 8; pixel_x = 24 @@ -43272,7 +43272,7 @@ /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) "bzb" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -43344,7 +43344,7 @@ "bzi" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/electrical, -/obj/item/handdrill, +/obj/item/screwdriver/power, /obj/machinery/status_display{ pixel_y = 32 }, @@ -43376,7 +43376,7 @@ dir = 1 }, /obj/item/stack/sheet/plasteel/fifty, -/obj/item/jawsoflife, +/obj/item/crowbar/power, /obj/structure/sign/nanotrasen{ pixel_x = 32 }, @@ -44291,7 +44291,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) "bAz" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -44828,7 +44828,7 @@ /turf/open/floor/plasteel, /area/storage/tech) "bBl" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/tech) @@ -44842,7 +44842,7 @@ /area/storage/tech) "bBn" = ( /obj/structure/table/reinforced, -/obj/item/aiModule/reset, +/obj/item/ai_module/reset, /obj/item/assembly/flash/handheld, /obj/item/assembly/flash/handheld, /obj/effect/turf_decal/bot, @@ -44963,7 +44963,7 @@ name = "WARNING: BLAST DOORS"; pixel_y = 32 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/blue{ @@ -44992,7 +44992,7 @@ /turf/open/floor/plasteel/dark, /area/bridge) "bBz" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -45906,7 +45906,7 @@ /turf/open/floor/plasteel, /area/engine/break_room) "bCU" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 1 }, @@ -46526,7 +46526,7 @@ /turf/open/floor/plasteel/dark, /area/bridge) "bDD" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/cable/white{ icon_state = "4-8" }, @@ -46968,7 +46968,7 @@ /turf/open/floor/plasteel, /area/security/execution/transfer) "bEb" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, @@ -47625,7 +47625,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/port) "bES" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/status_display{ pixel_x = -32 }, @@ -47654,7 +47654,7 @@ /turf/open/floor/plasteel, /area/storage/tech) "bEV" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/status_display/ai{ pixel_x = 32 }, @@ -48012,7 +48012,7 @@ /turf/open/floor/plasteel/dark, /area/bridge) "bFr" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -48071,7 +48071,7 @@ /turf/open/floor/plasteel/grimy, /area/bridge) "bFx" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48570,7 +48570,7 @@ dir = 4; pixel_x = -24 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/break_room) @@ -48613,7 +48613,7 @@ dir = 1; pixel_y = -22 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/break_room) @@ -48745,7 +48745,7 @@ /turf/open/floor/plasteel, /area/engine/break_room) "bGt" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 8; pixel_x = 24 @@ -48972,7 +48972,7 @@ /turf/open/floor/plasteel, /area/storage/primary) "bGM" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/storage/primary) @@ -49022,7 +49022,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/blue, @@ -49301,7 +49301,7 @@ pixel_y = -32 }, /obj/machinery/light/small, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/blue, @@ -49329,7 +49329,7 @@ /area/security/detectives_office) "bHt" = ( /obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/red{ @@ -49352,7 +49352,7 @@ /area/hallway/primary/starboard) "bHv" = ( /obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/red{ @@ -49762,7 +49762,7 @@ /turf/closed/wall, /area/engine/break_room) "bHY" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 8 }, @@ -50519,7 +50519,7 @@ /obj/item/clothing/suit/det_suit{ icon_state = "curator" }, -/obj/item/clothing/under/rank/det{ +/obj/item/clothing/under/rank/security/detective{ icon_state = "curator" }, /obj/effect/turf_decal/tile/neutral{ @@ -51051,7 +51051,7 @@ /turf/closed/wall/r_wall, /area/engine/transit_tube) "bJQ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -51094,7 +51094,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/twohanded/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -51157,7 +51157,7 @@ /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/chief) "bJV" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ pixel_y = 24 }, @@ -51520,7 +51520,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/bridge/meeting_room/council) "bKB" = ( @@ -51687,7 +51687,7 @@ /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/captain) "bKT" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/heads/captain) "bKU" = ( @@ -52255,7 +52255,7 @@ /turf/open/floor/plasteel/dark, /area/engine/transit_tube) "bLK" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 8; pixel_x = 24 @@ -52280,7 +52280,7 @@ /turf/open/floor/plasteel/dark, /area/engine/transit_tube) "bLL" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 8 }, @@ -52613,7 +52613,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/port) "bMg" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/status_display/ai{ pixel_x = -32 }, @@ -52647,7 +52647,7 @@ /turf/open/floor/plasteel, /area/storage/tech) "bMj" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/status_display{ pixel_x = 32 }, @@ -52831,7 +52831,7 @@ name = "Telecomms Monitoring APC"; pixel_y = 28 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/cable/white{ icon_state = "0-2" }, @@ -52872,7 +52872,7 @@ /obj/machinery/airalarm{ pixel_y = 22 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -53228,7 +53228,7 @@ /turf/closed/wall, /area/security/brig) "bNk" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/door_timer{ id = "brig1"; name = "Cell 1"; @@ -53938,7 +53938,7 @@ /turf/open/floor/plasteel, /area/engine/break_room) "bOe" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -54930,7 +54930,7 @@ /turf/closed/wall, /area/engine/transit_tube) "bPN" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -54966,7 +54966,7 @@ /turf/open/floor/plasteel/dark, /area/engine/transit_tube) "bPP" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ pixel_x = 22; @@ -55138,7 +55138,7 @@ /turf/closed/wall, /area/engine/break_room) "bQb" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/break_room) @@ -55249,7 +55249,7 @@ /turf/open/floor/plasteel, /area/storage/tech) "bQm" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -55259,7 +55259,7 @@ /turf/open/floor/plasteel, /area/storage/tech) "bQn" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light_switch{ pixel_y = -26 }, @@ -55424,7 +55424,7 @@ /turf/open/floor/wood, /area/bridge/meeting_room/council) "bQG" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -55675,7 +55675,7 @@ dir = 1; pixel_y = -26 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -55786,7 +55786,7 @@ /turf/open/floor/plasteel/dark, /area/security/detectives_office) "bRn" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -56049,7 +56049,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "bRF" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -56300,7 +56300,7 @@ /turf/open/floor/plating, /area/crew_quarters/heads/chief) "bSd" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/newscaster{ pixel_y = 32 }, @@ -56555,7 +56555,7 @@ /area/bridge/meeting_room/council) "bSz" = ( /obj/machinery/light, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/bridge/meeting_room/council) "bSA" = ( @@ -56614,12 +56614,12 @@ /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) "bSG" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) "bSH" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) "bSI" = ( @@ -57210,7 +57210,7 @@ /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat_interior) "bTB" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/turretid{ control_area = "/area/ai_monitored/turret_protected/aisat_interior"; enabled = 1; @@ -57443,7 +57443,7 @@ /turf/open/floor/plasteel/dark, /area/engine/transit_tube) "bTO" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -57707,7 +57707,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -58447,7 +58447,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/starboard) "bVk" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/door_timer{ id = "brig2"; name = "Cell 2"; @@ -59182,7 +59182,7 @@ /turf/open/floor/plasteel/dark, /area/engine/transit_tube) "bWe" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light/small{ dir = 4 }, @@ -59224,7 +59224,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/mob/living/simple_animal/parrot/Poly, +/mob/living/simple_animal/parrot/Polly, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/chief) "bWg" = ( @@ -59283,7 +59283,7 @@ /turf/open/floor/plating, /area/crew_quarters/heads/chief) "bWm" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 1; pixel_x = -24; @@ -59738,7 +59738,7 @@ /turf/open/floor/wood, /area/crew_quarters/heads/hop) "bWS" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -59754,7 +59754,7 @@ /turf/open/floor/wood, /area/crew_quarters/heads/hop) "bWU" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/crew_quarters/heads/hop) @@ -60607,7 +60607,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "bXY" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 8; pixel_x = 24 @@ -60709,7 +60709,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "bYh" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 4; pixel_x = -24 @@ -60980,7 +60980,7 @@ /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/chief) "bYw" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light_switch{ pixel_x = 26; pixel_y = -26 @@ -62007,7 +62007,7 @@ /area/ai_monitored/turret_protected/aisat_interior) "cae" = ( /obj/structure/cable/white, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -62072,7 +62072,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "cai" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light, /obj/machinery/airalarm{ dir = 1; @@ -62109,7 +62109,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "cak" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light_switch{ pixel_x = -26 }, @@ -62192,7 +62192,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "cao" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, @@ -62306,7 +62306,7 @@ /turf/open/floor/plating, /area/security/checkpoint/engineering) "caB" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/yellow{ @@ -62715,7 +62715,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/red{ @@ -62869,7 +62869,7 @@ /area/security/warden) "cbF" = ( /obj/structure/closet/secure_closet/warden, -/obj/item/clothing/under/rank/warden/grey, +/obj/item/clothing/under/rank/security/warden/grey, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -63071,7 +63071,7 @@ /turf/closed/wall, /area/engine/engineering) "cbW" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -63112,7 +63112,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cca" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch{ pixel_y = 26 @@ -63689,7 +63689,7 @@ /turf/open/floor/plasteel/dark, /area/security/courtroom) "ccX" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -63730,7 +63730,7 @@ /turf/open/floor/plating, /area/security/courtroom) "cda" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -64014,7 +64014,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) "cdw" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 1 }, @@ -64624,7 +64624,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -65506,7 +65506,7 @@ lootcount = 2; lootdoubles = 0 }, -/obj/item/aiModule/supplied/oxygen{ +/obj/item/ai_module/supplied/oxygen{ pixel_x = -3; pixel_y = -3 }, @@ -65759,7 +65759,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/sign/plaques/kiddie/library{ pixel_x = -32 }, @@ -65778,7 +65778,7 @@ /turf/open/floor/plasteel/grimy, /area/library) "cfY" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light/small{ dir = 4 }, @@ -65949,7 +65949,7 @@ /turf/open/floor/plasteel/grimy, /area/crew_quarters/heads/captain/private) "cgt" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -65969,7 +65969,7 @@ /turf/open/floor/wood, /area/crew_quarters/heads/captain/private) "cgv" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 1; pixel_y = -26 @@ -66548,12 +66548,12 @@ req_access_txt = "20" }, /obj/structure/window/reinforced, -/obj/item/aiModule/core/freeformcore{ +/obj/item/ai_module/core/freeformcore{ pixel_x = 3; pixel_y = 3 }, -/obj/item/aiModule/core/full/custom, -/obj/item/aiModule/core/full/asimov{ +/obj/item/ai_module/core/full/custom, +/obj/item/ai_module/core/full/asimov{ pixel_x = -3; pixel_y = -3 }, @@ -66679,12 +66679,12 @@ req_access_txt = "20" }, /obj/structure/window/reinforced, -/obj/item/aiModule/supplied/protectStation{ +/obj/item/ai_module/supplied/protectStation{ pixel_x = 3; pixel_y = 3 }, -/obj/item/aiModule/zeroth/oneHuman, -/obj/item/aiModule/reset/purge{ +/obj/item/ai_module/zeroth/oneHuman, +/obj/item/ai_module/reset/purge{ pixel_x = -3; pixel_y = -3 }, @@ -66960,7 +66960,7 @@ /turf/open/floor/plasteel/grimy, /area/library) "chP" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/library) "chQ" = ( @@ -68333,7 +68333,7 @@ /turf/open/floor/wood, /area/lawoffice) "ckg" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/sign/poster/official/report_crimes{ pixel_y = -32 @@ -68426,7 +68426,7 @@ /area/aisat) "ckn" = ( /obj/structure/table/reinforced, -/obj/item/aiModule/reset, +/obj/item/ai_module/reset, /obj/item/radio/intercom{ name = "Station Intercom"; pixel_x = -26 @@ -68499,7 +68499,7 @@ /area/ai_monitored/turret_protected/ai_upload) "ckt" = ( /obj/structure/table/reinforced, -/obj/item/aiModule/supplied/quarantine, +/obj/item/ai_module/supplied/quarantine, /obj/item/radio/intercom{ broadcasting = 1; frequency = 1447; @@ -69245,7 +69245,7 @@ /area/security/range) "clM" = ( /obj/structure/table/reinforced, -/obj/item/aiModule/supplied/freeform, +/obj/item/ai_module/supplied/freeform, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -69642,7 +69642,7 @@ /obj/machinery/status_display/ai{ pixel_x = 32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/heads/hop) @@ -70240,7 +70240,7 @@ /area/aisat) "cnu" = ( /obj/structure/cable/white, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/power/apc{ @@ -70283,7 +70283,7 @@ icon_state = "1-2" }, /obj/structure/table/reinforced, -/obj/item/twohanded/required/kirbyplants/photosynthetic{ +/obj/item/kirbyplants/photosynthetic{ pixel_y = 10 }, /obj/effect/turf_decal/tile/neutral{ @@ -70316,7 +70316,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) "cny" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light, /obj/machinery/airalarm{ dir = 1; @@ -70805,7 +70805,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "cot" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/item/radio/intercom{ name = "Station Intercom"; pixel_x = -26 @@ -71423,7 +71423,7 @@ /turf/closed/wall, /area/crew_quarters/heads/hop) "cpD" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/heads/hop) "cpE" = ( @@ -71441,7 +71441,7 @@ dir = 1; pixel_y = -26 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/heads/hop) "cpG" = ( @@ -71456,7 +71456,7 @@ /turf/open/floor/wood, /area/crew_quarters/heads/hop) "cpH" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/heads/hop) @@ -71619,7 +71619,7 @@ /turf/open/floor/plasteel/dark, /area/security/courtroom) "cpW" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71634,7 +71634,7 @@ /turf/open/floor/plasteel/dark, /area/security/courtroom) "cpX" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -72584,7 +72584,7 @@ /turf/open/floor/plating, /area/engine/engineering) "crQ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/camera{ c_tag = "Engineering - Central"; dir = 4; @@ -73672,7 +73672,7 @@ /turf/open/floor/plasteel, /area/maintenance/port) "ctH" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -73696,7 +73696,7 @@ /area/library) "ctK" = ( /obj/machinery/light, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/camera{ c_tag = "Library - Aft"; dir = 1; @@ -73706,7 +73706,7 @@ /area/library) "ctL" = ( /obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -32 }, @@ -73717,7 +73717,7 @@ /area/library) "ctM" = ( /obj/machinery/light, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light_switch{ pixel_y = -26 }, @@ -73725,7 +73725,7 @@ /turf/open/floor/plasteel/grimy, /area/library) "ctN" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/library) "ctO" = ( @@ -73972,7 +73972,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/blue{ @@ -74386,7 +74386,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -74404,7 +74404,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -75293,7 +75293,7 @@ /turf/open/floor/plating, /area/maintenance/port) "cwq" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/library) "cwr" = ( @@ -75374,7 +75374,7 @@ /turf/open/floor/plasteel/dark, /area/library) "cwy" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -75427,7 +75427,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -75444,7 +75444,7 @@ /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) "cwE" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -75476,7 +75476,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 5 }, @@ -75574,7 +75574,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/blue, @@ -75632,7 +75632,7 @@ /turf/open/floor/plasteel, /area/gateway) "cwV" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, @@ -75775,7 +75775,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "cxh" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/neutral{ @@ -76125,7 +76125,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cxI" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/warning/electricshock{ pixel_y = 32 @@ -76999,7 +76999,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -77223,8 +77223,8 @@ pixel_x = 26 }, /obj/effect/turf_decal/bot, -/obj/item/twohanded/rcl/pre_loaded, -/obj/item/twohanded/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, /turf/open/floor/plasteel, /area/engine/storage) "czz" = ( @@ -78177,13 +78177,13 @@ /area/maintenance/port) "cAZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/maintenance/port) "cBa" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, @@ -78230,7 +78230,7 @@ /turf/open/floor/plasteel/dark, /area/library) "cBh" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/newscaster{ pixel_x = 32 }, @@ -78609,7 +78609,7 @@ dir = 4; pixel_x = -24 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -78687,7 +78687,7 @@ /turf/open/floor/plating, /area/crew_quarters/toilet/restrooms) "cBR" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -78938,7 +78938,7 @@ pixel_x = 26; pixel_y = 26 }, -/obj/item/clothing/under/kilt, +/obj/item/clothing/under/costume/kilt, /obj/item/clothing/head/beret, /obj/machinery/airalarm{ pixel_y = 23 @@ -78976,7 +78976,7 @@ /obj/item/clothing/head/fedora{ icon_state = "detective" }, -/obj/item/clothing/under/geisha, +/obj/item/clothing/under/costume/geisha, /obj/item/clothing/head/fedora{ icon_state = "curator" }, @@ -78984,7 +78984,7 @@ desc = "This looks awfully familiar..."; icon_state = "curator" }, -/obj/item/clothing/under/rank/curator/treasure_hunter, +/obj/item/clothing/under/rank/civilian/curator/treasure_hunter, /obj/machinery/airalarm{ pixel_y = 23 }, @@ -80297,7 +80297,7 @@ /turf/open/floor/plasteel/dark, /area/library) "cEr" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/item/radio/intercom{ name = "Station Intercom"; pixel_y = -26 @@ -80987,7 +80987,7 @@ /turf/open/floor/wood, /area/crew_quarters/dorms) "cFy" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/dorms) "cFz" = ( @@ -81232,7 +81232,7 @@ /area/engine/engineering) "cFT" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/cable/white{ icon_state = "1-8" }, @@ -81388,7 +81388,7 @@ name = "Station Intercom"; pixel_y = -26 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, @@ -81409,7 +81409,7 @@ /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) "cGl" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) @@ -81445,7 +81445,7 @@ icon_state = "1-2" }, /obj/item/folder/blue, -/obj/item/clothing/under/rank/centcom_commander{ +/obj/item/clothing/under/rank/centcom/commander{ desc = "A replica of a jumpsuit worn by the highest ranking commanders under Nanotrasen's central command."; name = "Replica CentCom officer's jumpsuit" }, @@ -81469,7 +81469,7 @@ dir = 1; pixel_y = -26 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light, /turf/open/floor/plasteel/grimy, /area/bridge/showroom/corporate) @@ -81509,7 +81509,7 @@ pixel_x = 7; pixel_y = -26 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light, /turf/open/floor/plasteel/grimy, /area/bridge/showroom/corporate) @@ -81572,7 +81572,7 @@ dir = 1; pixel_y = -22 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -81827,7 +81827,7 @@ /turf/open/floor/carpet, /area/crew_quarters/dorms) "cGY" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/carpet, /area/crew_quarters/dorms) @@ -81914,7 +81914,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cHi" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -81978,7 +81978,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cHp" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -81989,7 +81989,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cHq" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/warning/electricshock{ pixel_y = -32 @@ -82068,7 +82068,7 @@ /area/maintenance/port) "cHy" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plating, /area/maintenance/port) "cHz" = ( @@ -84285,7 +84285,7 @@ /turf/open/floor/plating, /area/crew_quarters/dorms) "cKY" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -84418,7 +84418,7 @@ /turf/open/floor/plasteel, /area/crew_quarters/dorms) "cLi" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -85060,7 +85060,7 @@ }, /area/crew_quarters/dorms) "cMs" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -86171,7 +86171,7 @@ /turf/open/floor/plasteel, /area/maintenance/department/electrical) "cOw" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/maintenance/department/electrical) @@ -86188,7 +86188,7 @@ /obj/machinery/light_switch{ pixel_y = 26 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, @@ -86454,7 +86454,7 @@ /turf/open/floor/plasteel/white, /area/science/research) "cPb" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 1 }, @@ -86593,7 +86593,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "cPr" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 1 }, @@ -86708,7 +86708,7 @@ name = "medbay camera"; network = list("ss13","medbay") }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -86939,7 +86939,7 @@ /turf/open/floor/carpet, /area/crew_quarters/dorms) "cPT" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/item/radio/intercom{ name = "Station Intercom"; pixel_x = 26; @@ -87077,7 +87077,7 @@ /turf/open/floor/plasteel/dark/corner, /area/maintenance/department/electrical) "cQi" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/department/electrical) @@ -87303,7 +87303,7 @@ /turf/open/floor/plasteel/white, /area/science/research) "cQC" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -87519,7 +87519,7 @@ /turf/open/floor/plasteel, /area/science/research) "cQR" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/purple{ @@ -87528,7 +87528,7 @@ /turf/open/floor/plasteel/white, /area/science/research) "cQS" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/blue{ @@ -87605,7 +87605,7 @@ /turf/open/floor/plasteel, /area/medical/medbay/central) "cQY" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/blue{ @@ -87614,7 +87614,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "cQZ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/button/door{ desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; @@ -87816,7 +87816,7 @@ /turf/open/floor/plasteel/grimy, /area/crew_quarters/dorms) "cRv" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/sign/nanotrasen{ pixel_x = 32; pixel_y = -32 @@ -88363,7 +88363,7 @@ /turf/open/floor/plasteel, /area/security/checkpoint/science/research) "cSp" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/purple{ @@ -88726,7 +88726,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "cSR" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/item/storage/pod{ pixel_x = 32; pixel_y = 32 @@ -88912,7 +88912,7 @@ /area/crew_quarters/fitness/recreation) "cTg" = ( /obj/structure/table, -/obj/item/clothing/under/sl_suit{ +/obj/item/clothing/under/suit/sl{ name = "referee suit" }, /obj/effect/turf_decal/tile/neutral{ @@ -88989,7 +88989,7 @@ /obj/machinery/status_display{ pixel_x = -32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/maintenance/department/electrical) @@ -89160,7 +89160,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "cTF" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -90058,7 +90058,7 @@ /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/clothing/suit/jacket/letterman_nanotrasen, /obj/item/clothing/suit/toggle/lawyer, -/obj/item/clothing/under/maid, +/obj/item/clothing/under/costume/maid, /obj/item/clothing/head/kitty, /obj/machinery/airalarm{ dir = 1; @@ -90086,7 +90086,7 @@ /obj/item/clothing/head/fedora{ icon_state = "detective" }, -/obj/item/clothing/under/lawyer/female, +/obj/item/clothing/under/rank/civilian/lawyer/female, /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -90110,7 +90110,7 @@ pixel_y = -32 }, /obj/item/clothing/head/fedora, -/obj/item/clothing/under/redeveninggown, +/obj/item/clothing/under/dress/redeveninggown, /obj/item/clothing/head/rabbitears, /turf/open/floor/plasteel/grimy, /area/crew_quarters/dorms) @@ -90499,7 +90499,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "cVM" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 1 }, @@ -90690,7 +90690,7 @@ /turf/open/floor/plating, /area/security/checkpoint/science/research) "cWb" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/purple{ @@ -90743,7 +90743,7 @@ /turf/open/floor/plasteel, /area/science/research) "cWf" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/purple, @@ -90768,7 +90768,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/blue{ @@ -90809,7 +90809,7 @@ /turf/open/floor/plasteel, /area/medical/medbay/central) "cWl" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/blue, @@ -91132,7 +91132,7 @@ /turf/open/floor/plasteel, /area/maintenance/department/electrical) "cWK" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, @@ -91540,7 +91540,7 @@ /obj/machinery/light{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/camera{ c_tag = "Security Post - Science"; dir = 8; @@ -91587,7 +91587,7 @@ /turf/open/floor/plasteel/white, /area/science/research) "cXu" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/purple{ @@ -91633,7 +91633,7 @@ /turf/open/floor/plasteel/white, /area/science/research) "cXy" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/purple, @@ -91706,7 +91706,7 @@ /area/medical/medbay/central) "cXJ" = ( /obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/blue{ @@ -91749,7 +91749,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "cXN" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/tile/blue, @@ -92252,7 +92252,7 @@ /obj/machinery/light_switch{ pixel_y = -26 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/maintenance/department/electrical) @@ -92381,7 +92381,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "cYT" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -92805,7 +92805,7 @@ /turf/open/floor/plasteel, /area/security/checkpoint/medical) "cZE" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -92883,7 +92883,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "cZK" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -93174,7 +93174,7 @@ /area/crew_quarters/fitness/recreation) "dae" = ( /obj/structure/table, -/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/under/rank/civilian/lawyer/really_black, /obj/item/cane, /obj/item/clothing/head/bowler{ pixel_y = 5 @@ -93356,7 +93356,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "dau" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, @@ -93625,7 +93625,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/status_display{ pixel_y = 32 }, @@ -95238,7 +95238,7 @@ /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "ddy" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) @@ -95456,7 +95456,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "ddT" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/science/xenobiology) @@ -95745,7 +95745,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "dev" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light/small, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel/white, @@ -95862,7 +95862,7 @@ /area/medical/medbay/central) "deG" = ( /obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /obj/structure/sign/poster/official/help_others{ pixel_x = -32 }, @@ -95923,7 +95923,7 @@ /obj/structure/sign/departments/examroom{ pixel_x = -32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -95985,7 +95985,7 @@ /turf/open/floor/plasteel, /area/medical/abandoned) "deS" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/medical/abandoned) @@ -96191,7 +96191,7 @@ /turf/open/floor/plasteel, /area/science/research) "dfl" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/item/storage/pod{ pixel_x = 32 }, @@ -96666,7 +96666,7 @@ /turf/closed/wall, /area/crew_quarters/abandoned_gambling_den) "dfZ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -96678,7 +96678,7 @@ /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) "dgb" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/crew_quarters/abandoned_gambling_den) @@ -96721,7 +96721,7 @@ /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) "dgf" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) "dgg" = ( @@ -96897,7 +96897,7 @@ /turf/open/floor/plasteel/dark, /area/science/xenobiology) "dgu" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/purple{ dir = 1 }, @@ -97162,7 +97162,7 @@ /turf/open/floor/plasteel, /area/science/lab) "dgP" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/purple, /turf/open/floor/plasteel/white, /area/science/lab) @@ -97771,7 +97771,7 @@ /turf/open/floor/plasteel/dark, /area/crew_quarters/abandoned_gambling_den) "dhP" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random{ pixel_x = 32 @@ -98585,7 +98585,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/table/wood, /obj/item/clothing/suit/toggle/owlwings, -/obj/item/clothing/under/owl, +/obj/item/clothing/under/costume/owl, /obj/item/clothing/mask/gas/owl_mask, /turf/open/floor/plating, /area/maintenance/starboard/aft) @@ -98725,7 +98725,7 @@ /turf/open/floor/plasteel/white/corner, /area/science/circuit) "djo" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/science/research/abandoned) @@ -98745,7 +98745,7 @@ /turf/open/floor/plasteel/white/side, /area/science/circuit) "djs" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, @@ -99052,7 +99052,7 @@ /turf/open/floor/plasteel/white, /area/science/research) "djW" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -99171,7 +99171,7 @@ /turf/open/floor/plasteel, /area/science/lab) "dke" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/purple{ @@ -99187,7 +99187,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "dkf" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/yellow{ @@ -99535,7 +99535,7 @@ /area/medical/abandoned) "dkJ" = ( /obj/machinery/light/small, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/medical/abandoned) @@ -100218,7 +100218,7 @@ /turf/closed/wall, /area/hallway/secondary/construction) "dmi" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) @@ -100363,7 +100363,7 @@ /turf/open/floor/plasteel, /area/science/misc_lab) "dmB" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, /obj/machinery/light_switch{ pixel_x = -26 @@ -100751,7 +100751,7 @@ /turf/open/floor/plasteel/white, /area/medical/genetics/cloning) "dno" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/purple{ dir = 1 }, @@ -100830,7 +100830,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "dnv" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -100907,7 +100907,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "dnC" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -102430,7 +102430,7 @@ /turf/open/floor/plasteel, /area/science/explab) "dqr" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -103082,7 +103082,7 @@ pixel_x = 1; pixel_y = -24 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/white/side{ dir = 1 }, @@ -103236,7 +103236,7 @@ /obj/structure/cable/white, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/bot, -/obj/item/twohanded/required/kirbyplants/dead, +/obj/item/kirbyplants/dead, /turf/open/floor/plasteel, /area/crew_quarters/heads/hor) "drY" = ( @@ -103497,7 +103497,7 @@ /turf/open/floor/plasteel/white, /area/medical/genetics/cloning) "dsy" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel/white, @@ -104454,7 +104454,7 @@ /turf/open/floor/plating, /area/science/research/abandoned) "dun" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/research/abandoned) @@ -104860,7 +104860,7 @@ /turf/closed/wall, /area/medical/genetics) "dvd" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ dir = 4; pixel_x = -24 @@ -104953,7 +104953,7 @@ /turf/open/floor/plasteel, /area/medical/genetics) "dvm" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/firealarm{ pixel_x = -26; pixel_y = 26 @@ -105459,7 +105459,7 @@ /turf/open/floor/wood, /area/crew_quarters/abandoned_gambling_den) "dvY" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/crew_quarters/abandoned_gambling_den) "dvZ" = ( @@ -106950,7 +106950,7 @@ /turf/open/floor/plating, /area/crew_quarters/heads/cmo) "dyy" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -106996,7 +106996,7 @@ /turf/open/floor/plasteel/white, /area/crew_quarters/heads/cmo) "dyC" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -107748,7 +107748,7 @@ /turf/open/floor/plasteel, /area/medical/genetics) "dzR" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/purple, /turf/open/floor/plasteel/white, /area/medical/genetics) @@ -107910,7 +107910,7 @@ /turf/open/floor/plasteel/white, /area/crew_quarters/heads/cmo) "dAf" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/cable/white{ icon_state = "0-8" }, @@ -108408,7 +108408,7 @@ /turf/open/floor/plasteel, /area/medical/genetics) "dAZ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -108470,7 +108470,7 @@ /obj/structure/sign/poster/official/do_not_question{ pixel_y = -32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/purple{ dir = 8 }, @@ -110340,7 +110340,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "dEe" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/item/radio/intercom{ name = "Station Intercom"; pixel_y = -26 @@ -110731,7 +110731,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel, /area/science/robotics/lab) "dEO" = ( @@ -110964,7 +110964,7 @@ /area/medical/medbay/central) "dFk" = ( /obj/structure/table/wood, -/obj/item/clothing/under/maid, +/obj/item/clothing/under/costume/maid, /obj/item/clothing/head/kitty, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, @@ -111020,7 +111020,7 @@ /turf/open/floor/wood, /area/crew_quarters/theatre/abandoned) "dFq" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood{ icon_state = "wood-broken5" }, @@ -111829,7 +111829,7 @@ /area/maintenance/department/medical/morgue) "dGw" = ( /obj/structure/closet/secure_closet/CMO, -/obj/item/clothing/under/rank/nursesuit, +/obj/item/clothing/under/rank/medical/doctor/nurse, /obj/item/clothing/head/nursehat, /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -111983,7 +111983,7 @@ /obj/machinery/newscaster{ pixel_x = -32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plating, /area/security/detectives_office/private_investigators_office) "dGM" = ( @@ -113535,7 +113535,7 @@ /turf/open/floor/plasteel/white, /area/crew_quarters/heads/cmo) "dJm" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/green{ dir = 8 @@ -113714,7 +113714,7 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/sign/poster/official/do_not_question{ pixel_x = 32 }, @@ -114015,7 +114015,7 @@ /turf/open/floor/circuit/green/telecomms/mainframe, /area/science/server) "dKh" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -114147,7 +114147,7 @@ /area/crew_quarters/theatre/abandoned) "dKr" = ( /obj/structure/table/wood, -/obj/item/clothing/under/geisha, +/obj/item/clothing/under/costume/geisha, /obj/item/clothing/shoes/sandal, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -114430,7 +114430,7 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -114678,7 +114678,7 @@ /turf/open/floor/plasteel, /area/maintenance/aft) "dLj" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -114704,7 +114704,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "dLl" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /obj/effect/turf_decal/tile/green{ dir = 4 @@ -114817,7 +114817,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/crew_quarters/theatre/abandoned) "dLv" = ( @@ -115145,7 +115145,7 @@ /turf/open/floor/plasteel, /area/science/research) "dMg" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -115727,7 +115727,7 @@ /area/crew_quarters/theatre/abandoned) "dNb" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/theatre/abandoned) "dNc" = ( @@ -115735,7 +115735,7 @@ dir = 1; pixel_y = -22 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood{ icon_state = "wood-broken3" }, @@ -115749,7 +115749,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/piano, +/obj/structure/musician/piano, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/crew_quarters/theatre/abandoned) @@ -116519,7 +116519,7 @@ /turf/open/floor/plasteel, /area/maintenance/port/aft) "dOz" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -116599,7 +116599,7 @@ name = "hallway camera" }, /obj/effect/turf_decal/bot, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -116650,7 +116650,7 @@ /area/hallway/primary/aft) "dOI" = ( /obj/machinery/light/small, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/green{ dir = 8 @@ -117055,7 +117055,7 @@ /area/library/abandoned) "dPw" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -117081,7 +117081,7 @@ /area/library/abandoned) "dPz" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/library/abandoned) "dPA" = ( @@ -117116,7 +117116,7 @@ /area/library/abandoned) "dPE" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/library/abandoned) "dPF" = ( @@ -117495,7 +117495,7 @@ /turf/open/floor/plating, /area/medical/virology) "dQi" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/green{ dir = 1 }, @@ -117505,7 +117505,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/green{ dir = 1 }, @@ -117515,7 +117515,7 @@ /turf/open/floor/plasteel/white, /area/medical/virology) "dQk" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/green{ dir = 4 }, @@ -117572,7 +117572,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/green{ dir = 4 }, @@ -117638,7 +117638,7 @@ /area/library/abandoned) "dQx" = ( /obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /turf/open/floor/carpet, /area/library/abandoned) "dQy" = ( @@ -119280,14 +119280,14 @@ /turf/open/floor/plasteel/grimy, /area/library/abandoned) "dTq" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/library/abandoned) "dTr" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood{ icon_state = "wood-broken" }, @@ -119354,7 +119354,7 @@ /turf/open/floor/plasteel/dark, /area/chapel/office) "dTz" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -119378,7 +119378,7 @@ "dTC" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -119443,7 +119443,7 @@ /area/hallway/secondary/exit/departure_lounge) "dTJ" = ( /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -119695,7 +119695,7 @@ /turf/open/floor/plasteel/dark, /area/chapel/office) "dUk" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 4 }, @@ -119762,7 +119762,7 @@ /turf/open/floor/plasteel/dark, /area/chapel/main) "dUo" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -119783,7 +119783,7 @@ /turf/open/floor/plasteel/dark, /area/chapel/main) "dUq" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/item/radio/intercom{ name = "Station Intercom"; pixel_y = 26 @@ -119849,7 +119849,7 @@ "dUv" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel, @@ -119915,7 +119915,7 @@ /area/hallway/secondary/exit/departure_lounge) "dUB" = ( /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel, @@ -120242,7 +120242,7 @@ /obj/machinery/status_display{ pixel_y = 32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/medical/virology) @@ -120404,7 +120404,7 @@ name = "Station Intercom"; pixel_x = -26 }, -/obj/item/clothing/under/burial, +/obj/item/clothing/under/misc/burial, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -120823,11 +120823,11 @@ /area/library/abandoned) "dWE" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plating, /area/library/abandoned) "dWF" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plating, /area/library/abandoned) "dWG" = ( @@ -120898,7 +120898,7 @@ /turf/open/floor/plasteel/dark, /area/chapel/office) "dWM" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/camera{ c_tag = "Chapel - Port"; dir = 4; @@ -120937,7 +120937,7 @@ }, /area/chapel/main) "dWR" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel{ dir = 4; icon_state = "chapel" @@ -121475,7 +121475,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel, @@ -121691,7 +121691,7 @@ }, /area/library/abandoned) "dYl" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light/small, /turf/open/floor/wood{ icon_state = "wood-broken3" @@ -121699,7 +121699,7 @@ /area/library/abandoned) "dYm" = ( /obj/structure/table/wood, -/obj/item/clothing/under/rank/curator, +/obj/item/clothing/under/rank/civilian/curator, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; name = "2maintenance loot spawner" @@ -121715,7 +121715,7 @@ /area/library/abandoned) "dYo" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/wood, /area/library/abandoned) "dYp" = ( @@ -121855,7 +121855,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -121954,7 +121954,7 @@ /turf/open/floor/plasteel, /area/medical/virology) "dYS" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/medical/virology) @@ -121963,7 +121963,7 @@ /obj/machinery/status_display{ pixel_y = -32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/medical/virology) @@ -122240,7 +122240,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel, @@ -122669,7 +122669,7 @@ /obj/structure/sign/nanotrasen{ pixel_y = -32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -123497,7 +123497,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plating, /area/maintenance/port/aft) "ebP" = ( @@ -123606,7 +123606,7 @@ }, /area/chapel/main) "ebZ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 4 }, @@ -123896,7 +123896,7 @@ /turf/open/floor/plasteel/dark, /area/chapel/main) "ecE" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light_switch{ pixel_x = 24; pixel_y = -24 @@ -123921,7 +123921,7 @@ name = "departures camera" }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel, @@ -123936,7 +123936,7 @@ /area/hallway/secondary/exit/departure_lounge) "ecH" = ( /obj/structure/table, -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) @@ -124718,7 +124718,7 @@ /turf/open/floor/plasteel/grimy, /area/chapel/office) "edW" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, @@ -124882,7 +124882,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -124928,7 +124928,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -124995,7 +124995,7 @@ /turf/open/floor/plasteel/grimy, /area/chapel/office) "eey" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/camera{ c_tag = "Chapel Quarters"; dir = 2; @@ -125904,7 +125904,7 @@ /turf/open/floor/plasteel, /area/security/checkpoint/escape) "egi" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ dir = 8 @@ -126346,7 +126346,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/camera{ c_tag = "MiniSat Service Bay"; dir = 8; @@ -126524,7 +126524,7 @@ /area/science/circuit) "gVS" = ( /obj/item/clothing/head/kitty, -/obj/item/clothing/under/maid, +/obj/item/clothing/under/costume/maid, /obj/item/clothing/mask/muzzle, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) diff --git a/_maps/metis_maps/KiloStation/KiloStation.dmm b/_maps/metis_maps/KiloStation/KiloStation.dmm index 5d27fee13e..1972d39b28 100644 --- a/_maps/metis_maps/KiloStation/KiloStation.dmm +++ b/_maps/metis_maps/KiloStation/KiloStation.dmm @@ -9,8 +9,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aac" = ( /obj/machinery/computer/atmos_alert{ dir = 4 @@ -57,8 +56,7 @@ id = "engsm"; name = "Radiation Chamber Shutters" }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter) +/turf/open/floor/plasteel/dark) "aah" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -144,8 +142,7 @@ dir = 4 }, /obj/machinery/shieldwallgen, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "aar" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/blobstart, @@ -389,8 +386,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aaO" = ( /obj/structure/flora/grass/jungle, /turf/open/floor/plating/asteroid/airless{ @@ -596,8 +592,7 @@ pixel_y = -30 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/lawoffice) +/turf/open/floor/plasteel/dark) "abg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -633,16 +628,14 @@ id = "bridge blast"; name = "Bridge Blast door" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "abl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "cmoprivacy"; name = "Office Privacy Shutters" }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plating) "abm" = ( /obj/structure/bed/dogbed/runtime, /obj/effect/turf_decal/tile/neutral, @@ -650,8 +643,7 @@ dir = 8 }, /mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "abn" = ( /obj/machinery/light{ dir = 4 @@ -669,8 +661,7 @@ /obj/item/folder/white, /obj/item/wrench/medical, /obj/item/toy/figure/cmo, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "abp" = ( /turf/closed/wall, /area/security/prison) @@ -695,8 +686,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "abr" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -848,8 +838,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "abG" = ( /obj/machinery/newscaster{ pixel_x = -30 @@ -1123,8 +1112,7 @@ }, /turf/open/floor/plating{ icon_state = "panelscorched" - }, -/area/ai_monitored/storage/satellite) + }) "ack" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 @@ -1303,14 +1291,12 @@ /area/ai_monitored/turret_protected/aisat_interior) "acA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) +/turf/open/floor/engine) "acB" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) +/turf/open/floor/engine) "acC" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -1353,8 +1339,7 @@ pixel_y = 5 }, /obj/item/shovel, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "acF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/structure/chair/office{ @@ -1482,8 +1467,7 @@ }, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) +/turf/open/floor/plasteel/dark) "acQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -1669,8 +1653,7 @@ c_tag = "Bridge Control Pit"; name = "command camera" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "adc" = ( /obj/structure/filingcabinet/employment, /obj/effect/turf_decal/tile/neutral{ @@ -1691,8 +1674,7 @@ pixel_x = 24; req_access_txt = "38" }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) +/turf/open/floor/plasteel/dark) "add" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/lavendergrass, @@ -1754,8 +1736,7 @@ pixel_x = -24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) +/turf/open/floor/engine) "adk" = ( /turf/closed/wall/r_wall, /area/maintenance/port) @@ -1782,8 +1763,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) +/turf/open/floor/engine) "adn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -1925,8 +1905,7 @@ name = "satellite camera"; network = list("minisat") }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) +/turf/open/floor/engine) "adz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -1934,8 +1913,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) +/turf/open/floor/engine) "adA" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 4 @@ -2074,8 +2052,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) +/turf/open/floor/engine) "adK" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -2090,8 +2067,7 @@ dir = 4 }, /obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "adM" = ( /obj/structure/cable{ icon_state = "1-2" @@ -2113,9 +2089,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/mob/living/silicon/robot/ai, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) +/turf/open/floor/engine) "adO" = ( /obj/machinery/door/airlock/external{ name = "Satellite External Airlock"; @@ -2440,9 +2414,6 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat/foyer) -"aey" = ( -/turf/closed/wall/r_wall, -/area/security/main) "aez" = ( /turf/closed/wall, /area/security/execution/education) @@ -2672,8 +2643,7 @@ pixel_y = -2; req_access_txt = "19" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aeT" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -3114,9 +3084,6 @@ /obj/effect/turf_decal/tile/neutral, /turf/open/floor/plasteel, /area/security/warden) -"afD" = ( -/turf/closed/wall, -/area/crew_quarters/heads/cmo) "afE" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -3283,8 +3250,7 @@ icon_state = "4-8" }, /obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "afR" = ( /obj/structure/closet/secure_closet/evidence, /obj/effect/turf_decal/tile/neutral, @@ -3317,8 +3283,7 @@ dir = 1; name = "command camera" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "afU" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple, @@ -3375,8 +3340,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "afY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -3538,8 +3502,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "agk" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -3555,8 +3518,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "agl" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -3564,8 +3526,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "agm" = ( /obj/machinery/smartfridge/chemistry/virology/preloaded, /obj/effect/turf_decal/delivery, @@ -3622,8 +3583,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/plasteel/dark) "agq" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -3805,8 +3765,7 @@ name = "Chief Medical Officer's Office"; req_access_txt = "40" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "agI" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -3814,8 +3773,7 @@ }, /obj/effect/turf_decal/tile/blue, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "agJ" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/cable{ @@ -3853,8 +3811,7 @@ dir = 1 }, /obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "agM" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -3872,16 +3829,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ dir = 5 }, -/turf/closed/wall, -/area/engine/break_room) +/turf/closed/wall) "agO" = ( /obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall/rust, -/area/crew_quarters/heads/hos) -"agP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) +/turf/closed/wall/r_wall/rust) "agQ" = ( /obj/machinery/atmospherics/pipe/manifold/general/hidden, /turf/open/floor/circuit/telecomms, @@ -3914,9 +3865,6 @@ }, /turf/open/floor/plasteel/dark, /area/medical/virology) -"agS" = ( -/turf/closed/wall, -/area/security/main) "agT" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -3932,13 +3880,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/science/xenobiology) -"agU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/main) "agV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -3955,8 +3896,7 @@ id = "bridge blast"; name = "Bridge Blast door" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "agX" = ( /turf/closed/wall/r_wall, /area/security/warden) @@ -3980,8 +3920,7 @@ }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aha" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -4050,8 +3989,7 @@ dir = 8 }, /obj/machinery/vending/mealdor, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "ahf" = ( /obj/effect/landmark/secequipment, /obj/effect/turf_decal/tile/neutral, @@ -4061,8 +3999,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "ahg" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -4071,8 +4008,7 @@ name = "Security Office"; req_access_txt = "63" }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "ahh" = ( /turf/closed/wall/r_wall, /area/tcommsat/server) @@ -4100,16 +4036,14 @@ /obj/machinery/microwave{ pixel_y = 5 }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "ahk" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "ahl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -4139,8 +4073,7 @@ id = "bridge blast"; name = "Bridge Blast door" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "ahn" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -4269,8 +4202,7 @@ /obj/effect/turf_decal/caution/stand_clear, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "ahw" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -4294,8 +4226,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "ahz" = ( /obj/machinery/door/airlock/maintenance/external{ name = "construction zone"; @@ -4350,8 +4281,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/security/nuke_storage) +/turf/open/floor/plasteel/dark) "ahD" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -4625,28 +4555,21 @@ dir = 4; pixel_x = -23 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "ahZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aia" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, -/turf/open/floor/plasteel, -/area/security/main) -"aib" = ( -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aic" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aid" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -4693,11 +4616,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aif" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/main) "aig" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -4751,8 +4669,7 @@ /obj/item/radio/intercom{ pixel_y = 22 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aik" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -4840,8 +4757,7 @@ name = "Shower 2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/dark) "ait" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -4909,8 +4825,7 @@ /area/construction/mining/aux_base) "aix" = ( /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiy" = ( /obj/structure/table/reinforced, /obj/item/folder/red{ @@ -4932,12 +4847,10 @@ dir = 8 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiz" = ( /obj/machinery/computer/secure_data, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiA" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -4953,8 +4866,7 @@ name = "Shower 1" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/dark) "aiC" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -5013,8 +4925,7 @@ /obj/effect/turf_decal/tile/red, /obj/item/paper_bin, /obj/item/pen, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiH" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/red{ @@ -5029,8 +4940,7 @@ /obj/effect/turf_decal/tile/red, /obj/item/crowbar/red, /obj/item/radio/headset/headset_sec, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiI" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/red{ @@ -5044,8 +4954,7 @@ }, /obj/effect/turf_decal/tile/red, /obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiJ" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/red{ @@ -5061,8 +4970,7 @@ /obj/item/book/manual/gato_spacelaw, /obj/item/book/manual/gato_spacelaw, /obj/item/book/manual/gato_spacelaw, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiK" = ( /obj/structure/table/reinforced, /obj/item/clipboard, @@ -5081,15 +4989,13 @@ dir = 8 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiL" = ( /obj/structure/chair{ dir = 4 }, /obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet{ @@ -5192,8 +5098,7 @@ maxHealth = 45; name = "Officer Beepsky" }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "aiZ" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -5251,8 +5156,7 @@ dir = 8 }, /obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "ajd" = ( /turf/closed/wall, /area/maintenance/port/aft) @@ -5262,8 +5166,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/wood, -/area/chapel/office) +/turf/open/floor/wood) "ajf" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law, @@ -5278,8 +5181,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "ajg" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /obj/effect/decal/cleanable/blood/old, @@ -5379,8 +5281,7 @@ dir = 8 }, /obj/effect/landmark/start/head_of_security, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "ajp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -5424,9 +5325,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/science/xenobiology) -"ajt" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) "aju" = ( /obj/structure/closet{ name = "Evidence Closet" @@ -5577,8 +5475,7 @@ name = "Council Chamber"; req_access_txt = "19" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "ajM" = ( /obj/effect/decal/cleanable/dirt, /obj/item/shard, @@ -5637,8 +5534,7 @@ }, /obj/structure/table, /obj/item/flashlight/lamp, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "ajS" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -5647,8 +5543,7 @@ dir = 1 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "ajT" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall, @@ -5673,8 +5568,7 @@ /obj/machinery/computer/security{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "ajW" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -5728,8 +5622,7 @@ }, /obj/effect/turf_decal/caution/stand_clear, /obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "akc" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -5889,8 +5782,7 @@ /area/maintenance/department/electrical) "aks" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "akt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 @@ -5922,8 +5814,7 @@ /area/maintenance/department/electrical) "akv" = ( /obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/crew_quarters/locker) +/turf/open/floor/plating) "akw" = ( /obj/effect/turf_decal/bot, /obj/structure/sign/poster/contraband/random{ @@ -5940,8 +5831,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) +/turf/open/floor/plating) "aky" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -5951,13 +5841,6 @@ }, /turf/open/floor/plasteel/dark, /area/medical/surgery) -"akz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) "akA" = ( /turf/closed/wall/mineral/plastitanium, /area/maintenance/starboard) @@ -5998,10 +5881,6 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plating, /area/maintenance/department/electrical) -"akE" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/quartermaster/warehouse) "akF" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -6027,8 +5906,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "akI" = ( /obj/effect/decal/cleanable/blood/gibs/old, /obj/effect/decal/cleanable/blood/old, @@ -6134,8 +6012,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "akS" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -6147,8 +6024,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "akT" = ( /obj/structure/bed, /obj/machinery/iv_drip, @@ -6174,8 +6050,7 @@ /obj/machinery/light_switch{ pixel_y = -24 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "akV" = ( /obj/structure/table/reinforced, /obj/item/clothing/mask/gas/sechailer{ @@ -6238,8 +6113,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken5" - }, -/area/chapel/office) + }) "akZ" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/dirt, @@ -6249,8 +6123,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "ala" = ( /obj/machinery/button/door{ id = "Abandoned Cell"; @@ -6263,7 +6136,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/structure/reagent_dispensers/keg/aphro, /turf/open/floor/plasteel/dark, /area/maintenance/fore) "alb" = ( @@ -6367,8 +6239,7 @@ }, /obj/effect/turf_decal/caution/stand_clear, /obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "alk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -6435,11 +6306,9 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "alp" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "alq" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -6512,8 +6381,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "alu" = ( /obj/machinery/power/terminal{ dir = 1 @@ -6718,8 +6586,7 @@ name = "Head of Security RC"; pixel_x = -30 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hos) +/turf/open/floor/wood) "alK" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -6738,16 +6605,14 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "alL" = ( /obj/structure/table/wood, /obj/machinery/computer/med_data/laptop, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "alM" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -6760,8 +6625,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "alN" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -6879,8 +6743,7 @@ pixel_x = 8; pixel_y = 2 }, -/turf/open/floor/wood, -/area/crew_quarters/bar) +/turf/open/floor/wood) "alW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -6920,8 +6783,7 @@ id_tag = "Unit_3"; name = "Unit 3" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/dark) "ama" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -6955,8 +6817,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "ame" = ( /obj/machinery/computer/prisoner{ dir = 4 @@ -6964,14 +6825,12 @@ /obj/machinery/newscaster/security_unit{ pixel_x = -28 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hos) +/turf/open/floor/wood) "amf" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "amg" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -7058,8 +6917,7 @@ /obj/machinery/gateway{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "aml" = ( /obj/machinery/door/airlock/external{ name = "Abandoned External Airlock" @@ -7117,8 +6975,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "amp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/spider/stickyweb, @@ -7243,8 +7100,7 @@ pixel_x = -32; pixel_y = -32 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "amD" = ( /obj/machinery/computer/card/minor/hos{ dir = 1 @@ -7252,8 +7108,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hos) +/turf/open/floor/wood) "amE" = ( /obj/machinery/computer/security/hos{ dir = 1 @@ -7261,8 +7116,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hos) +/turf/open/floor/wood) "amF" = ( /obj/machinery/computer/secure_data{ dir = 1 @@ -7270,8 +7124,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hos) +/turf/open/floor/wood) "amG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -7280,8 +7133,7 @@ dir = 1 }, /obj/machinery/photocopier, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "amH" = ( /obj/structure/table, /obj/item/paper_bin, @@ -7292,8 +7144,7 @@ /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "amI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -7359,8 +7210,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "amL" = ( /obj/machinery/door/airlock/external{ name = "Abandoned External Airlock" @@ -7442,8 +7292,7 @@ dir = 1 }, /obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "amT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -7475,9 +7324,6 @@ /obj/structure/spider/stickyweb, /turf/open/floor/plasteel/dark, /area/maintenance/port) -"amV" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hor) "amY" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 @@ -7552,8 +7398,7 @@ id = "atmos"; name = "Atmospherics Blast Door" }, -/turf/open/floor/plating, -/area/engine/break_room) +/turf/open/floor/plating) "anf" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -7570,8 +7415,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "ang" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -7621,8 +7465,7 @@ icon_state = "1-2" }, /obj/machinery/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "anm" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -7641,8 +7484,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/effect/landmark/start/assistant, /obj/structure/chair/wood, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "ano" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -7695,8 +7537,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "ans" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -7744,12 +7585,7 @@ /area/security/warden) "anw" = ( /obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/security/main) -"anx" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/crew_quarters/heads/hor) +/turf/closed/wall) "any" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ @@ -7790,8 +7626,7 @@ id = "hosspace"; name = "Space Blast door" }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) +/turf/open/floor/plating) "anB" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 9 @@ -8104,8 +7939,7 @@ dir = 8; pixel_x = 28 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aoc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, @@ -8145,8 +7979,7 @@ /obj/structure/noticeboard{ pixel_y = 30 }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "aoh" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -8154,8 +7987,7 @@ id = "NTMSLoad2"; name = "on ramp" }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "aoi" = ( /obj/machinery/door/airlock/maintenance/external{ name = "transit intersection"; @@ -8177,8 +8009,7 @@ /area/maintenance/fore) "aoj" = ( /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aok" = ( /obj/structure/rack, /obj/item/storage/briefcase{ @@ -8193,8 +8024,7 @@ /obj/machinery/airalarm{ pixel_y = 22 }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) +/turf/open/floor/plasteel/dark) "aol" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -8226,15 +8056,13 @@ desc = "An adorable (over)stuffed toy that resembles a certain HoP Gargoyle."; name = "gargoyle plushie" }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) +/turf/open/floor/carpet) "aon" = ( /obj/machinery/door/airlock/medical{ id_tag = "Unit_2"; name = "Unit 2" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/dark) "aoo" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -8259,8 +8087,7 @@ dir = 4; pixel_x = -26 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "aoq" = ( /obj/machinery/vending/wardrobe/law_wardrobe, /obj/effect/turf_decal/tile/neutral{ @@ -8270,8 +8097,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) +/turf/open/floor/plasteel/dark) "aor" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -8296,8 +8122,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) +/turf/open/floor/plasteel/dark) "aos" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -8379,8 +8204,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) +/turf/open/floor/plasteel/dark) "aoz" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -8388,16 +8212,14 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "aoA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "lawyer_shutters"; name = "Law Office Shutters" }, -/turf/open/floor/plating, -/area/lawoffice) +/turf/open/floor/plating) "aoB" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -8413,8 +8235,7 @@ pixel_y = 1 }, /obj/item/toy/figure/lawyer, -/turf/open/floor/carpet, -/area/lawoffice) +/turf/open/floor/carpet) "aoC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -8473,8 +8294,7 @@ icon_state = "4-8" }, /obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/lawoffice) +/turf/open/floor/wood) "aoJ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -8514,8 +8334,7 @@ name = "Cabin 3" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "aoM" = ( /obj/machinery/door/airlock/maintenance/external{ name = "transit intersection"; @@ -8577,8 +8396,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/turf/open/floor/wood, -/area/lawoffice) +/turf/open/floor/wood) "aoQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -8591,15 +8409,13 @@ dir = 4; pixel_x = -26 }, -/turf/open/floor/wood, -/area/lawoffice) +/turf/open/floor/wood) "aoS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 4 }, -/turf/open/floor/wood, -/area/lawoffice) +/turf/open/floor/wood) "aoT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/box/corners{ @@ -8613,8 +8429,7 @@ dir = 1 }, /obj/structure/chair/wood, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aoV" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -8625,8 +8440,7 @@ dir = 8 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aoX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/newscaster{ @@ -8636,8 +8450,7 @@ c_tag = "Law Office"; dir = 8 }, -/turf/open/floor/wood, -/area/lawoffice) +/turf/open/floor/wood) "aoY" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -8705,21 +8518,18 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 6 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/turf/open/floor/wood) "apf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/turf/open/floor/wood) "apg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/turf/open/floor/wood) "aph" = ( /obj/structure/chair, /obj/structure/cable{ @@ -8731,8 +8541,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating/airless, -/area/solar/port/aft) +/turf/open/floor/plating/airless) "apj" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -8775,8 +8584,7 @@ pixel_y = 8 }, /obj/item/clothing/glasses/sunglasses/big, -/turf/open/floor/carpet, -/area/lawoffice) +/turf/open/floor/carpet) "apn" = ( /obj/machinery/porta_turret/ai{ dir = 4 @@ -8882,8 +8690,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/closet/crate/engineering, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "apw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -8925,8 +8732,7 @@ id = "bridge blast"; name = "Bridge Blast door" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "apz" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/solars/port/fore"; @@ -8987,8 +8793,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "apE" = ( /obj/structure/chair/comfy/brown{ buildstackamount = 0; @@ -9056,8 +8861,7 @@ dir = 1 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "apK" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -9065,13 +8869,7 @@ }, /obj/structure/table, /obj/item/hand_tele, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"apL" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel/dark) "apM" = ( /obj/structure/table/wood, /obj/item/stack/packageWrap, @@ -9080,8 +8878,7 @@ /obj/machinery/keycard_auth{ pixel_y = 24 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) +/turf/open/floor/carpet) "apN" = ( /obj/structure/bed/dogbed/ian, /obj/machinery/power/apc{ @@ -9096,8 +8893,7 @@ /mob/living/simple_animal/pet/dog/corgi/Ian{ dir = 8 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/turf/open/floor/wood) "apO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -9113,8 +8909,7 @@ /obj/structure/sign/warning/fire{ pixel_y = 32 }, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "apP" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -9126,14 +8921,6 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"apQ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/teleporter) "apR" = ( /obj/structure/cable{ icon_state = "1-4" @@ -9165,8 +8952,7 @@ id = "bridge blast"; name = "Bridge Blast door" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "apU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, @@ -9178,8 +8964,7 @@ name = "Cabin 2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "apW" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/neutral, @@ -9206,8 +8991,7 @@ name = "engineering camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel/dark, -/area/storage/tcom) +/turf/open/floor/plasteel/dark) "apX" = ( /turf/closed/wall/rust, /area/maintenance/central) @@ -9215,8 +8999,7 @@ /obj/item/radio/intercom{ pixel_y = -28 }, -/turf/closed/wall, -/area/crew_quarters/bar) +/turf/closed/wall) "apZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -9229,8 +9012,7 @@ id = "bridge blast"; name = "Bridge Blast door" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "aqa" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -9250,11 +9032,7 @@ id = "bridge blast"; name = "Bridge Blast door" }, -/turf/open/floor/plating, -/area/bridge) -"aqc" = ( -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plating) "aqd" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral, @@ -9284,8 +9062,7 @@ /obj/machinery/newscaster{ pixel_x = -30 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -9296,8 +9073,7 @@ /turf/open/floor/plating, /area/maintenance/department/electrical) "aqg" = ( -/turf/open/floor/wood, -/area/crew_quarters/bar) +/turf/open/floor/wood) "aqh" = ( /obj/machinery/computer/atmos_alert{ dir = 8 @@ -9314,8 +9090,7 @@ name = "Bridge RC"; pixel_x = 30 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqi" = ( /obj/machinery/computer/security{ dir = 4 @@ -9329,8 +9104,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqj" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -9347,8 +9121,7 @@ icon_state = "4-8" }, /obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqk" = ( /obj/machinery/computer/station_alert{ dir = 8 @@ -9358,8 +9131,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aql" = ( /obj/structure/cable, /obj/machinery/computer/monitor{ @@ -9475,8 +9247,7 @@ /obj/machinery/status_display/evac{ pixel_y = 32 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "aqu" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/turf_decal/bot, @@ -9497,8 +9268,7 @@ /obj/structure/chair/office{ dir = 1 }, -/turf/open/floor/plasteel/grimy, -/area/library) +/turf/open/floor/plasteel/grimy) "aqw" = ( /obj/machinery/computer/security/mining, /obj/effect/turf_decal/tile/neutral{ @@ -9519,8 +9289,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqx" = ( /obj/machinery/computer/communications{ dir = 4 @@ -9534,8 +9303,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqy" = ( /obj/machinery/computer/crew{ dir = 8 @@ -9545,8 +9313,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqz" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red{ @@ -9563,8 +9330,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqA" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -9586,8 +9352,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqC" = ( /obj/machinery/computer/cargo/request, /obj/effect/turf_decal/tile/neutral{ @@ -9602,8 +9367,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqD" = ( /obj/structure/table, /obj/effect/turf_decal/tile/blue{ @@ -9621,8 +9385,7 @@ name = "Station Intercom (Command)"; pixel_x = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqE" = ( /obj/structure/table, /obj/effect/turf_decal/tile/blue, @@ -9631,8 +9394,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/keycard_auth, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqF" = ( /obj/structure/cable{ icon_state = "1-4" @@ -9651,8 +9413,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqH" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -9665,8 +9426,7 @@ }, /obj/effect/landmark/start/quartermaster, /obj/structure/chair/office, -/turf/open/floor/plasteel, -/area/quartermaster/qm) +/turf/open/floor/plasteel) "aqI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -9707,16 +9467,14 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqM" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqN" = ( /obj/machinery/computer/med_data{ dir = 8 @@ -9729,8 +9487,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqO" = ( /obj/machinery/computer/shuttle/mining, /obj/effect/turf_decal/tile/neutral{ @@ -9745,8 +9502,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqP" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral{ @@ -9784,8 +9540,7 @@ /obj/machinery/door/window/southright{ name = "Reception Desk" }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel) "aqS" = ( /obj/machinery/computer/secure_data{ dir = 4 @@ -9803,8 +9558,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aqT" = ( /obj/structure/cable{ icon_state = "2-4" @@ -9871,8 +9625,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/security/nuke_storage) +/turf/open/floor/plasteel/dark) "aqY" = ( /obj/structure/cable{ icon_state = "4-8" @@ -9908,8 +9661,7 @@ req_access_txt = "19" }, /obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "arb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -9964,22 +9716,19 @@ name = "Emergency Storage"; req_access_txt = "19" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "are" = ( /obj/effect/turf_decal/loading_area{ dir = 1 }, -/turf/open/floor/plating, -/area/chapel/office) +/turf/open/floor/plating) "arf" = ( /obj/machinery/door/airlock/grunge{ id_tag = "Cabin_2"; name = "Cabin 1" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "arg" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -9991,8 +9740,7 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "arh" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -10013,20 +9761,14 @@ pixel_y = 22 }, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "arj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Cryosleepers" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) -"ark" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "arl" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) @@ -10048,8 +9790,7 @@ c_tag = "Chapel Office"; name = "chapel camera" }, -/turf/open/floor/wood, -/area/chapel/office) +/turf/open/floor/wood) "arn" = ( /turf/closed/wall/r_wall, /area/security/courtroom) @@ -10057,8 +9798,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood{ icon_state = "wood-broken6" - }, -/area/chapel/office) + }) "arp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -10069,8 +9809,7 @@ /obj/machinery/light_switch{ pixel_y = 24 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "arq" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -10129,8 +9868,7 @@ pixel_y = -8 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "arv" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -10159,8 +9897,7 @@ dir = 4; name = "command camera" }, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "arx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -10180,8 +9917,7 @@ /obj/structure/chair/comfy/brown{ dir = 8 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "arA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -10216,8 +9952,7 @@ req_access_txt = "19" }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "arD" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -10252,8 +9987,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plasteel/dark, -/area/storage/tcom) +/turf/open/floor/plasteel/dark) "arF" = ( /obj/machinery/computer/communications{ dir = 1 @@ -10268,8 +10002,7 @@ pixel_y = -32 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "arG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, @@ -10279,8 +10012,7 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating{ icon_state = "platingdmg3" - }, -/area/storage/tcom) + }) "arH" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -10314,8 +10046,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/storage/tcom) +/turf/open/floor/plasteel/dark) "arI" = ( /obj/structure/cable{ icon_state = "4-8" @@ -10435,8 +10166,7 @@ /obj/item/radio/intercom{ pixel_x = -28 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "arO" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -10454,8 +10184,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "arP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/grille/broken, @@ -10487,8 +10216,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "arS" = ( /obj/effect/turf_decal/delivery, /obj/machinery/power/terminal{ @@ -10543,12 +10271,10 @@ /obj/item/storage/secure/safe{ pixel_x = 34 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "arW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "arX" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -10557,11 +10283,6 @@ /obj/effect/turf_decal/tile/purple, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"arY" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/bridge) "arZ" = ( /obj/machinery/vending/medical, /obj/effect/turf_decal/delivery, @@ -10583,8 +10304,7 @@ dir = 8; pixel_x = 26 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "asb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -10624,8 +10344,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 6 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "ase" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -10650,8 +10369,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "ash" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -10771,8 +10489,7 @@ /obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, -/turf/open/floor/plating, -/area/chapel/office) +/turf/open/floor/plating) "ass" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -10782,8 +10499,7 @@ id = "bridge blast"; name = "Bridge Blast door" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "ast" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -10836,9 +10552,6 @@ /obj/structure/chair/stool, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"asx" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) "asy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ @@ -10846,8 +10559,7 @@ req_access_txt = "19" }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "asz" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -10872,22 +10584,14 @@ pixel_x = -24; pixel_y = -24 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"asA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "asB" = ( /obj/structure/chair/comfy/brown{ color = "#596479"; dir = 1 }, /obj/effect/landmark/start/captain, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "asC" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -10899,8 +10603,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 6 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "asD" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -10920,8 +10623,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/turf/open/floor/wood) "asF" = ( /turf/closed/wall, /area/security/courtroom) @@ -10950,16 +10652,15 @@ /obj/structure/table, /obj/item/clipboard, /obj/item/folder/yellow, -/obj/item/destTagger, -/obj/item/destTagger, +/obj/item/dest_tagger, +/obj/item/dest_tagger, /obj/machinery/airalarm{ pixel_y = 22 }, /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "asJ" = ( /obj/structure/chair/comfy/brown, /obj/effect/landmark/start/detective, @@ -11006,8 +10707,7 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/chapel{ dir = 4 - }, -/area/chapel/main) + }) "asN" = ( /obj/machinery/light{ dir = 8 @@ -11087,8 +10787,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "asV" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -11112,8 +10811,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "asY" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -11147,8 +10845,7 @@ name = "Crowd Pacifier"; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "atb" = ( /obj/structure/chair/office{ dir = 4 @@ -11173,8 +10870,7 @@ /obj/machinery/light, /obj/item/book/manual/gato_spacelaw, /obj/item/hand_tele, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "ate" = ( /obj/machinery/power/solar_control{ dir = 8; @@ -11211,12 +10907,10 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "ath" = ( /obj/machinery/status_display/evac, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) +/turf/closed/wall/r_wall) "ati" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -11226,9 +10920,6 @@ /obj/item/clothing/mask/gas, /turf/open/floor/plating, /area/maintenance/fore) -"atj" = ( -/turf/closed/wall, -/area/bridge) "atk" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -11239,8 +10930,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "atm" = ( /obj/structure/table, /obj/item/clothing/gloves/color/latex, @@ -11295,8 +10985,7 @@ /obj/item/radio/intercom{ pixel_x = -28 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "atq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -11326,8 +11015,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "ats" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -11345,8 +11033,7 @@ /obj/structure/chair/office{ dir = 8 }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "att" = ( /obj/machinery/modular_computer/console/preset/engineering{ dir = 8 @@ -11361,8 +11048,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "atu" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -11371,8 +11057,7 @@ id = "hopqueue"; name = "Queue Shutters" }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel) "atv" = ( /obj/structure/cable{ icon_state = "0-4" @@ -11382,8 +11067,7 @@ name = "Privacy Shutters" }, /obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) +/turf/open/floor/plating) "atw" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -26 @@ -11398,8 +11082,7 @@ }, /turf/open/floor/plasteel/chapel{ dir = 8 - }, -/area/chapel/main) + }) "atx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -11409,8 +11092,7 @@ id = "bridge blast"; name = "Bridge Blast door" }, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "aty" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -11449,8 +11131,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "atB" = ( /obj/machinery/porta_turret/ai{ dir = 4 @@ -11460,10 +11141,6 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/ai) -"atC" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) "atD" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -11480,8 +11157,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "atE" = ( /obj/effect/turf_decal/loading_area, /obj/structure/cable{ @@ -11491,8 +11167,7 @@ id = "hopqueue"; name = "Queue Shutters" }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel) "atF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -11510,8 +11185,7 @@ /area/hallway/primary/fore) "atG" = ( /obj/structure/sign/poster/official/pda_ad, -/turf/closed/wall/rust, -/area/crew_quarters/heads/hop) +/turf/closed/wall/rust) "atH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -11562,8 +11236,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "atJ" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -11580,8 +11253,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "atK" = ( /obj/machinery/status_display/evac, /turf/closed/wall/r_wall, @@ -11602,8 +11274,7 @@ /obj/machinery/light_switch{ pixel_x = -24 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "atM" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11662,9 +11333,6 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"atT" = ( -/turf/closed/wall/r_wall, -/area/bridge) "atU" = ( /obj/machinery/telecomms/receiver/preset_left, /obj/structure/cable{ @@ -11687,8 +11355,7 @@ pixel_x = 8; pixel_y = -5 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "atW" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -11751,10 +11418,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/science/explab) -"auc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) "aud" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -11822,8 +11485,7 @@ name = "Teleport Access"; req_one_access_txt = "17;19" }, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "auh" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -11842,9 +11504,6 @@ /obj/structure/disposalpipe/junction/flip, /turf/open/floor/plasteel/showroomfloor, /area/science/explab) -"aui" = ( -/turf/closed/wall/r_wall, -/area/teleporter) "auj" = ( /obj/machinery/door/airlock/maintenance{ name = "hydroponics maintenance"; @@ -11882,8 +11541,7 @@ icon_state = "1-8" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/lawoffice) +/turf/open/floor/wood) "aum" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -11903,8 +11561,7 @@ pixel_x = -24; pixel_y = 24 }, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "aun" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -11919,8 +11576,7 @@ pixel_x = -22 }, /obj/machinery/shieldwallgen, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "auo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -11951,8 +11607,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/plating, -/area/teleporter) +/turf/open/floor/plating) "auu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump/on{ @@ -11979,8 +11634,7 @@ /area/maintenance/starboard) "auw" = ( /obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/bridge) +/turf/closed/wall/r_wall) "aux" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -11993,8 +11647,7 @@ /area/maintenance/starboard) "auy" = ( /obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/bridge) +/turf/closed/wall/r_wall) "auz" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -12072,9 +11725,6 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"auE" = ( -/turf/closed/wall, -/area/storage/primary) "auG" = ( /obj/structure/cable{ icon_state = "0-8" @@ -12087,8 +11737,7 @@ name = "Privacy Shutters" }, /obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) +/turf/open/floor/plating) "auH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, @@ -12134,8 +11783,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "auN" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; @@ -12174,11 +11822,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/break_room) -"auT" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel) "auU" = ( /obj/machinery/modular_computer/console/preset/command, /obj/effect/turf_decal/tile/yellow{ @@ -12193,8 +11837,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "auV" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -12229,8 +11872,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "auY" = ( /obj/machinery/vending/cart{ req_access_txt = "57" @@ -12242,8 +11884,7 @@ c_tag = "Head of Personnel's Office"; name = "command camera" }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/turf/open/floor/wood) "ava" = ( /turf/closed/wall/rust, /area/maintenance/starboard) @@ -12272,8 +11913,7 @@ dir = 1 }, /obj/item/card/id/captains_spare, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "ave" = ( /obj/structure/table/wood, /obj/machinery/computer/security/wooden_tv, @@ -12283,8 +11923,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "avf" = ( /obj/structure/flora/junglebush/b, /obj/structure/flora/ausbushes/ppflowers, @@ -12320,8 +11959,7 @@ color = "#c45c57"; dir = 4 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "avi" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -12350,8 +11988,7 @@ "avj" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "avk" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -12556,8 +12193,7 @@ /obj/structure/chair/office{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "avC" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -12587,8 +12223,7 @@ name = "Chapel RC"; pixel_y = -30 }, -/turf/open/floor/wood, -/area/chapel/office) +/turf/open/floor/wood) "avE" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -12602,8 +12237,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood{ icon_state = "wood-broken7" - }, -/area/chapel/office) + }) "avF" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -12615,8 +12249,7 @@ pixel_x = -26 }, /obj/machinery/shieldwallgen, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "avG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -12638,8 +12271,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "avH" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -12688,8 +12320,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "avL" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -12711,8 +12342,7 @@ dir = 1; name = "chapel camera" }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "avM" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -12729,12 +12359,10 @@ c_tag = "Security Office Computers"; dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "avN" = ( /obj/machinery/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) +/turf/open/floor/carpet) "avO" = ( /obj/item/tank/internals/emergency_oxygen{ pixel_x = -5; @@ -12777,8 +12405,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "avR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -12786,8 +12413,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "avS" = ( /obj/machinery/requests_console{ announcementConsole = 1; @@ -12799,8 +12425,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) +/turf/open/floor/carpet) "avT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -12817,8 +12442,7 @@ dir = 1; pixel_y = -26 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "avU" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -12829,8 +12453,7 @@ /obj/structure/sign/poster/official/ian{ pixel_y = 32 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/turf/open/floor/wood) "avW" = ( /obj/structure/chair{ dir = 1 @@ -12874,8 +12497,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "avZ" = ( /obj/structure/cable{ icon_state = "2-8" @@ -12971,8 +12593,7 @@ /area/maintenance/fore) "awg" = ( /obj/structure/chair/office, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "awh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -12994,8 +12615,7 @@ icon_state = "1-4" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) +/turf/open/floor/wood) "awk" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/tile/neutral{ @@ -13025,8 +12645,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "awm" = ( /obj/structure/chair/comfy/brown{ buildstackamount = 0; @@ -13037,8 +12656,7 @@ icon_state = "1-2" }, /obj/effect/landmark/start/head_of_security, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "awn" = ( /obj/machinery/vending/sustenance, /obj/effect/decal/cleanable/dirt, @@ -13076,13 +12694,8 @@ /obj/item/radio/intercom{ pixel_x = 28 }, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) -"awq" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/storage/primary) +/mob/living/simple_animal/parrot/Polly, +/turf/open/floor/plasteel/dark) "awr" = ( /obj/structure/cable{ icon_state = "1-8" @@ -13101,18 +12714,13 @@ /area/tcommsat/server) "awt" = ( /obj/machinery/atmospherics/pipe/layer_manifold, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"awu" = ( -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "awv" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 }, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "aww" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -13130,8 +12738,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "awx" = ( /obj/machinery/computer/apc_control, /obj/effect/turf_decal/bot, @@ -13157,15 +12764,7 @@ pixel_y = 24; req_access_txt = "11" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) -"awy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "awz" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral, @@ -13191,8 +12790,7 @@ }, /obj/item/folder, /obj/item/stamp/ce, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "awA" = ( /obj/structure/table/wood/fancy, /obj/effect/turf_decal/tile/neutral, @@ -13215,8 +12813,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "awB" = ( /obj/structure/cable{ icon_state = "2-4" @@ -13253,11 +12850,7 @@ /obj/machinery/light_switch{ pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"awD" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/plasteel/dark) "awE" = ( /obj/effect/turf_decal/bot_white/left, /obj/effect/turf_decal/tile/neutral{ @@ -13277,8 +12870,7 @@ dir = 4; pixel_x = -23 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "awF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -13301,13 +12893,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel/dark, /area/security/checkpoint/engineering) -"awG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) "awH" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/engineering) @@ -13342,17 +12927,13 @@ name = "mainframe floor" }, /area/tcommsat/server) -"awN" = ( -/turf/closed/wall/r_wall, -/area/engine/break_room) "awO" = ( /obj/machinery/computer/card/minor/ce, /obj/effect/turf_decal/bot, /obj/machinery/computer/security/telescreen/ce{ pixel_y = 28 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "awP" = ( /obj/machinery/computer/station_alert, /obj/effect/turf_decal/bot, @@ -13362,8 +12943,7 @@ /obj/machinery/newscaster{ pixel_y = 30 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "awQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -13396,8 +12976,7 @@ /obj/item/reagent_containers/pill/patch/silver_sulf, /obj/item/reagent_containers/pill/patch/silver_sulf, /obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "awU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -13405,27 +12984,16 @@ req_access_txt = "30" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "awW" = ( /obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/engine/break_room) -"awX" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/chief) +/turf/closed/wall) "awY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axa" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"axb" = ( -/turf/closed/wall, -/area/engine/engineering) "axc" = ( /obj/structure/chair/office/light{ dir = 8 @@ -13435,8 +13003,7 @@ dir = 4 }, /obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "axd" = ( /obj/machinery/atmospherics/components/binary/pump{ desc = "A pump that moves gas by pressure. Shower not included."; @@ -13463,8 +13030,7 @@ /obj/machinery/newscaster{ pixel_y = 30 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "axf" = ( /turf/open/floor/plating/asteroid/airless{ initial_gas_mix = "o2=14;n2=23;TEMP=300" @@ -13507,8 +13073,7 @@ /obj/item/lighter, /obj/item/clothing/mask/cigarette/cigar/cohiba, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "axi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -13532,8 +13097,7 @@ /obj/machinery/holopad, /obj/effect/turf_decal/bot_white, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "axj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -13541,8 +13105,7 @@ id = "Engineering"; name = "Engineering Blast Doors" }, -/turf/open/floor/plating, -/area/engine/break_room) +/turf/open/floor/plating) "axk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -13569,15 +13132,13 @@ name = "Teleport Access"; req_access_txt = "17;19" }, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "axn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Tool Storage" }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "axo" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump/on{ @@ -13599,8 +13160,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "axq" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -13641,8 +13201,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "axt" = ( /obj/effect/turf_decal/delivery, /obj/machinery/power/terminal{ @@ -13696,8 +13255,7 @@ dir = 4 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "axx" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -13799,8 +13357,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "axF" = ( /turf/closed/wall, /area/hallway/primary/aft) @@ -13826,13 +13383,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"axI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "axJ" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -13844,8 +13395,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "axK" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -13877,8 +13427,7 @@ id = "Engineering"; name = "Engineering Blast Doors" }, -/turf/open/floor/plating, -/area/engine/break_room) +/turf/open/floor/plating) "axN" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -13888,8 +13437,7 @@ dir = 8 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "axO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -13929,8 +13477,7 @@ /obj/item/grenade/chem_grenade/smart_metal_foam{ pixel_x = -2 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "axQ" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -13948,8 +13495,7 @@ /obj/item/stack/cable_coil, /obj/item/electronics/apc, /obj/item/electronics/apc, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "axR" = ( /obj/machinery/door/poddoor/preopen{ id = "Xenolab"; @@ -13969,16 +13515,13 @@ id = "freight_port"; name = "Freight Bay Blast door" }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "axW" = ( /obj/structure/table, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "axX" = ( /obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "axY" = ( /obj/structure/tank_dispenser, /obj/effect/turf_decal/delivery, @@ -13986,8 +13529,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "axZ" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/delivery, @@ -13995,8 +13537,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aya" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -14006,16 +13547,14 @@ pixel_x = 24 }, /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ayb" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ayc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/grunge{ @@ -14076,16 +13615,14 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "ayg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "ceprivate"; name = "Chief Engineer's Privacy Shutters" }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) +/turf/open/floor/plating) "ayh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -14121,8 +13658,7 @@ icon_state = "4-8" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ayl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/l3closet/virology, @@ -14140,11 +13676,7 @@ dir = 8 }, /obj/structure/reagent_dispensers/fueltank/high, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ayn" = ( -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ayo" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/lavendergrass, @@ -14163,16 +13695,14 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "ayr" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ays" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/unary/portables_connector/visible, @@ -14180,8 +13710,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ayt" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -14246,8 +13775,7 @@ /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ayA" = ( /obj/machinery/door/airlock/engineering{ name = "Emergency Storage" @@ -14298,8 +13826,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ayF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -14328,8 +13855,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "ayH" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/grassybush, @@ -14385,8 +13911,7 @@ id = "Secure Storage"; name = "Secure Storage" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ayL" = ( /obj/machinery/door/poddoor/preopen{ id = "Xenolab"; @@ -14494,8 +14019,7 @@ dir = 4; pixel_x = -26 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ayR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -14566,8 +14090,7 @@ dir = 1; pixel_y = -26 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "ayV" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, @@ -14579,8 +14102,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ayW" = ( /obj/machinery/vending/wardrobe/engi_wardrobe, /obj/effect/turf_decal/bot, @@ -14589,8 +14111,7 @@ name = "engineering camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ayX" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -14631,8 +14152,7 @@ /obj/machinery/light_switch{ pixel_y = 24 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "ayZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -14690,8 +14210,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "azd" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -14702,8 +14221,7 @@ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "aze" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -14740,8 +14258,7 @@ /obj/item/clothing/glasses/meson/engine, /obj/item/clothing/glasses/meson/engine, /obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "azg" = ( /obj/structure/table, /obj/item/clipboard, @@ -14751,8 +14268,7 @@ /obj/item/pipe_dispenser, /obj/item/pipe_dispenser, /obj/item/pipe_dispenser, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "azh" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -14801,8 +14317,7 @@ name = "Atmospherics"; req_access_txt = "24" }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "azl" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -14821,8 +14336,7 @@ /area/medical/morgue) "azm" = ( /obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/engine/supermatter) +/turf/open/floor/engine) "azn" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -14878,8 +14392,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "azq" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -14893,8 +14406,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "azr" = ( /obj/structure/chair/wood/normal, /obj/effect/turf_decal/tile/neutral, @@ -14905,8 +14417,7 @@ pixel_y = 24 }, /obj/effect/landmark/start/chaplain, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "azs" = ( /obj/structure/table, /obj/item/candle/infinite{ @@ -14950,8 +14461,7 @@ /obj/structure/reagent_dispensers/watertank/high, /obj/effect/decal/cleanable/dirt, /obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "azv" = ( /turf/closed/wall, /area/ai_monitored/turret_protected/aisat_interior) @@ -14999,8 +14509,7 @@ "azy" = ( /obj/effect/turf_decal/bot, /obj/machinery/power/emitter, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "azA" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -15051,8 +14560,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 6 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "azF" = ( /obj/structure/flora/junglebush/c, /mob/living/carbon/monkey{ @@ -15083,13 +14591,11 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/circuit/red, -/area/engine/engineering) +/turf/open/floor/circuit/red) "azI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "azJ" = ( /obj/machinery/vending/wardrobe/gene_wardrobe, /obj/effect/turf_decal/tile/blue, @@ -15155,8 +14661,7 @@ icon_state = "1-8" }, /obj/effect/turf_decal/box, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/break_room) +/turf/open/floor/plasteel/showroomfloor) "azN" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -15173,8 +14678,7 @@ dir = 1 }, /obj/effect/turf_decal/box, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/break_room) +/turf/open/floor/plasteel/showroomfloor) "azO" = ( /obj/structure/table/glass, /obj/effect/turf_decal/tile/blue, @@ -15240,8 +14744,7 @@ name = "chapel sorting disposal pipe"; sortType = 17 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "azS" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -15255,8 +14758,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "azT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -15272,8 +14774,7 @@ dir = 8; name = "Port to Filter" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "azU" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/machinery/atmospherics/pipe/simple/general/visible/layer3, @@ -15285,8 +14786,7 @@ /obj/structure/sign/warning/electricshock{ pixel_x = 32 }, -/turf/open/floor/circuit/red, -/area/engine/engineering) +/turf/open/floor/circuit/red) "azV" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -15302,8 +14802,7 @@ pixel_x = -24; pixel_y = 24 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "azW" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -15322,12 +14821,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"azX" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "azY" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -15337,13 +14831,11 @@ dir = 10 }, /mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "azZ" = ( /obj/machinery/hydroponics/soil, /obj/item/seeds/potato, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aAa" = ( /obj/machinery/vending/engivend, /obj/effect/turf_decal/tile/neutral{ @@ -15357,8 +14849,7 @@ dir = 8; pixel_x = 26 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aAb" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/window/reinforced, @@ -15392,8 +14883,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "aAe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -15406,8 +14896,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aAf" = ( /obj/machinery/airalarm/server{ dir = 4; @@ -15502,8 +14991,7 @@ icon_state = "4-8" }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aAq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -15559,8 +15047,7 @@ }, /turf/open/floor/plasteel/chapel{ dir = 1 - }, -/area/chapel/main) + }) "aAu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -15573,19 +15060,16 @@ }, /turf/open/floor/plasteel/chapel{ dir = 4 - }, -/area/chapel/main) + }) "aAv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/effect/landmark/event_spawn, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aAx" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/beebox, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aAz" = ( /obj/structure/cable{ icon_state = "1-2" @@ -15597,14 +15081,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aAB" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aAC" = ( /turf/open/floor/plasteel/showroomfloor, /area/science/robotics/lab) @@ -15676,8 +15158,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aAJ" = ( /obj/effect/decal/cleanable/vomit/old, /obj/structure/chair/stool/bar, @@ -15718,8 +15199,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "aAN" = ( /obj/structure/table, /obj/item/clipboard, @@ -15766,8 +15246,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 5 }, -/turf/closed/wall/r_wall, -/area/engine/engineering) +/turf/closed/wall/r_wall) "aAR" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -15776,8 +15255,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "aAS" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -15827,16 +15305,14 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aAW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Apiary"; req_one_access_txt = "22;35" }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aAX" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -15951,13 +15427,11 @@ /obj/effect/turf_decal/box/corners{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aBg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aBh" = ( /obj/structure/closet/secure_closet/RD, /obj/effect/turf_decal/tile/neutral{ @@ -15972,8 +15446,7 @@ name = "science camera"; network = list("ss13","rd") }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "aBi" = ( /obj/machinery/suit_storage_unit/rd, /obj/effect/turf_decal/delivery, @@ -15985,8 +15458,7 @@ /obj/machinery/newscaster{ pixel_y = 30 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "aBj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -16022,11 +15494,9 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "aBn" = ( -/turf/open/floor/carpet/black, -/area/security/vacantoffice) +/turf/open/floor/carpet/black) "aBp" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -16116,8 +15586,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "aBt" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -16145,8 +15614,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "aBw" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, @@ -16155,23 +15623,20 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "aBy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 5 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aBz" = ( /obj/machinery/hydroponics/soil, /obj/item/seeds/tower, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 10 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aBA" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, @@ -16183,8 +15648,7 @@ "aBB" = ( /obj/structure/flora/grass/jungle, /obj/structure/beebox, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aBC" = ( /obj/machinery/door/airlock/maintenance{ name = "kitchen maintenance"; @@ -16200,8 +15664,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aBE" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -16226,14 +15689,12 @@ name = "engineering camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "aBF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 6 }, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aBH" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -16248,13 +15709,6 @@ }, /turf/open/floor/plasteel/dark, /area/security/warden) -"aBI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) "aBJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -16272,16 +15726,14 @@ name = "Distribution Loop"; req_access_txt = "24" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aBL" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, /obj/item/wrench, /obj/item/crowbar, /obj/item/analyzer, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aBM" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16314,13 +15766,11 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 }, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aBQ" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "aBR" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/atmos_alert, @@ -16328,8 +15778,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aBS" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/station_alert, @@ -16342,8 +15791,7 @@ name = "Atmospherics RC"; pixel_x = 30 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aBT" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -16362,8 +15810,7 @@ dir = 4; pixel_x = -22 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aBU" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -16384,13 +15831,11 @@ "aBV" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "aBW" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "aBX" = ( /obj/structure/transit_tube/station/reverse{ dir = 8 @@ -16421,8 +15866,7 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aCa" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -16431,15 +15875,10 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plating, -/area/engine/engineering) -"aCb" = ( -/turf/closed/wall, -/area/quartermaster/qm) +/turf/open/floor/plating) "aCc" = ( /obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/engine/break_room) +/turf/open/floor/plating) "aCd" = ( /obj/item/radio/intercom{ pixel_x = -28 @@ -16449,9 +15888,6 @@ name = "mainframe floor" }, /area/tcommsat/server) -"aCe" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) "aCf" = ( /obj/structure/chair/office/light{ dir = 4 @@ -16462,8 +15898,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aCg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -16473,8 +15908,7 @@ id = "atmos"; name = "Atmospherics Blast Door" }, -/turf/open/floor/plating, -/area/engine/break_room) +/turf/open/floor/plating) "aCh" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -16486,8 +15920,7 @@ name = "Supermatter Engine"; req_access_txt = "10" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aCi" = ( /obj/effect/turf_decal/bot, /obj/structure/tank_dispenser, @@ -16497,8 +15930,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aCj" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ dir = 6 @@ -16506,8 +15938,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ dir = 6 }, -/turf/closed/wall/r_wall, -/area/engine/break_room) +/turf/closed/wall/r_wall) "aCk" = ( /obj/machinery/firealarm{ dir = 8; @@ -16534,8 +15965,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aCm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -16554,8 +15984,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aCo" = ( /obj/effect/turf_decal/loading_area{ dir = 4 @@ -16569,8 +15998,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "aCp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -16590,8 +16018,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aCq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -16651,22 +16078,16 @@ }, /turf/open/floor/plasteel/dark, /area/security/warden) -"aCw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) "aCx" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aCy" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "aCz" = ( /obj/structure/rack, /obj/item/gun/ballistic/shotgun/riot{ @@ -16696,8 +16117,7 @@ "aCA" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aCB" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -16716,8 +16136,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "aCD" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -16734,8 +16153,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aCE" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -16756,8 +16174,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aCF" = ( /obj/item/grenade/barrier{ pixel_x = 4 @@ -16819,8 +16236,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aCH" = ( /obj/item/radio/intercom{ pixel_y = 22 @@ -16913,8 +16329,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aCO" = ( /obj/structure/cable{ icon_state = "1-4" @@ -16964,8 +16379,7 @@ name = "Supermatter Engine"; req_access_txt = "10" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aCS" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -16995,8 +16409,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aCU" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ dir = 4 @@ -17005,8 +16418,7 @@ dir = 4 }, /obj/structure/sign/plaques/atmos, -/turf/closed/wall, -/area/engine/break_room) +/turf/closed/wall) "aCV" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, @@ -17051,8 +16463,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aCZ" = ( /obj/structure/table, /obj/item/clipboard{ @@ -17070,8 +16481,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aDa" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -17132,8 +16542,7 @@ }, /obj/structure/cable, /obj/effect/turf_decal/box, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/break_room) +/turf/open/floor/plasteel/showroomfloor) "aDd" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -17158,8 +16567,7 @@ /obj/machinery/newscaster{ pixel_y = -28 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aDf" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -17196,52 +16604,36 @@ dir = 8 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aDh" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/ppflowers, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aDi" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aDj" = ( /turf/closed/wall, /area/security/checkpoint/engineering) -"aDk" = ( -/turf/closed/wall, -/area/engine/atmos) -"aDm" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) "aDn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aDo" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aDp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "aDq" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /obj/structure/sign/poster/contraband/missing_gloves{ @@ -17252,8 +16644,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/circuit/red, -/area/engine/engineering) +/turf/open/floor/circuit/red) "aDr" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17262,12 +16653,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "aDs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aDt" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -17277,8 +16666,7 @@ dir = 4; name = "Pure to Mix" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aDu" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -17350,8 +16738,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aDy" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -17367,13 +16754,11 @@ pixel_y = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "aDz" = ( /turf/open/floor/engine/n2{ initial_gas_mix = "n2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aDA" = ( /obj/machinery/atmospherics/miner/nitrogen{ max_ext_kpa = 2500 @@ -17381,16 +16766,14 @@ /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/engine/n2{ initial_gas_mix = "n2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aDB" = ( /turf/closed/wall/r_wall, /area/medical/genetics) "aDC" = ( /turf/open/floor/engine/o2{ initial_gas_mix = "o2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aDD" = ( /obj/machinery/atmospherics/miner/oxygen{ max_ext_kpa = 2500 @@ -17398,16 +16781,14 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/engine/o2{ initial_gas_mix = "o2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aDE" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - Air"; name = "atmospherics camera"; network = list("ss13","engine") }, -/turf/open/floor/engine/air, -/area/engine/atmos) +/turf/open/floor/engine/air) "aDF" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -17445,8 +16826,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "aDI" = ( /turf/closed/wall, /area/science/lab) @@ -17464,8 +16844,7 @@ name = "Tech Storage"; req_one_access_txt = "23;30" }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "aDL" = ( /obj/structure/cable{ icon_state = "1-4" @@ -17507,8 +16886,7 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ dir = 8 }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "aDO" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -17644,8 +17022,7 @@ name = "E.V.A. Storage"; req_access_txt = "18" }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "aDX" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -17689,8 +17066,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "aEc" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -17710,8 +17086,7 @@ }, /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aEd" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 @@ -17894,8 +17269,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aEw" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall/rust, @@ -17911,8 +17285,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aEy" = ( /obj/structure/cable{ icon_state = "4-8" @@ -17955,8 +17328,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aEB" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -17979,8 +17351,7 @@ dir = 8; pixel_x = 28 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aED" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -17989,8 +17360,7 @@ icon_state = "1-4" }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aEE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -18014,8 +17384,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aEG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -18027,8 +17396,7 @@ icon_state = "2-8" }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aEH" = ( /obj/machinery/light_switch{ pixel_x = 24 @@ -18043,8 +17411,7 @@ network = list("vault") }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/security/nuke_storage) +/turf/open/floor/engine) "aEI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/stripes/line{ @@ -18064,12 +17431,7 @@ /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"aEK" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/security/vacantoffice) +/turf/open/floor/plasteel/dark) "aEL" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -18087,8 +17449,7 @@ /obj/machinery/door/airlock/public/glass{ name = "Tool Storage" }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "aEN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue{ @@ -18099,8 +17460,7 @@ /obj/item/radio/intercom{ pixel_x = -28 }, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aEO" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -18113,8 +17473,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aEP" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -18145,8 +17504,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aER" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue{ @@ -18164,8 +17522,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aES" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue{ @@ -18180,8 +17537,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aEU" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1 @@ -18295,21 +17651,17 @@ "aFc" = ( /turf/open/floor/engine/co2{ initial_gas_mix = "co2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aFd" = ( /turf/open/floor/engine/plasma{ initial_gas_mix = "plasma=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aFe" = ( /turf/open/floor/engine/n2o{ initial_gas_mix = "n2o=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aFf" = ( -/turf/open/floor/engine/vacuum, -/area/engine/atmos) +/turf/open/floor/engine/vacuum) "aFg" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, @@ -18319,8 +17671,7 @@ pixel_y = -26 }, /obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aFh" = ( /obj/machinery/recharger{ pixel_x = -7 @@ -18350,8 +17701,7 @@ req_access_txt = "19;23" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "aFj" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -18392,8 +17742,7 @@ name = "Security Office"; req_access_txt = "63" }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "aFm" = ( /obj/machinery/atmospherics/miner/carbon_dioxide{ max_ext_kpa = 2500 @@ -18401,8 +17750,7 @@ /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/engine/co2{ initial_gas_mix = "co2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aFn" = ( /obj/machinery/atmospherics/miner/toxins{ max_ext_kpa = 2500 @@ -18410,8 +17758,7 @@ /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/engine/plasma{ initial_gas_mix = "plasma=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aFo" = ( /obj/machinery/atmospherics/miner/n2o{ max_ext_kpa = 2500 @@ -18419,8 +17766,7 @@ /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/engine/n2o{ initial_gas_mix = "n2o=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aFp" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -18497,8 +17843,7 @@ name = "Infirmary"; req_access_txt = "63" }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "aFv" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -18562,10 +17907,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/showroomfloor, /area/science/mixing) -"aFA" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engine/atmos) "aFB" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/general/visible, @@ -18573,8 +17914,7 @@ name = "Supermatter Engine"; req_access_txt = "10" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aFC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/blobstart, @@ -18644,8 +17984,7 @@ /area/maintenance/disposal/incinerator) "aFM" = ( /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "aFN" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -18694,12 +18033,7 @@ }, /obj/effect/turf_decal/tile/purple, /obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) -"aFT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/showroomfloor) "aFU" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/machinery/meter, @@ -18772,8 +18106,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aGb" = ( /obj/machinery/door/poddoor/incinerator_atmos_main, /turf/open/floor/engine/vacuum, @@ -18784,8 +18117,7 @@ name = "Captain's Desk"; req_access_txt = "20" }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "aGd" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -18818,8 +18150,7 @@ name = "atmospherics camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGg" = ( /obj/structure/cable{ icon_state = "1-4" @@ -18834,8 +18165,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/item/ashtray, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "aGi" = ( /obj/structure/cable{ icon_state = "4-8" @@ -18869,15 +18199,13 @@ }, /turf/open/floor/engine/n2{ initial_gas_mix = "n2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aGl" = ( /obj/structure/table, /obj/item/clipboard, /obj/item/folder/yellow, /obj/item/pipe_dispenser, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGm" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -18894,8 +18222,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aGn" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 @@ -18922,8 +18249,7 @@ /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGp" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -18945,8 +18271,7 @@ name = "Supermatter Engine"; req_access_txt = "10" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aGr" = ( /obj/effect/turf_decal/tile/blue, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -18976,8 +18301,7 @@ dir = 10 }, /obj/item/wrench, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aGt" = ( /obj/structure/table, /obj/effect/turf_decal/tile/blue, @@ -19019,8 +18343,7 @@ }, /obj/item/stack/packageWrap, /obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGv" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -19045,8 +18368,7 @@ icon_state = "1-4" }, /obj/effect/turf_decal/box, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/break_room) +/turf/open/floor/plasteel/showroomfloor) "aGw" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -19060,8 +18382,7 @@ /obj/effect/turf_decal/tile/yellow, /obj/machinery/portable_atmospherics/scrubber, /obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "aGx" = ( /obj/structure/table, /obj/structure/window/reinforced, @@ -19069,8 +18390,7 @@ dir = 4 }, /obj/item/storage/toolbox/emergency, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGy" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -19089,23 +18409,19 @@ /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGz" = ( /obj/effect/turf_decal/delivery, /obj/machinery/pipedispenser, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGA" = ( /obj/effect/turf_decal/delivery, /obj/machinery/pipedispenser/disposal, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGB" = ( /obj/effect/turf_decal/delivery, /obj/machinery/pipedispenser/disposal/transit_tube, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGC" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -19124,8 +18440,7 @@ }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/supermatter) +/turf/open/floor/engine) "aGE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -19155,8 +18470,7 @@ /area/medical/genetics/cloning) "aGG" = ( /obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aGH" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -19205,8 +18519,7 @@ pixel_y = 4 }, /obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aGK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -19215,8 +18528,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/dark/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aGL" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -19230,8 +18542,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aGM" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -19239,8 +18550,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aGN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -19269,15 +18579,13 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aGR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/neutral, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aGS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/blue, @@ -19286,8 +18594,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aGT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -19309,150 +18616,128 @@ /obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aGU" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ dir = 4 }, /turf/open/floor/engine/n2{ initial_gas_mix = "n2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aGV" = ( /obj/machinery/air_sensor/atmos/nitrogen_tank, /turf/open/floor/engine/n2{ initial_gas_mix = "n2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aGW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ dir = 4 }, /turf/open/floor/engine/n2{ initial_gas_mix = "n2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aGX" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ dir = 4 }, /turf/open/floor/engine/o2{ initial_gas_mix = "o2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aGY" = ( /obj/machinery/air_sensor/atmos/oxygen_tank, /turf/open/floor/engine/o2{ initial_gas_mix = "o2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aGZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ dir = 4 }, /turf/open/floor/engine/o2{ initial_gas_mix = "o2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHa" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ dir = 4 }, -/turf/open/floor/engine/air, -/area/engine/atmos) +/turf/open/floor/engine/air) "aHb" = ( /obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engine/atmos) +/turf/open/floor/engine/air) "aHc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ dir = 4 }, -/turf/open/floor/engine/air, -/area/engine/atmos) +/turf/open/floor/engine/air) "aHd" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ dir = 1 }, /turf/open/floor/engine/co2{ initial_gas_mix = "co2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHe" = ( /obj/machinery/air_sensor/atmos/carbon_tank, /turf/open/floor/engine/co2{ initial_gas_mix = "co2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ dir = 1 }, /turf/open/floor/engine/co2{ initial_gas_mix = "co2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHg" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ dir = 1 }, /turf/open/floor/engine/plasma{ initial_gas_mix = "plasma=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHh" = ( /obj/machinery/air_sensor/atmos/toxin_tank, /turf/open/floor/engine/plasma{ initial_gas_mix = "plasma=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHi" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ dir = 1 }, /turf/open/floor/engine/plasma{ initial_gas_mix = "plasma=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHj" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ dir = 1 }, /turf/open/floor/engine/n2o{ initial_gas_mix = "n2o=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHk" = ( /obj/machinery/air_sensor/atmos/nitrous_tank, /turf/open/floor/engine/n2o{ initial_gas_mix = "n2o=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHl" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ dir = 1 }, /turf/open/floor/engine/n2o{ initial_gas_mix = "n2o=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aHm" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ dir = 1 }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) +/turf/open/floor/engine/vacuum) "aHn" = ( /obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) +/turf/open/floor/engine/vacuum) "aHo" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ dir = 1 }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) +/turf/open/floor/engine/vacuum) "aHp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -19479,8 +18764,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel, -/area/gateway) +/turf/open/floor/plasteel) "aHs" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -19505,8 +18789,7 @@ /obj/machinery/computer/atmos_control/tank/carbon_tank{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aHt" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Connector"; @@ -19541,16 +18824,14 @@ dir = 1; name = "CO2 to Pure" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aHv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/exile, /obj/machinery/light_switch{ pixel_y = -24 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "aHw" = ( /obj/machinery/porta_turret/ai, /obj/machinery/airalarm{ @@ -19574,8 +18855,7 @@ dir = 8 }, /obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "aHy" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -19716,8 +18996,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aHI" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -19886,8 +19165,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/purple/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aHT" = ( /obj/machinery/suit_storage_unit/atmos, /obj/effect/turf_decal/tile/neutral, @@ -19901,8 +19179,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aHU" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -19914,8 +19191,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aHV" = ( /obj/structure/girder, /obj/structure/grille/broken, @@ -19972,8 +19248,7 @@ /obj/machinery/door/airlock/public/glass{ name = "Engineering Foyer" }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aIc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -19994,8 +19269,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "aIe" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/security, @@ -20010,8 +19284,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "aIf" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -20043,8 +19316,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ dir = 4 }, -/turf/closed/wall, -/area/engine/break_room) +/turf/closed/wall) "aIh" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -20090,8 +19362,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aIj" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ dir = 9 @@ -20099,16 +19370,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ dir = 9 }, -/turf/closed/wall/r_wall, -/area/engine/break_room) +/turf/closed/wall/r_wall) "aIk" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 }, /obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aIl" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -20134,8 +19403,7 @@ dir = 1 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/supermatter) +/turf/open/floor/engine) "aIo" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating/asteroid/airless, @@ -20144,8 +19412,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/reagent_dispensers/watertank, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aIq" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -20210,8 +19477,7 @@ "aIt" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/unary/thermomachine/heater/on, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aIu" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -20223,8 +19489,7 @@ dir = 4; name = "Mix to Engine" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aIv" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/delivery, @@ -20261,15 +19526,13 @@ dir = 8 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "aIx" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aIy" = ( /obj/structure/table, /obj/item/storage/box/lights/mixed{ @@ -20283,8 +19546,7 @@ pixel_y = 4 }, /obj/item/analyzer, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aIz" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -20337,14 +19599,12 @@ /area/hallway/primary/fore) "aIC" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "aID" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/turf/closed/wall/r_wall, -/area/engine/engineering) +/turf/closed/wall/r_wall) "aIE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -20355,14 +19615,12 @@ /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 5 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aIF" = ( /obj/effect/turf_decal/bot, /obj/machinery/shieldgen, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aIH" = ( /obj/structure/cable{ icon_state = "4-8" @@ -20410,8 +19668,7 @@ /area/tcommsat/computer) "aIK" = ( /obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "aIL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -20428,8 +19685,7 @@ /obj/machinery/newscaster{ pixel_x = 28 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aIN" = ( /obj/structure/sign/departments/botany, /turf/closed/wall, @@ -20443,8 +19699,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/layer_manifold, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "aIP" = ( /obj/effect/turf_decal/delivery, /obj/structure/reagent_dispensers/fueltank, @@ -20452,8 +19707,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aIQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -20503,8 +19757,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aIV" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -20540,8 +19793,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aIX" = ( /obj/structure/cable{ icon_state = "1-4" @@ -20602,8 +19854,7 @@ dir = 4 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "aJc" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -20612,8 +19863,7 @@ dir = 4 }, /obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aJd" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -20651,8 +19901,7 @@ /obj/machinery/atmospherics/components/binary/pump/on{ name = "External Waste Ports to Filter" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aJh" = ( /obj/effect/turf_decal/delivery, /obj/machinery/space_heater, @@ -20660,8 +19909,7 @@ dir = 1; name = "Air to External Air Ports" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aJi" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20679,13 +19927,11 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ dir = 10 }, -/turf/closed/wall/r_wall, -/area/engine/break_room) +/turf/closed/wall/r_wall) "aJk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1, -/turf/closed/wall/r_wall, -/area/engine/break_room) +/turf/closed/wall/r_wall) "aJl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -20713,8 +19959,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "aJp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -20722,8 +19967,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "aJq" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -20732,8 +19976,7 @@ /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 6 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aJr" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20759,16 +20002,14 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aJt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "aJu" = ( /obj/machinery/computer/med_data, /obj/effect/turf_decal/tile/neutral, @@ -20784,10 +20025,9 @@ /area/medical/medbay/central) "aJv" = ( /obj/effect/landmark/start/assistant, -/obj/structure/double_bed, +/obj/structure/bed/double, /obj/item/bedsheet/double_gato, -/turf/open/floor/carpet/purple, -/area/crew_quarters/locker) +/turf/open/floor/carpet/purple) "aJw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -20796,8 +20036,7 @@ "aJx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "aJy" = ( /obj/effect/turf_decal/loading_area, /obj/effect/turf_decal/tile/green, @@ -20815,8 +20054,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "aJz" = ( /obj/machinery/computer/atmos_control/tank/mix_tank{ dir = 1 @@ -20830,8 +20068,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "aJA" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -20848,8 +20085,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "aJB" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -20895,8 +20131,7 @@ /area/medical/medbay/central) "aJE" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "aJF" = ( /obj/structure/chair/office/light, /obj/effect/turf_decal/tile/purple{ @@ -20909,8 +20144,7 @@ dir = 1 }, /obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aJG" = ( /obj/machinery/status_display/evac, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20919,19 +20153,16 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 }, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "aJH" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "aJI" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "aJJ" = ( /obj/machinery/status_display/evac, /turf/closed/wall, @@ -20956,14 +20187,12 @@ /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "aJL" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 9 }, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "aJM" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -20973,8 +20202,7 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/supply/visible, /obj/machinery/meter/atmos/distro_loop, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aJN" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -20997,8 +20225,7 @@ /obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aJP" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -21014,8 +20241,7 @@ dir = 4 }, /obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aJQ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -21153,8 +20379,7 @@ }, /obj/item/stack/packageWrap, /obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "aKb" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -21185,8 +20410,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "aKd" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -21207,8 +20431,7 @@ pixel_x = -26 }, /obj/item/multitool, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "aKe" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -21237,8 +20460,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "aKg" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/neutral, @@ -21269,8 +20491,7 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "aKi" = ( /obj/structure/cable{ icon_state = "4-8" @@ -21282,13 +20503,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aKj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) "aKk" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, @@ -21299,8 +20513,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "aKl" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -21355,8 +20568,7 @@ dir = 8; pixel_x = 26 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aKp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -21433,8 +20645,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aKv" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -21521,8 +20732,7 @@ /obj/structure/chair/office{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "aKB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 6 @@ -21560,18 +20770,15 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aKG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "aKH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "aKI" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -21688,13 +20895,11 @@ /obj/structure/chair/stool, /obj/effect/landmark/start/atmospheric_technician, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aKR" = ( /obj/structure/grille, /obj/item/shard, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "aKS" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -21708,8 +20913,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/crew_quarters/bar) +/turf/open/floor/wood) "aKU" = ( /obj/machinery/power/apc{ areastring = "/area/service/theater"; @@ -21730,8 +20934,7 @@ pixel_y = 4 }, /obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "aKV" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/table/wood, @@ -21756,8 +20959,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/holopad, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aKX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -21843,25 +21045,20 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "aLd" = ( /obj/structure/chair/sofa/right{ dir = 4 }, /turf/open/floor/carpet/cyan, /area/medical/storage) -"aLe" = ( -/turf/open/floor/plasteel, -/area/engine/break_room) "aLf" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/delivery, /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aLg" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -21975,8 +21172,7 @@ /obj/item/radio/intercom{ pixel_y = -28 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aLq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -21990,8 +21186,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aLr" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -22010,42 +21205,35 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/dark) "aLs" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) +/turf/closed/wall/r_wall) "aLt" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) +/turf/closed/wall/r_wall) "aLu" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) +/turf/closed/wall/r_wall) "aLv" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 }, /obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) +/turf/closed/wall/r_wall) "aLw" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 5 }, /obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) +/turf/closed/wall/r_wall) "aLx" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) +/turf/closed/wall/r_wall) "aLy" = ( /obj/structure/cable{ icon_state = "0-8" @@ -22059,8 +21247,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/engine/supermatter) + }) "aLz" = ( /obj/structure/cable{ icon_state = "0-4" @@ -22074,8 +21261,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/engine/supermatter) + }) "aLA" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -22104,8 +21290,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/engine/supermatter) + }) "aLC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -22118,8 +21303,7 @@ }, /obj/effect/turf_decal/caution/stand_clear, /obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "aLD" = ( /obj/effect/turf_decal/bot, /obj/structure/easel, @@ -22145,14 +21329,9 @@ }, /turf/open/floor/plasteel/dark/corner, /area/hallway/primary/fore) -"aLF" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall/r_wall, -/area/engine/supermatter) "aLH" = ( /obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engine/supermatter) +/turf/closed/wall/r_wall) "aLJ" = ( /obj/machinery/power/smes{ charge = 5e+006 @@ -22164,12 +21343,10 @@ /area/ai_monitored/turret_protected/ai) "aLK" = ( /obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/engine/engineering) +/turf/closed/wall) "aLL" = ( /obj/structure/sign/warning/enginesafety, -/turf/closed/wall/r_wall, -/area/engine/engineering) +/turf/closed/wall/r_wall) "aLM" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -22184,10 +21361,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/science/research) -"aLN" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engine/engineering) "aLO" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 @@ -22263,8 +21436,7 @@ /obj/machinery/door/airlock/public/glass{ name = "Bar" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aLV" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -22302,8 +21474,7 @@ dir = 8 }, /obj/machinery/atmospherics/components/trinary/filter/atmos/n2, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "aLZ" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -22326,8 +21497,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "aMb" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -22343,8 +21513,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aMc" = ( /obj/structure/sign/warning/nosmoking{ pixel_x = 28; @@ -22379,8 +21548,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aMf" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -22461,12 +21629,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"aMk" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aMl" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -22501,8 +21664,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aMn" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/black, @@ -22521,13 +21683,11 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aMo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "aMp" = ( /obj/machinery/atmospherics/components/binary/valve, /obj/machinery/button/ignition/incinerator/toxmix{ @@ -22581,8 +21741,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aMs" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -22601,14 +21760,12 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aMt" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "aMu" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -22620,8 +21777,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aMv" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -22633,8 +21789,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/power/emitter, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aMx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -22659,8 +21814,7 @@ /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aMz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -22765,8 +21919,7 @@ dir = 4 }, /obj/machinery/vending/kink, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "aMG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -22782,8 +21935,7 @@ dir = 4 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "aMH" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -22817,8 +21969,7 @@ pixel_y = 4 }, /obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aMJ" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -22849,8 +22000,7 @@ }, /obj/item/bodypart/head/robot, /obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "aMK" = ( /obj/effect/landmark/secequipment, /obj/effect/turf_decal/tile/neutral, @@ -22863,14 +22013,12 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "aML" = ( /obj/machinery/light/floor, /turf/open/floor/engine/n2{ initial_gas_mix = "n2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aMM" = ( /obj/machinery/door/airlock/maintenance{ name = "security maintenance"; @@ -22888,8 +22036,7 @@ /obj/machinery/light/floor, /turf/open/floor/engine/o2{ initial_gas_mix = "o2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aMP" = ( /obj/machinery/computer/turbine_computer{ dir = 1; @@ -22919,8 +22066,7 @@ /area/hallway/primary/fore) "aMR" = ( /obj/structure/sign/poster/official/wtf_is_co2, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "aMS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -22936,8 +22082,7 @@ dir = 4 }, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "aMU" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -22964,8 +22109,7 @@ /obj/structure/reflector/single/anchored{ dir = 9 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aMX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -22977,11 +22121,9 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aMY" = ( -/turf/open/floor/engine/air, -/area/engine/atmos) +/turf/open/floor/engine/air) "aMZ" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - CO2"; @@ -22991,8 +22133,7 @@ }, /turf/open/floor/engine/co2{ initial_gas_mix = "co2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aNa" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - Plasma"; @@ -23002,8 +22143,7 @@ }, /turf/open/floor/engine/plasma{ initial_gas_mix = "plasma=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aNb" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - N2O"; @@ -23013,8 +22153,7 @@ }, /turf/open/floor/engine/n2o{ initial_gas_mix = "n2o=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aNc" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - Mix"; @@ -23022,8 +22161,7 @@ name = "atmospherics camera"; network = list("ss13","engine") }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) +/turf/open/floor/engine/vacuum) "aNd" = ( /obj/effect/turf_decal/plaque{ icon_state = "L5" @@ -23075,8 +22213,7 @@ /obj/effect/turf_decal/box/corners{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "aNg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -23095,8 +22232,7 @@ dir = 8 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aNi" = ( /obj/machinery/power/turbine{ luminosity = 2 @@ -23230,8 +22366,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "aNu" = ( /turf/closed/wall, /area/medical/morgue) @@ -23297,8 +22432,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aNB" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -23672,8 +22806,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "aOj" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 5 @@ -23969,8 +23102,7 @@ name = "Bar" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aOI" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -24144,8 +23276,7 @@ /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "aOT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -24188,8 +23319,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aOY" = ( /obj/structure/disposalpipe/sorting/mail{ dir = 4; @@ -24225,8 +23355,7 @@ /obj/item/clothing/neck/stethoscope{ pixel_y = 5 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aPc" = ( /turf/closed/wall/r_wall, /area/medical/storage) @@ -24373,8 +23502,7 @@ /obj/structure/chair/office/light{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aPq" = ( /obj/structure/table/glass, /obj/effect/turf_decal/tile/blue, @@ -24385,8 +23513,7 @@ }, /obj/item/folder/blue, /obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aPr" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -24417,8 +23544,7 @@ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "aPt" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -24485,9 +23611,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aPA" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/cmo) "aPB" = ( /obj/effect/turf_decal/bot, /obj/structure/table, @@ -24499,8 +23622,7 @@ /obj/machinery/status_display/evac{ pixel_x = -32 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "aPC" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -24621,8 +23743,7 @@ /obj/machinery/door/airlock/public/glass{ name = "Bar" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aPL" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/tile/neutral{ @@ -24731,8 +23852,7 @@ name = "Theatre Storage"; req_access_txt = "46" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aPU" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -24777,8 +23897,7 @@ pixel_x = 6; pixel_y = -24 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/showroomfloor) "aPW" = ( /obj/machinery/microwave{ pixel_y = 5 @@ -24808,8 +23927,7 @@ /area/medical/genetics/cloning) "aPY" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/grimy) "aPZ" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -25012,8 +24130,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aQq" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -25105,8 +24222,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aQx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -25120,8 +24236,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aQy" = ( /turf/open/floor/plasteel/showroomfloor, /area/medical/medbay/central) @@ -25146,8 +24261,7 @@ name = "Chief Medical Officer RC"; pixel_y = 28 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "aQB" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -25254,8 +24368,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "aQK" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -25298,8 +24411,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "aQQ" = ( /obj/structure/chair/sofa/right{ dir = 8 @@ -25337,10 +24449,6 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel/showroomfloor, /area/medical/storage) -"aQU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) "aQV" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -25366,8 +24474,7 @@ req_access_txt = "53" }, /obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/dark, -/area/security/nuke_storage) +/turf/open/floor/plasteel/dark) "aQZ" = ( /obj/machinery/computer/crew{ dir = 1 @@ -25425,8 +24532,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "aRe" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue, @@ -25467,8 +24573,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/wood, -/area/crew_quarters/bar) +/turf/open/floor/wood) "aRj" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -25570,16 +24675,14 @@ icon_state = "2-8" }, /obj/effect/landmark/start/bartender, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "aRp" = ( /obj/structure/chair/stool/bar/brass, /obj/effect/turf_decal/tile/red{ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aRq" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -25595,8 +24698,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aRr" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -25866,8 +24968,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "aRG" = ( /obj/structure/table/glass, /obj/effect/turf_decal/tile/neutral{ @@ -25978,12 +25079,6 @@ icon_state = "platingdmg1" }, /area/maintenance/port) -"aRM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) "aRN" = ( /obj/machinery/chem_heater, /obj/effect/turf_decal/bot, @@ -26241,8 +25336,7 @@ dir = 4 }, /obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "aSi" = ( /obj/structure/table/glass, /obj/item/clipboard{ @@ -26270,8 +25364,7 @@ /obj/item/radio/intercom{ pixel_y = 22 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "aSk" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -26294,8 +25387,7 @@ /obj/machinery/computer/atmos_control/tank/nitrogen_tank{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "aSl" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -26349,8 +25441,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "aSq" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/delivery, @@ -26383,8 +25474,7 @@ dir = 4; name = "Nitrogen Outlet" }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "aSs" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -26398,8 +25488,7 @@ name = "Atmospherics Desk"; req_access_txt = "24" }, -/turf/open/floor/plating, -/area/engine/break_room) +/turf/open/floor/plating) "aSt" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -26413,8 +25502,7 @@ name = "Engineering Desk"; req_access_txt = "10" }, -/turf/open/floor/plating, -/area/engine/break_room) +/turf/open/floor/plating) "aSu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -26435,8 +25523,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aSv" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -26699,8 +25786,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "aSQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -26846,10 +25932,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "aTc" = ( -/obj/item/twohanded/required/kirbyplants/photosynthetic, +/obj/item/kirbyplants/photosynthetic, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -26871,8 +25956,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aTf" = ( /obj/machinery/door/airlock/maintenance{ name = "crematorium maintenance"; @@ -26976,8 +26060,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "aTn" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -27085,8 +26168,7 @@ /obj/item/radio/intercom{ pixel_x = 28 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aTu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -27160,8 +26242,7 @@ /obj/item/radio/intercom{ pixel_y = 22 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aTD" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/l3closet/virology, @@ -27213,9 +26294,6 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/maintenance/central/secondary) -"aTH" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) "aTI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -27257,8 +26335,7 @@ req_access_txt = "25" }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aTM" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -27452,8 +26529,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "aUb" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -27507,8 +26583,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "aUf" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -27538,8 +26613,7 @@ name = "Chief Engineer's Office"; req_access_txt = "56" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "aUi" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -27572,8 +26646,7 @@ dir = 1 }, /obj/machinery/shieldwallgen, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "aUk" = ( /obj/effect/turf_decal/loading_area, /obj/effect/turf_decal/tile/purple{ @@ -27889,8 +26962,7 @@ "aUH" = ( /obj/structure/displaycase/trophy, /obj/structure/window/reinforced, -/turf/open/floor/plasteel/grimy, -/area/library) +/turf/open/floor/plasteel/grimy) "aUI" = ( /obj/machinery/camera{ c_tag = "Xenobiology Cell 1"; @@ -27959,8 +27031,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aUN" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -28083,8 +27154,7 @@ pixel_y = 1 }, /obj/item/toy/figure/curator, -/turf/open/floor/plasteel/grimy, -/area/library) +/turf/open/floor/plasteel/grimy) "aUU" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -28207,8 +27277,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aVb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -28229,8 +27298,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "aVc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -28250,8 +27318,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aVe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 @@ -28402,8 +27469,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "aVo" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -28448,8 +27514,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "aVs" = ( /obj/structure/bed/roller, /obj/machinery/iv_drip, @@ -28512,8 +27577,7 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor/plasteel/grimy, -/area/library) +/turf/open/floor/plasteel/grimy) "aVx" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -28643,14 +27707,12 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine/o2{ initial_gas_mix = "o2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aVG" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine/n2o{ initial_gas_mix = "n2o=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "aVH" = ( /obj/machinery/status_display/evac, /turf/closed/wall, @@ -28666,8 +27728,7 @@ id = "rdprivacy"; name = "Director's Privacy Blast Door" }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) +/turf/open/floor/plating) "aVK" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -28700,12 +27761,6 @@ dir = 5 }, /area/medical/storage) -"aVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/closed/wall, -/area/janitor) "aVN" = ( /obj/structure/chair{ dir = 8 @@ -28726,8 +27781,7 @@ dir = 4 }, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "aVQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -28870,8 +27924,7 @@ pixel_x = 24; pixel_y = 24 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "aVY" = ( /obj/structure/bodycontainer/morgue, /obj/effect/turf_decal/tile/neutral, @@ -29017,8 +28070,7 @@ name = "medical camera"; network = list("ss13","medical") }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/cmo) +/turf/open/floor/plasteel/dark) "aWk" = ( /obj/structure/bodycontainer/morgue{ dir = 8 @@ -29238,8 +28290,7 @@ /obj/structure/chair/wood{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aWC" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -29249,8 +28300,7 @@ /obj/structure/chair/wood{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aWD" = ( /obj/structure/cable{ icon_state = "1-4" @@ -29260,8 +28310,7 @@ }, /turf/open/floor/wood{ icon_state = "wood-broken" - }, -/area/crew_quarters/theatre) + }) "aWE" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -29287,9 +28336,6 @@ /obj/effect/turf_decal/tile/yellow, /turf/open/floor/plasteel/showroomfloor, /area/medical/chemistry) -"aWG" = ( -/turf/closed/wall, -/area/chapel/office) "aWH" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -29341,8 +28387,7 @@ /obj/structure/railing{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aWM" = ( /turf/open/floor/plasteel/showroomfloor, /area/science/xenobiology) @@ -29363,8 +28408,7 @@ "aWQ" = ( /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "aWR" = ( /turf/closed/wall, /area/science/xenobiology) @@ -29373,8 +28417,7 @@ /obj/machinery/newscaster{ pixel_x = 30 }, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "aWT" = ( /obj/structure/closet/secure_closet/chemical, /obj/structure/window/reinforced{ @@ -29419,8 +28462,7 @@ dir = 1; pixel_y = -22 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "aWX" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -29429,8 +28471,7 @@ /obj/effect/turf_decal/tile/purple{ dir = 1 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aWY" = ( /turf/closed/wall/r_wall, /area/science/explab) @@ -29515,15 +28556,6 @@ /obj/item/borg/upgrade/cookiesynth, /turf/open/floor/plasteel/dark, /area/science/robotics/lab) -"aXh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) "aXi" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -29544,8 +28576,7 @@ /area/science/robotics/lab) "aXm" = ( /obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "aXn" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -29570,9 +28601,6 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/engine, /area/science/explab) -"aXp" = ( -/turf/open/floor/grass, -/area/crew_quarters/theatre) "aXq" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -29591,12 +28619,10 @@ /obj/item/radio/intercom{ pixel_y = 22 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "aXr" = ( /obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "aXs" = ( /obj/machinery/door/poddoor/incinerator_toxmix, /turf/open/floor/engine/vacuum, @@ -29731,8 +28757,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/plating, -/area/crew_quarters/locker) +/turf/open/floor/plating) "aXF" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -29902,8 +28927,7 @@ pixel_y = -5; pixel_x = -8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "aXW" = ( /turf/closed/wall/rust, /area/maintenance/starboard/fore) @@ -29934,8 +28958,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aXZ" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -30199,8 +29222,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/security/nuke_storage) +/turf/open/floor/plasteel/dark) "aYx" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -30306,8 +29328,7 @@ icon_state = "1-2" }, /obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/dark, -/area/security/nuke_storage) +/turf/open/floor/plasteel/dark) "aYH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -30402,8 +29423,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/grimy) "aYR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -30413,8 +29433,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/plating, -/area/crew_quarters/locker) +/turf/open/floor/plating) "aYS" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -30450,21 +29469,18 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/grimy) "aYW" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, /turf/open/floor/wood{ icon_state = "wood-broken7" - }, -/area/crew_quarters/theatre) + }) "aYX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "aYY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -30539,9 +29555,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/engine, /area/ai_monitored/turret_protected/ai_upload) -"aZd" = ( -/turf/closed/wall, -/area/hydroponics) "aZe" = ( /obj/effect/turf_decal/loading_area, /obj/effect/turf_decal/tile/neutral{ @@ -30611,8 +29624,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "aZn" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 @@ -30676,8 +29688,7 @@ name = "Coldroom Shutters" }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "aZr" = ( /turf/closed/wall/r_wall, /area/science/research) @@ -30709,10 +29720,6 @@ /obj/machinery/holopad, /turf/open/floor/plasteel/dark, /area/science/research) -"aZu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) "aZv" = ( /turf/closed/wall, /area/science/explab) @@ -30723,8 +29730,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "aZy" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -30751,12 +29757,10 @@ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "aZA" = ( /obj/structure/dresser, -/turf/open/floor/carpet/orange, -/area/crew_quarters/locker) +/turf/open/floor/carpet/orange) "aZB" = ( /mob/living/simple_animal/hostile/retaliate/goat{ name = "Pete" @@ -30764,8 +29768,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "aZC" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -30807,9 +29810,6 @@ }, /turf/open/floor/plasteel/dark, /area/science/robotics/lab) -"aZD" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) "aZE" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -30857,8 +29857,7 @@ /obj/effect/turf_decal/tile/red{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aZI" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt, @@ -30867,13 +29866,12 @@ dir = 4; pixel_x = -26 }, -/obj/item/jawsoflife, +/obj/item/crowbar/power, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/security/nuke_storage) +/turf/open/floor/plasteel/dark) "aZJ" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/mech_bay_recharge_floor, @@ -30931,8 +29929,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aZO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -30957,8 +29954,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "aZQ" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -31053,8 +30049,7 @@ icon_state = "2-8" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "aZX" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/tile/neutral{ @@ -31077,8 +30072,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/showroomfloor) "aZZ" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -31126,8 +30120,7 @@ dir = 4 }, /obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "bad" = ( /obj/machinery/computer/rdconsole/robotics{ dir = 8 @@ -31187,8 +30180,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/grimy, -/area/library) +/turf/open/floor/plasteel/grimy) "bah" = ( /turf/closed/wall, /area/science/robotics/lab) @@ -31250,8 +30242,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "ban" = ( /turf/closed/wall, /area/science/robotics/mechbay) @@ -31272,8 +30263,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "baq" = ( /obj/structure/sign/warning/vacuum{ pixel_x = 32 @@ -31355,8 +30345,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/grimy, -/area/library) +/turf/open/floor/plasteel/grimy) "bax" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -31582,8 +30571,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "baN" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -31721,8 +30709,7 @@ /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bbc" = ( /turf/closed/wall/r_wall, /area/science/storage) @@ -31805,8 +30792,7 @@ /obj/machinery/door/airlock/public/glass{ name = "Library" }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bbi" = ( /turf/closed/wall/r_wall, /area/science/mixing/chamber) @@ -31831,8 +30817,7 @@ dir = 8 }, /obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bbl" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -31919,8 +30904,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "bbp" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -31928,8 +30912,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bbq" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -31943,8 +30926,7 @@ pixel_y = 4 }, /obj/item/instrument/piano_synth, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bbr" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -31958,8 +30940,7 @@ /obj/item/flashlight/lamp/bananalamp{ pixel_y = 18 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bbs" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -32574,8 +31555,7 @@ /obj/machinery/light_switch{ pixel_x = 24 }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bcx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ @@ -32916,8 +31896,7 @@ /obj/machinery/airalarm{ pixel_y = 22 }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bcX" = ( /obj/structure/table/glass, /obj/machinery/smartfridge/disks{ @@ -32955,8 +31934,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bcY" = ( /obj/structure/grille/broken, /obj/structure/cable{ @@ -32990,8 +31968,7 @@ }, /obj/effect/turf_decal/bot, /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bda" = ( /obj/machinery/door/firedoor/heavy, /turf/open/floor/plasteel/dark, @@ -33049,15 +32026,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bdh" = ( /obj/machinery/atmospherics/pipe/layer_manifold, /turf/closed/wall/r_wall, /area/science/mixing/chamber) -"bdi" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hor) "bdj" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -33098,8 +32071,7 @@ dir = 8 }, /obj/machinery/atmospherics/components/trinary/filter/atmos/o2, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "bdl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -33139,15 +32111,13 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "bdo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bdp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -33211,8 +32181,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "bdt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -33245,8 +32214,7 @@ /obj/machinery/computer/atmos_control/tank/oxygen_tank{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "bdv" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -33268,8 +32236,7 @@ pixel_x = 8 }, /obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "bdw" = ( /obj/machinery/computer/card/minor/rd{ dir = 8 @@ -33289,8 +32256,7 @@ pixel_x = 30; receive_ore_updates = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "bdx" = ( /obj/machinery/computer/robotics{ dir = 4 @@ -33303,8 +32269,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "bdy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -33315,8 +32280,7 @@ /obj/structure/sign/poster/official/cleanliness{ pixel_y = -32 }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bdz" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -33359,8 +32323,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bdC" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; @@ -33368,8 +32331,7 @@ }, /obj/effect/turf_decal/caution/stand_clear, /obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bdD" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on, /turf/open/floor/engine, @@ -33392,8 +32354,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bdG" = ( /obj/machinery/computer/rdconsole/core{ dir = 4 @@ -33479,8 +32440,7 @@ dir = 8 }, /obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bdM" = ( /obj/machinery/rnd/production/circuit_imprinter/department/science, /obj/effect/turf_decal/bot, @@ -33877,9 +32837,8 @@ /turf/open/floor/plasteel/dark, /area/science/storage) "beo" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/carpet/purple, -/area/crew_quarters/locker) +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/purple) "bep" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -33999,8 +32958,7 @@ req_access_txt = "35" }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bex" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -34024,8 +32982,7 @@ name = "Theatre Storage"; req_access_txt = "46" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bez" = ( /obj/machinery/status_display/ai, /turf/closed/wall/r_wall, @@ -34036,8 +32993,7 @@ dir = 4 }, /obj/item/toy/cattoy, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "beB" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -34093,8 +33049,7 @@ /obj/structure/noticeboard{ pixel_y = 28 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "beH" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, @@ -34125,8 +33080,7 @@ dir = 4; pixel_x = -26 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "beK" = ( /obj/structure/sign/warning/docking, /turf/closed/wall/rust, @@ -34136,8 +33090,7 @@ /obj/machinery/door/airlock/public/glass{ name = "Atrium" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "beM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -34150,8 +33103,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "beN" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot_white, @@ -34176,8 +33128,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "beO" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -34251,8 +33202,7 @@ dir = 4; name = "O2 to Airmix" }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "beV" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -34336,8 +33286,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ icon_state = "platingdmg3" - }, -/area/engine/engineering) + }) "bff" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, @@ -34520,8 +33469,7 @@ name = "RD Office APC"; pixel_y = 23 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "bfv" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -34530,8 +33478,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bfw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -34546,8 +33493,7 @@ pixel_y = 8; pixel_x = 20 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bfx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -34579,12 +33525,11 @@ dir = 4 }, /obj/structure/closet/crate/wooden/toy, -/obj/item/clothing/gloves/color/rainbow/clown, +/obj/item/clothing/gloves/color/rainbow, /obj/item/lipstick/random, /obj/item/lipstick/random, /obj/item/firing_pin/clown, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bfz" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -34600,8 +33545,7 @@ name = "Research Director's Office"; req_access_txt = "30" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "bfB" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -34616,8 +33560,7 @@ dir = 1; pixel_y = -26 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "bfC" = ( /obj/structure/table, /obj/machinery/recharger, @@ -34785,8 +33728,7 @@ /obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bfS" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -35075,8 +34017,7 @@ name = "Kitchen RC"; pixel_x = -30 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bgs" = ( /obj/machinery/door/poddoor/preopen{ id = "xeno4"; @@ -35100,8 +34041,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bgu" = ( /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/watertank, @@ -35551,8 +34491,7 @@ /obj/effect/turf_decal/tile/red{ dir = 1 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bhe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35605,8 +34544,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bhi" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -35615,8 +34553,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bhk" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35645,8 +34582,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bhn" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall, @@ -35667,8 +34603,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bhq" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, @@ -35685,8 +34620,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bhs" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -35698,8 +34632,7 @@ name = "Cargo Desk"; req_access_txt = "50" }, -/turf/open/floor/plating, -/area/quartermaster/office) +/turf/open/floor/plating) "bht" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -35708,8 +34641,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bhu" = ( /mob/living/simple_animal/slime, /turf/open/floor/engine, @@ -35776,8 +34708,7 @@ pixel_x = -28; pixel_y = 22 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) +/turf/open/floor/plasteel/dark) "bhz" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -35797,8 +34728,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bhA" = ( /turf/open/space/basic, /area/space/nearstation) @@ -35856,8 +34786,7 @@ icon_state = "2-8" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bhE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -35882,8 +34811,7 @@ /obj/item/toy/figure/miner{ pixel_x = 8 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) +/turf/open/floor/plasteel/dark) "bhF" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -35910,14 +34838,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/qm) -"bhH" = ( -/turf/closed/wall, -/area/quartermaster/miningoffice) -"bhI" = ( -/turf/closed/wall, -/area/quartermaster/office) +/turf/open/floor/plasteel/dark) "bhK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35937,13 +34858,11 @@ pixel_x = -2; pixel_y = 2 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "bhL" = ( /obj/structure/plasticflaps/opaque, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bhM" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -35967,13 +34886,11 @@ /obj/item/radio/intercom{ pixel_y = 22 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/qm) +/turf/open/floor/plasteel/dark) "bhN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bhO" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -35987,8 +34904,7 @@ pixel_y = 30 }, /obj/machinery/computer/bounty, -/turf/open/floor/plasteel/dark, -/area/quartermaster/qm) +/turf/open/floor/plasteel/dark) "bhP" = ( /obj/machinery/computer/cargo, /obj/effect/turf_decal/bot, @@ -36011,11 +34927,7 @@ pixel_x = 24; pixel_y = 28 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/qm) -"bhQ" = ( -/turf/closed/wall, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bhS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36063,16 +34975,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 28 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"bhW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bhX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) +/turf/open/floor/plasteel/dark) "bhY" = ( /turf/open/floor/plasteel, /area/hallway/primary/starboard) @@ -36141,10 +35044,6 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"big" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) "bih" = ( /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ @@ -36198,8 +35097,7 @@ /obj/structure/chair/office{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bil" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -36245,8 +35143,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) +/turf/open/floor/plasteel) "bio" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; @@ -36269,8 +35166,7 @@ home_destination = "QM #1"; suffix = "#1" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bip" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -36306,8 +35202,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bir" = ( /obj/structure/displaycase/trophy, /obj/structure/window/reinforced{ @@ -36316,8 +35211,7 @@ /obj/structure/sign/poster/official/pda_ad{ pixel_y = -32 }, -/turf/open/floor/plasteel/grimy, -/area/library) +/turf/open/floor/plasteel/grimy) "bis" = ( /obj/machinery/computer/shuttle/mining{ dir = 8; @@ -36331,8 +35225,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bit" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral, @@ -36344,22 +35237,19 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "biu" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, /obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "biv" = ( /obj/structure/chair/office{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "biw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -36380,8 +35270,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "biy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -36480,8 +35369,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "biI" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -36493,8 +35381,7 @@ /obj/item/cartridge/quartermaster, /obj/item/cartridge/quartermaster, /obj/item/cartridge/quartermaster, -/turf/open/floor/plasteel, -/area/quartermaster/qm) +/turf/open/floor/plasteel) "biJ" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -36507,8 +35394,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "biK" = ( /obj/machinery/chem_master, /obj/effect/turf_decal/delivery, @@ -36547,8 +35433,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "biM" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -36561,8 +35446,7 @@ name = "Cargo Desk"; req_access_txt = "50" }, -/turf/open/floor/plating, -/area/quartermaster/office) +/turf/open/floor/plating) "biN" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -36578,8 +35462,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "biO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -36592,8 +35475,7 @@ /obj/structure/chair/office{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "biP" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -36622,8 +35504,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "biR" = ( /obj/machinery/door/window/northleft{ dir = 2; @@ -36633,8 +35514,7 @@ /obj/structure/plasticflaps/opaque, /obj/effect/turf_decal/delivery, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) +/turf/open/floor/plasteel/dark) "biS" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36650,8 +35530,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "biT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -36669,8 +35548,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/qm) +/turf/open/floor/plasteel/dark) "biU" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -36705,8 +35583,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) +/turf/open/floor/plasteel) "biW" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -36730,11 +35607,6 @@ }, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"biX" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/office) "biY" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36761,8 +35633,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) +/turf/open/floor/plasteel) "bja" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/effect/turf_decal/tile/neutral, @@ -36773,8 +35644,7 @@ pixel_x = -24; pixel_y = -24 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/qm) +/turf/open/floor/plasteel/dark) "bjb" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -36790,8 +35660,7 @@ }, /obj/effect/turf_decal/loading_area, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bjc" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -36804,8 +35673,7 @@ }, /obj/effect/turf_decal/loading_area, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bjd" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -36817,8 +35685,7 @@ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bje" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -36837,8 +35704,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bjf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -36846,8 +35712,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bjg" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -36872,8 +35737,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bji" = ( /obj/structure/table/wood, /obj/item/clipboard, @@ -36899,8 +35763,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bjk" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp/green{ @@ -36940,8 +35803,7 @@ /obj/item/stock_parts/cell/high, /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bjm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -36950,12 +35812,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bjn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bjo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -36964,13 +35821,11 @@ /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bjp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bjq" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ @@ -37020,8 +35875,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bju" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/turf_decal/tile/neutral{ @@ -37030,8 +35884,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bjv" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/turf_decal/tile/neutral{ @@ -37047,8 +35900,7 @@ /obj/item/radio/intercom{ pixel_y = -28 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bjw" = ( /obj/machinery/light/small{ dir = 4 @@ -37077,8 +35929,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bjz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, @@ -37199,8 +36050,7 @@ name = "Art Cabinet" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bjI" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -37212,8 +36062,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bjJ" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -37237,8 +36086,7 @@ network = list("ss13","qm") }, /obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/quartermaster/qm) +/turf/open/floor/plasteel/dark) "bjK" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -37298,8 +36146,7 @@ dir = 1 }, /obj/machinery/vending/mealdor, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "bjP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -37321,8 +36168,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bjR" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -37333,8 +36179,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bjS" = ( /obj/structure/window/reinforced{ dir = 4 @@ -37357,16 +36202,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ icon_state = "platingdmg1" - }, -/area/bridge) + }) "bjU" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/transit_tube/horizontal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "bjV" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -37380,15 +36223,7 @@ dir = 8; pixel_x = 28 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) -"bjW" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"bjX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bjY" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -37415,8 +36250,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ icon_state = "panelscorched" - }, -/area/bridge) + }) "bka" = ( /obj/structure/window/reinforced{ dir = 1 @@ -37427,8 +36261,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "bkb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -37438,21 +36271,15 @@ icon_state = "panelscorched" }, /area/maintenance/central) -"bkc" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/quartermaster/miningoffice) "bkd" = ( /turf/closed/wall, /area/maintenance/starboard) "bke" = ( /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bkf" = ( /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bkg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -37460,8 +36287,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bkh" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -37470,12 +36296,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) -"bki" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bkj" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt, @@ -37499,8 +36320,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bkm" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/security/labor, @@ -37541,20 +36361,17 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bkp" = ( /obj/effect/landmark/start/lawyer, /obj/structure/chair/office{ dir = 8 }, -/turf/open/floor/carpet, -/area/lawoffice) +/turf/open/floor/carpet) "bkq" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bkr" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -37569,15 +36386,11 @@ /obj/machinery/computer/bounty{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) -"bks" = ( -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bkt" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/crate/silvercrate, -/obj/item/handdrill, +/obj/item/screwdriver/power, /obj/machinery/light/small{ dir = 4 }, @@ -37590,8 +36403,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/security/nuke_storage) +/turf/open/floor/plasteel/dark) "bku" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -37608,8 +36420,7 @@ dir = 5 }, /obj/effect/landmark/start/quartermaster, -/turf/open/floor/plasteel, -/area/quartermaster/qm) +/turf/open/floor/plasteel) "bkv" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -37623,8 +36434,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bkw" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -37636,8 +36446,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bkx" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -37648,12 +36457,10 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) +/turf/open/floor/plasteel) "bky" = ( /mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bkz" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -37666,30 +36473,19 @@ name = "Delivery Desk"; req_access_txt = "50" }, -/turf/open/floor/plating, -/area/quartermaster/sorting) +/turf/open/floor/plating) "bkA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bkB" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/quartermaster/qm) +/turf/open/floor/plasteel) "bkC" = ( /obj/effect/turf_decal/arrows, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bkD" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/yellow, @@ -37703,8 +36499,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bkE" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -37735,8 +36530,7 @@ icon_state = "4-8" }, /obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bkG" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -37762,8 +36556,7 @@ icon_state = "1-8" }, /obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bkI" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -37774,8 +36567,7 @@ dir = 9 }, /obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bkJ" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -37808,8 +36600,7 @@ name = "Mining RC"; pixel_y = -30 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bkL" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -37820,8 +36611,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel) "bkM" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -37836,8 +36626,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bkN" = ( /obj/machinery/door/poddoor{ id = "QMLoaddoor"; @@ -37848,8 +36637,7 @@ id = "QMLoad"; name = "off ramp" }, -/turf/open/floor/plating, -/area/quartermaster/storage) +/turf/open/floor/plating) "bkO" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -37857,8 +36645,7 @@ id = "QMLoad"; name = "off ramp" }, -/turf/open/floor/plating, -/area/quartermaster/storage) +/turf/open/floor/plating) "bkQ" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -37874,8 +36661,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bkR" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -37889,8 +36675,7 @@ id = "packageSort2"; name = "mail belt" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bkS" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -37905,14 +36690,12 @@ name = "mail belt" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bkT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3, /obj/effect/turf_decal/stripes/line, /obj/item/t_scanner, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "bkU" = ( /obj/structure/table/wood, /obj/item/storage/box/seccarts{ @@ -37941,8 +36724,7 @@ pixel_x = 7; pixel_y = -24 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hos) +/turf/open/floor/wood) "bkV" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -37958,16 +36740,14 @@ dir = 8 }, /obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bkW" = ( /obj/machinery/door/poddoor/shutters{ id = "teleshutter"; name = "Teleport Access Shutter" }, /obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "bkX" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/emcloset, @@ -37978,13 +36758,11 @@ /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bkZ" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bla" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -37999,8 +36777,7 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blc" = ( /obj/machinery/door/airlock/maintenance{ name = "kitchen maintenance"; @@ -38061,8 +36838,7 @@ name = "cargo camera"; network = list("ss13","qm") }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bli" = ( /obj/structure/cable{ icon_state = "4-8" @@ -38070,8 +36846,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blj" = ( /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment, @@ -38099,13 +36874,11 @@ pixel_y = -6; req_access_txt = "31" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bll" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/quartermaster/storage) +/turf/open/floor/plating) "blm" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -38168,17 +36941,6 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"blr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bls" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/storage) "blu" = ( /obj/docking_port/stationary{ dir = 4; @@ -38229,8 +36991,7 @@ /obj/structure/easel, /obj/effect/turf_decal/bot, /obj/item/airlock_painter, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bly" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/wardrobe/cargo_wardrobe, @@ -38242,15 +37003,13 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "blz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blA" = ( /obj/structure/rack, /obj/item/storage/crayons, @@ -38259,8 +37018,7 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "blB" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -38273,18 +37031,12 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/library) +/turf/open/floor/plasteel/showroomfloor) "blD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"blE" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ @@ -38293,8 +37045,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blG" = ( /obj/structure/table, /obj/machinery/recharger, @@ -38325,8 +37076,7 @@ id = "QMLoad2"; name = "on ramp" }, -/turf/open/floor/plating, -/area/quartermaster/storage) +/turf/open/floor/plating) "blI" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -38334,8 +37084,7 @@ id = "QMLoad2"; name = "on ramp" }, -/turf/open/floor/plating, -/area/quartermaster/storage) +/turf/open/floor/plating) "blJ" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -38351,23 +37100,20 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/qm) +/turf/open/floor/plasteel) "blK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" }, /obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blM" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/cable{ @@ -38379,8 +37125,7 @@ /obj/structure/chair/office{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "blN" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -38388,14 +37133,12 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "blO" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blP" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -38419,15 +37162,13 @@ pixel_y = 26 }, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "blR" = ( /obj/effect/turf_decal/tile/neutral, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "blS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -38436,8 +37177,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -38445,8 +37185,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "blU" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/blue, @@ -38465,8 +37204,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "blV" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/blue, @@ -38478,8 +37216,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "blW" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/blue, @@ -38510,8 +37247,7 @@ name = "AI Upload turret control"; pixel_y = 32 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "blX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/disposalpipe/junction{ @@ -38530,8 +37266,7 @@ }, /obj/effect/turf_decal/loading_area, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "blZ" = ( /obj/structure/table, /obj/item/stack/packageWrap, @@ -38563,14 +37298,7 @@ name = "cargo camera"; network = list("ss13","qm") }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) -"bmb" = ( -/turf/closed/wall/r_wall, -/area/storage/tech) -"bmc" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bmd" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /obj/effect/decal/cleanable/dirt, @@ -38590,8 +37318,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bmf" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -38603,8 +37330,7 @@ dir = 1 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bmg" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -38616,8 +37342,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bmh" = ( /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ @@ -38640,8 +37365,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bmi" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -38686,8 +37410,7 @@ /obj/structure/sign/poster/contraband/red_rum{ pixel_y = -32 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bmk" = ( /obj/effect/turf_decal/loading_area{ dir = 8 @@ -38718,8 +37441,7 @@ /obj/item/radio/intercom{ pixel_y = -28 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bmm" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -38736,23 +37458,20 @@ /obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bmo" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bmp" = ( /obj/structure/plasticflaps/opaque, /obj/effect/turf_decal/delivery, /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bmq" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -38779,8 +37498,7 @@ name = "cargo camera"; network = list("ss13","qm") }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bmr" = ( /obj/machinery/vending/wardrobe/cargo_wardrobe, /obj/effect/turf_decal/bot, @@ -38799,8 +37517,7 @@ name = "cargo camera"; network = list("ss13","qm") }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bms" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -38818,8 +37535,7 @@ /obj/machinery/status_display/supply{ pixel_y = -32 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bmt" = ( /obj/machinery/door/firedoor, /obj/machinery/mineral/ore_redemption{ @@ -38830,8 +37546,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plating, -/area/quartermaster/office) +/turf/open/floor/plating) "bmu" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -38850,15 +37565,13 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bmv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bmw" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -38870,8 +37583,7 @@ dir = 1 }, /obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bmx" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -38912,11 +37624,7 @@ name = "cargo camera"; network = list("ss13","qm") }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) -"bmy" = ( -/turf/closed/wall, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "bmz" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -38931,8 +37639,7 @@ id = "kitchen"; name = "Serving Hatch" }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) +/turf/open/floor/plating) "bmB" = ( /obj/machinery/status_display/evac, /turf/closed/wall, @@ -38963,8 +37670,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bmE" = ( /obj/effect/turf_decal/delivery, /obj/machinery/vending/hydroseeds{ @@ -38975,12 +37681,7 @@ dir = 8 }, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmF" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bmG" = ( /obj/structure/table/glass, /obj/effect/turf_decal/tile/neutral, @@ -38990,16 +37691,14 @@ /obj/machinery/plantgenes{ pixel_y = 5 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bmH" = ( /obj/effect/turf_decal/tile/red{ dir = 1 }, /obj/effect/turf_decal/tile/red, /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bmI" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -39015,8 +37714,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bmJ" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, @@ -39047,8 +37745,7 @@ name = "Mining Dock"; req_access_txt = "48" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bmO" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -39061,8 +37758,7 @@ /obj/item/reagent_containers/food/snacks/dough, /obj/item/kitchen/rollingpin, /obj/item/kitchen/rollingpin, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bmP" = ( /obj/structure/cable{ icon_state = "1-2" @@ -39072,8 +37768,7 @@ name = "E.V.A. Storage Shutter" }, /obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bmQ" = ( /obj/machinery/computer/arcade, /obj/effect/turf_decal/tile/red, @@ -39100,8 +37795,7 @@ pixel_y = 5 }, /obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bmS" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -39120,8 +37814,7 @@ id = "kitchen_2"; name = "Hallway Hatch" }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) +/turf/open/floor/plating) "bmT" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -39131,8 +37824,7 @@ dir = 4 }, /obj/item/storage/bag/tray, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bmU" = ( /obj/structure/lattice, /turf/closed/wall/r_wall, @@ -39144,8 +37836,7 @@ name = "Waste Release" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bmW" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -39161,8 +37852,7 @@ }, /obj/item/wrench, /obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bmX" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -39197,12 +37887,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"bna" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "bnb" = ( /obj/docking_port/stationary{ dir = 4; @@ -39231,8 +37916,7 @@ name = "Hydroponics Desk"; req_access_txt = "35" }, -/turf/open/floor/plating, -/area/hydroponics) +/turf/open/floor/plating) "bnd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -39297,8 +37981,7 @@ icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bni" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -39307,17 +37990,14 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bnj" = ( /obj/machinery/smartfridge, -/turf/closed/wall, -/area/crew_quarters/kitchen) +/turf/closed/wall) "bnk" = ( /obj/structure/disposalpipe/segment, /obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bnl" = ( /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/blood/old, @@ -39337,8 +38017,7 @@ /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "bnm" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -39353,8 +38032,7 @@ name = "mail belt" }, /obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bnn" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -39371,15 +38049,13 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 28 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bno" = ( /obj/effect/turf_decal/tile/red{ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "bnp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39391,8 +38067,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bnq" = ( /obj/structure/flora/grass/jungle, /obj/structure/window/reinforced{ @@ -39404,8 +38079,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/grass, -/area/hydroponics) +/turf/open/floor/grass) "bnr" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/backpack, @@ -39422,8 +38096,7 @@ /obj/machinery/airalarm{ pixel_y = 22 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bns" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -39443,8 +38116,7 @@ pixel_x = -23 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bnt" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -39490,8 +38162,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/turf/open/floor/plasteel/showroomfloor, -/area/library) +/turf/open/floor/plasteel/showroomfloor) "bnz" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -39545,8 +38216,7 @@ name = "Biogenerator"; req_access_txt = "35" }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bnE" = ( /obj/structure/disposalpipe/sorting/mail{ name = "kitchen sorting disposal pipe"; @@ -39585,8 +38255,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bnH" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/brflowers, @@ -39596,8 +38265,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/grass, -/area/hydroponics) +/turf/open/floor/grass) "bnI" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -39608,8 +38276,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bnJ" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -39624,8 +38291,7 @@ dir = 4 }, /obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bnK" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -39639,8 +38305,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bnL" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -39660,8 +38325,7 @@ name = "Serving Hatch" }, /obj/item/toy/figure/chef, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) +/turf/open/floor/plating) "bnN" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -39676,8 +38340,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bnO" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -39688,8 +38351,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bnP" = ( /obj/structure/window/reinforced{ dir = 1 @@ -39699,16 +38361,14 @@ pixel_y = 2 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bnQ" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bnR" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/window/reinforced{ @@ -39717,8 +38377,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/grass, -/area/hydroponics) +/turf/open/floor/grass) "bnT" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/ppflowers, @@ -39730,8 +38389,7 @@ name = "Otis"; real_name = "Betsy" }, -/turf/open/floor/grass, -/area/hydroponics) +/turf/open/floor/grass) "bnU" = ( /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ @@ -39747,8 +38405,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bnV" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/green{ @@ -39785,16 +38442,14 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bnY" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) +/turf/open/floor/plasteel/dark) "bnZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -39814,16 +38469,14 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/grass, -/area/hydroponics) +/turf/open/floor/grass) "bob" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/hydroponics) +/turf/open/floor/grass) "bod" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -39843,8 +38496,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "boe" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -39858,8 +38510,7 @@ /obj/structure/chair/sofa/right{ color = "#c45c57" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "bof" = ( /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ @@ -39870,8 +38521,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bog" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -39892,8 +38542,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "boh" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/window/reinforced{ @@ -39903,20 +38552,19 @@ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/hydroponics) +/turf/open/floor/grass) "boi" = ( /obj/machinery/door/window/brigdoor/westright{ dir = 4; name = "Core Modules"; req_access_txt = "20" }, -/obj/item/aiModule/core/freeformcore{ +/obj/item/ai_module/core/freeformcore{ pixel_x = 3; pixel_y = 3 }, -/obj/item/aiModule/core/full/custom, -/obj/item/aiModule/core/full/asimov{ +/obj/item/ai_module/core/full/custom, +/obj/item/ai_module/core/full/asimov{ pixel_x = -3; pixel_y = -3 }, @@ -39958,8 +38606,7 @@ icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bok" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -39972,20 +38619,17 @@ name = "Service Door"; req_one_access_txt = "35;28" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bom" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ name = "Quartermaster"; req_access_txt = "41" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/qm) +/turf/open/floor/plasteel/dark) "bon" = ( /obj/structure/sign/departments/botany, -/turf/closed/wall, -/area/hydroponics) +/turf/closed/wall) "boo" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, @@ -40009,13 +38653,11 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "boq" = ( /obj/effect/turf_decal/bot, /obj/machinery/rnd/production/techfab/department/cargo, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bor" = ( /obj/structure/window/reinforced{ dir = 4 @@ -40030,8 +38672,7 @@ }, /obj/machinery/light/small, /obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bos" = ( /obj/effect/turf_decal/delivery, /obj/structure/reagent_dispensers/watertank, @@ -40051,8 +38692,7 @@ pixel_x = -28 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bow" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -40062,8 +38702,7 @@ id = "kitchen"; name = "Serving Hatch" }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) +/turf/open/floor/plating) "box" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -40102,8 +38741,7 @@ dir = 1; pixel_y = -22 }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "boA" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -40131,8 +38769,7 @@ pixel_x = 6; pixel_y = 6 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "boB" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -40142,8 +38779,7 @@ /obj/machinery/reagentgrinder{ pixel_y = 5 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "boC" = ( /turf/closed/wall, /area/hallway/primary/port) @@ -40163,8 +38799,7 @@ /obj/item/book/manual/chef_recipes{ pixel_y = 2 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "boE" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40183,8 +38818,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/qm) +/turf/open/floor/plasteel/dark) "boF" = ( /obj/machinery/button/door{ id = "bank"; @@ -40235,8 +38869,7 @@ /obj/machinery/microwave{ pixel_y = 5 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "boI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ @@ -40244,16 +38877,14 @@ req_access_txt = "28" }, /obj/structure/fans/tiny/invisible, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "boJ" = ( /obj/effect/turf_decal/tile/red{ dir = 1 }, /obj/effect/turf_decal/tile/red, /obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "boK" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40269,8 +38900,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "boL" = ( /obj/structure/table, /obj/machinery/button/door{ @@ -40330,8 +38960,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "boP" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -40343,8 +38972,7 @@ name = "microbench"; pixel_x = 16 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "boQ" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -40363,8 +38991,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "boR" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/backpack, @@ -40375,8 +39002,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "boS" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -40393,13 +39019,11 @@ dir = 8 }, /obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "boT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "boU" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -40426,8 +39050,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "boW" = ( /obj/effect/spawner/lootdrop/grille_or_trash, /obj/effect/decal/cleanable/dirt, @@ -40460,8 +39083,7 @@ dir = 1; pixel_y = -26 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "boZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -40490,8 +39112,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bpc" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, @@ -40507,8 +39128,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bpe" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -40517,8 +39137,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bpf" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, @@ -40544,15 +39163,13 @@ id = "kitchen_2"; name = "Hallway Hatch" }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) +/turf/open/floor/plating) "bpi" = ( /obj/structure/flora/grass/jungle/b, /obj/item/radio/intercom{ pixel_y = -28 }, -/turf/open/floor/grass, -/area/hydroponics) +/turf/open/floor/grass) "bpj" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -40571,22 +39188,19 @@ }, /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bpk" = ( /obj/effect/turf_decal/tile/green{ dir = 8 }, /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bpl" = ( /obj/effect/turf_decal/tile/green{ dir = 8 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bpm" = ( /obj/docking_port/stationary{ dir = 8; @@ -40617,8 +39231,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bpp" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/poster/official/safety_internals, @@ -40675,8 +39288,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bpv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -40686,8 +39298,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bpw" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -40703,8 +39314,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bpx" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -40719,8 +39329,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/office) +/turf/open/floor/plasteel) "bpy" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -40742,8 +39351,7 @@ pixel_x = -30 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bpz" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -40751,8 +39359,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bpA" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -40769,8 +39376,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bpB" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -40796,8 +39402,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bpC" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -40826,8 +39431,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bpE" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -40857,8 +39461,7 @@ pixel_x = 32; pixel_y = 32 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bpF" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/frame/machine, @@ -40867,8 +39470,7 @@ dir = 4 }, /obj/item/stack/rods, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "bpG" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -40884,8 +39486,7 @@ /obj/effect/landmark/start/librarian, /obj/effect/landmark/xeno_spawn, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bpH" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -40897,8 +39498,7 @@ pixel_x = 28 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bpI" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -41023,8 +39623,7 @@ /obj/structure/chair/office{ dir = 8 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) +/turf/open/floor/carpet) "bpU" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; @@ -41033,8 +39632,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/caution/stand_clear, /obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bpV" = ( /obj/structure/sign/departments/botany, /turf/closed/wall, @@ -41089,8 +39687,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bqb" = ( /obj/structure/sign/departments/custodian, /turf/closed/wall, @@ -41104,8 +39701,7 @@ /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo" }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bqd" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/red, @@ -41113,14 +39709,12 @@ dir = 1 }, /obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bqe" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bqf" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -41135,8 +39729,7 @@ /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "bqg" = ( /obj/structure/cable{ icon_state = "1-8" @@ -41144,8 +39737,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bqh" = ( /obj/effect/turf_decal/delivery, /obj/machinery/vending/hydronutrients, @@ -41159,8 +39751,7 @@ /obj/item/radio/intercom{ pixel_y = 22 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bqj" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -41169,8 +39760,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bqk" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -41182,8 +39772,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bql" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -41206,8 +39795,7 @@ pixel_y = 24; req_access_txt = "28" }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bqm" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -41226,8 +39814,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bqo" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -41236,8 +39823,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bqp" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -41250,8 +39836,7 @@ }, /obj/effect/turf_decal/tile/red, /obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/showroomfloor) "bqr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -41266,14 +39851,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bqt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bqu" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -41285,8 +39868,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bqv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -41295,8 +39877,7 @@ /obj/item/radio/intercom{ pixel_y = -28 }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel) "bqw" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -41314,8 +39895,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bqx" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -41323,8 +39903,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bqy" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -41338,8 +39917,7 @@ req_access_txt = "28" }, /obj/structure/fans/tiny/invisible, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bqz" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; @@ -41354,8 +39932,7 @@ req_access_txt = "28" }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bqA" = ( /obj/structure/table, /obj/item/folder/white, @@ -41384,8 +39961,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bqC" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -41401,8 +39977,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) +/turf/open/floor/plasteel/dark) "bqD" = ( /obj/structure/plasticflaps/opaque, /obj/machinery/navbeacon{ @@ -41424,8 +39999,7 @@ dir = 1 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "bqE" = ( /obj/machinery/door/airlock/maintenance{ name = "command maintenance"; @@ -41450,8 +40024,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bqI" = ( /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/blue, @@ -41467,8 +40040,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bqJ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -41487,8 +40059,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bqK" = ( /obj/machinery/light{ dir = 1 @@ -41502,8 +40073,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "bqL" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -41514,8 +40084,7 @@ req_access = null; req_access_txt = "25" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "bqM" = ( /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ @@ -41538,8 +40107,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bqN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 @@ -41581,8 +40149,7 @@ dir = 1 }, /obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) +/turf/open/floor/plasteel/dark) "bqQ" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/effect/turf_decal/tile/neutral{ @@ -41606,8 +40173,7 @@ dir = 8; name = "hydroponics camera" }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bqR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -41617,8 +40183,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bqS" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -41652,22 +40217,19 @@ /area/hallway/primary/starboard) "bqU" = ( /obj/machinery/vending/wardrobe/bar_wardrobe, -/turf/open/floor/wood, -/area/crew_quarters/bar) +/turf/open/floor/wood) "bqV" = ( /obj/machinery/door/airlock/grunge{ name = "Bar Storage"; req_access_txt = "25" }, -/turf/open/floor/wood, -/area/crew_quarters/bar) +/turf/open/floor/wood) "bqW" = ( /obj/machinery/chem_dispenser/drinks{ dir = 4 }, /obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "bqX" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -41728,8 +40290,7 @@ pixel_x = -28 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "brb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/tile/neutral{ @@ -41742,8 +40303,7 @@ /obj/structure/chair/sofa/left{ color = "#c45c57" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brc" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -41756,8 +40316,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bre" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -41813,22 +40372,19 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "brl" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "brm" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "brn" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -41837,8 +40393,7 @@ /obj/effect/turf_decal/bot{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bro" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -41848,12 +40403,7 @@ /obj/effect/turf_decal/bot{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"brp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "brq" = ( /obj/structure/chair/sofa/right{ color = "#c45c57" @@ -41868,15 +40418,13 @@ dir = 8 }, /obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brr" = ( /obj/machinery/chem_master/condimaster{ desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; name = "BrewMaster 2199" }, -/turf/open/floor/wood, -/area/crew_quarters/bar) +/turf/open/floor/wood) "brs" = ( /obj/structure/sign/poster/contraband/random{ pixel_x = 32 @@ -41899,8 +40447,7 @@ /obj/item/book/lorebooks/welcome_to_gato{ pixel_y = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "bru" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/gibs/old, @@ -41927,8 +40474,7 @@ /obj/effect/turf_decal/tile/red{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral, @@ -41976,8 +40522,7 @@ color = "#c45c57"; dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -41989,9 +40534,6 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"brD" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/restrooms) "brE" = ( /obj/item/storage/fancy/donut_box, /obj/structure/table/wood, @@ -41999,8 +40541,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "brF" = ( /obj/item/reagent_containers/food/condiment/peppermill{ desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; @@ -42023,8 +40564,7 @@ dir = 8 }, /obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -42041,8 +40581,7 @@ color = "#c45c57"; dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brH" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -42050,8 +40589,7 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brI" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -42077,8 +40615,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brJ" = ( /obj/item/storage/bag/tray, /obj/item/clothing/head/hardhat/cakehat, @@ -42087,8 +40624,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brK" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -42098,13 +40634,6 @@ icon_state = "platingdmg1" }, /area/maintenance/port) -"brL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/fitness/recreation) "brM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -42120,12 +40649,10 @@ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brN" = ( /obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "brO" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, @@ -42133,8 +40660,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "brP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -42145,8 +40671,7 @@ pixel_y = 16; pixel_x = -16 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -42167,8 +40692,7 @@ dir = 8 }, /obj/structure/table/wood/poker, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brR" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -42189,8 +40713,7 @@ pixel_y = 5; pixel_x = -3 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -42206,8 +40729,7 @@ pixel_y = -28 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "brU" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -42219,8 +40741,7 @@ }, /obj/item/pinpointer/nuke, /obj/item/disk/nuclear, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "brV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -42238,16 +40759,14 @@ color = "#c45c57"; dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/effect/turf_decal/tile/red{ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brX" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -42256,8 +40775,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "brY" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/blue{ @@ -42280,8 +40798,7 @@ /obj/machinery/light_switch{ pixel_x = 24 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "brZ" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -42303,26 +40820,19 @@ pixel_x = 1; pixel_y = 5 }, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "bsb" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/red{ dir = 1 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) -"bsc" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "bsd" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/delivery, /obj/machinery/vending/mealdor, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bse" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -42343,8 +40853,7 @@ pixel_y = -28 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bsf" = ( /obj/structure/sign/departments/custodian, /turf/closed/wall, @@ -42375,12 +40884,10 @@ name = "Forbidden Knowledge" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bsj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "bsk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -42415,8 +40922,7 @@ name = "Popeye"; real_name = "Featherbottom" }, -/turf/open/floor/grass, -/area/hydroponics) +/turf/open/floor/grass) "bsp" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -42445,8 +40951,7 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/carpet, -/area/lawoffice) +/turf/open/floor/carpet) "bss" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -42559,8 +41064,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) +/turf/open/floor/plasteel/dark) "bsA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -42588,8 +41092,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bsD" = ( /obj/machinery/door/airlock/security/glass{ name = "Hazard Closet"; @@ -42598,8 +41101,7 @@ /turf/open/floor/plasteel/dark, /area/maintenance/port/aft) "bsE" = ( -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bsG" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -42637,20 +41139,19 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bsI" = ( /obj/machinery/door/window/brigdoor{ dir = 4; name = "Core Modules"; req_access_txt = "20" }, -/obj/item/aiModule/supplied/protectStation{ +/obj/item/ai_module/supplied/protectStation{ pixel_x = 3; pixel_y = 3 }, -/obj/item/aiModule/zeroth/oneHuman, -/obj/item/aiModule/reset/purge{ +/obj/item/ai_module/zeroth/oneHuman, +/obj/item/ai_module/reset/purge{ pixel_x = -3; pixel_y = -3 }, @@ -42694,8 +41195,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "bsL" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -42707,14 +41207,12 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bsM" = ( /obj/machinery/light_switch{ pixel_y = -24 }, -/turf/open/floor/plasteel/grimy, -/area/library) +/turf/open/floor/plasteel/grimy) "bsN" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/window/reinforced{ @@ -42725,8 +41223,7 @@ }, /obj/structure/window/reinforced, /obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/grass, -/area/crew_quarters/heads/hop) +/turf/open/floor/grass) "bsO" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/window/reinforced, @@ -42734,8 +41231,7 @@ dir = 1 }, /obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/crew_quarters/heads/hop) +/turf/open/floor/grass) "bsP" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/window/reinforced{ @@ -42746,15 +41242,13 @@ dir = 1 }, /obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/grass, -/area/crew_quarters/heads/hop) +/turf/open/floor/grass) "bsQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel/grimy, -/area/library) +/turf/open/floor/plasteel/grimy) "bsR" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -42767,8 +41261,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bsS" = ( /obj/effect/turf_decal/bot, /obj/machinery/computer/security, @@ -42796,8 +41289,7 @@ }, /turf/open/floor/wood{ icon_state = "wood-broken3" - }, -/area/crew_quarters/theatre) + }) "bsV" = ( /obj/structure/closet/secure_closet/security/cargo, /obj/item/crowbar, @@ -42836,8 +41328,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bsX" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -42849,8 +41340,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bsY" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -42867,15 +41357,13 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bsZ" = ( /obj/machinery/door/morgue{ name = "Relic Closet"; req_access_txt = "22" }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "bta" = ( /obj/structure/table/wood/fancy, /obj/item/book/granter/spell/smoke/lesser{ @@ -42888,8 +41376,7 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "btb" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -42905,8 +41392,7 @@ name = "off ramp"; pixel_y = 5 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "btc" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -42950,12 +41436,7 @@ dir = 8 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/chapel/office) -"btg" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/chapel/office) +/turf/open/floor/wood) "bth" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -42965,8 +41446,7 @@ /obj/structure/chair/stool/bar{ pixel_x = -8 }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/plasteel) "bti" = ( /obj/machinery/door/airlock/security/glass{ name = "Prison Yard" @@ -42992,8 +41472,7 @@ dir = 10 }, /obj/effect/landmark/start/chaplain, -/turf/open/floor/wood, -/area/chapel/office) +/turf/open/floor/wood) "btk" = ( /obj/structure/table/wood/fancy, /obj/item/clipboard, @@ -43003,8 +41482,7 @@ pixel_y = 4 }, /obj/item/lighter, -/turf/open/floor/wood, -/area/chapel/office) +/turf/open/floor/wood) "btl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ @@ -43014,8 +41492,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) +/turf/open/floor/plasteel/dark) "btm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -43024,8 +41501,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/plating) "btn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -43034,8 +41510,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/plasteel/dark) "bto" = ( /obj/effect/turf_decal/delivery, /obj/structure/bodycontainer/crematorium{ @@ -43046,8 +41521,7 @@ pixel_x = 28 }, /obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "btp" = ( /obj/structure/table/wood/fancy, /obj/effect/turf_decal/tile/neutral, @@ -43058,8 +41532,7 @@ /obj/machinery/newscaster{ pixel_y = -30 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "btr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43068,8 +41541,7 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bts" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral{ @@ -43096,8 +41568,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "btt" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -43111,11 +41582,7 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) -"btv" = ( -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "btw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -43138,8 +41605,7 @@ }, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "bty" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 @@ -43150,8 +41616,7 @@ }, /turf/open/floor/wood{ icon_state = "wood-broken6" - }, -/area/crew_quarters/fitness/recreation) + }) "btz" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -43163,18 +41628,9 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) -"btA" = ( -/turf/closed/wall, -/area/chapel/main) +/turf/open/floor/wood) "btB" = ( -/turf/open/floor/grass, -/area/chapel/main) -"btC" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/chapel/office) +/turf/open/floor/grass) "btD" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -43191,15 +41647,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) -"btE" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"btF" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/showroomfloor) "btG" = ( /obj/machinery/modular_computer/console/preset/engineering, /obj/effect/turf_decal/tile/neutral, @@ -43216,8 +41664,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "btH" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/fullgrass, @@ -43228,8 +41675,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "btI" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/ausbushes/ppflowers, @@ -43240,8 +41686,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "btJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -43251,12 +41696,10 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "btK" = ( /obj/machinery/status_display/evac, -/turf/closed/wall, -/area/crew_quarters/theatre) +/turf/closed/wall) "btL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -43266,13 +41709,6 @@ icon_state = "panelscorched" }, /area/maintenance/central) -"btM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) "btN" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -43293,8 +41729,7 @@ name = "Bar Entrance"; req_access_txt = "25" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "btQ" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -43323,8 +41758,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "btS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -43338,12 +41772,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "btT" = ( /obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "btV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43388,12 +41820,10 @@ /obj/item/toy/cards/deck{ pixel_y = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar/atrium) +/turf/open/floor/plasteel/dark) "btY" = ( /obj/structure/flora/tree/jungle, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "btZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -43408,8 +41838,7 @@ /area/security/courtroom) "bua" = ( /obj/structure/flora/junglebush/large, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "buc" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -43418,8 +41847,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bud" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/turf_decal/tile/blue{ @@ -43440,8 +41868,7 @@ dir = 4; name = "command camera" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bue" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -43449,8 +41876,7 @@ }, /obj/effect/turf_decal/bot_white, /obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "buf" = ( /obj/machinery/requests_console{ department = "Bar"; @@ -43460,12 +41886,10 @@ receive_ore_updates = 1 }, /obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "bug" = ( /obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "buh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -43479,8 +41903,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, /obj/machinery/computer/arcade, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bui" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -43497,8 +41920,7 @@ /obj/effect/turf_decal/tile/neutral, /obj/effect/landmark/start/head_of_personnel, /obj/structure/chair/office, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "buj" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -43512,8 +41934,7 @@ color = "#c45c57"; dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "buk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43524,8 +41945,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bul" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -43536,8 +41956,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bum" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral, @@ -43545,8 +41964,7 @@ dir = 1 }, /obj/item/paicard, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bun" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral, @@ -43555,14 +41973,12 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "buo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bup" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral, @@ -43574,8 +41990,7 @@ pixel_y = 4 }, /obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "buq" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral, @@ -43583,8 +41998,7 @@ dir = 1 }, /obj/item/book/lorebooks/welcome_to_gato, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bur" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 @@ -43592,8 +42006,7 @@ /obj/item/radio/intercom{ pixel_y = -28 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bus" = ( /obj/machinery/suit_storage_unit/captain, /obj/effect/turf_decal/tile/neutral, @@ -43601,8 +42014,7 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "but" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral, @@ -43612,8 +42024,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "buu" = ( /obj/structure/bookcase/random/fiction, /obj/machinery/firealarm{ @@ -43623,12 +42034,10 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "buv" = ( /obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "buw" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -43642,8 +42051,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bux" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -43665,8 +42073,7 @@ }, /turf/open/floor/wood{ icon_state = "wood-broken6" - }, -/area/crew_quarters/theatre) + }) "buz" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -43676,12 +42083,10 @@ pixel_y = -30 }, /obj/machinery/vending/snack/green, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "buA" = ( /obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/crew_quarters/bar) +/turf/closed/wall) "buB" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -43695,11 +42100,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/hydroponics) -"buC" = ( -/turf/closed/wall, -/area/library) +/turf/open/floor/plasteel) "buD" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -43716,12 +42117,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/hydroponics) -"buE" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/library) +/turf/open/floor/plasteel) "buF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -43738,20 +42134,7 @@ /obj/structure/sign/poster/contraband/clown{ pixel_y = -32 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"buG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "buH" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -43787,8 +42170,7 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/photocopier, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "buJ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -43799,8 +42181,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "buK" = ( /obj/structure/sign/poster/contraband/random{ pixel_y = 32 @@ -43821,11 +42202,7 @@ }, /obj/machinery/bookbinder, /obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/library) -"buM" = ( -/turf/open/floor/wood, -/area/library) +/turf/open/floor/plasteel/dark) "buN" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -43837,8 +42214,7 @@ /obj/item/radio/intercom{ pixel_x = 28 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "buO" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -43861,8 +42237,7 @@ dir = 4; pixel_x = -23 }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "buR" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -43910,16 +42285,14 @@ name = "Engineering Blast Doors" }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "buU" = ( /obj/machinery/door/morgue{ name = "Private Study"; req_access_txt = "37" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "buV" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -43932,8 +42305,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "buW" = ( /obj/structure/bookcase/random/religion, /obj/effect/decal/cleanable/cobweb, @@ -43942,8 +42314,7 @@ req_access = null; req_access_txt = "25" }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "buX" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral, @@ -43964,16 +42335,14 @@ dir = 8; name = "bar camera" }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "buY" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ dir = 8 }, /obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "buZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -43990,8 +42359,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, /obj/structure/chair/stool/bar/brass, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bva" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -44000,8 +42368,7 @@ dir = 8 }, /obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "bvb" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -44014,29 +42381,25 @@ dir = 1; pixel_y = -22 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bvc" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bvd" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/open/floor/wood, -/area/library) +/turf/open/floor/wood) "bve" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bvf" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -44051,15 +42414,13 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bvg" = ( /obj/structure/bookcase/random/religion, /obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bvh" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -44067,16 +42428,14 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bvi" = ( /obj/structure/bookcase/random/reference, /obj/machinery/camera{ c_tag = "Bar Shelves"; name = "bar camera" }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "bvj" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -44107,12 +42466,10 @@ pixel_y = 16; pixel_x = -18 }, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "bvl" = ( /obj/structure/bookcase/random/adult, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bvm" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -44121,8 +42478,7 @@ /obj/structure/chair/stool/bar{ pixel_x = -8 }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/plasteel) "bvn" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -44134,8 +42490,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bvo" = ( /obj/machinery/computer/secure_data{ dir = 4 @@ -44147,12 +42502,6 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/secondary/exit/departure_lounge) -"bvp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) "bvq" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -44167,14 +42516,12 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bvr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 }, -/turf/open/floor/wood, -/area/library) +/turf/open/floor/wood) "bvs" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -44193,8 +42540,7 @@ pixel_y = 4; pixel_x = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bvt" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -44211,8 +42557,7 @@ dir = 8; pixel_x = 32 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bvu" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -44223,8 +42568,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = -28 }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bvv" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -44255,31 +42599,23 @@ /obj/machinery/computer/holodeck{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) +/turf/open/floor/plasteel) "bvx" = ( /obj/machinery/pool/filter{ pixel_y = 24 }, -/turf/open/pool, -/area/crew_quarters/fitness/pool) +/turf/open/pool) "bvy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Art Cabinet" }, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bvz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) -"bvA" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/library) +/turf/open/floor/plasteel/yellowsiding) "bvB" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -44303,8 +42639,7 @@ }, /turf/open/floor/plasteel/yellowsiding/corner{ dir = 8 - }, -/area/crew_quarters/fitness/pool) + }) "bvD" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -44319,8 +42654,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bvE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -44341,8 +42675,7 @@ pixel_y = 3; pixel_x = 16 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bvF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -44352,8 +42685,7 @@ dir = 1 }, /obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bvG" = ( /obj/structure/mirror{ pixel_y = 28 @@ -44376,8 +42708,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bvH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -44389,8 +42720,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bvI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 10 @@ -44402,8 +42732,7 @@ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bvJ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -44422,8 +42751,7 @@ dir = 8 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/library) +/turf/open/floor/wood) "bvM" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -44432,8 +42760,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "bvN" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -44448,8 +42775,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bvO" = ( /obj/structure/mirror{ pixel_y = 28 @@ -44473,16 +42799,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bvP" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "bvQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -44498,8 +42822,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 5 }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "bvS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 @@ -44507,8 +42830,7 @@ /obj/effect/landmark/start/clown, /turf/open/floor/wood{ icon_state = "wood-broken7" - }, -/area/crew_quarters/theatre) + }) "bvT" = ( /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt, @@ -44522,28 +42844,21 @@ req_access_txt = "27" }, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "bvU" = ( /obj/structure/bookcase/random/adult, /obj/machinery/firealarm{ dir = 4; pixel_x = -24 }, -/turf/open/floor/plasteel/dark, -/area/library) -"bvV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bvW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "Shower_2Privacy"; name = "Shower 2 Privacy Shutter" }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plating) "bvX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -44551,8 +42866,7 @@ }, /turf/open/floor/wood{ icon_state = "wood-broken5" - }, -/area/library) + }) "bvY" = ( /obj/structure/closet/secure_closet/bar{ req_access_txt = "25" @@ -44576,8 +42890,7 @@ pixel_y = -30 }, /obj/item/book/manual/blubbery_bartender, -/turf/open/floor/wood, -/area/crew_quarters/bar) +/turf/open/floor/wood) "bvZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -44585,8 +42898,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/wood, -/area/library) +/turf/open/floor/wood) "bwa" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -44597,8 +42909,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bwb" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -44612,8 +42923,7 @@ color = "#c45c57"; dir = 8 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "bwc" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, @@ -44622,8 +42932,7 @@ /obj/structure/noticeboard{ pixel_y = 30 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "bwf" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -44666,8 +42975,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bwj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -44678,8 +42986,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bwk" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -44761,21 +43068,18 @@ }, /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bwr" = ( /obj/machinery/hydroponics/soil, /obj/item/seeds/wheat, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bws" = ( /turf/closed/wall/rust, /area/security/detectives_office) "bwt" = ( /obj/machinery/hydroponics/soil, /obj/item/seeds/poppy, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bwu" = ( /turf/closed/wall/rust, /area/security/processing) @@ -44783,8 +43087,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "bww" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 6 @@ -44796,15 +43099,13 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bwx" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "bwy" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -44817,8 +43118,7 @@ dir = 4 }, /obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bwA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -44850,8 +43150,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bwC" = ( /obj/structure/table/wood/fancy, /obj/effect/turf_decal/tile/neutral, @@ -44865,8 +43164,7 @@ dir = 4 }, /obj/item/flashlight/lantern, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bwD" = ( /obj/machinery/light_switch{ pixel_x = -24 @@ -44881,8 +43179,7 @@ }, /obj/structure/disposalpipe/trunk, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "bwE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -44906,8 +43203,7 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "bwF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -44938,8 +43234,7 @@ dir = 4; name = "hydroponics camera" }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bwH" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -44953,8 +43248,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bwI" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44973,13 +43267,11 @@ /obj/structure/flora/ausbushes/reedbush{ pixel_y = 5 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bwK" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bwL" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/ausbushes/grassybush, @@ -44988,8 +43280,7 @@ pixel_x = 32; pixel_y = 32 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bwM" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -45004,13 +43295,11 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bwN" = ( /turf/open/floor/plasteel/chapel{ dir = 4 - }, -/area/chapel/main) + }) "bwO" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -45025,8 +43314,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bwP" = ( /obj/structure/bookcase/random/religion, /obj/effect/turf_decal/tile/neutral{ @@ -45036,8 +43324,7 @@ dir = 1; pixel_y = -26 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bwQ" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/effect/turf_decal/delivery, @@ -45049,8 +43336,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bwR" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -45067,8 +43353,7 @@ dir = 4; name = "chapel camera" }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bwS" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -45080,13 +43365,11 @@ dir = 1 }, /mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bwT" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bwV" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -45126,14 +43409,12 @@ }, /turf/open/floor/plasteel/chapel{ dir = 8 - }, -/area/chapel/main) + }) "bwZ" = ( /obj/structure/chair/bench/left{ dir = 1 }, -/turf/open/floor/plasteel/chapel, -/area/chapel/main) +/turf/open/floor/plasteel/chapel) "bxa" = ( /obj/structure/bookcase/random/religion, /obj/effect/turf_decal/tile/neutral{ @@ -45142,8 +43423,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bxb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -45194,8 +43474,7 @@ }, /turf/open/floor/plasteel/chapel{ dir = 1 - }, -/area/chapel/main) + }) "bxf" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/fullgrass, @@ -45210,8 +43489,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bxg" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral{ @@ -45222,8 +43500,7 @@ }, /obj/item/clipboard, /obj/item/storage/crayons, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bxh" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/ausbushes/ppflowers, @@ -45231,8 +43508,7 @@ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bxi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -45244,8 +43520,7 @@ /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/machinery/biogenerator, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bxj" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -45269,8 +43544,7 @@ pixel_y = 28 }, /obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/lawoffice) +/turf/open/floor/plasteel/dark) "bxl" = ( /obj/structure/filingcabinet, /obj/effect/turf_decal/bot, @@ -45291,8 +43565,7 @@ /area/security/checkpoint/supply) "bxm" = ( /obj/structure/sign/plaques/atmos, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "bxn" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall, @@ -45306,8 +43579,7 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bxp" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/wall, @@ -45348,8 +43620,7 @@ /obj/effect/landmark/start/cargo_technician, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bxt" = ( /obj/structure/flora/grass/jungle, /obj/structure/flora/ausbushes/ppflowers, @@ -45360,8 +43631,7 @@ dir = 8 }, /obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bxu" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral{ @@ -45379,8 +43649,7 @@ pixel_y = 4 }, /obj/item/reagent_containers/food/snacks/grown/poppy, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bxv" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -45392,20 +43661,14 @@ icon_state = "vent_map_on-3"; dir = 1 }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel) "bxw" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ dir = 4 }, /obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bxx" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel) "bxy" = ( /obj/structure/grille, /obj/effect/decal/cleanable/dirt, @@ -45443,29 +43706,25 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/chapel{ dir = 1 - }, -/area/chapel/main) + }) "bxC" = ( /obj/structure/table, /obj/item/clipboard, /obj/item/paper/fluff/holodeck/disclaimer, /obj/item/pen, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) +/turf/open/floor/plasteel) "bxD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bxE" = ( /obj/structure/girder, /turf/open/floor/plating, /area/space/nearstation) "bxF" = ( /obj/structure/table_frame, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "bxG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -45497,8 +43756,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bxI" = ( /obj/structure/closet{ name = "beekeeping wardrobe" @@ -45519,12 +43777,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"bxJ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "bxK" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -45546,16 +43799,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ icon_state = "panelscorched" - }, -/area/engine/engineering) + }) "bxM" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/ywflowers, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/grass, -/area/chapel/main) +/turf/open/floor/grass) "bxN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -45564,19 +43815,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/yellowsiding{ dir = 8 - }, -/area/crew_quarters/fitness/pool) + }) "bxO" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bxP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel/chapel{ dir = 4 - }, -/area/chapel/main) + }) "bxQ" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -45588,8 +43836,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bxR" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -45604,8 +43851,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bxS" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -45620,8 +43866,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bxU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 @@ -45630,8 +43875,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/yellowsiding/corner, -/area/crew_quarters/fitness/pool) +/turf/open/floor/plasteel/yellowsiding/corner) "bxV" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -45661,16 +43905,11 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/port) -"bxX" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall, -/area/chapel/main) "bxY" = ( /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/chapel{ dir = 1 - }, -/area/chapel/main) + }) "bxZ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor{ @@ -45685,8 +43924,7 @@ req_access_txt = "11" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bya" = ( /obj/structure/table, /obj/item/hand_labeler, @@ -45704,8 +43942,7 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/miningoffice) +/turf/open/floor/plasteel/dark) "byb" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -45722,8 +43959,7 @@ dir = 1; pixel_y = -22 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "byc" = ( /obj/structure/bookcase/random/religion, /obj/effect/turf_decal/tile/neutral{ @@ -45738,12 +43974,10 @@ /obj/structure/sign/poster/official/help_others{ pixel_x = -32 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "byd" = ( /obj/structure/sign/departments/holy, -/turf/closed/wall, -/area/chapel/main) +/turf/closed/wall) "bye" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -45762,8 +43996,7 @@ pixel_x = 6; pixel_y = 6 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "byf" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -45836,8 +44069,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "bym" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -45849,8 +44081,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "byn" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -45859,8 +44090,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "byo" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/yellow, @@ -45899,8 +44129,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "byq" = ( /obj/machinery/flasher{ id = "AI"; @@ -45927,8 +44156,7 @@ icon_state = "4-8" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bys" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -45946,8 +44174,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "byt" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -45965,8 +44192,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "byu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -46013,8 +44239,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "byx" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -46041,8 +44266,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "byy" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall/rust, @@ -46110,8 +44334,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "byE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -46124,8 +44347,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "byF" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/clothing/suit/hooded/wintercoat/engineering, @@ -46133,8 +44355,7 @@ pixel_y = 30 }, /obj/item/pickaxe/mini, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "byG" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -46155,8 +44376,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "byH" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -46169,14 +44389,12 @@ }, /obj/effect/landmark/start/cargo_technician, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "byI" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "byJ" = ( /obj/effect/turf_decal/tile/brown{ dir = 4 @@ -46188,8 +44406,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "byK" = ( /obj/effect/turf_decal/caution/stand_clear, /obj/effect/turf_decal/tile/neutral, @@ -46197,11 +44414,10 @@ dir = 4 }, /obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "byM" = ( /obj/structure/table, -/obj/item/aiModule/reset, +/obj/item/ai_module/reset, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/machinery/flasher{ id = "AI"; @@ -46241,7 +44457,7 @@ lootcount = 2; lootdoubles = 0 }, -/obj/item/aiModule/supplied/oxygen{ +/obj/item/ai_module/supplied/oxygen{ pixel_x = -3; pixel_y = -3 }, @@ -46268,8 +44484,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "byR" = ( /obj/item/stack/ore/calorite{ amount = 3 @@ -46292,8 +44507,7 @@ }, /turf/open/floor/plasteel/yellowsiding{ dir = 8 - }, -/area/crew_quarters/fitness/pool) + }) "byV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -46315,8 +44529,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "byX" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -46334,8 +44547,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "byY" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -46347,13 +44559,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "byZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/closet/wardrobe/black, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bza" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -46378,11 +44588,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bzb" = ( /obj/structure/table, -/obj/item/aiModule/supplied/freeform, +/obj/item/ai_module/supplied/freeform, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -46410,8 +44619,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bzg" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -46431,8 +44639,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/dark) "bzh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -46441,8 +44648,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bzi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -46455,8 +44661,7 @@ /obj/item/radio/intercom{ pixel_y = -28 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bzj" = ( /obj/machinery/door/window/brigdoor{ dir = 4; @@ -46529,8 +44734,7 @@ }, /obj/machinery/light/small, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bzo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -46558,8 +44762,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bzq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -46572,7 +44775,7 @@ /area/ai_monitored/turret_protected/ai_upload) "bzr" = ( /obj/structure/table, -/obj/item/aiModule/supplied/quarantine, +/obj/item/ai_module/supplied/quarantine, /obj/machinery/flasher{ id = "AI"; name = "Meatbag Pacifier"; @@ -46603,8 +44806,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bzt" = ( /obj/machinery/chem_master/condimaster{ desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; @@ -46612,8 +44814,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bzu" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -46625,8 +44826,7 @@ /obj/structure/sign/poster/official/no_erp{ pixel_y = -32 }, -/turf/closed/wall, -/area/crew_quarters/locker) +/turf/closed/wall) "bzv" = ( /obj/machinery/door/airlock/maintenance{ name = "security maintenance"; @@ -46667,8 +44867,7 @@ /obj/effect/turf_decal/tile/purple{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bzz" = ( /obj/structure/table/wood, /obj/item/storage/briefcase, @@ -46682,8 +44881,7 @@ icon_state = "2-4" }, /obj/effect/landmark/start/captain, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "bzB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -46697,8 +44895,7 @@ /obj/structure/disposalpipe/junction/flip{ dir = 4 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "bzC" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/tile/neutral, @@ -46706,8 +44903,7 @@ dir = 8 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bzD" = ( /obj/structure/flora/ausbushes/palebush, /turf/open/floor/plating/asteroid/airless{ @@ -46736,9 +44932,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/security/brig) -"bzG" = ( -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) "bzH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ @@ -46748,8 +44941,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "bzI" = ( /obj/structure/table, /obj/effect/turf_decal/bot, @@ -46769,8 +44961,7 @@ name = "Emergency Storage"; req_access_txt = "19" }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bzJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -46788,8 +44979,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bzK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -46811,8 +45001,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bzM" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -46821,8 +45010,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "bzN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -46852,15 +45040,13 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "bzQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/yellowsiding{ dir = 4 - }, -/area/crew_quarters/fitness/pool) + }) "bzR" = ( /turf/closed/wall/mineral/calorite, /area/space/nearstation) @@ -46871,8 +45057,7 @@ /area/space/nearstation) "bzT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "bzU" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -46890,8 +45075,7 @@ /obj/item/storage/box/lights/mixed{ pixel_y = 2 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bzV" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -46915,8 +45099,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bzX" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -46948,8 +45131,7 @@ /obj/machinery/light_switch{ pixel_y = 24 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bzY" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -46970,8 +45152,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bAa" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -46983,8 +45164,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bAb" = ( /obj/effect/turf_decal/bot, /obj/machinery/hydroponics/constructable, @@ -47058,8 +45238,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bAk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, @@ -47085,8 +45264,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bAm" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall, @@ -47101,8 +45279,7 @@ dir = 1 }, /obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bAo" = ( /obj/structure/window/reinforced{ dir = 8 @@ -47154,8 +45331,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bAt" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -47179,8 +45355,7 @@ }, /obj/effect/turf_decal/tile/blue, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bAv" = ( /obj/structure/girder, /obj/structure/grille/broken, @@ -47201,15 +45376,6 @@ luminosity = 2 }, /area/ai_monitored/turret_protected/ai_upload) -"bAx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/fitness/recreation) "bAy" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -47224,14 +45390,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bAz" = ( /obj/structure/table, /obj/machinery/light, /obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) +/turf/open/floor/plasteel) "bAA" = ( /obj/machinery/firealarm{ dir = 8; @@ -47244,8 +45408,7 @@ }, /turf/open/floor/plasteel/yellowsiding{ dir = 8 - }, -/area/crew_quarters/fitness/pool) + }) "bAB" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -47277,8 +45440,7 @@ /obj/structure/chair/office{ dir = 8 }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bAD" = ( /obj/item/radio/intercom{ pixel_x = 28; @@ -47287,8 +45449,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/wood{ icon_state = "wood-broken4" - }, -/area/chapel/office) + }) "bAE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47329,8 +45490,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bAH" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -47346,8 +45506,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bAI" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -47369,8 +45528,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bAJ" = ( /obj/machinery/computer/secure_data, /obj/machinery/requests_console{ @@ -47405,8 +45563,7 @@ icon_state = "1-8" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bAL" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -47421,8 +45578,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bAM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -47445,8 +45601,7 @@ /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/yellow, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bAQ" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -47467,8 +45622,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bAR" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -47487,8 +45641,7 @@ pixel_x = 28; pixel_y = -28 }, -/turf/open/floor/plasteel/showroomfloor, -/area/library) +/turf/open/floor/plasteel/showroomfloor) "bAS" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -47507,8 +45660,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/showroomfloor, -/area/library) +/turf/open/floor/plasteel/showroomfloor) "bAT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -47526,8 +45678,7 @@ name = "on ramp"; pixel_y = 6 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bAV" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -47537,8 +45688,7 @@ }, /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/janitor) +/turf/open/floor/plating) "bAW" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -47546,8 +45696,7 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bAX" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -47567,8 +45716,7 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bAZ" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; @@ -47592,8 +45740,7 @@ home_destination = "QM #3"; suffix = "#3" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bBa" = ( /obj/machinery/light/small{ dir = 4 @@ -47615,8 +45762,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bBc" = ( /obj/structure/cable{ icon_state = "1-2" @@ -47633,8 +45779,7 @@ /obj/machinery/newscaster{ pixel_x = -30 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "bBe" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -47675,8 +45820,7 @@ /obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bBi" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -47693,8 +45837,7 @@ name = "Mix to Filter" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "bBj" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -47805,8 +45948,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "bBu" = ( /obj/machinery/light_switch{ pixel_y = -24 @@ -47816,8 +45958,7 @@ }, /turf/open/floor/plasteel/yellowsiding{ dir = 1 - }, -/area/crew_quarters/fitness/pool) + }) "bBv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -47837,8 +45978,7 @@ }, /turf/open/floor/plasteel/yellowsiding{ dir = 1 - }, -/area/crew_quarters/fitness/pool) + }) "bBx" = ( /obj/machinery/status_display/ai{ pixel_y = -32 @@ -47853,8 +45993,7 @@ }, /turf/open/floor/plasteel/yellowsiding{ dir = 1 - }, -/area/crew_quarters/fitness/pool) + }) "bBy" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall, @@ -47945,8 +46084,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "bBG" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -47959,8 +46097,7 @@ req_access_txt = "20" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "bBI" = ( /obj/machinery/door/airlock/external{ name = "Prison External Airlock"; @@ -48000,8 +46137,7 @@ /obj/machinery/newscaster{ pixel_x = -30 }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bBL" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/brown, @@ -48023,8 +46159,7 @@ pixel_x = -24; pixel_y = -32 }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bBM" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -48049,8 +46184,7 @@ /obj/effect/turf_decal/box/corners{ dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bBN" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -48065,16 +46199,14 @@ req_access_txt = "50" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bBO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "Shower_1Privacy"; name = "Shower 1 Privacy Shutter" }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plating) "bBP" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -48090,8 +46222,7 @@ name = "Mail Chute"; req_access_txt = "50" }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) +/turf/open/floor/plasteel) "bBQ" = ( /obj/structure/table/glass, /obj/machinery/reagentgrinder{ @@ -48101,8 +46232,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bBR" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -48120,8 +46250,7 @@ name = "Tool Storage RC"; pixel_x = -30 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "bBS" = ( /obj/structure/cable{ icon_state = "2-8" @@ -48154,8 +46283,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bBU" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -48254,8 +46382,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bCd" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -48294,8 +46421,7 @@ /obj/machinery/newscaster{ pixel_y = -30 }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bCg" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -48353,8 +46479,7 @@ /obj/machinery/light_switch{ pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "bCl" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -48368,8 +46493,7 @@ /obj/item/stack/cable_coil, /obj/item/storage/belt/utility, /obj/item/crowbar/red, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "bCm" = ( /obj/structure/cable{ icon_state = "1-4" @@ -48398,8 +46522,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) +/turf/open/floor/plasteel/dark) "bCo" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/delivery, @@ -48412,8 +46535,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "bCp" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -48434,8 +46556,7 @@ /obj/item/radio{ pixel_y = 4 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "bCq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48449,8 +46570,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/wood, -/area/lawoffice) +/turf/open/floor/wood) "bCr" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -48500,8 +46620,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "bCw" = ( /obj/item/clothing/head/helmet/justice/escape{ name = "justice helmet" @@ -48523,8 +46642,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "bCy" = ( /obj/structure/cable{ icon_state = "2-8" @@ -48538,8 +46656,7 @@ /area/security/courtroom) "bCA" = ( /obj/structure/sign/departments/engineering, -/turf/closed/wall, -/area/storage/primary) +/turf/closed/wall) "bCB" = ( /obj/machinery/computer/cargo{ dir = 4 @@ -48547,17 +46664,10 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) +/turf/open/floor/carpet) "bCC" = ( /obj/machinery/status_display/ai, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bCE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) +/turf/closed/wall/r_wall) "bCF" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -48566,15 +46676,13 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bCG" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "External Gas to Loop" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "bCH" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -48617,15 +46725,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) -"bCJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) +/turf/open/floor/wood) "bCK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -48649,8 +46749,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "bCL" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -48669,11 +46768,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bCM" = ( -/turf/closed/wall, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "bCN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -48694,8 +46789,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bCO" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -48713,15 +46807,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bCP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bCR" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral, @@ -48736,8 +46822,7 @@ dir = 4; pixel_x = -26 }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bCS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 10 @@ -48760,8 +46845,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bCT" = ( /obj/effect/turf_decal/bot, /obj/structure/table, @@ -48774,8 +46858,7 @@ pixel_y = 2 }, /obj/item/flashlight/flare, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bCU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -48789,8 +46872,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bCV" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -48804,8 +46886,7 @@ /obj/item/radio/intercom{ pixel_x = 28 }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bCW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc{ @@ -48828,8 +46909,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bCX" = ( /obj/structure/cable{ icon_state = "4-8" @@ -48838,8 +46918,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "bCY" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -48853,8 +46932,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bCZ" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -48868,8 +46946,7 @@ }, /obj/item/stock_parts/cell/high, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "bDa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48878,21 +46955,13 @@ dir = 8 }, /obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "bDb" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 5 }, /obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bDc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/plating) "bDd" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral, @@ -48903,27 +46972,20 @@ /obj/structure/sign/warning/securearea{ pixel_x = -32 }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bDe" = ( /obj/effect/turf_decal/bot, /obj/structure/tank_dispenser/oxygen{ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bDf" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, /obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bDg" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) +/turf/open/floor/plating) "bDh" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -48987,8 +47049,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bDn" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/cardboard, @@ -49015,8 +47076,7 @@ /obj/item/radio/intercom{ pixel_y = 22 }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "bDq" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -49032,15 +47092,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bDr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "bDs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -49093,23 +47145,18 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "bDw" = ( /obj/effect/turf_decal/tile/neutral, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"bDx" = ( -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) "bDy" = ( /obj/effect/turf_decal/bot, /obj/machinery/holopad, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bDz" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -49132,8 +47179,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "bDA" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -49144,15 +47190,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bDB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bDC" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -49164,14 +47202,12 @@ name = "command camera" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bDD" = ( /obj/structure/table, /obj/item/storage/toolbox/electrical, /obj/item/multitool, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bDE" = ( /obj/structure/table, /obj/item/clothing/gloves/color/yellow, @@ -49180,8 +47216,7 @@ pixel_y = 6 }, /obj/item/stock_parts/cell/high/plus, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bDF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/structure/cable{ @@ -49196,8 +47231,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bDG" = ( /obj/structure/cable{ icon_state = "1-8" @@ -49208,8 +47242,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/item/beacon, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bDH" = ( /obj/structure/cable{ icon_state = "0-2" @@ -49218,10 +47251,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/central) -"bDI" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/storage/tech) "bDJ" = ( /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/watertank, @@ -49243,8 +47272,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bDL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -49292,8 +47320,7 @@ dir = 8; pixel_x = 26 }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "bDO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -49306,8 +47333,7 @@ /obj/machinery/light_switch{ pixel_x = -24 }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "bDP" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/engineering, @@ -49324,8 +47350,7 @@ name = "engineering camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "bDQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/grille_or_trash, @@ -49337,23 +47362,21 @@ /obj/machinery/light/floor, /turf/open/floor/engine/co2{ initial_gas_mix = "co2=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "bDS" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, /obj/item/aicard, -/obj/item/aiModule/reset, +/obj/item/ai_module/reset, /obj/item/assembly/flash/handheld, /obj/item/assembly/flash/handheld, /obj/machinery/airalarm{ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) +/turf/open/floor/plasteel/dark) "bDT" = ( /obj/structure/cable{ icon_state = "1-4" @@ -49409,8 +47432,7 @@ /obj/effect/spawner/lootdrop/techstorage/command, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/storage/tech) + }) "bDY" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/RnD_secure, @@ -49420,8 +47442,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/storage/tech) + }) "bDZ" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/techstorage/AI, @@ -49431,8 +47452,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/storage/tech) + }) "bEb" = ( /obj/structure/cable{ icon_state = "0-4" @@ -49487,8 +47507,7 @@ pixel_y = -24 }, /mob/living/simple_animal/pet/fox/Renault, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "bEf" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -49561,8 +47580,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "bEk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/effect/decal/cleanable/dirt, @@ -49576,8 +47594,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bEl" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -49587,8 +47604,7 @@ /obj/effect/turf_decal/loading_area{ dir = 4 }, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bEm" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -49604,8 +47620,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bEn" = ( /obj/structure/cable{ icon_state = "1-4" @@ -49719,8 +47734,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "bEy" = ( /obj/effect/turf_decal/loading_area{ dir = 4 @@ -49732,8 +47746,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "bEz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -49818,8 +47831,7 @@ "bEJ" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "bEK" = ( /obj/item/clothing/neck/petcollar/calorite, /turf/open/floor/mineral/calorite/strong, @@ -49842,8 +47854,7 @@ id = "captain_escape"; name = "Tactical Relocation Shutter" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) +/turf/open/floor/plasteel/dark) "bEN" = ( /obj/structure/cable{ icon_state = "2-4" @@ -49883,8 +47894,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bEP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49895,14 +47905,12 @@ /obj/machinery/door/airlock/grunge{ name = "Recreation Area" }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/pool) +/turf/open/floor/wood) "bER" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/yellowsiding{ dir = 4 - }, -/area/crew_quarters/fitness/pool) + }) "bES" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -49985,8 +47993,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bFc" = ( /obj/structure/sign/warning/fire, /turf/closed/wall, @@ -50048,8 +48055,7 @@ /obj/effect/turf_decal/bot{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bFi" = ( /obj/structure/sign/warning/electricshock{ pixel_y = -32 @@ -50065,8 +48071,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "bFk" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, @@ -50204,8 +48209,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "bFw" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 24 @@ -50232,8 +48236,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bFy" = ( /obj/effect/turf_decal/delivery, /obj/machinery/portable_atmospherics/scrubber/huge, @@ -50244,8 +48247,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bFA" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -50262,8 +48264,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bFB" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -50315,8 +48316,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bFE" = ( /obj/structure/cable{ icon_state = "1-8" @@ -50336,14 +48336,12 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bFG" = ( /obj/machinery/light/floor, /turf/open/floor/engine/plasma{ initial_gas_mix = "plasma=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "bFH" = ( /obj/machinery/gulag_teleporter, /obj/effect/turf_decal/box, @@ -50358,8 +48356,7 @@ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bFJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -50371,8 +48368,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bFK" = ( /obj/structure/table, /obj/machinery/recharger, @@ -50415,8 +48411,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bFN" = ( /obj/machinery/airalarm{ dir = 1; @@ -50427,8 +48422,7 @@ }, /turf/open/floor/plasteel/yellowsiding/corner{ dir = 4 - }, -/area/crew_quarters/fitness/pool) + }) "bFO" = ( /obj/machinery/bluespace_beacon, /obj/effect/turf_decal/tile/blue, @@ -50436,15 +48430,13 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bFP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "bFQ" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, @@ -50491,8 +48483,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bFW" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -50513,8 +48504,7 @@ name = "Hydroponics Lockers"; req_access_txt = "35" }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bFX" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -50542,8 +48532,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bFY" = ( /obj/structure/girder, /obj/structure/grille, @@ -50599,8 +48588,7 @@ "bGe" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "bGf" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/cardboard, @@ -50667,8 +48655,7 @@ /obj/item/wirecutters, /obj/item/reagent_containers/glass/bucket, /obj/item/circuitboard/machine/biogenerator, -/turf/open/floor/plasteel/dark, -/area/hydroponics) +/turf/open/floor/plasteel/dark) "bGl" = ( /obj/machinery/light/small{ dir = 8 @@ -50709,8 +48696,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "bGp" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -50727,8 +48713,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bGq" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -50781,8 +48766,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bGu" = ( /obj/structure/cable{ icon_state = "1-8" @@ -50798,16 +48782,14 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bGw" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/teleporter) +/turf/open/floor/plasteel) "bGx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -50882,11 +48864,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bGB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -50897,13 +48875,11 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ dir = 1 }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bGC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "bGD" = ( /obj/machinery/computer/security/labor, /obj/effect/turf_decal/tile/neutral{ @@ -50939,8 +48915,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bGF" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50952,8 +48927,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bGG" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -50969,8 +48943,7 @@ dir = 1; pixel_y = -24 }, -/turf/open/pool, -/area/crew_quarters/fitness/pool) +/turf/open/pool) "bGJ" = ( /obj/machinery/power/apc{ area = "/area/maintenance/aft"; @@ -51076,9 +49049,6 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/machinery/atm{ - pixel_y = 30 - }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) "bGQ" = ( @@ -51104,8 +49074,7 @@ /turf/open/floor/plasteel, /area/security/processing) "bGT" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) +/turf/open/pool) "bGU" = ( /obj/effect/turf_decal/bot, /obj/structure/grille, @@ -51178,8 +49147,7 @@ /area/maintenance/port/aft) "bHb" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) +/turf/open/floor/carpet) "bHc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, @@ -51211,8 +49179,7 @@ name = "Engineering"; req_access_txt = "10" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bHf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ @@ -51232,8 +49199,7 @@ dir = 4 }, /obj/machinery/computer/arcade, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/plasteel/dark) "bHh" = ( /obj/effect/decal/cleanable/dirt, /obj/item/wrench, @@ -51311,8 +49277,7 @@ /area/hallway/primary/aft) "bHn" = ( /obj/machinery/status_display/ai, -/turf/closed/wall, -/area/storage/tech) +/turf/closed/wall) "bHo" = ( /obj/structure/cable{ icon_state = "1-8" @@ -51449,8 +49414,7 @@ dir = 5 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) +/turf/open/floor/plasteel/yellowsiding) "bHy" = ( /obj/effect/turf_decal/box, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ @@ -51493,8 +49457,7 @@ /area/security/warden) "bHB" = ( /obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/bridge) +/turf/closed/wall) "bHC" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red{ @@ -51538,8 +49501,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/closed/wall, -/area/quartermaster/sorting) +/turf/closed/wall) "bHF" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -51556,15 +49518,13 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bHG" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/fitness/pool) +/turf/open/floor/wood) "bHH" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51593,8 +49553,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel/dark) "bHJ" = ( /obj/effect/turf_decal/caution{ pixel_y = -12 @@ -51717,8 +49676,7 @@ /area/hallway/primary/starboard) "bHR" = ( /obj/structure/disposalpipe/junction, -/turf/closed/wall, -/area/quartermaster/storage) +/turf/closed/wall) "bHS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/effect/turf_decal/tile/neutral, @@ -51788,8 +49746,7 @@ dir = 4 }, /obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "bIc" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/dark, @@ -51798,16 +49755,14 @@ /obj/machinery/light/floor, /turf/open/floor/engine/n2o{ initial_gas_mix = "n2o=1000;TEMP=293.15" - }, -/area/engine/atmos) + }) "bIe" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/layer_manifold, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "bIf" = ( /obj/structure/table, /obj/item/restraints/handcuffs, @@ -51894,8 +49849,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/closed/wall, -/area/quartermaster/storage) +/turf/closed/wall) "bIn" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -51949,8 +49903,7 @@ /area/maintenance/port/aft) "bIq" = ( /obj/machinery/status_display/shuttle, -/turf/closed/wall, -/area/storage/tech) +/turf/closed/wall) "bIr" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -52007,12 +49960,10 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "bIw" = ( /obj/machinery/light/floor, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) +/turf/open/floor/engine/vacuum) "bIx" = ( /obj/effect/turf_decal/tile/green{ dir = 1 @@ -52024,8 +49975,7 @@ dir = 1 }, /obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "bIy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -52092,8 +50042,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bID" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -52144,8 +50093,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bIH" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52160,8 +50108,7 @@ /obj/machinery/door/airlock/grunge{ name = "Recreation Area" }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/pool) +/turf/open/floor/wood) "bII" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3, @@ -52173,8 +50120,7 @@ name = "Atmospherics Blast Door" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1, -/turf/open/floor/plating, -/area/engine/break_room) +/turf/open/floor/plating) "bIJ" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -52224,8 +50170,7 @@ /obj/machinery/newscaster{ pixel_x = -30 }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel) "bIM" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -52276,8 +50221,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bIR" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -52322,11 +50266,7 @@ }, /turf/open/floor/engine/o2{ initial_gas_mix = "o2=1000;TEMP=293.15" - }, -/area/engine/atmos) -"bIV" = ( -/turf/closed/wall, -/area/crew_quarters/locker) + }) "bIW" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -52347,8 +50287,7 @@ name = "drain" }, /obj/structure/chair/sofa/right, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "bIY" = ( /obj/machinery/light{ dir = 1 @@ -52358,8 +50297,7 @@ name = "drain" }, /obj/structure/chair/sofa, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "bIZ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -52367,8 +50305,7 @@ }, /obj/machinery/vending/autodrobe, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bJb" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -52476,8 +50413,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bJj" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -52497,14 +50433,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"bJk" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/locker) -"bJl" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/storage/tech) "bJm" = ( /obj/structure/cable{ icon_state = "4-8" @@ -52539,8 +50467,7 @@ dir = 4 }, /obj/structure/table, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bJo" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -52552,8 +50479,7 @@ pixel_y = 4 }, /obj/item/storage/toolbox/emergency, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bJp" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -52567,8 +50493,7 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bJq" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -52582,8 +50507,7 @@ dir = 4 }, /obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bJr" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -52602,14 +50526,12 @@ pixel_y = 8 }, /obj/item/cane, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bJs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bJt" = ( /obj/effect/turf_decal/box, /obj/machinery/shower{ @@ -52643,8 +50565,7 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bJu" = ( /obj/structure/cable{ icon_state = "1-8" @@ -52738,8 +50659,7 @@ }, /obj/effect/decal/cleanable/oil, /obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "bJE" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/lavendergrass, @@ -52814,8 +50734,7 @@ }, /obj/item/hand_labeler, /obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/library) +/turf/open/floor/plasteel/dark) "bJI" = ( /obj/machinery/vending/cola/random, /obj/effect/turf_decal/bot, @@ -52912,8 +50831,7 @@ pixel_y = 24; specialfunctions = 4 }, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "bJR" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -52939,8 +50857,7 @@ pixel_x = -23 }, /obj/effect/landmark/start/assistant, -/turf/open/floor/carpet/orange, -/area/crew_quarters/locker) +/turf/open/floor/carpet/orange) "bJT" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -52963,8 +50880,7 @@ }, /turf/open/floor/wood{ icon_state = "wood-broken5" - }, -/area/crew_quarters/locker) + }) "bJV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ @@ -52980,8 +50896,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bJW" = ( /obj/effect/turf_decal/delivery, /obj/machinery/space_heater, @@ -53009,8 +50924,7 @@ specialfunctions = 4 }, /obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "bJZ" = ( /obj/machinery/light/small{ dir = 4 @@ -53018,8 +50932,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/carpet/orange, -/area/crew_quarters/locker) +/turf/open/floor/carpet/orange) "bKa" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -53045,20 +50958,16 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "bKd" = ( -/turf/open/floor/carpet/orange, -/area/crew_quarters/locker) +/turf/open/floor/carpet/orange) "bKf" = ( /obj/structure/sign/poster/contraband/revolver, -/turf/closed/wall, -/area/crew_quarters/locker) +/turf/closed/wall) "bKg" = ( /turf/open/floor/wood{ icon_state = "wood-broken3" - }, -/area/crew_quarters/locker) + }) "bKh" = ( /obj/structure/bed, /obj/machinery/airalarm{ @@ -53069,8 +50978,7 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/wood{ icon_state = "wood-broken3" - }, -/area/crew_quarters/locker) + }) "bKi" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -53094,8 +51002,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "bKk" = ( /obj/machinery/button/door{ id = "Cabin_4Privacy"; @@ -53108,8 +51015,7 @@ pixel_x = 1; pixel_y = 5 }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/locker) +/turf/open/floor/carpet/purple) "bKl" = ( /obj/structure/flora/rock/pile, /turf/open/floor/plating/asteroid/airless{ @@ -53140,8 +51046,7 @@ pixel_y = 4 }, /obj/item/storage/backpack, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bKo" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -53159,19 +51064,16 @@ }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "bKq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/open/floor/plating/airless{ initial_gas_mix = "o2=14;n2=23;TEMP=300" - }, -/area/crew_quarters/locker) + }) "bKr" = ( /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bKs" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -53262,8 +51164,7 @@ icon_state = "4-8" }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bKy" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -53348,8 +51249,7 @@ dir = 4 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "bKD" = ( /obj/structure/closet/boxinggloves, /obj/structure/sign/poster/official/random{ @@ -53359,11 +51259,9 @@ /obj/item/toy/poolnoodle/red, /obj/item/toy/poolnoodle/yellow, /obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/polychromic/bikini, /obj/item/reagent_containers/rag/towel, /obj/item/reagent_containers/rag/towel, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bKE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -53375,8 +51273,7 @@ /area/hallway/primary/central) "bKF" = ( /obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "bKG" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -53390,8 +51287,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bKH" = ( /obj/structure/closet/masks, /obj/machinery/status_display/evac{ @@ -53401,11 +51297,9 @@ /obj/item/toy/poolnoodle/red, /obj/item/toy/poolnoodle/yellow, /obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/polychromic/bikini, /obj/item/reagent_containers/rag/towel, /obj/item/reagent_containers/rag/towel, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bKI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ @@ -53416,8 +51310,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "bKJ" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -53446,8 +51339,7 @@ /area/maintenance/port/aft) "bKL" = ( /obj/structure/sign/departments/restroom, -/turf/closed/wall, -/area/crew_quarters/locker) +/turf/closed/wall) "bKM" = ( /obj/structure/cable{ icon_state = "2-8" @@ -53474,11 +51366,9 @@ /obj/item/toy/poolnoodle/red, /obj/item/toy/poolnoodle/yellow, /obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/polychromic/bikini, /obj/item/reagent_containers/rag/towel, /obj/item/reagent_containers/rag/towel, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bKO" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -53585,8 +51475,7 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bKU" = ( /obj/effect/turf_decal/box, /obj/structure/mirror{ @@ -53616,8 +51505,7 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bKV" = ( /obj/machinery/airalarm{ dir = 4; @@ -53632,8 +51520,7 @@ icon_state = "radio"; name = "old radio" }, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "bKW" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -53654,8 +51541,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bKY" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -53685,20 +51571,7 @@ "bLa" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" - }, -/area/crew_quarters/fitness/recreation) -"bLb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) + }) "bLc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -53717,18 +51590,12 @@ /obj/item/reagent_containers/rag/towel, /obj/item/reagent_containers/rag/towel, /obj/item/reagent_containers/rag/towel, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) -"bLd" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bLe" = ( /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain) +/turf/open/floor/wood) "bLf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -53756,8 +51623,7 @@ icon_state = "pipe11-1"; dir = 8 }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bLi" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -53809,8 +51675,7 @@ /obj/item/radio/intercom{ pixel_y = 22 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "bLl" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/neutral, @@ -53826,11 +51691,7 @@ "bLm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/structure/weightmachine/weightlifter, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) -"bLn" = ( -/turf/closed/wall/rust, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/wood) "bLo" = ( /obj/structure/table, /obj/item/storage/firstaid/regular, @@ -53841,13 +51702,11 @@ /obj/machinery/newscaster{ pixel_x = 30 }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bLp" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/bot, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bLq" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -53899,8 +51758,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bLt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -53910,8 +51768,7 @@ /area/hallway/primary/starboard) "bLu" = ( /obj/structure/dresser, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "bLv" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -53929,8 +51786,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bLw" = ( /obj/structure/table, /obj/machinery/button/door{ @@ -53963,8 +51819,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/item/key/janitor, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bLx" = ( /obj/vehicle/ridden/janicart, /obj/effect/turf_decal/delivery, @@ -53973,8 +51828,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bLy" = ( /obj/structure/janitorialcart, /obj/effect/turf_decal/delivery, @@ -53983,8 +51837,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bLz" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -54010,8 +51863,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bLB" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -54030,8 +51882,7 @@ dir = 2; pixel_y = 24 }, -/turf/open/pool, -/area/crew_quarters/fitness/pool) +/turf/open/pool) "bLD" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -54097,10 +51948,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bLJ" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) "bLK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -54152,16 +51999,14 @@ /area/security/prison) "bLO" = ( /obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bLP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "bLQ" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -54201,15 +52046,13 @@ /area/hallway/primary/starboard) "bLU" = ( /obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/crew_quarters/fitness/pool) +/turf/closed/wall) "bLV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/pool/controller, -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) +/turf/open/floor/plasteel/yellowsiding) "bLW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -54217,8 +52060,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) +/turf/open/floor/plasteel/yellowsiding) "bLX" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -54293,8 +52135,7 @@ "bMd" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/poster/ripped, -/turf/closed/wall, -/area/crew_quarters/fitness/pool) +/turf/closed/wall) "bMe" = ( /obj/machinery/hydroponics/soil, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -54325,8 +52166,7 @@ }, /turf/open/floor/plasteel/yellowsiding{ dir = 1 - }, -/area/crew_quarters/fitness/pool) + }) "bMh" = ( /obj/structure/table, /obj/item/storage/box/prisoner{ @@ -54346,8 +52186,7 @@ /area/security/prison) "bMi" = ( /obj/structure/sign/poster/official/gato_logo, -/turf/closed/wall, -/area/crew_quarters/theatre) +/turf/closed/wall) "bMj" = ( /obj/machinery/light{ dir = 4 @@ -54366,8 +52205,7 @@ /obj/structure/cable, /turf/open/floor/plasteel/yellowsiding/corner{ dir = 1 - }, -/area/crew_quarters/fitness/pool) + }) "bMk" = ( /obj/item/radio/intercom{ pixel_x = -28 @@ -54440,8 +52278,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/plasteel/dark) "bMr" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -54479,8 +52316,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bMt" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -54488,8 +52324,7 @@ /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/red, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bMu" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; @@ -54513,8 +52348,7 @@ dir = 8; pixel_x = 32 }, -/turf/open/floor/plating, -/area/janitor) +/turf/open/floor/plating) "bMw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -54522,8 +52356,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bMx" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -28 @@ -54537,8 +52370,7 @@ }, /turf/open/floor/plasteel/yellowsiding{ dir = 1 - }, -/area/crew_quarters/fitness/pool) + }) "bMy" = ( /obj/structure/cable{ icon_state = "1-4" @@ -54583,8 +52415,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bMC" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -54713,8 +52544,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/dark) "bML" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, @@ -54970,8 +52800,7 @@ /area/maintenance/starboard/aft) "bNg" = ( /obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/quartermaster/storage) +/turf/closed/wall) "bNi" = ( /obj/structure/flora/grass/jungle/b, /obj/structure/flora/ausbushes/grassybush, @@ -55079,8 +52908,7 @@ /area/maintenance/starboard/aft) "bNt" = ( /obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/quartermaster/sorting) +/turf/closed/wall) "bNu" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -55099,20 +52927,12 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) -"bNw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/janitor) +/turf/open/floor/plasteel/showroomfloor) "bNx" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/closed/wall, -/area/janitor) +/turf/closed/wall) "bNy" = ( /obj/machinery/computer/security{ dir = 8 @@ -55202,8 +53022,7 @@ /obj/machinery/computer/atmos_control/tank/air_tank{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "bNE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -55289,9 +53108,6 @@ /obj/machinery/space_heater, /turf/open/floor/plating, /area/maintenance/port/aft) -"bNM" = ( -/turf/closed/wall, -/area/janitor) "bNN" = ( /obj/structure/closet/secure_closet/personal{ name = "Commissary Locker" @@ -55308,8 +53124,7 @@ }, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bNO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, @@ -55328,8 +53143,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bNQ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/purple/visible{ @@ -55340,8 +53154,7 @@ name = "Distribution Loop"; req_access_txt = "24" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bNR" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -55355,8 +53168,7 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bNS" = ( /obj/effect/decal/cleanable/blood/old, /obj/item/radio/intercom{ @@ -55406,8 +53218,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bNV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/grunge{ @@ -55415,8 +53226,7 @@ name = "Vacant Commissary"; req_one_access_txt = "12;63;48;50" }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bNW" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -55430,8 +53240,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 }, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bNX" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral{ @@ -55467,8 +53276,7 @@ /obj/item/pickaxe, /obj/item/pickaxe, /obj/item/multitool, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bNZ" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -55486,8 +53294,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bOa" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -55499,8 +53306,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bOb" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -55532,8 +53338,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bOg" = ( /obj/machinery/door/airlock/external{ name = "Supply Dock Airlock"; @@ -55542,8 +53347,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/storage) +/turf/open/floor/plasteel/dark) "bOh" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -55554,8 +53358,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bOi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -55570,8 +53373,7 @@ }, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bOj" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -55585,8 +53387,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bOk" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -55598,8 +53399,7 @@ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bOl" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/starboard/aft"; @@ -55627,8 +53427,7 @@ /obj/effect/turf_decal/tile/red{ dir = 1 }, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bOn" = ( /obj/structure/cable{ icon_state = "1-8" @@ -55645,8 +53444,7 @@ /area/maintenance/port/aft) "bOo" = ( /obj/structure/sign/departments/custodian, -/turf/closed/wall, -/area/janitor) +/turf/closed/wall) "bOp" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -55658,8 +53456,7 @@ dir = 1 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bOq" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/turf_decal/delivery, @@ -55687,8 +53484,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bOs" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -55700,8 +53496,7 @@ dir = 8 }, /obj/effect/landmark/start/janitor, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bOt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -55730,8 +53525,7 @@ name = "Mailroom"; req_access_txt = "50" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/sorting) +/turf/open/floor/plasteel/dark) "bOw" = ( /obj/machinery/door/airlock/maintenance{ name = "cargo maintenance"; @@ -55752,14 +53546,12 @@ name = "Custodial RC"; pixel_y = -30 }, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bOy" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/blue, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bOz" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -55768,8 +53560,7 @@ /obj/effect/turf_decal/tile/blue, /obj/effect/landmark/start/janitor, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bOA" = ( /obj/structure/table, /obj/item/storage/box/mousetraps{ @@ -55804,8 +53595,7 @@ machinedir = 8; pixel_x = 32 }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bOB" = ( /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -55854,17 +53644,12 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"bOH" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/janitor) "bOI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bOJ" = ( /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment{ @@ -55912,8 +53697,7 @@ req_access_txt = "1" }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "bOP" = ( /turf/open/floor/plasteel, /area/hallway/primary/central) @@ -56130,8 +53914,7 @@ /area/maintenance/disposal) "bPj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/storage) +/turf/open/floor/plasteel) "bPk" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -56378,8 +54161,7 @@ "bPA" = ( /obj/structure/table/wood, /obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/carpet/green, -/area/quartermaster/warehouse) +/turf/open/floor/carpet/green) "bPB" = ( /obj/structure/cable{ icon_state = "1-2" @@ -56681,8 +54463,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 6 }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bQa" = ( /obj/machinery/light{ dir = 4 @@ -56775,8 +54556,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bQk" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -56808,14 +54588,7 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bQn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/plasteel) "bQo" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -56884,8 +54657,7 @@ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bQs" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -56893,8 +54665,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bQt" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ @@ -56986,8 +54757,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 6 }, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bQA" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -57000,8 +54770,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 }, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bQB" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -57011,8 +54780,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bQC" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -57022,8 +54790,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bQD" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -57039,8 +54806,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bQE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -57058,8 +54824,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bQF" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -57099,16 +54864,14 @@ }, /obj/item/clipboard, /obj/item/stack/cable_coil, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bQI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Tool Storage" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "bQJ" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -57126,8 +54889,7 @@ pixel_y = 4 }, /obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bQK" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -57176,8 +54938,7 @@ dir = 9 }, /obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bQM" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -57211,16 +54972,14 @@ /obj/item/reagent_containers/glass/bucket, /obj/item/mop, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bQP" = ( /obj/machinery/mineral/stacking_machine{ input_dir = 2 }, /obj/effect/turf_decal/delivery, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bQQ" = ( /obj/effect/turf_decal/tile/red, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -57510,8 +55269,7 @@ pixel_y = -28 }, /obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "bRl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -57840,8 +55598,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "bRM" = ( /obj/machinery/computer/prisoner{ dir = 4 @@ -58028,8 +55785,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bSb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -58069,8 +55825,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "bSf" = ( -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bSg" = ( /obj/structure/cable{ icon_state = "1-4" @@ -58082,8 +55837,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bSh" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -58092,8 +55846,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bSi" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -58113,8 +55866,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bSj" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -58126,8 +55878,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bSk" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -58145,8 +55896,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bSl" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -58162,8 +55912,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bSm" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -58171,8 +55920,7 @@ /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/red, /obj/structure/disposalpipe/junction/flip, -/turf/open/floor/plasteel, -/area/storage/primary) +/turf/open/floor/plasteel) "bSn" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/window/reinforced, @@ -58215,8 +55963,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bSr" = ( /turf/closed/wall, /area/hallway/secondary/entry) @@ -58248,8 +55995,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bSv" = ( /obj/structure/chair/stool/bar, /obj/effect/decal/cleanable/dirt, @@ -58264,8 +56010,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bSx" = ( /obj/machinery/conveyor{ dir = 4; @@ -58278,8 +56023,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bSz" = ( /obj/structure/rack, /obj/effect/turf_decal/tile/neutral{ @@ -58310,8 +56054,7 @@ name = "cargo camera"; network = list("ss13","qm") }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bSA" = ( /obj/structure/chair{ dir = 8 @@ -58371,8 +56114,7 @@ dir = 4 }, /obj/machinery/recycler, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bSE" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -58398,8 +56140,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bSG" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -58423,8 +56164,7 @@ /obj/structure/sign/warning/deathsposal{ pixel_x = 32 }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bSI" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall/rust, @@ -58439,8 +56179,7 @@ /obj/structure/sign/warning/securearea{ name = "EMERGENCY STORAGE" }, -/turf/closed/wall, -/area/security/vacantoffice) +/turf/closed/wall) "bSM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -58466,8 +56205,7 @@ dir = 4 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "bSO" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -58677,8 +56415,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bTe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/airalarm{ @@ -58695,8 +56432,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bTg" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate, @@ -58713,8 +56449,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bTj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external{ @@ -58741,8 +56476,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bTn" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -58756,8 +56490,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bTo" = ( /obj/effect/turf_decal/bot, /obj/structure/closet, @@ -59177,8 +56910,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "bTT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -59254,8 +56986,7 @@ /turf/closed/wall, /area/hallway/secondary/entry) "bUa" = ( -/turf/open/floor/carpet/purple, -/area/crew_quarters/locker) +/turf/open/floor/carpet/purple) "bUb" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -59432,9 +57163,6 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/secondary/exit/departure_lounge) -"bUt" = ( -/turf/closed/wall/rust, -/area/security/vacantoffice) "bUu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -59515,8 +57243,7 @@ /area/hallway/primary/aft) "bUC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bUD" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -59541,8 +57268,7 @@ icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bUE" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, @@ -59572,8 +57298,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bUG" = ( /obj/structure/lattice/catwalk, /obj/item/stack/marker_beacon{ @@ -59592,8 +57317,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bUI" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -59609,15 +57333,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel) "bUK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "bUL" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -59631,8 +57353,7 @@ /obj/machinery/atmospherics/pipe/layer_manifold{ dir = 4 }, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "bUN" = ( /turf/open/floor/plating/airless, /area/hallway/secondary/entry) @@ -59648,8 +57369,7 @@ "bUQ" = ( /obj/machinery/light/floor, /obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engine/atmos) +/turf/open/floor/engine/air) "bUR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -59685,12 +57405,10 @@ /obj/item/stack/rods/fifty{ pixel_y = 5 }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) +/turf/open/floor/plasteel/dark) "bUS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "bUT" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -59700,8 +57418,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "bUU" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -59718,8 +57435,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/storage/tech) +/turf/open/floor/plasteel) "bUV" = ( /obj/structure/cable{ icon_state = "1-2" @@ -60180,8 +57896,7 @@ name = "Laser Room"; req_access_txt = "10" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bVG" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ @@ -60626,8 +58341,7 @@ icon_state = "4-8" }, /obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/vacantoffice) +/turf/open/floor/plasteel) "bWo" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -60756,9 +58470,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bWx" = ( -/turf/closed/wall, -/area/security/vacantoffice) "bWy" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -60865,8 +58576,7 @@ dir = 4; pixel_x = -22 }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bWG" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -60889,8 +58599,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bWI" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -60919,8 +58628,7 @@ name = "engineering camera"; network = list("ss13","engine") }, -/turf/open/floor/engine, -/area/storage/tech) +/turf/open/floor/engine) "bWK" = ( /obj/structure/girder/displaced, /obj/effect/decal/cleanable/dirt, @@ -61562,16 +59270,14 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bXP" = ( /obj/effect/turf_decal/tile/red{ dir = 4 }, /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bXQ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -61588,8 +59294,7 @@ /obj/machinery/firealarm{ pixel_y = 26 }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "bXR" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -61598,8 +59303,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "bXS" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -61607,8 +59311,7 @@ icon_state = "pipe11-3"; dir = 4 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "bXT" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -62048,8 +59751,7 @@ pixel_y = -6; req_access_txt = "10" }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "bYA" = ( /obj/structure/chair/office/light, /obj/effect/turf_decal/tile/yellow{ @@ -62063,8 +59765,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/start/chief_engineer, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "bYB" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -62076,8 +59777,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "bYC" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -62101,8 +59801,7 @@ name = "engineering camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "bYD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -62144,8 +59843,7 @@ name = "Laser Room"; req_access_txt = "10" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bYJ" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -62168,8 +59866,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bYK" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -62190,8 +59887,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bYL" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -62212,8 +59908,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bYM" = ( /obj/machinery/door/airlock/engineering{ name = "Starboard Quarter Solar Access"; @@ -62247,8 +59942,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bYO" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -62261,8 +59955,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bYP" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -62285,8 +59978,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bYQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -62474,8 +60166,7 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "bZg" = ( /obj/machinery/suit_storage_unit/ce, /obj/effect/turf_decal/delivery, @@ -62483,8 +60174,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "bZh" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -62634,8 +60324,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bZr" = ( /obj/structure/cable{ icon_state = "2-4" @@ -62662,8 +60351,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bZu" = ( /obj/machinery/suit_storage_unit/engine, /obj/effect/turf_decal/delivery, @@ -62679,8 +60367,7 @@ /obj/item/radio/intercom{ pixel_x = 28 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "bZv" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -62953,8 +60640,7 @@ pixel_x = -26 }, /obj/item/grenade/clusterbuster/cleaner, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "bZR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 5 @@ -62992,8 +60678,7 @@ pixel_y = -24 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "bZV" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -63178,8 +60863,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cak" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -63229,8 +60913,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "can" = ( /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/plating/asteroid/airless, @@ -63241,8 +60924,7 @@ dir = 6 }, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "cap" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/turf_decal/stripes/corner{ @@ -63252,8 +60934,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "caq" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/delivery, @@ -63272,8 +60953,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "car" = ( /obj/structure/cable{ icon_state = "2-8" @@ -63298,8 +60978,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cat" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -63320,8 +60999,7 @@ icon_state = "2-4" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cau" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -63329,12 +61007,10 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cav" = ( /obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/security/vacantoffice) +/turf/closed/wall) "caw" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -63345,8 +61021,7 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cax" = ( /obj/structure/cable{ icon_state = "1-2" @@ -63368,8 +61043,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "caz" = ( /obj/structure/table, /obj/machinery/cell_charger, @@ -63382,8 +61056,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "caA" = ( /obj/structure/chair/office/light{ dir = 1 @@ -63403,8 +61076,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "caB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -63437,8 +61109,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "caD" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -63462,8 +61133,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "caF" = ( /obj/structure/window/reinforced, /obj/effect/turf_decal/delivery, @@ -63479,8 +61149,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "caG" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -63497,8 +61166,7 @@ }, /obj/effect/landmark/start/janitor, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "caH" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -63513,8 +61181,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) +/turf/open/floor/plasteel) "caI" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -63537,8 +61204,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "caJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -63558,15 +61224,13 @@ }, /obj/machinery/door/firedoor, /obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "caK" = ( /obj/machinery/door/poddoor{ id = "atmosventco2"; name = "Emergency CO2 Chamber Vent" }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) +/turf/open/floor/engine/vacuum) "caL" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -63580,8 +61244,7 @@ icon_state = "4-8" }, /obj/effect/landmark/start/chief_engineer, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "caN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, @@ -63627,8 +61290,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/storage/primary) +/turf/open/floor/plasteel/dark) "caS" = ( /obj/effect/turf_decal/tile/brown, /obj/effect/turf_decal/tile/brown{ @@ -63699,8 +61361,7 @@ /obj/structure/sign/plaques/golden{ pixel_x = -32 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cbc" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -63762,8 +61423,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cbh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -63792,8 +61452,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cbj" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -63816,8 +61475,7 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cbm" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall, @@ -63835,8 +61493,7 @@ pixel_x = 24 }, /obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "cbr" = ( /obj/machinery/airalarm{ pixel_y = 22 @@ -63849,8 +61506,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "cbs" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -64174,8 +61830,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cbU" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, @@ -64195,8 +61850,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cbW" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red{ @@ -64233,8 +61887,7 @@ req_access_txt = "26" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "cbZ" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -64302,8 +61955,7 @@ }, /obj/item/beacon, /obj/effect/decal/medium_gato, -/turf/open/floor/plasteel/dark, -/area/bridge) +/turf/open/floor/plasteel/dark) "ccf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -64372,8 +62024,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/air, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "ccm" = ( /obj/effect/turf_decal/caution/stand_clear, /obj/machinery/light/small{ @@ -64387,8 +62038,7 @@ "ccn" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cco" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; @@ -64399,8 +62049,7 @@ "ccp" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ccq" = ( /obj/effect/turf_decal/loading_area{ dir = 4 @@ -64415,8 +62064,7 @@ dir = 1 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ccr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64451,8 +62099,7 @@ /obj/effect/turf_decal/tile/blue, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ccu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -64467,10 +62114,6 @@ /obj/structure/grille/broken, /turf/open/floor/plating, /area/maintenance/starboard) -"ccv" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/security/main) "ccw" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -64485,8 +62128,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ccx" = ( /turf/open/floor/engine/vacuum, /area/science/test_area) @@ -64505,8 +62147,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ccz" = ( /obj/effect/decal/cleanable/cobweb, /turf/closed/mineral/random/labormineral, @@ -64537,10 +62178,6 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/engine/vacuum, /area/science/test_area) -"ccG" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) "ccH" = ( /turf/closed/indestructible/opshuttle, /area/science/test_area) @@ -64590,8 +62227,7 @@ pixel_x = -24 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "ccN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/structure/cable{ @@ -64602,8 +62238,7 @@ name = "security disposal pipe"; sortType = 7 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "ccO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -64652,8 +62287,7 @@ id = "atmosventplasma"; name = "Emergency Plasma Chamber Vent" }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) +/turf/open/floor/engine/vacuum) "ccU" = ( /obj/machinery/telecomms/processor/preset_four, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -64685,8 +62319,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "ccX" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ @@ -64780,8 +62413,7 @@ dir = 8 }, /obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) +/turf/open/floor/plasteel/dark) "cdf" = ( /obj/machinery/computer/secure_data{ dir = 8 @@ -64934,8 +62566,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cdx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -64964,8 +62595,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cdz" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -64991,8 +62621,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cdA" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -65002,8 +62631,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 10 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cdB" = ( /obj/machinery/telecomms/server/presets/science, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -65012,9 +62640,6 @@ /obj/machinery/telecomms/server/presets/medical, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"cdD" = ( -/turf/closed/wall/r_wall, -/area/security/nuke_storage) "cdE" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -65027,13 +62652,11 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cdF" = ( /obj/machinery/rnd/production/protolathe/department/engineering, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cdG" = ( /obj/structure/cable{ icon_state = "0-8" @@ -65100,8 +62723,7 @@ }, /obj/effect/turf_decal/tile/red, /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cdO" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 4 @@ -65133,10 +62755,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdS" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/security/nuke_storage) "cdT" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -65147,8 +62765,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cdU" = ( /obj/structure/cable{ icon_state = "4-8" @@ -65242,8 +62859,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "ced" = ( /obj/item/radio/intercom{ freerange = 1; @@ -65281,9 +62897,6 @@ }, /turf/open/floor/circuit/red, /area/ai_monitored/turret_protected/ai) -"cee" = ( -/turf/closed/wall/rust, -/area/quartermaster/warehouse) "cef" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/radio/intercom{ @@ -65503,8 +63116,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ces" = ( /obj/machinery/flasher{ id = "AI"; @@ -65543,8 +63155,7 @@ name = "engineering camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ceu" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden/layer1{ dir = 8 @@ -65552,8 +63163,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3{ dir = 10 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cev" = ( /obj/structure/transit_tube/diagonal/topleft, /obj/structure/lattice, @@ -65588,8 +63198,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cey" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -65607,8 +63216,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cez" = ( /obj/machinery/light{ dir = 8 @@ -65662,8 +63270,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ceD" = ( /obj/structure/cable{ icon_state = "1-2" @@ -65711,15 +63318,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ceI" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) +/turf/open/floor/plasteel) "ceJ" = ( /obj/machinery/telecomms/server/presets/supply, /obj/machinery/light{ @@ -65745,8 +63350,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/security/nuke_storage) + }) "ceL" = ( /obj/machinery/computer/bank_machine, /obj/structure/sign/warning/securearea{ @@ -65757,8 +63361,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/security/nuke_storage) + }) "ceM" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/table, @@ -65777,8 +63380,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/security/nuke_storage) + }) "ceO" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -65796,8 +63398,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ceP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -65818,8 +63419,7 @@ icon_state = "4-8" }, /obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ceQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -65830,8 +63430,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "ceR" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -65851,8 +63450,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "ceS" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -65873,8 +63471,7 @@ icon_state = "2-8" }, /obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "ceT" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -65889,8 +63486,7 @@ dir = 10 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "ceU" = ( /obj/structure/lattice/catwalk, /obj/item/stack/marker_beacon{ @@ -65920,8 +63516,7 @@ }, /obj/effect/turf_decal/tile/red, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "ceW" = ( /obj/machinery/light{ dir = 1 @@ -65947,8 +63542,7 @@ /area/ai_monitored/turret_protected/ai) "ceZ" = ( /obj/structure/sign/departments/security, -/turf/closed/wall/r_wall, -/area/security/nuke_storage) +/turf/closed/wall/r_wall) "cfa" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -65970,8 +63564,7 @@ dir = 1 }, /obj/machinery/rnd/production/techfab/department/security, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "cfc" = ( /obj/machinery/telecomms/processor/preset_one, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -66013,8 +63606,7 @@ /obj/effect/turf_decal/stripes/box, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/security/nuke_storage) + }) "cfl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -66129,8 +63721,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cfs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/tile/neutral{ @@ -66142,14 +63733,12 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cft" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cfu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ @@ -66164,8 +63753,7 @@ "cfv" = ( /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cfw" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/turf_decal/delivery, @@ -66176,8 +63764,7 @@ network = list("ss13","engine") }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cfx" = ( /obj/effect/turf_decal/loading_area{ dir = 4 @@ -66198,8 +63785,7 @@ /obj/item/radio/intercom{ pixel_y = -28 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cfy" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -66214,8 +63800,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cfz" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 @@ -66227,8 +63812,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cfA" = ( /obj/machinery/telecomms/bus/preset_one, /turf/open/floor/circuit/green/telecomms/mainframe, @@ -66253,8 +63837,7 @@ name = "Custodial Bay" }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "cfE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -66287,8 +63870,7 @@ /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/red, /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cfI" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/red, @@ -66298,8 +63880,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cfJ" = ( /obj/structure/sign/warning/nosmoking{ pixel_x = 30 @@ -66373,8 +63954,7 @@ dir = 1 }, /obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cfR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -66405,15 +63985,13 @@ dir = 8 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cfW" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall, /area/space/nearstation) "cfY" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/satellite) +/turf/closed/wall/r_wall) "cgb" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, @@ -66425,8 +64003,7 @@ name = "Custodial Closet"; req_access_txt = "26" }, -/turf/open/floor/plasteel/dark, -/area/janitor) +/turf/open/floor/plasteel/dark) "cge" = ( /obj/machinery/status_display/evac, /turf/closed/wall, @@ -66509,8 +64086,7 @@ pixel_x = 24 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cgp" = ( /obj/structure/closet/secure_closet/hos, /obj/effect/turf_decal/tile/neutral{ @@ -66519,8 +64095,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel) "cgq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -66548,8 +64123,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel) "cgs" = ( /obj/machinery/suit_storage_unit/hos, /obj/effect/turf_decal/tile/neutral{ @@ -66563,8 +64137,7 @@ pixel_x = 36; pixel_y = 28 }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel) "cgt" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -66672,14 +64245,12 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cgC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cgD" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -66696,8 +64267,7 @@ /obj/machinery/airalarm{ pixel_y = 24 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "cgE" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -66732,8 +64302,7 @@ /obj/effect/turf_decal/tile/yellow, /obj/machinery/portable_atmospherics/pump, /obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "cgG" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -66744,15 +64313,13 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cgH" = ( /obj/machinery/door/airlock/external{ name = "Engineering External Airlock"; req_one_access_txt = "10;24" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cgI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/airless, @@ -66874,8 +64441,7 @@ pixel_x = -24 }, /obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "cgT" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -66888,8 +64454,7 @@ icon_state = "1-4" }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cgU" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -66921,8 +64486,7 @@ pixel_y = 24 }, /obj/item/pickaxe/mini, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cgX" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -66935,8 +64499,7 @@ pixel_x = -24; pixel_y = 24 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "cgY" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/dirt, @@ -66949,8 +64512,7 @@ dir = 4; pixel_x = -23 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "cha" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -66963,8 +64525,7 @@ icon_state = "1-8" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "chb" = ( /obj/structure/table/wood, /obj/item/storage/box/deputy{ @@ -66983,8 +64544,7 @@ pixel_x = 24; pixel_y = 24 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "chc" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -67206,14 +64766,12 @@ dir = 5 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chr" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -67227,8 +64785,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 10 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cht" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -67247,8 +64804,7 @@ name = "atmospherics camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chu" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -67261,8 +64817,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chv" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -67274,8 +64829,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chw" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -67287,8 +64841,7 @@ dir = 1 }, /obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chx" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -67302,8 +64855,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 5 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chy" = ( /obj/item/tank/internals/emergency_oxygen/engi{ pixel_x = -5 @@ -67317,8 +64869,7 @@ /obj/structure/sign/warning/xeno_mining{ pixel_x = -32 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "chz" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -67330,8 +64881,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chA" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -67354,8 +64904,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ @@ -67381,8 +64930,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chD" = ( /turf/closed/wall, /area/ai_monitored/turret_protected/aisat/foyer) @@ -67401,8 +64949,7 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "chF" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, @@ -67425,8 +64972,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) +/turf/open/floor/plasteel/dark) "chH" = ( /obj/structure/reflector/box/anchored{ dir = 1 @@ -67435,8 +64981,7 @@ dir = 8 }, /obj/effect/turf_decal/box/corners, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "chI" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat/foyer) @@ -67475,19 +65020,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) -"chN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) "chO" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel/dark, @@ -67561,8 +65093,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "chT" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -67570,8 +65101,7 @@ }, /obj/effect/turf_decal/tile/red, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "chU" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; @@ -67721,8 +65251,7 @@ pixel_x = -22 }, /obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) +/turf/open/floor/plasteel/dark) "cij" = ( /obj/structure/table/wood, /obj/item/folder/red, @@ -67741,8 +65270,7 @@ dir = 4; pixel_x = -23 }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hos) +/turf/open/floor/wood) "cik" = ( /obj/machinery/disposal/bin, /obj/machinery/light{ @@ -67754,8 +65282,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "cil" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -67817,8 +65344,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) +/turf/open/floor/plasteel/dark) "cir" = ( /obj/structure/transit_tube/junction, /obj/structure/lattice/catwalk, @@ -67888,8 +65414,7 @@ /obj/machinery/meter, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cix" = ( /obj/structure/lattice/catwalk, /obj/structure/transit_tube/crossing, @@ -67910,8 +65435,7 @@ }, /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/stripes/white/corner, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciz" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -67922,8 +65446,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciA" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -67933,8 +65456,7 @@ dir = 4 }, /obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciB" = ( /obj/machinery/recharge_station, /obj/effect/turf_decal/bot, @@ -67951,8 +65473,7 @@ }, /obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) +/turf/open/floor/plasteel/dark) "ciC" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -67960,8 +65481,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, /obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciD" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, @@ -67979,8 +65499,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) +/turf/open/floor/plasteel/dark) "ciE" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -67994,8 +65513,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciF" = ( /obj/machinery/hydroponics/soil, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68052,8 +65570,7 @@ /obj/effect/turf_decal/stripes/white/corner{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -68062,8 +65579,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciK" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -68080,8 +65596,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciL" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -68100,8 +65615,7 @@ }, /obj/effect/landmark/start/atmospheric_technician, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciM" = ( /obj/structure/sign/departments/engineering, /turf/closed/wall, @@ -68142,8 +65656,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciP" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -68159,8 +65672,7 @@ icon_state = "4-8" }, /obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciQ" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/rust, @@ -68176,8 +65688,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "ciS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/computer/secure_data{ @@ -68205,8 +65716,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "ciU" = ( /obj/structure/lattice/catwalk, /obj/structure/transit_tube/crossing, @@ -68257,8 +65767,7 @@ dir = 4 }, /obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "ciX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 @@ -68319,8 +65828,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cjb" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -68338,8 +65846,7 @@ dir = 6 }, /obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cjc" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -68419,8 +65926,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cjh" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -68430,8 +65936,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cji" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -68469,13 +65974,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"cjl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space, -/area/solar/starboard/aft) "cjm" = ( /obj/machinery/door/airlock/external{ name = "Atmospherics External Airlock"; @@ -68484,8 +65982,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cjn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/office{ @@ -68512,8 +66009,7 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating, -/area/security/main) +/turf/open/floor/plating) "cjr" = ( /obj/structure/cable{ icon_state = "1-2" @@ -68521,8 +66017,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating, -/area/security/main) +/turf/open/floor/plating) "cjs" = ( /obj/machinery/door/airlock/external{ name = "Atmospherics External Airlock"; @@ -68534,16 +66029,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cjt" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "cju" = ( -/turf/closed/wall, -/area/engine/gravity_generator) +/turf/closed/wall) "cjv" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -68553,8 +66045,7 @@ }, /obj/machinery/teleport/hub, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/teleporter) +/turf/open/floor/plasteel/dark) "cjw" = ( /obj/machinery/power/smes{ charge = 5e+006 @@ -68572,8 +66063,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/engine/gravity_generator) + }) "cjx" = ( /obj/structure/table, /obj/structure/cable{ @@ -68590,8 +66080,7 @@ /obj/item/pen/blue, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/engine/gravity_generator) + }) "cjy" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -68610,11 +66099,7 @@ req_access_txt = "19" }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"cjz" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "cjA" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -68627,10 +66112,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/ai_monitored/security/armory) -"cjB" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/engine/gravity_generator) "cjD" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -68667,8 +66148,7 @@ dir = 4; name = "emergency shower" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cjJ" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -68683,8 +66163,7 @@ name = "N2 to Pure" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cjK" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -68703,8 +66182,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cjL" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -68732,8 +66210,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cjM" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -68748,8 +66225,7 @@ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cjN" = ( /obj/structure/cable{ icon_state = "0-8" @@ -68763,8 +66239,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/engine/supermatter) + }) "cjO" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -68777,8 +66252,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cjP" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -68814,8 +66288,7 @@ /obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "cjR" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -68828,8 +66301,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cjS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -68838,8 +66310,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cjT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -68848,8 +66319,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cjU" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -68862,8 +66332,7 @@ }, /obj/effect/landmark/event_spawn, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cjV" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -68879,8 +66348,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cjW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -26 @@ -68889,8 +66357,7 @@ dir = 4; name = "emergency shower" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cjY" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -68953,8 +66420,7 @@ icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "ckc" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -68970,8 +66436,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "ckd" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 @@ -68979,8 +66444,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cke" = ( /obj/structure/sign/warning, /turf/closed/wall, @@ -68992,8 +66456,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "ckg" = ( /obj/structure/cable{ icon_state = "0-8" @@ -69002,22 +66465,19 @@ id = "starboardsolar"; name = "Starboard Solar Array" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) +/turf/open/floor/plasteel/airless/solarpanel) "ckh" = ( /obj/machinery/atmospherics/pipe/manifold4w/general/visible, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cki" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "ckj" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 @@ -69025,8 +66485,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "ckk" = ( /obj/structure/lattice, /turf/open/space, @@ -69039,8 +66498,7 @@ id = "portsolar"; name = "Port Solar Array" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) +/turf/open/floor/plasteel/airless/solarpanel) "ckn" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, @@ -69059,8 +66517,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "ckt" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, @@ -69082,8 +66539,7 @@ dir = 8; pixel_x = 28 }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cku" = ( /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/aft) @@ -69099,14 +66555,12 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "ckx" = ( /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "ckz" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -69115,8 +66569,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "ckB" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -69128,8 +66581,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/space, -/area/solar/starboard/aft) +/turf/open/space) "ckC" = ( /obj/machinery/light/small{ dir = 8 @@ -69179,8 +66631,7 @@ response_help_simple = "pet"; turns_per_move = 10 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "ckG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -69195,15 +66646,13 @@ icon_state = "0-8" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "ckI" = ( /obj/structure/cable{ icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "ckJ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -69217,45 +66666,23 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"ckL" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "ckM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ name = "External Freight Airlock" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) -"ckN" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) +/turf/open/floor/plasteel/dark) "ckO" = ( /obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/quartermaster/warehouse) +/turf/closed/wall) "ckP" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3, /obj/structure/door_assembly/door_assembly_eng{ anchored = 1 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) -"ckQ" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) +/turf/open/floor/plasteel/dark) "ckR" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -69329,8 +66756,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "ckY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -69340,8 +66766,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "ckZ" = ( /obj/structure/cable{ icon_state = "2-8" @@ -69414,8 +66839,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "clh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, /turf/open/floor/plasteel, @@ -69475,8 +66899,7 @@ }, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cln" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; @@ -69509,8 +66932,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "clp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -69531,8 +66953,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "clq" = ( /obj/item/clothing/mask/breath, /obj/effect/decal/cleanable/dirt, @@ -69558,8 +66979,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "clt" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -69570,8 +66990,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "clu" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/structure/lattice/catwalk, @@ -69599,8 +67018,7 @@ /obj/machinery/computer/atmos_control/tank/toxin_tank{ dir = 1 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "clw" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible, /obj/structure/lattice/catwalk, @@ -69669,8 +67087,7 @@ "clB" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "clC" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -69701,21 +67118,18 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "clE" = ( /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/engine/gravity_generator) + }) "clG" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ dir = 4 }, /obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "clH" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; @@ -69758,8 +67172,7 @@ dir = 1; name = "Plasma to Pure" }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "clJ" = ( /obj/structure/rack, /obj/effect/turf_decal/bot, @@ -69770,8 +67183,7 @@ /obj/item/storage/belt/utility, /obj/item/clothing/head/welding, /obj/item/clothing/head/welding, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "clK" = ( /obj/item/stack/cable_coil, /obj/structure/cable{ @@ -69788,22 +67200,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/engineering) -"clM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "clN" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/machinery/airalarm{ dir = 8; pixel_x = 24 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "clO" = ( /obj/machinery/door/airlock/engineering{ name = "Port Quarter Solar Access"; @@ -69820,25 +67224,14 @@ /area/maintenance/solars/port/aft) "clQ" = ( /obj/machinery/gravity_generator/main/station, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/dark) "clR" = ( -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/dark) "clS" = ( /obj/effect/turf_decal/bot, /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"clT" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"clV" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) "clW" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, @@ -69848,8 +67241,7 @@ pixel_y = -26 }, /obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/dark) "clX" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -69872,8 +67264,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "clZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -69896,8 +67287,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cma" = ( /obj/structure/closet/crate/solarpanel_small, /obj/effect/turf_decal/delivery, @@ -69919,8 +67309,7 @@ name = "atmospherics camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ @@ -69948,8 +67337,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cme" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -69965,8 +67353,7 @@ /obj/effect/turf_decal/stripes/white/corner{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmf" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -69987,8 +67374,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmg" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -70005,8 +67391,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmh" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall, @@ -70028,8 +67413,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -70060,8 +67444,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cml" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -70085,14 +67468,12 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmm" = ( /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) +/turf/open/floor/carpet) "cmn" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -70111,8 +67492,7 @@ /obj/effect/turf_decal/stripes/white/corner{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmo" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -70120,8 +67500,7 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/visible, /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmp" = ( /obj/structure/cable{ icon_state = "4-8" @@ -70150,8 +67529,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cmr" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/blue{ @@ -70178,8 +67556,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/dark) "cmt" = ( /turf/closed/wall/mineral/plastitanium, /area/maintenance/port/aft) @@ -70199,8 +67576,7 @@ /obj/structure/noticeboard{ pixel_y = 28 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmv" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -70216,8 +67592,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmw" = ( /obj/structure/cable{ icon_state = "1-4" @@ -70239,15 +67614,13 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "cmx" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmy" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -70256,8 +67629,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmz" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -70268,8 +67640,7 @@ name = "Waste to Filter" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmA" = ( /obj/structure/cable{ icon_state = "0-8" @@ -70279,8 +67650,7 @@ state = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "cmB" = ( /obj/structure/closet/radiation, /obj/structure/grille/broken, @@ -70299,8 +67669,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cmD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -70321,8 +67690,7 @@ dir = 8 }, /obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/dark) "cmF" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -70344,8 +67712,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cmH" = ( /obj/structure/cable{ icon_state = "1-2" @@ -70364,18 +67731,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/portable_atmospherics/canister/toxins, /obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cmJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/solar/starboard/aft) +/turf/open/floor/plasteel/dark) "cmK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -70383,8 +67739,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 6 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cmL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -70392,18 +67747,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/engine, -/area/engine/engineering) -"cmM" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) +/turf/open/floor/engine) "cmN" = ( /obj/structure/cable{ icon_state = "0-4" @@ -70413,11 +67757,7 @@ state = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) -"cmP" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hos) +/turf/open/floor/plating) "cmQ" = ( /obj/machinery/door/poddoor/preopen{ id = "gravity"; @@ -70425,8 +67765,7 @@ }, /obj/machinery/light/small, /obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) +/turf/open/floor/plasteel/dark) "cmR" = ( /obj/structure/cable{ icon_state = "1-2" @@ -70451,8 +67790,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cmU" = ( /obj/machinery/camera{ c_tag = "Satellite External Port"; @@ -70504,8 +67842,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cna" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -70552,8 +67889,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cnd" = ( /turf/closed/wall/rust, /area/maintenance/disposal) @@ -70567,8 +67903,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cng" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -70609,8 +67944,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cnk" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 @@ -70621,8 +67955,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cnl" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 @@ -70633,8 +67966,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cnm" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/tile/neutral{ @@ -70677,8 +68009,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cnp" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 @@ -70695,8 +68026,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cnq" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -70724,16 +68054,6 @@ /obj/structure/sign/poster/contraband/random, /turf/closed/wall, /area/maintenance/port) -"cnt" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) "cnu" = ( /turf/closed/wall, /area/maintenance/disposal) @@ -70845,8 +68165,7 @@ /obj/structure/disposalpipe/junction/flip{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cnF" = ( /obj/machinery/door/airlock/maintenance{ name = "Disposal Access"; @@ -70863,8 +68182,7 @@ /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cnH" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -70873,8 +68191,7 @@ /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 10 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cnI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -70903,8 +68220,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cnL" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -70919,8 +68235,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "cnN" = ( /turf/closed/wall, /area/maintenance/solars/port/aft) @@ -70942,8 +68257,7 @@ icon_state = "1-2" }, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) +/turf/open/space/basic) "cnS" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -70951,8 +68265,7 @@ "cnT" = ( /obj/effect/turf_decal/delivery, /obj/machinery/shieldgen, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cnU" = ( /obj/structure/lattice, /obj/structure/sign/warning/securearea{ @@ -70988,8 +68301,7 @@ "cnY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cnZ" = ( /obj/effect/turf_decal/tile/neutral, /turf/open/floor/plasteel/showroomfloor, @@ -70998,20 +68310,17 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating/airless, -/area/solar/starboard/aft) +/turf/open/floor/plating/airless) "cob" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 6 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "coc" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cod" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -71024,8 +68333,7 @@ /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cof" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71045,21 +68353,18 @@ }, /obj/structure/barricade/wooden/crude, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "coh" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, /obj/machinery/light, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "coi" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, /obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "coj" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 1 @@ -71068,8 +68373,7 @@ dir = 1; pixel_y = -24 }, -/turf/open/floor/engine, -/area/engine/supermatter) +/turf/open/floor/engine) "cok" = ( /turf/closed/wall/r_wall, /area/space/nearstation) @@ -71085,8 +68389,7 @@ dir = 8; name = "Gas to Filter" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "con" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 1 @@ -71097,15 +68400,13 @@ pixel_y = -24; req_access_txt = "10" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "coo" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/machinery/light, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cop" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 @@ -71118,8 +68419,7 @@ dir = 1 }, /obj/machinery/meter, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cor" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/structure/cable{ @@ -71137,8 +68437,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cot" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 @@ -71149,8 +68448,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cou" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall/rust, @@ -71189,8 +68487,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "coA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -71235,8 +68532,7 @@ /obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ dir = 4 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "coH" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -71301,8 +68597,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "coN" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -71338,8 +68633,7 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "coW" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71354,8 +68648,7 @@ /obj/machinery/atmospherics/pipe/manifold/dark/visible{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "coX" = ( /obj/effect/turf_decal/bot, /obj/structure/ore_box, @@ -71376,8 +68669,7 @@ dir = 8; name = "Pure to Fuel Pipe" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "coZ" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71392,8 +68684,7 @@ /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpa" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71409,8 +68700,7 @@ dir = 1 }, /obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpb" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall, @@ -71430,8 +68720,7 @@ dir = 8; name = "Port Mix to East Ports" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpd" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, @@ -71457,8 +68746,7 @@ pixel_y = -24 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cpf" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71480,8 +68768,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpg" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71497,8 +68784,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cph" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -71518,8 +68804,7 @@ dir = 1; name = "N2O to Pure" }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "cpi" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -71530,8 +68815,7 @@ dir = 10 }, /obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpj" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -71555,8 +68839,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cpk" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71565,8 +68848,7 @@ /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 5 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpl" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71582,8 +68864,7 @@ dir = 10 }, /obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpm" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71598,8 +68879,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cpn" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71617,8 +68897,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cpo" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71639,8 +68918,7 @@ pixel_x = 6; pixel_y = -24 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cpp" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71654,8 +68932,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cpq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71670,8 +68947,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cpr" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71690,8 +68966,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cps" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;47" @@ -71729,8 +69004,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cpu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -71786,12 +69060,10 @@ "cpz" = ( /obj/effect/turf_decal/delivery, /obj/machinery/power/emitter, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cpA" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cpB" = ( /obj/effect/turf_decal/bot, /obj/machinery/shieldgen, @@ -71802,8 +69074,7 @@ name = "engineering camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cpC" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 @@ -71814,8 +69085,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cpD" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -71825,8 +69095,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cpE" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 @@ -71842,8 +69111,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cpF" = ( /obj/structure/flora/rock/pile, /obj/effect/decal/cleanable/dirt, @@ -71870,8 +69138,7 @@ name = "Pure to Fuel Pipe" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpI" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -71886,8 +69153,7 @@ dir = 4 }, /obj/item/beacon, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpK" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -71897,8 +69163,7 @@ /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 8 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpL" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71914,8 +69179,7 @@ dir = 8 }, /obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpM" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -71926,8 +69190,7 @@ dir = 4; name = "Mix to Distro" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cpN" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -72118,8 +69381,7 @@ /obj/machinery/power/emitter, /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cqe" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, @@ -72136,8 +69398,7 @@ }, /obj/item/gps, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "cqf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -72184,8 +69445,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/engine/supermatter) + }) "cqj" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -72200,8 +69460,7 @@ }, /turf/open/floor/circuit/green{ luminosity = 2 - }, -/area/engine/supermatter) + }) "cql" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -72213,8 +69472,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cqm" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -72233,8 +69491,7 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -72268,8 +69525,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/dark/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqq" = ( /obj/structure/sign/warning/fire, /turf/closed/wall, @@ -72309,8 +69565,7 @@ /obj/effect/turf_decal/tile/blue, /obj/machinery/atmospherics/pipe/manifold/yellow/visible, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqw" = ( /obj/structure/sign/warning/deathsposal{ layer = 4 @@ -72333,8 +69588,7 @@ }, /obj/effect/turf_decal/tile/blue, /obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -72366,8 +69620,7 @@ /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -72384,8 +69637,7 @@ /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqE" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -72408,8 +69660,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -72444,8 +69695,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqK" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -72457,8 +69707,7 @@ }, /obj/machinery/atmospherics/pipe/simple/orange/visible, /obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqL" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -72472,8 +69721,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqM" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -72500,8 +69748,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cqP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -72546,8 +69793,7 @@ name = "atmospherics camera"; network = list("ss13","engine") }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cqS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -72593,15 +69839,13 @@ pixel_x = -22; pixel_y = 8 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cqX" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/light{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cqY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -72645,8 +69889,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "crd" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -72656,8 +69899,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cre" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Connector"; @@ -72705,8 +69947,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +/turf/open/floor/plasteel/dark) "crj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/grille_or_trash, @@ -72762,8 +70003,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cro" = ( /obj/effect/turf_decal/tile/red{ dir = 1 @@ -72832,8 +70072,7 @@ /obj/machinery/atmospherics/components/binary/pump/on{ name = "Unfiltered & Air to Mix" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "cru" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -72841,8 +70080,7 @@ }, /obj/effect/turf_decal/tile/blue, /obj/machinery/atmospherics/pipe/manifold/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "crv" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 @@ -72891,8 +70129,7 @@ dir = 8; name = "Air to Mix" }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "crA" = ( /obj/machinery/door/airlock/external{ name = "Abandoned External Airlock" @@ -72939,8 +70176,7 @@ dir = 1 }, /obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "crD" = ( /obj/machinery/door/airlock/external{ name = "Security Escape Pod" @@ -72987,8 +70223,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "crJ" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 @@ -73002,8 +70237,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ icon_state = "panelscorched" - }, -/area/engine/engineering) + }) "crL" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -73033,8 +70267,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ icon_state = "platingdmg3" - }, -/area/engine/engineering) + }) "crP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -73056,8 +70289,7 @@ /obj/structure/sink{ pixel_y = 24 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "crS" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -73079,8 +70311,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "crU" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;47" @@ -73120,8 +70351,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "crY" = ( /obj/structure/table/reinforced, /obj/effect/turf_decal/delivery, @@ -73148,20 +70378,17 @@ pixel_x = -8; pixel_y = -5 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "csa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/turf/open/floor/engine, -/area/engine/supermatter) +/turf/open/floor/engine) "csb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/supermatter) +/turf/open/floor/engine) "csc" = ( /obj/machinery/door/airlock/maintenance{ name = "Surgery Maintenance"; @@ -73177,8 +70404,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cse" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, /obj/structure/sign/warning/nosmoking{ @@ -73187,8 +70413,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "csf" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = 32; @@ -73198,8 +70423,7 @@ /obj/machinery/airalarm{ pixel_y = 24 }, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "csg" = ( /obj/effect/turf_decal/bot, /obj/structure/rack, @@ -73226,8 +70450,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/open/floor/plating) "csj" = ( /obj/structure/table, /obj/item/storage/secure/briefcase, @@ -73265,8 +70488,7 @@ dir = 5 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "csn" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -73280,8 +70502,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cso" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -73336,8 +70557,7 @@ dir = 1; pixel_y = -26 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cst" = ( /obj/machinery/light/small{ dir = 8 @@ -73370,8 +70590,7 @@ /obj/structure/sign/warning/xeno_mining{ pixel_x = 32 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "csw" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/structure/cable{ @@ -73380,8 +70599,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "csx" = ( /obj/machinery/door/airlock/medical{ name = "Medbay Storage" @@ -73406,8 +70624,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "csA" = ( /obj/machinery/power/terminal{ dir = 1 @@ -73427,8 +70644,7 @@ pixel_x = -24; req_one_access_txt = "19;23" }, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "csB" = ( /obj/machinery/light/small{ dir = 4 @@ -73441,8 +70657,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "csC" = ( /obj/structure/cable{ icon_state = "4-8" @@ -73546,8 +70761,7 @@ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "csI" = ( /obj/machinery/light/small{ dir = 1 @@ -73555,8 +70769,7 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "csK" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1 @@ -73564,8 +70777,7 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/airless, -/area/engine/atmos) +/turf/open/floor/plating/airless) "csL" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -73576,8 +70788,7 @@ /obj/structure/closet/emcloset/anchored, /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "csM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -73636,8 +70847,7 @@ /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "csX" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; @@ -73645,8 +70855,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "csY" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 4 @@ -73657,8 +70866,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "csZ" = ( /obj/structure/cable{ icon_state = "4-8" @@ -73669,8 +70877,7 @@ name = "supermatter camera"; network = list("engine") }, -/turf/open/floor/engine, -/area/engine/supermatter) +/turf/open/floor/engine) "cta" = ( /obj/structure/cable{ icon_state = "1-2" @@ -73678,8 +70885,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "ctb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/warning/pods{ @@ -73716,8 +70922,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "cte" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -73737,8 +70942,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "ctg" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -73802,8 +71006,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 9 }, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "ctl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -73821,15 +71024,13 @@ id = "foreport"; name = "Fore-Port Solar Array" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/fore) +/turf/open/floor/plasteel/airless/solarpanel) "ctn" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "cto" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -73868,15 +71069,13 @@ /obj/machinery/light{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "ctr" = ( /obj/machinery/door/poddoor{ id = "atmosventn2o"; name = "Emergency N2O Chamber Vent" }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) +/turf/open/floor/engine/vacuum) "cts" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/structure/cable{ @@ -73885,8 +71084,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "ctt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/grille_or_trash, @@ -73905,8 +71103,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "ctw" = ( /obj/structure/cable{ icon_state = "0-8" @@ -73916,8 +71113,7 @@ id = "foreport"; name = "Fore-Port Solar Array" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/fore) +/turf/open/floor/plasteel/airless/solarpanel) "cty" = ( /obj/machinery/button/door{ id = "Disposal Exit"; @@ -73955,8 +71151,7 @@ /obj/machinery/gateway{ dir = 9 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "ctA" = ( /turf/closed/wall/rust, /area/maintenance/solars/port/fore) @@ -73976,8 +71171,7 @@ /obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "ctF" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12"; @@ -73991,8 +71185,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "ctH" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -74023,16 +71216,14 @@ /obj/machinery/gateway{ dir = 5 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "ctL" = ( /obj/machinery/power/tracker, /obj/effect/turf_decal/box, /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/fore) +/turf/open/floor/plasteel/airless/solarpanel) "ctM" = ( /obj/item/radio/intercom{ pixel_y = -28 @@ -74040,15 +71231,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "ctN" = ( /obj/machinery/door/airlock/maintenance{ name = "Theatre Maintenance"; req_access_txt = "46" }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "ctO" = ( /obj/structure/cable{ icon_state = "1-2" @@ -74064,14 +71253,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/stack/tile/wood, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"ctR" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating/airless, -/area/solar/port/aft) +/turf/open/floor/plating) "ctS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -74087,8 +71269,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "ctV" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; @@ -74118,8 +71299,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "ctX" = ( /obj/machinery/airalarm{ dir = 1; @@ -74128,14 +71308,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "ctY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, -/turf/open/floor/engine, -/area/engine/gravity_generator) +/turf/open/floor/engine) "ctZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -74148,8 +71326,7 @@ }, /obj/machinery/atmospherics/pipe/simple/orange/visible, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cua" = ( /obj/machinery/door/airlock/engineering{ name = "Port Bow Solar Access"; @@ -74269,8 +71446,7 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "cuk" = ( /obj/structure/cable{ icon_state = "1-8" @@ -74320,8 +71496,7 @@ anchored = 1 }, /obj/structure/barricade/wooden/crude, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "cup" = ( /obj/structure/sink{ dir = 4; @@ -74354,8 +71529,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cus" = ( /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, @@ -74364,12 +71538,6 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"cut" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/engine/engineering) "cuu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -74386,8 +71554,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -74424,8 +71591,7 @@ /obj/item/radio/intercom{ pixel_y = 24 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuz" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 1 @@ -74433,8 +71599,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuA" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -74442,8 +71607,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74464,14 +71628,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/engine, -/area/engine/engineering) -"cuD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 4 @@ -74536,8 +71693,7 @@ dir = 1; pixel_y = -22 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/grille_or_trash, @@ -74552,8 +71708,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/securearea{ @@ -74564,8 +71719,7 @@ "cuM" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible, /obj/machinery/meter, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuO" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 @@ -74573,8 +71727,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuP" = ( /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 8; @@ -74583,8 +71736,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuQ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74633,8 +71785,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuV" = ( /obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ dir = 8 @@ -74642,8 +71793,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -74654,8 +71804,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, @@ -74670,8 +71819,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cuZ" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12"; @@ -74687,8 +71835,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cvb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, @@ -74871,8 +72018,7 @@ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "cvs" = ( /obj/item/clothing/glasses/sunglasses, /obj/effect/decal/cleanable/blood/old, @@ -74892,8 +72038,7 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "cvu" = ( /obj/structure/reflector/double/anchored{ dir = 6 @@ -74901,8 +72046,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 8 }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "cvv" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -74920,8 +72064,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "cvx" = ( /obj/machinery/computer/slot_machine, /obj/effect/turf_decal/tile/neutral{ @@ -74998,8 +72141,7 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "cvD" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ dir = 8 @@ -75007,8 +72149,7 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/airless, -/area/engine/engineering) +/turf/open/floor/plating/airless) "cvE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -75094,8 +72235,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "cvM" = ( /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral{ @@ -75111,14 +72251,12 @@ /obj/machinery/gateway{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "cvN" = ( /obj/machinery/gateway/centerstation{ dir = 0 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "cvO" = ( /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral{ @@ -75134,8 +72272,7 @@ /obj/machinery/gateway{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "cvP" = ( /obj/machinery/door/poddoor{ id = "trash"; @@ -75154,8 +72291,7 @@ dir = 8; pixel_x = 32 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "cvR" = ( /obj/structure/cable{ icon_state = "2-8" @@ -75198,8 +72334,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "cvU" = ( /obj/effect/turf_decal/bot_white/right, /obj/effect/turf_decal/tile/neutral{ @@ -75215,8 +72350,7 @@ /obj/machinery/gateway{ dir = 6 }, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "cvV" = ( /obj/structure/cable{ icon_state = "4-8" @@ -75227,10 +72361,6 @@ /obj/machinery/light/small, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cvW" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/gateway) "cvX" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -75391,8 +72521,7 @@ /area/maintenance/starboard/aft) "cwn" = ( /obj/structure/sign/poster/official/twelve_gauge, -/turf/closed/wall, -/area/gateway) +/turf/closed/wall) "cwo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -75418,8 +72547,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/gateway) +/turf/open/floor/plasteel/dark) "cws" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/solars/starboard/aft"; @@ -75491,8 +72619,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cwy" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall, @@ -75556,8 +72683,7 @@ dir = 8; pixel_x = 24 }, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "cwF" = ( /obj/machinery/light/small{ dir = 4 @@ -75630,8 +72756,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cwL" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -75657,8 +72782,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cwM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -76025,8 +73149,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "cxy" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -76135,8 +73258,7 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "cxU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -76170,8 +73292,7 @@ name = "Engineering Blast Doors" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/engine/break_room) +/turf/open/floor/plating) "cyd" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -76215,8 +73336,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "cyg" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -76235,8 +73355,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "cyh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -76265,8 +73384,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel) "cyl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/grille/broken, @@ -76284,16 +73402,14 @@ name = "Engineering Foyer" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cyn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Engineering Foyer" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cyp" = ( /obj/machinery/computer/station_alert, /obj/effect/turf_decal/tile/neutral, @@ -76304,8 +73420,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cys" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -76327,8 +73442,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cyu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden/crude, @@ -76360,8 +73474,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cyy" = ( /obj/structure/sign/warning/nosmoking, /turf/closed/wall, @@ -76460,8 +73573,7 @@ name = "Vacant Office APC"; pixel_y = 23 }, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "cyI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sink/kitchen{ @@ -76493,8 +73605,7 @@ /obj/item/radio{ pixel_y = 6 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cyL" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 1 @@ -76607,8 +73718,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "czc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, @@ -76631,8 +73741,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "czf" = ( /obj/machinery/power/emitter/anchored{ dir = 4; @@ -76642,8 +73751,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "czg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ @@ -76823,8 +73931,7 @@ pixel_y = -26 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "czC" = ( /obj/item/trash/candy, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -76847,8 +73954,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "czK" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12"; @@ -77010,13 +74116,11 @@ /obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "cAj" = ( /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/chapel/office) +/turf/open/floor/wood) "cAk" = ( /obj/structure/closet/crate/coffin, /obj/effect/decal/cleanable/dirt, @@ -77031,8 +74135,7 @@ dir = 8; pixel_x = 32 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "cAo" = ( /obj/item/trash/can{ pixel_y = -8; @@ -77049,10 +74152,9 @@ /area/maintenance/fore) "cAp" = ( /obj/structure/sign/departments/holy, -/turf/closed/wall/rust, -/area/chapel/office) +/turf/closed/wall/rust) "cAq" = ( -/obj/structure/double_bed, +/obj/structure/bed/double, /obj/item/reagent_containers/food/snacks/cakeslice/birthday, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/orange, @@ -77229,8 +74331,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "cBf" = ( /obj/structure/grille, /obj/effect/decal/cleanable/dirt, @@ -77261,8 +74362,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "cBi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -77333,8 +74433,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "cBr" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate{ @@ -77365,8 +74464,7 @@ /obj/effect/turf_decal/tile/red, /obj/item/clothing/mask/gas/sechailer/swat, /obj/item/screwdriver, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cBv" = ( /obj/structure/flora/grass/jungle, /turf/open/floor/plating/asteroid/airless{ @@ -77398,22 +74496,15 @@ "cBz" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cBA" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) +/turf/closed/wall/r_wall) "cBB" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "cBC" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "cBF" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -77439,8 +74530,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, -/turf/closed/wall, -/area/engine/atmos) +/turf/closed/wall) "cBI" = ( /turf/open/floor/plating/asteroid/airless{ initial_gas_mix = "o2=14;n2=23;TEMP=300" @@ -77449,8 +74539,7 @@ "cBJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "cBQ" = ( /obj/machinery/door/airlock/external{ name = "External Airlock"; @@ -77533,30 +74622,26 @@ pixel_x = -24; pixel_y = -24 }, -/turf/open/floor/carpet/orange, -/area/crew_quarters/locker) +/turf/open/floor/carpet/orange) "cBX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "Unit_3Privacy"; name = "Unit 3 Privacy Shutter" }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plating) "cBY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "Unit_2Privacy"; name = "Unit 2 Privacy Shutter" }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plating) "cBZ" = ( /obj/machinery/newscaster{ pixel_x = -30 }, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "cCa" = ( /obj/structure/cable{ icon_state = "4-8" @@ -77640,16 +74725,6 @@ initial_gas_mix = "o2=14;n2=23;TEMP=300" }, /area/maintenance/central/secondary) -"cCl" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) "cCo" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -77670,8 +74745,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "cCr" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, @@ -77693,8 +74767,7 @@ name = "chapel maintenance"; req_one_access_txt = "22" }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) +/turf/open/floor/plasteel/dark) "cCz" = ( /obj/structure/closet{ name = "maid locker" @@ -77745,8 +74818,7 @@ name = "Hydroponics Desk"; req_access_txt = "35" }, -/turf/open/floor/plating, -/area/hydroponics) +/turf/open/floor/plating) "cCE" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral, @@ -77950,8 +75022,7 @@ }, /area/maintenance/fore) "cDj" = ( -/turf/open/space/basic, -/area/quartermaster/storage) +/turf/open/space/basic) "cDk" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -77967,12 +75038,7 @@ /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) -"cDn" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) +/turf/open/floor/plasteel/dark) "cDo" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -78011,14 +75077,12 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cDs" = ( /obj/structure/sign/poster/contraband/random{ pixel_x = -32 }, -/turf/open/floor/carpet/green, -/area/quartermaster/warehouse) +/turf/open/floor/carpet/green) "cDv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -78095,8 +75159,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cDD" = ( /obj/effect/turf_decal/tile/red, /obj/structure/cable{ @@ -78109,8 +75172,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cDE" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -78280,8 +75342,7 @@ "cDU" = ( /obj/structure/sign/warning/fire, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "cDW" = ( /obj/structure/chair/sofa/right{ color = "#c45c57" @@ -78693,8 +75754,7 @@ /obj/machinery/newscaster{ pixel_x = -30 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/plasteel/dark) "cFf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -78782,8 +75842,7 @@ pixel_x = 6; pixel_y = -24 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cFv" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;47" @@ -78805,8 +75864,7 @@ "cFz" = ( /obj/structure/sign/warning/vacuum, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "cFA" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -78857,8 +75915,7 @@ "cFF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) +/turf/closed/wall/r_wall) "cFH" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -78906,8 +75963,7 @@ "cFS" = ( /obj/effect/landmark/carpspawn, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) +/turf/open/space/basic) "cFT" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, @@ -79197,18 +76253,7 @@ id = "forestarboard"; name = "Fore-Starboard Solar Array" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/fore) -"cGW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space, -/area/solar/port/aft) +/turf/open/floor/plasteel/airless/solarpanel) "cGX" = ( /obj/structure/cable{ icon_state = "0-8" @@ -79218,8 +76263,7 @@ id = "forestarboard"; name = "Fore-Starboard Solar Array" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/fore) +/turf/open/floor/plasteel/airless/solarpanel) "cGZ" = ( /obj/structure/cable{ icon_state = "0-8" @@ -79228,8 +76272,7 @@ id = "portsolar"; name = "Port Solar Array" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) +/turf/open/floor/plasteel/airless/solarpanel) "cHa" = ( /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/fore) @@ -79361,8 +76404,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "cHw" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -79372,8 +76414,7 @@ icon_state = "1-2" }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cHx" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -79402,8 +76443,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cHB" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -79443,8 +76483,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cHF" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -79484,8 +76523,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cHI" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -79496,8 +76534,7 @@ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cHJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -79537,8 +76574,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/chief) +/turf/open/floor/plasteel/dark) "cHS" = ( /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment, @@ -79570,8 +76606,7 @@ icon_state = "2-4" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cHW" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -79581,8 +76616,7 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cHY" = ( /obj/machinery/photocopier, /obj/effect/turf_decal/tile/neutral, @@ -79595,8 +76629,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cIa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -79606,8 +76639,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/security/main) +/turf/open/floor/plasteel/dark) "cIc" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/blood/old, @@ -79703,8 +76735,7 @@ /obj/machinery/light_switch{ pixel_x = -24 }, -/turf/open/floor/plasteel/dark, -/area/storage/tcom) +/turf/open/floor/plasteel/dark) "cIq" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, @@ -79763,8 +76794,7 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/toilet/restrooms) +/turf/open/floor/plasteel/showroomfloor) "cIt" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -79778,8 +76808,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/storage/tcom) +/turf/open/floor/plasteel/dark) "cIw" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -79861,8 +76890,7 @@ /obj/machinery/status_display/ai{ pixel_y = 32 }, -/turf/open/floor/plasteel/dark, -/area/storage/tcom) +/turf/open/floor/plasteel/dark) "cIK" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, @@ -79873,10 +76901,6 @@ }, /turf/open/floor/plasteel/dark, /area/maintenance/starboard/fore) -"cIM" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/storage/tcom) "cIN" = ( /obj/structure/table/glass, /obj/item/shovel/spade, @@ -79903,8 +76927,7 @@ dir = 5 }, /obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/storage/tcom) +/turf/closed/wall) "cIP" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -80010,9 +77033,6 @@ }, /turf/open/floor/plasteel/dark, /area/construction/mining/aux_base) -"cJc" = ( -/turf/closed/wall/rust, -/area/library) "cJe" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 3"; @@ -80352,8 +77372,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cKa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -80370,13 +77389,11 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cKb" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) +/turf/open/floor/plasteel) "cKd" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -80440,15 +77457,13 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/space, -/area/solar/port/aft) +/turf/open/space) "cKj" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/space/basic, -/area/solar/port/aft) +/turf/open/space/basic) "cKk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -80483,8 +77498,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cKn" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -80497,8 +77511,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cKo" = ( /obj/effect/turf_decal/tile/red{ dir = 8 @@ -80508,8 +77521,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel, -/area/security/main) +/turf/open/floor/plasteel) "cKp" = ( /obj/structure/cable{ icon_state = "4-8" @@ -80558,8 +77570,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "cKz" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -80570,8 +77581,7 @@ icon_state = "4-8" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cKC" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, @@ -80587,8 +77597,7 @@ icon_state = "2-4" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "cKF" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -80603,8 +77612,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cKG" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -80616,8 +77624,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) +/turf/open/floor/plasteel/dark) "cKI" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/red, @@ -80630,8 +77637,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel, -/area/engine/engineering) +/turf/open/floor/plasteel) "cKM" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -80649,8 +77655,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cKN" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -80675,8 +77680,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cKP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -80686,16 +77690,14 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cKR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 }, /obj/effect/turf_decal/tile/neutral, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cKT" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -80718,8 +77720,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/showroomfloor, -/area/engine/atmos) +/turf/open/floor/plasteel/showroomfloor) "cKW" = ( /obj/effect/turf_decal/bot, /obj/machinery/disposal/bin, @@ -80733,8 +77734,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) +/turf/open/floor/plasteel/dark) "cKX" = ( /obj/structure/closet/firecloset, /obj/machinery/light/small{ @@ -80920,10 +77920,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"cLN" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/aft) "cLO" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -80933,8 +77929,7 @@ icon_state = "manifold-3"; dir = 4 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "cLQ" = ( /obj/machinery/door/airlock/engineering{ name = "Starboard Bow Solar Access"; @@ -81254,8 +78249,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plating/airless, -/area/solar/starboard/fore) +/turf/open/floor/plating/airless) "cMU" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -81267,8 +78261,7 @@ icon_state = "vent_map_on-3"; dir = 4 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "cMV" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, @@ -81276,8 +78269,7 @@ icon_state = "manifold-3"; dir = 1 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "cMW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -81346,8 +78338,7 @@ icon_state = "2-8" }, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) +/turf/open/space/basic) "cNn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -81394,15 +78385,13 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/space, -/area/solar/port/aft) +/turf/open/space) "cNz" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "cNB" = ( /turf/closed/wall/r_wall/rust, /area/maintenance/solars/starboard/fore) @@ -81452,8 +78441,7 @@ }, /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "cNL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -81597,8 +78585,7 @@ "cOW" = ( /obj/effect/turf_decal/tile/neutral, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "cPa" = ( /obj/machinery/door/airlock/security/glass{ name = "Prison Yard" @@ -81618,8 +78605,7 @@ /area/security/prison) "cPb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/bridge) +/turf/open/floor/plasteel) "cPj" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/window/reinforced{ @@ -81632,21 +78618,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/grass, -/area/hydroponics) -"cQn" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/port/aft) +/turf/open/floor/grass) "cQP" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 2"; @@ -81822,8 +78794,7 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/rack, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "cZm" = ( /turf/closed/wall/rust, /area/security/prison) @@ -81834,8 +78805,7 @@ /obj/structure/chair/stool, /turf/open/floor/wood{ icon_state = "wood-broken" - }, -/area/security/vacantoffice) + }) "dky" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -81848,38 +78818,13 @@ /area/maintenance/starboard) "dlg" = ( /obj/machinery/light, -/turf/open/floor/wood, -/area/security/vacantoffice) -"dlh" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"dpf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) +/turf/open/floor/wood) "dvB" = ( /obj/structure/cable{ icon_state = "0-8" }, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) +/turf/open/space/basic) "dxq" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/tile/neutral{ @@ -81892,8 +78837,7 @@ /obj/machinery/computer/mecha{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) +/turf/open/floor/plasteel/dark) "dxA" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ @@ -81912,8 +78856,7 @@ "dBo" = ( /obj/machinery/atmospherics/components/binary/valve/layer3, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "dKu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -81945,7 +78888,7 @@ /turf/open/floor/plasteel/dark, /area/science/research) "dPH" = ( -/obj/structure/double_bed, +/obj/structure/bed/double, /obj/item/bedsheet/double_blue, /turf/open/floor/carpet/blue, /area/maintenance/starboard) @@ -81978,8 +78921,7 @@ icon_state = "1-4" }, /obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "ecd" = ( /obj/structure/closet/crate{ icon_state = "crateopen" @@ -81990,7 +78932,7 @@ /turf/open/floor/mineral/calorite, /area/space/nearstation) "eeU" = ( -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /turf/open/floor/wood, /area/maintenance/starboard) "enV" = ( @@ -82010,8 +78952,7 @@ /obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "eow" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -82032,10 +78973,6 @@ icon_state = "wood-broken7" }, /area/maintenance/port/fore) -"evh" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall, -/area/quartermaster/warehouse) "evx" = ( /turf/open/floor/engine{ initial_gas_mix = "n2=100;TEMP=80"; @@ -82095,8 +79032,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "eOu" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" @@ -82114,8 +79050,7 @@ name = "Freight Station APC"; pixel_x = -26 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "fcv" = ( /obj/structure/sign/warning/fire{ pixel_x = 32 @@ -82127,16 +79062,14 @@ /obj/structure/chair/sofa, /turf/open/floor/wood{ icon_state = "wood-broken6" - }, -/area/security/vacantoffice) + }) "fmc" = ( /obj/machinery/door/firedoor, /obj/structure/door_assembly/door_assembly_ext{ anchored = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "fuh" = ( /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/tile/neutral, @@ -82155,8 +79088,7 @@ id = "NTMSLoad"; name = "off ramp" }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "fyr" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/closed/mineral/random/labormineral, @@ -82172,8 +79104,7 @@ /obj/item/tank/internals/oxygen/empty, /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "fFL" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -82182,28 +79113,13 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/space, -/area/solar/port/aft) -"fHA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard/aft) +/turf/open/space) "fQw" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "fXq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -82218,10 +79134,6 @@ dir = 8 }, /area/hallway/primary/fore) -"fYD" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) "fYL" = ( /obj/structure/table/wood, /obj/machinery/reagentgrinder{ @@ -82232,8 +79144,7 @@ "gmF" = ( /turf/open/floor/wood{ icon_state = "wood-broken" - }, -/area/security/vacantoffice) + }) "gnA" = ( /obj/machinery/airalarm{ dir = 1; @@ -82253,8 +79164,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating, -/area/engine/engineering) +/turf/open/floor/plating) "grW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -82286,8 +79196,7 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plasteel) "gwE" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -82296,7 +79205,7 @@ /turf/open/space/basic, /area/space/nearstation) "gwP" = ( -/obj/structure/double_bed, +/obj/structure/bed/double, /obj/item/bedsheet/double_red, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -82307,12 +79216,10 @@ name = "drain" }, /obj/structure/chair/sofa/left, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "gCn" = ( /obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) +/turf/open/floor/plating) "gIE" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/closed/mineral/random/labormineral, @@ -82341,8 +79248,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "gKK" = ( /obj/structure/sink{ pixel_y = 24 @@ -82359,8 +79265,7 @@ /area/maintenance/starboard) "gKW" = ( /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/quartermaster/storage) +/turf/open/space/basic) "gKZ" = ( /obj/machinery/light/small{ dir = 1 @@ -82378,16 +79283,9 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"gPA" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/security/vacantoffice) +/turf/open/floor/plasteel/airless/solarpanel) "gQP" = ( -/turf/open/floor/carpet/green, -/area/quartermaster/warehouse) +/turf/open/floor/carpet/green) "gSB" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12"; @@ -82395,16 +79293,6 @@ }, /turf/open/floor/wood, /area/maintenance/port/fore) -"gWo" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) -"gXD" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) "hbM" = ( /obj/structure/table, /obj/item/restraints/handcuffs/cable/zipties, @@ -82420,8 +79308,7 @@ "her" = ( /obj/machinery/vending/cola/random, /obj/effect/turf_decal/bot, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "hfR" = ( /obj/machinery/conveyor{ dir = 2; @@ -82432,8 +79319,7 @@ id = "freight_port"; name = "Freight Bay Blast door" }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "hgW" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/chair/stool, @@ -82500,25 +79386,18 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet/cardboard, /obj/effect/spawner/bundle/costume/maid, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "hGl" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/rust, /area/maintenance/port/fore) -"hKF" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/starboard/aft) "hLm" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet/secure_closet/personal, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ icon_state = "wood-broken" - }, -/area/quartermaster/warehouse) + }) "hNk" = ( /turf/closed/wall/r_wall/rust, /area/security/prison) @@ -82527,8 +79406,7 @@ icon_state = "0-2" }, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) +/turf/open/space/basic) "hVj" = ( /obj/item/trash/plate{ pixel_y = -12; @@ -82556,18 +79434,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"iav" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/fitness/pool) +/turf/open/floor/plating) "ice" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -82601,8 +79468,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "itZ" = ( /obj/structure/lattice, /obj/structure/grille/broken, @@ -82610,17 +79476,7 @@ /area/space/nearstation) "iwu" = ( /obj/structure/lattice, -/turf/open/space/basic, -/area/quartermaster/storage) -"izv" = ( -/turf/open/floor/engine, -/area/engine/supermatter) -"iAT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating/airless, -/area/solar/port/aft) +/turf/open/space/basic) "iBL" = ( /obj/machinery/camera{ c_tag = "Laser Room Starboard"; @@ -82628,8 +79484,7 @@ name = "laser room camera"; network = list("ss13","engine") }, -/turf/open/floor/engine, -/area/engine/engineering) +/turf/open/floor/engine) "iCs" = ( /obj/structure/cable{ icon_state = "2-4" @@ -82642,12 +79497,10 @@ }, /obj/effect/landmark/carpspawn, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) +/turf/open/space/basic) "iFJ" = ( /obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) +/turf/open/space) "iIk" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -82657,8 +79510,7 @@ icon_state = "manifold-3"; dir = 8 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "iLn" = ( /obj/machinery/vending/boozeomat, /turf/open/floor/wood, @@ -82720,8 +79572,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "jaZ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -82771,8 +79622,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) +/turf/open/floor/plasteel) "jjR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -82791,8 +79641,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) +/turf/open/floor/plasteel/airless/solarpanel) "juX" = ( /obj/machinery/camera{ c_tag = "Xenobiology Cell 2"; @@ -82818,8 +79667,7 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "jAT" = ( /obj/structure/lattice/catwalk, /obj/machinery/light, @@ -82859,16 +79707,7 @@ /obj/machinery/chem_dispenser/drinks, /turf/open/floor/wood{ icon_state = "wood-broken4" - }, -/area/security/vacantoffice) -"jRu" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) + }) "jRw" = ( /obj/structure/sign/poster/official/high_class_martini, /turf/closed/wall/r_wall, @@ -82878,12 +79717,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/turf/open/space, -/area/solar/port/aft) -"jUf" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/supermatter) +/turf/open/space) "jUj" = ( /obj/structure/closet/cabinet, /obj/item/reagent_containers/food/drinks/bottle/absinthe/premium, @@ -82978,8 +79812,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "jUZ" = ( /obj/item/poster/random_contraband, /obj/item/poster/random_contraband, @@ -83011,33 +79844,25 @@ "kam" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, -/turf/open/space, -/area/solar/port/aft) +/turf/open/space) "kcU" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/blood/gibs/old, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "khA" = ( /turf/closed/wall/rust, /area/construction/mining/aux_base) -"kmy" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/quartermaster/office) "koc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "krk" = ( /obj/effect/turf_decal/bot, /obj/structure/sign/warning/fire{ pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/portables_connector/layer3, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "krJ" = ( /turf/closed/wall/rust, /area/hallway/secondary/exit/departure_lounge) @@ -83072,12 +79897,10 @@ icon_state = "1-8" }, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) +/turf/open/space/basic) "kzw" = ( /obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/locker) +/turf/open/floor/wood) "kGs" = ( /obj/structure/toilet{ pixel_y = 12 @@ -83100,16 +79923,14 @@ /area/ruin/space/has_grav/powered/dinner_for_two) "kOO" = ( /obj/structure/flora/junglebush/c, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "kQQ" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "kRh" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -83127,8 +79948,7 @@ "kRp" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "kSc" = ( /obj/structure/sign/nanotrasen, /turf/closed/wall, @@ -83140,20 +79960,17 @@ "kXo" = ( /obj/structure/table/wood/poker, /obj/item/toy/cards/deck, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "kYy" = ( /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plating/airless, -/area/solar/port/aft) +/turf/open/floor/plating/airless) "lcY" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "leX" = ( /obj/structure/chair/stool, /turf/open/floor/wood{ @@ -83172,17 +79989,13 @@ /area/space/nearstation) "llm" = ( /obj/structure/sign/poster/ripped, -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) +/turf/closed/wall) "lnV" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, /turf/open/floor/mineral/calorite, /area/space/nearstation) -"loZ" = ( -/turf/open/floor/plating/airless, -/area/solar/starboard/aft) "lpV" = ( /obj/machinery/door/airlock/maintenance{ req_one_access_txt = "12;47" @@ -83202,8 +80015,7 @@ "lrR" = ( /obj/structure/tank_dispenser/oxygen, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "lvq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -83251,8 +80063,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "mej" = ( /turf/closed/wall/r_wall/rust, /area/science/robotics/lab) @@ -83266,13 +80077,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "mhL" = ( /obj/structure/lattice/catwalk, /obj/item/stack/cable_coil, -/turf/open/space, -/area/solar/starboard/aft) +/turf/open/space) "mmZ" = ( /obj/machinery/cryopod, /obj/structure/cable{ @@ -83282,14 +80091,10 @@ /obj/effect/turf_decal/tile/red, /turf/open/floor/plasteel/showroomfloor, /area/security/prison) -"mwy" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) "mys" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) +/turf/open/space/basic) "mIt" = ( /obj/structure/disposalpipe/segment, /obj/machinery/navbeacon{ @@ -83323,8 +80128,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "mKj" = ( /turf/closed/wall/rust, /area/security/execution/education) @@ -83336,11 +80140,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"mLi" = ( -/turf/open/floor/plating/airless, -/area/solar/port/fore) +/turf/open/floor/wood) "mLN" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/mineral/random/labormineral, @@ -83364,16 +80164,11 @@ icon_state = "1-2" }, /obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/solar/port/fore) +/turf/open/floor/plating/airless) "nED" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/maintenance/port/fore) -"nGr" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/vacantoffice) "nHl" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 @@ -83404,18 +80199,15 @@ id = "kitchen"; name = "Serving Hatch" }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) +/turf/open/floor/plating) "nML" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "nNA" = ( -/turf/closed/wall/rust, -/area/bridge) +/turf/closed/wall/rust) "nOF" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/bottle/champagne{ @@ -83432,14 +80224,12 @@ icon_state = "2-8" }, /obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/solar/port/fore) +/turf/open/floor/plating/airless) "nSK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "nXu" = ( /obj/structure/cable{ icon_state = "4-8" @@ -83473,8 +80263,7 @@ }, /obj/structure/cable, /obj/structure/barricade/wooden/crude, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "ofj" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" @@ -83487,8 +80276,7 @@ /obj/item/shard, /turf/open/floor/wood{ icon_state = "wood-broken4" - }, -/area/quartermaster/warehouse) + }) "ojZ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip/feeding_tube, @@ -83502,45 +80290,38 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "olz" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{ icon_state = "manifold-3"; dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "omf" = ( /obj/structure/chair/sofa/left, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "ovE" = ( /obj/structure/sign/warning/vacuum, -/turf/closed/wall/rust, -/area/quartermaster/warehouse) +/turf/closed/wall/rust) "ovS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining/glass{ name = "Freight Mining Airlock" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "ozn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{ icon_state = "vent_map_on-3"; dir = 8 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "oIS" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/space, -/area/solar/starboard/aft) +/turf/open/space) "oPf" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -83551,8 +80332,7 @@ }, /area/hallway/primary/fore) "oPT" = ( -/turf/open/floor/plating/airless, -/area/solar/starboard/fore) +/turf/open/floor/plating/airless) "oTy" = ( /obj/docking_port/stationary{ dir = 4; @@ -83569,41 +80349,30 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "oXQ" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 6 }, /turf/open/space/basic, /area/space/nearstation) -"pcD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/port) "pei" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "peJ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "ppP" = ( /obj/structure/table/wood/poker, /turf/open/floor/wood{ icon_state = "wood-broken7" - }, -/area/security/vacantoffice) + }) "pqr" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "research_shutters"; @@ -83632,8 +80401,7 @@ icon_state = "0-8" }, /obj/structure/sign/nanotrasen, -/turf/open/floor/plating, -/area/bridge) +/turf/open/floor/plating) "pCe" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/plating/asteroid/airless, @@ -83657,8 +80425,7 @@ dir = 4 }, /obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/locker) +/turf/open/floor/plating) "pFx" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{ icon_state = "manifold-3"; @@ -83669,21 +80436,12 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "pJm" = ( /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plating/airless, -/area/solar/port/fore) -"pKp" = ( -/turf/closed/wall, -/area/gateway) -"pKY" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/gateway) +/turf/open/floor/plating/airless) "pMr" = ( /obj/structure/lattice/catwalk, /obj/item/stack/marker_beacon{ @@ -83695,16 +80453,14 @@ name = "landing marker"; picked_color = "Burgundy" }, -/turf/open/space/basic, -/area/quartermaster/storage) +/turf/open/space/basic) "pMw" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{ icon_state = "pipe11-3"; dir = 4 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "pNP" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks{ @@ -83714,31 +80470,19 @@ icon_state = "wood-broken4" }, /area/maintenance/port/fore) -"pRq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solar/port/aft) "pRE" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"pSg" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) +/turf/open/floor/plating) "pTP" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/open/floor/plating/asteroid/airless, /area/space/nearstation) "pWM" = ( -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "qcc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -83751,14 +80495,12 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "qfV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) +/turf/open/floor/wood) "qfZ" = ( /obj/structure/cable{ icon_state = "1-8" @@ -83829,8 +80571,7 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "qvS" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=W CPH"; @@ -83851,16 +80592,14 @@ /obj/item/shard, /turf/open/floor/wood{ icon_state = "wood-broken6" - }, -/area/quartermaster/warehouse) + }) "qyy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer3, /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "qyG" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/shaker, @@ -83882,8 +80621,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "qIR" = ( /obj/machinery/camera{ c_tag = "Xenobiology Cell 6"; @@ -83921,13 +80659,6 @@ "qRM" = ( /turf/open/floor/plating, /area/space/nearstation) -"qSk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/starboard/aft) "qTM" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -83946,11 +80677,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/open/space, -/area/solar/starboard/aft) -"qWU" = ( -/turf/closed/wall/rust, -/area/chapel/main) +/turf/open/space) "qYk" = ( /obj/structure/sign/nanotrasen, /turf/closed/wall, @@ -83970,8 +80697,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "riJ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -84003,8 +80729,7 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3, /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "ruL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ @@ -84028,8 +80753,7 @@ /area/space/nearstation) "rxW" = ( /obj/structure/table_frame/wood, -/turf/open/floor/carpet/green, -/area/quartermaster/warehouse) +/turf/open/floor/carpet/green) "rEL" = ( /obj/structure/chair/sofachair{ dir = 4 @@ -84038,8 +80762,7 @@ /area/ruin/space/has_grav/powered/dinner_for_two) "rHQ" = ( /obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/quartermaster/warehouse) +/turf/closed/wall/rust) "rIj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/decal/cleanable/dirt, @@ -84059,8 +80782,7 @@ name = "Mining Dock"; req_access_txt = "48" }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "rJx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/personal/cabinet, @@ -84078,8 +80800,7 @@ dir = 1 }, /obj/effect/landmark/start/mime, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "rXw" = ( /obj/structure/table, /obj/item/reagent_containers/glass/beaker/large, @@ -84099,8 +80820,7 @@ icon_state = "2-8" }, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) +/turf/open/space/basic) "siZ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -84113,8 +80833,7 @@ "sny" = ( /obj/effect/decal/cleanable/blood/old, /obj/item/stack/rods, -/turf/open/floor/carpet/green, -/area/quartermaster/warehouse) +/turf/open/floor/carpet/green) "soT" = ( /obj/structure/flora/rock/pile{ icon_state = "lavarocks3" @@ -84165,8 +80884,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) +/turf/open/floor/plasteel/dark) "sDw" = ( /obj/structure/sign/warning, /turf/closed/wall/rust, @@ -84191,8 +80909,7 @@ /area/ruin/space/has_grav/powered/dinner_for_two) "sNQ" = ( /obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/crew_quarters/theatre) +/turf/open/floor/grass) "sOB" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -84202,8 +80919,7 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) +/turf/open/floor/plasteel/dark) "sSM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{ icon_state = "vent_map_on-3"; @@ -84212,21 +80928,13 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/wood{ icon_state = "wood-broken4" - }, -/area/quartermaster/warehouse) + }) "sWL" = ( /obj/structure/cable{ icon_state = "0-4" }, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) -"sYc" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating/airless, -/area/solar/starboard/fore) +/turf/open/space/basic) "sYx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/external{ @@ -84242,8 +80950,7 @@ icon_state = "pipe11-3"; dir = 4 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "taj" = ( /obj/item/flashlight/lantern{ icon_state = "lantern-on"; @@ -84256,16 +80963,14 @@ "tcG" = ( /obj/machinery/autolathe, /obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/quartermaster/office) +/turf/open/floor/plating) "tdM" = ( /obj/machinery/door/poddoor{ id = "chapelgun"; name = "Chapel Launcher Door" }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/chapel/office) +/turf/open/floor/plasteel/dark) "tfY" = ( /obj/structure/table/wood/fancy, /obj/item/reagent_containers/food/snacks/meatballspaghetti{ @@ -84278,8 +80983,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "tlb" = ( /obj/item/flashlight/lantern{ icon_state = "lantern-on"; @@ -84291,7 +80995,7 @@ /area/ruin/space/has_grav/powered/dinner_for_two) "tmA" = ( /obj/structure/chair/sofa/right, -/obj/item/clothing/under/janimaid, +/obj/item/clothing/under/rank/civilian/janitor/maid, /turf/open/floor/carpet, /area/maintenance/port/fore) "tog" = ( @@ -84347,22 +81051,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/maintenance/port/fore) -"tYM" = ( -/turf/closed/wall, -/area/storage/tcom) -"uaf" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) "uat" = ( /obj/structure/closet/crate{ icon_state = "crateopen" @@ -84390,8 +81078,7 @@ icon_state = "1-2" }, /obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) +/turf/open/space/basic) "udQ" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/bot, @@ -84415,8 +81102,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "ukP" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/bot/cleanbot{ @@ -84448,8 +81134,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "usX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{ icon_state = "vent_map_on-3"; @@ -84460,8 +81145,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "utI" = ( /obj/structure/chair/sofachair, /obj/machinery/light/small{ @@ -84478,8 +81162,7 @@ dir = 10 }, /obj/structure/cable, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "uxQ" = ( /obj/effect/decal/cleanable/ash, /turf/closed/mineral/random/labormineral, @@ -84493,29 +81176,22 @@ "uzF" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"uzR" = ( -/turf/closed/wall/rust, -/area/storage/primary) +/turf/open/floor/plating) "uFH" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "uGi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "uHm" = ( /obj/structure/table, /obj/item/wallframe/airalarm, /obj/item/screwdriver{ pixel_y = 6 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "uJI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ @@ -84533,13 +81209,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"uQS" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/chapel/main) -"uRM" = ( -/turf/open/floor/wood, -/area/security/vacantoffice) "vaJ" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "ceprivate"; @@ -84548,8 +81217,7 @@ /obj/machinery/door/firedoor, /obj/effect/turf_decal/caution/stand_clear, /obj/structure/closet/crate/solarpanel_defence, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) +/turf/open/floor/plasteel/dark) "vjT" = ( /obj/item/clothing/suit/space/eva{ pixel_y = -8; @@ -84561,10 +81229,6 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/powered/dinner_for_two) -"vle" = ( -/obj/structure/pole, -/turf/open/floor/carpet/black, -/area/security/vacantoffice) "vmu" = ( /obj/machinery/firealarm{ dir = 1; @@ -84588,19 +81252,13 @@ pixel_y = 15 }, /obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) +/turf/open/floor/plasteel/dark) "voj" = ( /obj/structure/cable{ icon_state = "0-4" }, /obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"vrf" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/crew_quarters/theatre) +/turf/open/space) "vsD" = ( /obj/machinery/conveyor{ dir = 4; @@ -84617,15 +81275,7 @@ /obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) -"vEg" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port/fore) +/turf/open/floor/plasteel/dark) "vJX" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/toy/plush, @@ -84637,15 +81287,13 @@ icon_state = "0-8" }, /obj/effect/turf_decal/box, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/fore) +/turf/open/floor/plasteel/airless/solarpanel) "vWt" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate{ icon_state = "crateopen" }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "vZP" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -84654,8 +81302,7 @@ dir = 4 }, /obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "wav" = ( /obj/structure/cable{ icon_state = "4-8" @@ -84676,12 +81323,6 @@ /obj/structure/statue/calorite/fatty, /turf/open/floor/plating/asteroid/airless, /area/space/nearstation) -"wcg" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating/airless, -/area/solar/starboard/aft) "wcN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -84697,8 +81338,7 @@ dir = 4 }, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "whZ" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -84709,18 +81349,15 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/plasteel, -/area/hydroponics) +/turf/open/floor/plasteel) "wiK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/chair/sofa/right, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "wqJ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, -/turf/open/space/basic, -/area/solar/port/aft) +/turf/open/space/basic) "wsc" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -84729,8 +81366,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/space, -/area/solar/starboard/aft) +/turf/open/space) "wtS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -84749,8 +81385,7 @@ "wuk" = ( /obj/structure/table/wood/poker, /obj/item/book/manual/blubbery_bartender, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) "wCm" = ( /turf/open/floor/plasteel, /area/maintenance/port/fore) @@ -84788,8 +81423,7 @@ /area/hallway/secondary/exit/departure_lounge) "wQg" = ( /obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/quartermaster/warehouse) +/turf/closed/wall/rust) "wRE" = ( /obj/effect/turf_decal/stripes/line, /obj/effect/decal/cleanable/blood/old, @@ -84797,8 +81431,7 @@ icon_state = "pipe11-3"; dir = 9 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "wSu" = ( /obj/structure/frame/computer{ anchored = 1; @@ -84806,8 +81439,7 @@ icon_state = "0" }, /obj/item/stack/cable_coil/cut, -/turf/open/floor/wood, -/area/quartermaster/warehouse) +/turf/open/floor/wood) "wWa" = ( /turf/open/floor/wood, /area/ruin/space/has_grav/powered/dinner_for_two) @@ -84817,8 +81449,7 @@ /area/security/courtroom) "wWG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "wYX" = ( /obj/machinery/conveyor{ dir = 2; @@ -84835,24 +81466,20 @@ dir = 4 }, /obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel/dark) "xiq" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/engine, -/area/engine/supermatter) +/turf/open/floor/engine) "xlT" = ( /obj/structure/punching_bag, -/turf/open/floor/wood, -/area/crew_quarters/fitness/recreation) +/turf/open/floor/wood) "xmU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "xoF" = ( /obj/docking_port/stationary{ dir = 8; @@ -84889,14 +81516,7 @@ /obj/effect/turf_decal/tile/purple{ dir = 8 }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/locker) -"xwB" = ( -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"xCY" = ( -/turf/closed/wall, -/area/lawoffice) +/turf/open/floor/plasteel/dark) "xJY" = ( /obj/structure/rack, /obj/item/storage/backpack, @@ -84918,13 +81538,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plating, -/area/engine/engineering) -"xPL" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/solar/port/aft) +/turf/open/floor/plating) "xRm" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -84946,15 +81560,13 @@ pixel_x = 8; pixel_y = -24 }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "xRw" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/quartermaster/warehouse) +/turf/open/floor/plating) "xSa" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 @@ -84969,8 +81581,7 @@ icon_state = "vent_map_on-3"; dir = 4 }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) +/turf/open/floor/plasteel) "xTd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, @@ -85030,8 +81641,7 @@ /area/space/nearstation) "ykB" = ( /obj/structure/chair/stool, -/turf/open/floor/wood, -/area/security/vacantoffice) +/turf/open/floor/wood) (1,1,1) = {" aaa @@ -93178,25 +89788,25 @@ aaa aaa cnw aaa -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ +ckm +ckm +ckm +ckm +ckm +ckm +ckm +ckm aaa jTB aaa -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ +ckm +ckm +ckm +ckm +ckm +ckm +ckm +ckm aaa cnw aaa @@ -93435,17 +90045,17 @@ aaa aaa cnw ckk -cGW -cQn -cQn -cQn -cQn -cQn -cQn -cQn +wsc +ckB +ckB +ckB +ckB +ckB +ckB +ckB kam -xPL -pRq +mhL +qVV cKi cKi cKi @@ -93692,25 +90302,25 @@ aaa aaa cnw aaa -dlh -dlh -dlh -dlh -dlh -dlh -dlh -dlh +cGZ +cGZ +cGZ +cGZ +cGZ +cGZ +cGZ +cGZ aaa iFJ aaa -cnt -cnt -cnt -cnt -cnt -cnt -cnt -dlh +ckg +ckg +ckg +ckg +ckg +ckg +ckg +cGZ aaa cnw aaa @@ -94206,25 +90816,25 @@ acm aaa cnw aaa -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ +ckm +ckm +ckm +ckm +ckm +ckm +ckm +ckm aaa iFJ aaa -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ +ckm +ckm +ckm +ckm +ckm +ckm +ckm +ckm aaa cnw aaa @@ -94463,17 +91073,17 @@ aaa aaa cnw ckk -cGW -cQn -cQn -cQn -cQn -cQn -cQn -cQn +wsc +ckB +ckB +ckB +ckB +ckB +ckB +ckB kam iFJ -pRq +qVV cKi cKi cKi @@ -94720,25 +91330,25 @@ aeo aeo cnw aaa -dlh -dlh -dlh -dlh -dlh -dlh -dlh -dlh +cGZ +cGZ +cGZ +cGZ +cGZ +cGZ +cGZ +cGZ aaa iFJ aaa -cnt -cnt -cnt -cnt -cnt -cnt -cnt -dlh +ckg +ckg +ckg +ckg +ckg +ckg +ckg +cGZ aaa cnw aaa @@ -95234,25 +91844,25 @@ aaa aaa cnw aaa -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ +ckm +ckm +ckm +ckm +ckm +ckm +ckm +ckm aaa iFJ aaa -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ +ckm +ckm +ckm +ckm +ckm +ckm +ckm +ckm aaa cnw aaa @@ -95491,17 +92101,17 @@ aaa aaa cnw ckk -cGW -cQn -cQn -cQn -cQn -cQn -cQn -cQn +wsc +ckB +ckB +ckB +ckB +ckB +ckB +ckB kam iFJ -pRq +qVV cKi cKi cKi @@ -95748,25 +92358,25 @@ aaa aaa cnw aaa -cnt -cnt -cnt -cnt -cnt -cnt -cnt -dlh +ckg +ckg +ckg +ckg +ckg +ckg +ckg +cGZ aaa iFJ aaa -cnt -cnt -cnt -cnt -cnt -cnt -cnt -dlh +ckg +ckg +ckg +ckg +ckg +ckg +ckg +cGZ aaa cnw aaa @@ -96190,7 +92800,7 @@ ctm ctm ctm ctm -gXD +sWL ctm ctm ctm @@ -96262,25 +92872,25 @@ aaa aaa cnw aaa -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ +ckm +ckm +ckm +ckm +ckm +ckm +ckm +ckm aaa iFJ aaa -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ -ckQ +ckm +ckm +ckm +ckm +ckm +ckm +ckm +ckm aaa cnw aaa @@ -96442,7 +93052,7 @@ aeo aeo aeo aaa -cmM +sgd udc udc udc @@ -96452,7 +93062,7 @@ cnR cnR cnR cnR -cCl +kup aeU aeU aof @@ -96519,17 +93129,17 @@ aeU aaa cnw ckk -cGW -cQn -cQn -cQn -cQn -cQn -cQn -cQn +wsc +ckB +ckB +ckB +ckB +ckB +ckB +ckB kam iFJ -pRq +qVV cKi cKi cKi @@ -96704,7 +93314,7 @@ ctw ctw ctw ctw -cDn +gKW ctw ctw ctw @@ -96776,25 +93386,25 @@ aeU aaa cnw aaa -cnt -cnt -cnt -cnt -cnt -cnt -cnt -dlh +ckg +ckg +ckg +ckg +ckg +ckg +ckg +cGZ aaa iFJ aaa -cnt -cnt -cnt -cnt -cnt -cnt -cnt -dlh +ckg +ckg +ckg +ckg +ckg +ckg +ckg +cGZ aaa cnw aaa @@ -96961,7 +93571,7 @@ ckk aaa aaa ckk -cDn +gKW ckk aaa aaa @@ -97218,8 +93828,8 @@ ctm ctm ctm cFS -cDn -cDn +gKW +gKW ctm ctm ctm @@ -97474,14 +94084,14 @@ nkP nkP nkP nkP -ckN -cDn -vEg +mys +gKW +hPN cnR cnR cnR cnR -cCl +kup aeU aeU aeU @@ -97556,7 +94166,7 @@ aaa aaa acm aaa -pcD +cNy aaa aeo aaa @@ -97731,9 +94341,9 @@ ctw ctw ctw ctw -cDn -cDn -cDn +gKW +gKW +gKW ctw ctw ctw @@ -97813,7 +94423,7 @@ aaa aaa acm aaa -cLN +gKW aaa aeo aaa @@ -97989,7 +94599,7 @@ ckk aaa aaa ckk -cDn +gKW ckk aaa aaa @@ -98070,7 +94680,7 @@ cKj cKj cKj wqJ -cLN +gKW acm aeo acm @@ -98246,7 +94856,7 @@ ctm ctm ctm ctm -gXD +sWL ctm ctm ctm @@ -98315,7 +94925,7 @@ aeU aeU aeU aeU -iAT +coa aeU aeU aeU @@ -98498,7 +95108,7 @@ aeu aof aUz aeU -cmM +sgd udc udc udc @@ -98508,7 +95118,7 @@ cnR cnR cnR cnR -cCl +kup aeU aeU kSc @@ -98572,7 +95182,7 @@ aeU aeU aeU aeU -iAT +coa aeU aeU aeU @@ -98760,7 +95370,7 @@ ctw ctw ctw ctw -cDn +gKW ctw ctw ctw @@ -98829,7 +95439,7 @@ aeU aeU aeU aeU -iAT +coa aeU aeU coy @@ -99017,7 +95627,7 @@ aeU aeU aeU aeU -mLi +oPT aeU aeU aeU @@ -99051,14 +95661,14 @@ crV cuu cuw amA -awD -awD -awD -awD -awD -awD -awD -awD +cju +cju +cju +cju +cju +cju +cju +cju tLp cou bzO @@ -99086,7 +95696,7 @@ aeU aeU aeU aeU -ctR +pJm aeU aeU aeU @@ -99274,7 +95884,7 @@ aeU coy aeU aeU -mLi +oPT aeU aeU aeU @@ -99308,14 +95918,14 @@ aEw bxq cux cnL -awD +cju agp bHg bHg cEZ bHg bMq -awD +cju bCu bJW bJX @@ -99566,12 +96176,12 @@ bld bmL crP cnJ -brL +aqB bth bvm bvm bvm -bAx +aGM atk bCy bDl @@ -99820,18 +96430,18 @@ amA cnL amA cGM -awD -awD -awD -aQU +cju +cju +cju +gCn btm -aQU -aQU +gCn +gCn btm -aQU -awD -awD -awD +gCn +cju +cju +cju bYR aer ajd @@ -100077,7 +96687,7 @@ amA cfL amR cuB -awD +cju bJv bJv bJv @@ -100088,7 +96698,7 @@ bJv bJv bJv bJv -awD +cju wav bFf ajd @@ -100334,7 +96944,7 @@ cso aaO csr cuB -aQU +gCn bJv bJv bJv @@ -100345,7 +96955,7 @@ bJv bJv bJv bJv -aQU +gCn wav bSv coA @@ -100591,7 +97201,7 @@ cso abJ csr cuB -aQU +gCn bJv bJv bJv @@ -100602,7 +97212,7 @@ bJv bJv bJv bJv -aQU +gCn wav azs coA @@ -100848,7 +97458,7 @@ cso bKl csr dKu -aQU +gCn bJv bJv bJv @@ -100859,7 +97469,7 @@ bJv bJv bJv bJv -aQU +gCn wav bSB coA @@ -101105,7 +97715,7 @@ amR cfL amA cuB -awD +cju bJv bJv bJv @@ -101116,7 +97726,7 @@ bJv bJv bJv bJv -awD +cju caB bFi ajd @@ -101362,18 +97972,18 @@ amA bhZ amA cGN -awD -awD -aQU -aQU +cju +cju +gCn +gCn btn gCn gCn -iav +btn gCn gCn -gWo -awD +cju +cju ccc ajd ajd @@ -101620,16 +98230,16 @@ bia csx ble bVk -awD -bLd +cju +awW her cui bvw bxC -mwy +bsE bAz bLU -gWo +cju bDn caB bFk @@ -101877,7 +98487,7 @@ bib bxp cuB llm -awD +cju aVb aYX bxo @@ -101886,7 +98496,7 @@ bzQ bER bER bFN -gWo +cju ajd cdG cus @@ -101902,16 +98512,16 @@ bSO bSW bUd bVO -aey -aey -aey -aey -aey +cfY +cfY +cfY +cfY +cfY byu -aey -aey -aey -aey +cfY +cfY +cfY +cfY clr cid akj @@ -102133,9 +98743,9 @@ amA amR amA cFW -awD +cju bKD -bLb +bTS xlT btr bvz @@ -102159,7 +98769,7 @@ ajd aWI bsD aWI -aey +cfY ahe bYJ ahY @@ -102168,7 +98778,7 @@ cbT ccM cDr ajR -aey +cfY cgQ bBG crD @@ -102366,11 +98976,11 @@ cxy aot awe cyl -aPA -aPA -aPA -aPA -aPA +cfY +cfY +cfY +cfY +cfY aPc aON aMC @@ -102390,10 +99000,10 @@ bcF cnr cFo dKu -awD +cju bKH -bLb -btv +bTS +aqg btu bLW bLC @@ -102416,7 +99026,7 @@ agX bSX bUe bVP -aey +cfY aMK bYK ahZ @@ -102622,8 +99232,8 @@ aiE axy ayF awQ -aPA -aPA +cfY +cfY aBs aEb aPB @@ -102657,7 +99267,7 @@ bGT bGT bGI bBx -gWo +cju afm adW akh @@ -102673,7 +99283,7 @@ agX agX agX agX -aey +cfY aog bYL aia @@ -102682,7 +99292,7 @@ aiG cyK cDB cfb -aey +cfY ajx aMV ajx @@ -102879,7 +99489,7 @@ aNG ajY aNG aNG -aPA +cfY aLc aaN aEc @@ -102904,7 +99514,7 @@ amA amA cnJ cni -awD +cju bKN bGB bLm @@ -102914,7 +99524,7 @@ bGT bGT bGT bMg -gWo +cju bDt bDV bFn @@ -102930,7 +99540,7 @@ bRn agc anL bVQ -agP +gCn ahf bYN aix @@ -102941,10 +99551,10 @@ cDB ajV avM cgS -ccv +auw cjq amd -aif +azI aUz aaa aaa @@ -103136,7 +99746,7 @@ auR axA ayH azF -afD +cju aWj adK aOX @@ -103161,7 +99771,7 @@ csG bid bjx csQ -awD +cju bKn bLc bLP @@ -103171,7 +99781,7 @@ bGT bGT bGT bMx -gWo +cju afz adZ ajd @@ -103201,7 +99811,7 @@ cgT bIv cjr amd -aif +azI aaa aaa aaa @@ -103418,8 +100028,8 @@ aqu bif bjz csR -awD -awD +cju +cju bLo bLp btz @@ -103428,7 +100038,7 @@ bxN byU bAA bMj -gWo +cju csN bDW bFo @@ -103447,18 +100057,18 @@ afE aFl bXP cwx -aib +bsE ajc aiJ amS cKm -aey -cmP +cfY +cfY aUe -cmP -cmP -cmP -cmP +cfY +cfY +cfY +cfY acm acm acm @@ -103676,16 +100286,16 @@ csr csM amA amA -awD -awD -awD -awD +cju +cju +cju +cju bIH -bLJ +akv bEP -gWo -gWo -gWo +cju +cju +cju csS cBI bFp @@ -103701,22 +100311,22 @@ aaT aef aef aef -agS +cju bXQ cwK -aib +bsE aiy aiK ajf cKn -aey +cfY cgp cgX cij alJ ame -cmP -cmP +cfY +cfY aaa aaa aaa @@ -103907,7 +100517,7 @@ avf axC ayI azG -afD +cju aQA agl aRd @@ -103961,19 +100571,19 @@ bVR anw ahj cwK -aib +bsE aiz ajo cHY cKo -agU +aus cgr akR alp alp amC bkU -cmP +cfY aeU aaa aaa @@ -104164,12 +100774,12 @@ aWm aNx bxb aNx -aPA +cfY abl agH abl -afD -afD +cju +cju aSa aLj aMD @@ -104191,15 +100801,15 @@ acR aDQ bKl add -brD -brD -brD +cju +cju +cju bvG bxO byX -brD -bLn -brD +cju +nNA +cju cBw csN cBR @@ -104223,7 +100833,7 @@ cHA cbV ccN cdT -aey +cfY cgs akS ckx @@ -104472,16 +101082,16 @@ bRC akT anM bVU -agP +gCn bXR bYP bZU -agS -agS +cju +cju cIa btJ -aey -cmP +cfY +cfY alo anl alL @@ -104706,14 +101316,14 @@ afe aUJ aUJ afe -brD -brD +cju +cju bvO bxO bza -brD -brD -brD +cju +cju +cju ajd ajd bFp @@ -104729,11 +101339,11 @@ aef aef aef aef -agS -agP +cju +gCn bCv -agP -agS +gCn +cju cbW ccO cdU @@ -104968,11 +101578,11 @@ bEO bKG bzs bzf -bIV +cju bKV cBZ kzw -bIV +cju cBT aef aef @@ -105225,11 +101835,11 @@ btD bxO bxQ bzg -bIV +cju bLu bUa beo -bIV +cju bFp aah bHz @@ -105252,13 +101862,13 @@ cca cIP bzw cfm -akz +abF chb cik -cjz +clR ckF amH -cmP +cfY aeu aeU aeU @@ -105477,12 +102087,12 @@ aoV bxV aoV afe -bIV +cju bFb akv bzZ bKL -bIV +cju bJQ bUa bKk @@ -105736,7 +102346,7 @@ aVR afe bsa btR -bvV +cPb bxR bzh aoL @@ -105996,11 +102606,11 @@ bFA bJs bAi bzi -bIV -bIV -bIV -bIV -bIV +cju +cju +cju +cju +cju bFp aah bHC @@ -106253,7 +102863,7 @@ bGp bJn bAy bzn -bIV +cju bJS bKd cBW @@ -106726,9 +103336,9 @@ aeu abP amB anC -aWG -aWG -aWG +cju +cju +cju aNu aWb aWh @@ -106762,16 +103372,16 @@ afe afe afe jRw -bIV +cju bGA bJp bAQ -bIV -bIV -bIV +cju +cju +cju bKf -bIV -bIV +cju +cju bFq aah bHD @@ -107028,7 +103638,7 @@ arf bKb bKg bLu -bIV +cju bFq aah bHu @@ -107240,7 +103850,7 @@ acK aOg amT anE -brp +gCn arg asz aNu @@ -107281,11 +103891,11 @@ bJi bJr bBh bzp -bIV +cju bJY bKh aWS -bIV +cju ayy agX agX @@ -107497,8 +104107,8 @@ aeu adQ cAI cAU -aWG -btg +cju +btK aTb aNu aNu @@ -107538,10 +104148,10 @@ jiS bKC bAy bzu -bIV -bIV -bIV -bIV +cju +cju +cju +cju ajd bFr bBI @@ -107746,28 +104356,28 @@ aaa aeU alm aeu -aWG -aWG -aWG -aWG -aWG -aWG +cju +cju +cju +cju +cju +cju cFf anI -aWG +cju ari asC atz btp -aWG -btA +cju +cju aVn -btA -btA +cju +cju aVr bxh -btA -btA +cju +cju aSy aLm aQt @@ -107798,7 +104408,7 @@ arj bzy xtz cxw -bIV +cju ajd aer afm @@ -108003,20 +104613,20 @@ aaa aeu aeu aeu -aWG +cju acE cgY cAi akU -aWG +cju cFf cCU -aWG +cju arm btf btk avD -aWG +cju azp azR aAt @@ -108024,7 +104634,7 @@ atw bxB bwY byc -btA +cju aEB aEB aIQ @@ -108045,17 +104655,17 @@ bpM umD bAN pFw -bJk -bJk -bIV +aCc +aCc +cju ccW -bJk +aCc cec -bIV +cju cbr sDr bKj -bIV +cju afB cou bEI @@ -108260,7 +104870,7 @@ aeu aeu aeu aeu -aWG +cju aNs bAD cAj @@ -108308,11 +104918,11 @@ bss btV aEu bxW -bIV +cju bKq bKq bKq -bIV +cju bEb bSG bBG @@ -108517,20 +105127,20 @@ aeu aeu aeu aeu -aWG -aWG +cju +cju czG cAk akZ cAp cFf aqU -aWG +cju arp bts atJ avG -aWG +cju azr awA axi @@ -108775,19 +105385,19 @@ aeu aeu aeu aeu -aWG -aWG -aWG -aWG -aWG +cju +cju +cju +cju +cju cAO acL -aWG +cju bsZ -aWG -aWG +cju +cju avY -aWG +cju beG bwC bxe @@ -108795,7 +105405,7 @@ bwY bxY bwY aGM -bxJ +aCc ahF aPk aBN @@ -109039,12 +105649,12 @@ adH abN czP cDE -aWG +cju bta -btC +aIK atL avK -btg +btK aob azS aAu @@ -109052,29 +105662,29 @@ bwZ bwN bwZ aGM -bxJ +aCc ahF aPk aJi aOG -aCe +cju btK -btF -aCe +aCc +cju aPK aLU -aCe -buC -buC +cju +cju +cju aRF aSP -buC -buE -buC -buE +cju +aCc +cju +aCc bvy -buE -buC +aCc +cju brg boC bwf @@ -109296,47 +105906,47 @@ adQ cAF cAd adH -aWG -aWG -aWG +cju +cju +cju bvT avL -aWG -btA +cju +cju cBh -btA +cju bxa bxg bxu bwP -btA +cju bsx aPk aaJ -aCe -aCe +cju +cju bvi aTe buu bvf aTe buP -buC +cju buW bvn bfv bvU bvu -buC +cju blx bnx boY -buC +cju bsy -xCY -xCY +cju +cju bCn -xCY +cju aoA cbv cbs @@ -109555,22 +106165,22 @@ riJ cBc cAF cBg -aWG +cju bto avT -aWG +cju azu azV -btA -btA +cju +cju bxf bxt -bxX -uQS +bHn +bHB ahF aOT cfa -aCe +cju aTB btT buc @@ -109578,19 +106188,19 @@ bug bvf bue buv -buC +cju bvg bvn afQ bvl bvb -buC +cju blA bAR bJH -cJc +nNA buK -xCY +cju bxk bCq aoR @@ -109812,10 +106422,10 @@ cAO adH cBf adH -aWG -aWG +cju +cju aTf -aWG +cju bwq azW bwR @@ -109823,20 +106433,20 @@ bye bxi aEx bxH -bxJ +aCc ahF aPk cfa -btF -xwB -xwB +aCc +aqg +aqg buy buJ bvq bvM aTe bbh -btM +aTe bvL bvX bvZ @@ -109844,10 +106454,10 @@ bvd bjH blB bAS -buC -buC +cju +cju bps -xCY +cju aok aoI aoB @@ -110072,7 +106682,7 @@ cDe cDe atM anJ -btA +cju aij azY aAv @@ -110080,37 +106690,37 @@ aBy aDh aEv bxI -bxJ +aCc ahF aOU aMQ aOH aPY aYQ -buG +bTS ann bum bup aWB -buE +aCc but -bvp +apf aUH bag bir -buC -buC -buC -buC +cju +cju +cju +cju btw btO -xCY +cju aor aul apm bkp abf -xCY +cju bFl bHK bFu @@ -110329,45 +106939,45 @@ adH asD abX awf -btA +cju bwr bwJ bwT bxD aAx byb -btA -btA +cju +cju acD aOY aMS aOH aYQ aYV -buG +bTS aoU bun buq aWC -buE +aCc buL -bvp +apf aUT baw bsM -buC +cju bpy brT -buC +cju btL aYO -xCY +cju aoq aoP aoS aoX adc -xCY +cju boC boC boC @@ -110586,19 +107196,19 @@ adH cDb cDo cBc -btA +cju bwK btB btB bxD btB aEx -bxJ +aCc aIl ahF aPk cfa -btF +aCc qfV aYW aZW @@ -110607,7 +107217,7 @@ bbo bbo aWD bbh -buM +aqg bvr aVw aqv @@ -110615,7 +107225,7 @@ bsQ buU bpG bse -buC +cju btN asF asF @@ -110843,7 +107453,7 @@ adH aoc atO awh -btA +cju bwt bwL bky @@ -110863,16 +107473,16 @@ meh meh sOB beN -buC +cju buN -buM +aqg buX bvt bsY -bvA +btK bpH bsh -buC +cju boW asF adu @@ -111100,36 +107710,36 @@ cCS cDx cDO cAO -btA -btA +cju +cju azZ btB aBz aCN aEC -bxJ +aCc aIm ahF aPk cfa -aCe +cju aXm sNQ bva buj nML buz -aCe -aCe -aCe +cju +cju +cju bey -aCe -aCe -buC -buC -buC -buC -buC +cju +cju +cju +cju +cju +cju +cju bpn asF aow @@ -111176,7 +107786,7 @@ aHb aHc bUK cjm -awu +cfY aEh acm aaa @@ -111358,30 +107968,30 @@ cCU cAF cAO cDA -qWU -btA +nNA +cju cCy -btA -btA -btA -btA +cju +cju +cju +cju ago aaZ aPk cfa btH -aXp +btB btY bvk bvE bvH aTe -aCe +cju bbk beA fQw bfw -aCe +cju aLl bpf bqr @@ -111638,7 +108248,7 @@ bbp bvR bsU bvs -aCe +cju aLD bpn asF @@ -111676,7 +108286,7 @@ bFa bWV bGU bFa -awu +cfY brZ acm bGb @@ -111690,7 +108300,7 @@ acm bUL cBq csi -aDk +cju aFI cpy bOq @@ -111873,29 +108483,29 @@ cDy cDv ati auH -cdD -cdD -cdD -cdD -cdD +cfY +cfY +cfY +cfY +cfY aGO ago aBO aNq aRY btK -vrf +bHB buf aSh aTt aVa aWW -aCe +cju bbq bvS -xwB +aqg buF -aCe +cju byy boW asF @@ -111932,7 +108542,7 @@ cHh bFa aEy bEV -awu +cfY bwv bGo bGC @@ -112129,30 +108739,30 @@ cDM cGh cDd cBf -cdD -cdD +cfY +cfY ahC aYw aZI -cdD -cdD +cfY +cfY ago aJT aPk aMU aOI -aCe -aCe -aCe -aCe -aCe +cju +cju +cju +cju +cju aOy -aCe +cju bbr rWp aTe bfy -aCe +cju aLQ bps asF @@ -112189,7 +108799,7 @@ cHi bFa aEZ aIX -awu +cfY bmV ayG aEF @@ -112386,13 +108996,13 @@ adH cDk cDk adH -cdD +cfY ceK aAz aBD aDn aED -cdS +auw aIq aid aPv @@ -112404,12 +109014,12 @@ aud aTu bpq aXa -aCe -aCe +cju +cju aTL ctN -aCe -aCe +cju +cju aLT bpn asF @@ -112446,7 +109056,7 @@ cHj bFa bFS aIZ -awu +cfY bEm aLY aSk @@ -112643,7 +109253,7 @@ ciZ bSp bSp cGo -cdD +cfY ceL aAB cfk @@ -112703,7 +109313,7 @@ cHk bFa bFa cdh -awu +cfY cfr cgB chp @@ -112900,7 +109510,7 @@ cCA cGi cCB cGp -cdD +cfY ceM aAB aBF @@ -112938,9 +109548,9 @@ arn aom avS bCB -bDx +aqg bEj -atC +auy bIL atu bIu @@ -113157,13 +109767,13 @@ cCB bSp cGl bSp -cdD -cdD +cfY +cfY aqX aBP bkt -cdD -cdD +cfY +cfY adP aTK aPH @@ -113198,18 +109808,18 @@ avN ape asU atv -ark +bke bsN bQx bOF bKS -bCM -bCM -bCM +cju +cju +cju aDH -bJl -bCM -bCM +awW +cju +cju bEL bHm bFa @@ -113217,7 +109827,7 @@ cHm bFa bGG cdp -aFA +aLH bFx bFy chr @@ -113415,11 +110025,11 @@ atR bSp ciZ cGi -cdD +cfY ceZ aQY -cdD -cdD +cfY +cfY ago aIz ajW @@ -113440,48 +110050,48 @@ aLW aox cBV aox -atT -atT -atT -atT -atT -atT +cfY +cfY +cfY +cfY +cfY +cfY ajK -atT -atT -atj +cfY +cfY +cju apN awj apf atg auG -ark +bke bsO bQx bOJ bPo -bCM +cju bCZ bPZ bSa bTd bDO -bmb -bmb -bmb +cfY +cfY +cfY bFs cai bFa aRQ cJM -awu -awu -awu +cfY +cfY +cfY cht ciA aMR -aDk -aDk +cju +cju cmf aIU coY @@ -113706,18 +110316,18 @@ bud bwB bym bnP -atj +cju avV -asA +gKu apf atr auG -ark +bke bsP bUU bOF bYW -bCM +cju aIe bQj bDD @@ -113732,12 +110342,12 @@ cHD cHT cJN cEn -awu +cfY aGw chu ciC azc -aDk +cju aGu gwD azT @@ -113748,7 +110358,7 @@ aHs cpp bDa acm -cBA +axX aHe aFm aFc @@ -113953,8 +110563,8 @@ arl axf abk aqb -atT -atT +cfY +cfY aqz aoW bqe @@ -113963,7 +110573,7 @@ bsE avQ byn bzI -atj +cju auY asE apg @@ -113976,7 +110586,7 @@ bOY bYX bHn aIw -bQn +xiq bDE bTi bUC @@ -113989,7 +110599,7 @@ bGg bFZ bRT cEw -awu +cfY cgD chv ciC @@ -114220,7 +110830,7 @@ asd avR byn ara -atj +cju bBF bCK bDz @@ -114231,13 +110841,13 @@ atG bQx bOF bYW -bCM +cju bDp -bQn +xiq bSf bTm aMJ -bDI +auw bWJ bDZ bFs @@ -114246,12 +110856,12 @@ cbe aRQ cny bEV -awu +cfY aCZ chw ciA aGA -aMk +btK brl cmi aKQ @@ -114476,15 +111086,15 @@ bsC buk bHB aGG -auc -atj -atj +gCn +cju +cju bHI -atj -atj -atT -atT -atT +cju +cju +cfY +cfY +cfY bIz bOF bYW @@ -114494,21 +111104,21 @@ bDv bSf bDN bDS -bmb -bmb -bmb +cfY +cfY +cfY bFs bFa czv bFa cnz bFS -awu +cfY cgF chx ciA aGB -aDk +cju brl cmg aKW @@ -114745,13 +111355,13 @@ aLC bIA bPw bYY -bCM -bDr -bCM +cju +abF +cju aDK -bCM -bCM -bCM +cju +cju +cju amP aEU bEH @@ -114760,7 +111370,7 @@ cbd bGJ cdr bGG -awu +cfY cgF chz ciA @@ -114776,7 +111386,7 @@ clv cpp bDa acm -cBA +axX aHh aFn aFd @@ -114983,7 +111593,7 @@ apy aqC avB cce -aqc +clR biv aqM bsE @@ -114991,7 +111601,7 @@ buo aGG byr bzL -aqc +clR abF bCN bwh @@ -115004,9 +111614,9 @@ bPB bZa ahS bJE -bCP +aus bSg -bCE +azI bML alF bWL @@ -115017,13 +111627,13 @@ cbe cBp bFa bFY -awu -aDk +cfY +cju chA ciE -aDk -aDk -aDk +cju +cju +cju cml aMs aHH @@ -115259,13 +111869,13 @@ bpU bIE bPL bZb -bmc -bCJ -bmc +cfY +akx +cfY aDW -bmc -bmc -bmc +cfY +cfY +cfY aqd bYs aHV @@ -115502,27 +112112,27 @@ bpe bsE bsE bur -atj +cju aHU -auc -atj -atj +gCn +cju +cju aug -atj -atj -atj -atT -atT +cju +cju +cju +cfY +cfY bIz ice bKY -bCE +azI bNY bCR bSh bDd bUD -bmc +cfY avq bFd bFa @@ -115757,12 +112367,12 @@ aqk att aqG bsE -arY +aic auM bsE byt afT -atj +cju aaq aum apK @@ -115779,22 +112389,22 @@ bQr bSi bTn bUF -bmc +cfY bWP bYt bZe bGd -awN -awN -awN +cfY +cfY +cfY aJj aJk agN -aCw +gCn aAV aDr -aCw -aDk +gCn +cju cmu aJc bBt @@ -115804,7 +112414,7 @@ coM ctZ bDb acm -cBA +axX aHk aFo aFe @@ -116009,8 +112619,8 @@ arl aXd apZ ass -atT -atT +cfY +cfY atD aqG bqt @@ -116030,7 +112640,7 @@ bkW bIu bOF bKY -bCE +azI bOe bCT bDy @@ -116041,7 +112651,7 @@ bWR bFE bEV bFg -awN +cfY ccl aCx aCA @@ -116051,7 +112661,7 @@ aSj ciK cjO aMm -aDk +cju cmv cnG cpi @@ -116276,12 +112886,12 @@ auX cwE byx bnQ -atj +cju aUj bCU apD -apL -apQ +aic +bDe bGv aus bIM @@ -116293,12 +112903,12 @@ bQs bSj bQs bUI -bmc +cfY bWS -awN -awN -awN -awN +cfY +cfY +cfY +cfY ccn auS aBQ @@ -116308,7 +112918,7 @@ aHT ciL cjR aDe -aDk +cju awv bNQ aDp @@ -116499,13 +113109,13 @@ anK anK aay cFT -pKp +cju ctz cvM awE aEN aGQ -pKp +cju ago avw aRB @@ -116524,17 +113134,17 @@ axf aHz biA bjT -atT -atT -atj +cfY +cfY +cju beM -asx -bxx -asx +cfY +bCC +cfY byD -asx -asx -aui +cfY +cfY +cfY bCW bDG bEl @@ -116544,15 +113154,15 @@ axm bIu bOF bKY -bCE +azI bOi bCV bSk aJK bUR -bmc +cfY bWS -awN +cfY aBL aBT cHE @@ -116756,7 +113366,7 @@ baH baH cFr avm -pKp +cju amk cvN cvT @@ -116785,13 +113395,13 @@ blU auw akb bqw -asx +cfY bus bwD bzB aop atd -aui +cfY apO apJ cjv @@ -116801,15 +113411,15 @@ aus bIJ aZg bLi -bmc -bmc -bmc -bDB -bDg -bmc -bmc +cfY +cfY +cfY +abF +bCC +cfY +cfY bEp -awN +cfY axe caj cbg @@ -116822,7 +113432,7 @@ aCT ciP cjU aDg -aMk +btK cmy bBi aHS @@ -116832,7 +113442,7 @@ cru aJz bDf acm -cBA +axX aHn bIw aFf @@ -117013,13 +113623,13 @@ cEx baH jbf avp -pKp +cju ctK cvO cvU aEQ aGS -cvW +awW aJY awr aRX @@ -117048,13 +113658,13 @@ bzT bCI arR bEe -aui -aui +cfY +cfY avb -aui -aui -aui -aui +cfY +cfY +cfY +cfY bCH bQd bKQ @@ -117075,7 +113685,7 @@ cdw cer cfy azk -chN +cer ciR cjV aMn @@ -117270,7 +113880,7 @@ cFk baH jbf baH -pKp +cju aAI aCl aDx @@ -117281,25 +113891,25 @@ aKi cIw cKd aox -btE +cju aRc -btE -btE -btE -ajt +cju +cju +cju +cju aZq aZq -ajt -ajt +cju +cju aQO aox cCk bka blW -atT +cfY alj bqB -asx +cfY aoz avh bCX @@ -117336,9 +113946,9 @@ ayY aCY aNh aDi -aCw +gCn cmC -aDm +ayz aJO cpM cqO @@ -117527,27 +114137,27 @@ cEs cEg jbf avO -pKp +cju cvK cvQ aDy aES aHv -pKp +cju aKl ajj aNl -btE +cju alV -aRM +qfV aqg bvY -btE +cju aZm bmH boJ bcZ -ajt +cju bgf aox aox @@ -117556,14 +114166,14 @@ aox cdZ cdZ ahy -asx +cfY aqt avj -bDc +gKu ave abq -asx -asx +cfY +cfY bDJ bQS bpn @@ -117580,8 +114190,8 @@ cgE cjY cpP cpV -awN -awN +cfY +cfY aCg aSs bqD @@ -117784,24 +114394,24 @@ atW cFp ayt aoC -pKp -pKp -pKp -cvW +cju +cju +cju +awW cFH cwn -pKY +bHB aHq aNq aZO -btE +cju aKT aRi brr bqU -btE +cju aZz -aZu +arW boT bdg aBC @@ -117813,14 +114423,14 @@ blZ bpq bpg aYO -asx +cfY bwb arz -bDc +gKu avd asB aru -asx +cfY bpq bEr bFR @@ -118051,13 +114661,13 @@ cFY aKn aLo aNp -btE -btE +cju +cju bqV -btE -btE +cju +cju apY -ajt +cju aZB bqc bdo @@ -118070,14 +114680,14 @@ aIN aox bzN arA -asx +cfY bwd bzA bLe aGc -auT +alp arF -asx +cfY bAb bQS aYO @@ -118085,12 +114695,12 @@ aox bHO bOP bYG -auE -auE -auE -auE -auE -auE +cju +cju +cju +cju +cju +cju bCs cpd crs @@ -118308,17 +114918,17 @@ ban aKp aiR cfa -btE +cju aKU aZx bac bqW vmu -btE +cju bcW bqd bqv -ajt +cju bgp bhb biF @@ -118327,14 +114937,14 @@ bmd aYO aYO bqF -asx +cfY bjO bwE byE bzP arV brU -asx +cfY bAp bQS aox @@ -118342,7 +114952,7 @@ aox bZl bQv bJx -awq +aCc aKd bBd bBR @@ -118369,9 +114979,9 @@ cmG cnT cpz cqd -axa +cfY crO -axa +cfY csP ctp cuq @@ -118566,32 +115176,32 @@ aKq aiR cfa btP -aTH +clR aRo aSp -aTH +clR aXV buA -aZD +bsE bcw bdy -ajt -ajt +cju +cju blc -ajt -ajt -aZd -aZd +cju +cju +cju +cju auj -aZd -asx -asx -asx -asx -asx -asx -asx -asx +cju +cfY +cfY +cfY +cfY +cfY +cfY +cfY +cfY bMu bRr aox @@ -118626,14 +115236,14 @@ cmI bfe bxL cqe -axa +cfY cfz -axa +cfY aDN -axa -axa +cfY +cfY aDN -axa +cfY aEk aEn aEi @@ -118822,21 +115432,21 @@ baW aKr aiR adC -btE +cju brE aGh bhK aGh brk -btE +cju boI -ajt +cju bqy -ajt +cju bgr bhd biJ -bjn +gCn bmE bns bpk @@ -118846,8 +115456,8 @@ brN bwG bso bpi -aZd -aZd +cju +cju aXa aYO bAt @@ -118856,12 +115466,12 @@ bGx bOP bIN bJG -awq +aCc aKf bOk bQA bCo -awq +aCc bCr bEC csE @@ -118873,24 +115483,24 @@ ccy cdA ceC aGv -axa +cfY azf azg bKr aLf -axa -azX +cfY +auw ayK bxZ -axa -axa +cfY +cfY crR chy csW cjI cjW cuI -axa +cfY cvo cuq cuq @@ -119061,10 +115671,10 @@ ahz cJR cIV cIV -tYM -tYM -tYM -tYM +cju +cju +cju +cju cJK cJW auC @@ -119079,7 +115689,7 @@ baW aKr ajJ cgR -bsc +btK bqK aRp brM @@ -119087,13 +115697,13 @@ aRp aRp aXY aZH -ajt +cju bdB beJ bqq bhh biL -ajt +cju bqh bnJ bpl @@ -119104,38 +115714,38 @@ bwH cPj bnT bor -aZd +cju auj bew -aZd +cju qYk bvJ bwc bBj -auE -auE +cju +cju aBE bOm bQB bCp -awq +aCc bCr bED csF -awN -awN +cfY +cfY axM aSt axM buT cKu axM -axa +cfY byF ciW ckb aFg -axa +cfY cmK cnY cnY @@ -119150,9 +115760,9 @@ cuK aAQ axX axX -axa -axa -axa +cfY +cfY +cfY gIE gIE aeu @@ -119318,7 +115928,7 @@ ajN bsg cIV aeO -tYM +cju cIn arE cIO @@ -119336,7 +115946,7 @@ baW aKr aiR cgR -bna +aCc bqL bno aQw @@ -119350,7 +115960,7 @@ bmO boA bhi boV -bjn +gCn bmG bnK brN @@ -119364,18 +115974,18 @@ bBQ bBK bCY bDK -aZd +cju bGc bGy bhY bIR -awq +aCc aKa aKh bOp bQC bCx -awq +aCc bUY bYZ cud @@ -119387,7 +115997,7 @@ aPs axN ceH ayU -axb +cju ayW cja cKz @@ -119409,7 +116019,7 @@ cvr ckw cmw xON -axa +cfY aeu aeu aeU @@ -119575,7 +116185,7 @@ ajZ cJP cIV baH -tYM +cju apW arG cIt @@ -119593,7 +116203,7 @@ ban aKv aiR cgR -bna +aCc bno boe brQ @@ -119607,7 +116217,7 @@ bmR boB bhm bqP -bmF +btK bcX bnN brN @@ -119621,7 +116231,7 @@ bCF bFW bIx boz -aZd +cju bIB bZM bhY @@ -119644,7 +116254,7 @@ cbl cdE ceO bRk -axb +cju cgW cjb cKF @@ -119654,12 +116264,12 @@ cmT coc azE brn -aLF +ath aag aag aag -aLF -cut +ath +xiq cuO bVF cvt @@ -119832,10 +116442,10 @@ akc cJE cIV cIK -tYM +cju cIJ arH -cIM +cav atZ awR akW @@ -119864,7 +116474,7 @@ bmT boD bhp bpb -bjn +gCn bme bnK brN @@ -119877,23 +116487,23 @@ bof bFJ bFX bqQ -aZd -aZd +cju +cju bBU bXv bhY bIW -awq +aCc aKc byQ caR bCk caq -auE +cju bVb bWl bXa -awN +cfY cys caC axp @@ -119911,18 +116521,18 @@ cmY coe aMa bro -pSg +cfY xiq xiq csZ -pSg +cfY cuv cuP axX aBx -ayn -ayn -ayn +bSf +bSf +bSf axX pCe aeU @@ -120089,10 +116699,10 @@ cJw cIV cIV anc -tYM -cIM -tYM -tYM +cju +cav +cju +cju cKk baH alf @@ -120133,31 +116743,31 @@ bAl bAu bFV bGk -aZd -aZd +cju +cju bGh bZI bhY bCa bMD -uzR -auE -auE +nNA +cju +cju bNV -auE -auE -auE +cju +cju +cju axF bBJ axF -awN +cfY cyx caI axH bQm azd ayV -aLe +bsE bHe chT cjh @@ -120166,21 +116776,21 @@ clJ axX cmY coh -pSg +cfY aLH aLu aLy aLy cjN -pSg +cfY cuy cuU aLK aBx -ayn -ayn +bSf +bSf iBL -axa +cfY aeu aeU dQe @@ -120364,7 +116974,7 @@ aYH arv aiR cgR -bna +aCc aQx brt bap @@ -120372,7 +116982,7 @@ bsb brq brF brG -ajt +cju boQ boH bqo @@ -120390,7 +117000,7 @@ bAn boa boh bon -aZd +cju bGh bZz bsn @@ -120398,16 +117008,16 @@ bIO bhY bME cBF -bOH +btK bNN bNW bQH -bNM +cju coX bVe bWm bAM -awN +cfY vaJ caJ bKp @@ -120415,12 +117025,12 @@ awW cdN ceQ cfH -axb +cju aAa aLq bKw aLp -axa +cfY cnc coj aLs @@ -120429,15 +117039,15 @@ aLv csa csa csa -pSg +cfY cuz cuV axX cvu -ayn -ayn +bSf +bSf aMW -axa +cfY aeu aeu aeU @@ -120621,7 +117231,7 @@ bez acS aiR aaR -bmy +cju aQp aRq aSu @@ -120629,18 +117239,18 @@ bno aVd brJ brI -ajt -ajt +cju +cju bmA bph bmS bmZ -ajt +cju bqJ cCC bnC bnc -aZd +cju bnq bnH bnR @@ -120659,42 +117269,42 @@ bAV bNP bOa bQJ -bNM +cju bTo bNc -awX -awX -awX -awy +cfY +cfY +cfY +aus cHv -axI -awX -awG +azI +cfY +aus bDm azI -axb -axa -axa +cju +cfY +cfY bzH aBv -axa +cfY cnf com aGD -izv +bSf aIn -izv +bSf azm -izv -jUf +bSf +axX aAp cjT axX aBf aBg chH -aLN -axa +auy +cfY fyr mLN aeu @@ -120878,14 +117488,14 @@ aYH arv aiR cgU -bmy -bmy -bmy +cju +cju +cju baM beL -bna -bna -bmy +aCc +aCc +cju bnv bfH boG @@ -120919,18 +117529,18 @@ bRL bBv bTp bNf -awX +cfY awx bYz axw cyf czB -awX +cfY axY ceR axQ ayQ -aBI +akx aab ckd clL @@ -120948,10 +117558,10 @@ cuz cuV axX aBx -ayn -ayn +bSf +bSf aNf -axa +cfY aeu aeu aeu @@ -121169,14 +117779,14 @@ bGz bhY bJb bJI -bNM +cju bNU bQE bSz -bNM +cju cuJ wCB -awX +cfY awO bYA axh @@ -121190,25 +117800,25 @@ cgG aAe ayr ckf -clM +bTm axX cnk coo -pSg +cfY aLH aLx aLz aLz aLB -pSg +cfY cuA cuU aLK aBx -ayn -ayn -ayn -axa +bSf +bSf +bSf +cfY aeu aeu aeu @@ -121425,15 +118035,15 @@ bnv ayO aAU bNA -bNM -bNM -bNM -bNM -bNM -bNM -bNM +cju +cju +cju +cju +cju +cju +cju crb -awX +cfY awP bYB awz @@ -121453,19 +118063,19 @@ cnk coq bCG bFh -pSg +cfY xiq xiq xiq -pSg +cfY cuz cuV axX aBx -ayn -ayn -ayn -axa +bSf +bSf +bSf +cfY aeu aeu aeu @@ -121672,11 +118282,11 @@ bvB buR bPx bnv -bjX +gCn bkz bOv bHE -bjW +cju ojZ bEg azb @@ -121688,9 +118298,9 @@ caE bZQ caF bSq -bNM +cju wCB -awX +cfY awp bYC bZf @@ -121701,7 +118311,7 @@ ayb ceV cfT axP -aKj +abF ayE ckh ayz @@ -121710,11 +118320,11 @@ cnl cos aAd bFh -aLF +ath aag aag aag -aLF +ath cuA cuW bYI @@ -121722,7 +118332,7 @@ cvw ckI cmN cCq -axa +cfY aeu aeu aeu @@ -121933,7 +118543,7 @@ blQ bAC bBL bkQ -bjW +cju bAv bEg bGM @@ -121947,13 +118557,13 @@ bQL bSu bmp bVj -awX -awX -awX +cfY +cfY +cfY bZg axE cbo -awX +cfY aya bZt bZu @@ -121979,7 +118589,7 @@ cvC clf cze gnA -axa +cfY aeu aeu aeu @@ -122174,8 +118784,8 @@ aYK aYd bhe sHl -kmy -bhX +bNt +gCn bhs biM bmt @@ -122190,36 +118800,36 @@ asI bwS bBM bkS -bjW +cju bEs bPz bGN bhY bJe -bNM +cju bLw bOr bOy bQO bSx -bNw +bHE syL bOb bPO -awX -awX -awX -awX -awX -axa -axa -axa -axa -axa -axa +cfY +cfY +cfY +cfY +cfY +cfY +cfY +cfY +cfY +cfY +cfY aBu -axa -axa +cfY +cfY cnp coz cpD @@ -122229,14 +118839,14 @@ cse csy cta ctv -cuD +acB cva -axa +cfY cki axX -axa -axa -axa +cfY +cfY +cfY aeu aeu aeu @@ -122431,7 +119041,7 @@ aZQ aYd bdP beP -bhI +cju bhy ats bko @@ -122457,9 +119067,9 @@ cfD bLx bOs bOx -bNM +cju bSD -bNw +bHE syL bEg bOl @@ -122476,19 +119086,19 @@ cmh bAM cmp clS -axa +cfY azH azU cpE aDq cri -axb -axb +cju +cju ciT -axb -axa -axa -axa +cju +cfY +cfY +cfY cvD ckk aEg @@ -122691,7 +119301,7 @@ beQ cGU bhz bix -biX +aic bjp bjt bpv @@ -122716,7 +119326,7 @@ cay bOz bQP bSF -bNw +bHE bTP nIt bWh @@ -122733,17 +119343,17 @@ bYD bGr cmp bOb -axa -axa -axa -axa -axa -axa -axa -axa +cfY +cfY +cfY +cfY +cfY +cfY +cfY +cfY cjH -axa -axa +cfY +cfY cvc bEg bEg @@ -122961,28 +119571,28 @@ bzX bAG bBT bnm -bjW +cju cxU bEg bRq bLS bQt -bNM +cju bLA bMw bOA -bOH +btK bSH -bNw -bWx -aEK -bUt -bWx -bUt -bWx -bWx -bUt -bUt +bHE +cju +rHQ +nNA +cju +nNA +cju +cju +nNA +nNA bXj ckS nIt @@ -123181,10 +119791,10 @@ aZF aZF ami aZF -bdi +cfY aVJ -amV -anx +cju +btK aXF aXX aYS @@ -123202,7 +119812,7 @@ bab aYd bdV beS -aCe +cju bhE biQ bkr @@ -123214,32 +119824,32 @@ blg bBo blg blf -bjX +gCn bJV bHE bkV -bjW +cju bAE bEg bPc bLY bQt -bNM +cju bOo cgd -bNM -bNM -aVM +cju +cju +bIm bNx -bWx +cju cyG mKp oUc eaJ -uRM +aqg aBn -vle -bWx +aBn +cju bXz ccB cgb @@ -123438,7 +120048,7 @@ aZF aWZ adX bhx -bdi +cfY aXq bdm aVJ @@ -123458,15 +120068,15 @@ bdM aZk aYd cjf -aCb -aCb -big +cju +cju +gCn boE -big -aCb +gCn +cju bqC btl -bhQ +cju bsW buY bly @@ -123490,13 +120100,13 @@ bWw bTq bSL jQY -uRM +aqg gmF gKu -uRM +aqg aBn aBn -bWx +cju bEg bEg bEg @@ -123513,7 +120123,7 @@ cju cju cju aLr -cjB +awW cju bOb cnW @@ -123715,12 +120325,12 @@ aDI aYd aYd cna -aCb +cju bhM bhF biT bja -big +gCn bog bpz bra @@ -123732,7 +120342,7 @@ bAa bAI bHF buI -bhQ +cju bEw bEg bQf @@ -123745,7 +120355,7 @@ cad bhY car bTr -bWx +cju uqy wiK uGi @@ -123753,7 +120363,7 @@ jUX koc dbY dlg -bWx +cju bPJ ceU cgI @@ -123770,7 +120380,7 @@ cju cjw csA ctd -clV +clB cju cma bEg @@ -123952,7 +120562,7 @@ aZF aXR bcx aWU -bdi +cfY aBh aCD aFR @@ -123972,12 +120582,12 @@ aZr bdz ccs bdY -aCb +cju bjJ blJ biV bku -big +gCn boj bjQ bkg @@ -124003,14 +120613,14 @@ bQQ bTs bTs cav -uRM +aqg fkk ppP bTS ykB kXo ykB -bWx +cju bPJ bUN aaa @@ -124209,14 +120819,14 @@ aZF baJ ayC baJ -bdi +cfY bfu aCE aZY aJF aWX aVJ -anx +btK bbM aNT aPo @@ -124229,7 +120839,7 @@ aZr bdE cbz cLt -aCb +cju bhO aqH biI @@ -124240,13 +120850,13 @@ bjR bkq bkA bke -blr +buo bkY blD -bls +aic bPj bmo -bhQ +cju bGr bDQ bOc @@ -124259,15 +120869,15 @@ bTk bXL bXx bPe -bWx +cju hDh omf wuk bTS -uRM +aqg ykB -gPA -bWx +bKg +cju bPJ bQa aaa @@ -124280,12 +120890,12 @@ aaa bUN bUE aeu -bzG -bzG -bzG +cfY +cfY +cfY bMK -clT -bzG +auw +cfY aeu ckU cvH @@ -124466,14 +121076,14 @@ aZF baP ayD bcH -bdi +cfY aBi aCG aGa aKu aMe bfB -amV +cju bfr bex aTU @@ -124486,12 +121096,12 @@ aZr bdN ccr cNF -aCb +cju bhP bim biZ -bkB -big +buY +gCn boq bpA blO @@ -124502,8 +121112,8 @@ bke blD bAP bCf -bhQ -bhQ +cju +cju jGN bGH bOc @@ -124521,10 +121131,10 @@ bOc bOc bOc bWn -bWx -bWx +cju +cju bSL -nGr +bHB bSr cgx aaa @@ -124537,12 +121147,12 @@ aaa bUN bUn aeu -bzG -cjB +cfY +awW csH ctk ctM -bzG +cfY aeu clb cvI @@ -124723,8 +121333,8 @@ aZF aZF aZF aZF -bdi -bdi +cfY +cfY aVX bdw bdv @@ -124743,13 +121353,13 @@ bbc bbc bbc bgi -aCb -aCb -big -big +cju +cju +gCn +gCn bom -aCb -bhQ +cju +cju bpB bkl bli @@ -124759,7 +121369,7 @@ bkY blD bAU bml -bhQ +cju bMJ bAM bAM @@ -124794,12 +121404,12 @@ aaa bUN cke aeu -bzG +cfY clR clR clR ctU -bzG +cfY aeu ckU cvJ @@ -124981,9 +121591,9 @@ aFE cNL cLt ctI -bdi -bdi -amV +cfY +cfY +cju aVJ bfz aVJ @@ -125001,7 +121611,7 @@ bct bbc qTM bok -bhQ +cju bio bjb bkC @@ -125011,12 +121621,12 @@ bpD bkf blb bkf -bks +bsE bkZ bOI buY bmj -bhQ +cju bEg bAO hgX @@ -125051,12 +121661,12 @@ aaa jAT aeu aeu -bzG +cfY clR clE clQ ctW -bzG +cfY aeu ckU ckU @@ -125258,12 +121868,12 @@ ber bbc cRn cbj -bhQ +cju bAZ bjc bkD bmI -aXh +ayq bpE brc btb @@ -125273,7 +121883,7 @@ byI bmv bAW bms -bhQ +cju bNs bAT bAv @@ -125308,12 +121918,12 @@ aaa bUN aeu aeu -bzG +cfY clR clR clR ctX -bzG +cfY aeu aeu ckz @@ -125515,12 +122125,12 @@ baG bbc cmX boo -bhH -bhW +cju +gCn bmN boK -bhH -bhH +cju +cju bjV bkh bkv @@ -125530,7 +122140,7 @@ byJ blk buY bmm -bhQ +cju bNT bBa czd @@ -125565,12 +122175,12 @@ aaa bUN aeu aeu -bzG -cjB +cfY +awW csI ctn ctY -bzG +cfY aeu aeu ckz @@ -125771,23 +122381,23 @@ bcr beI bbc cnD -bhH -bhH +cju +cju biq bjd bkF bjv -bhH -bhQ -bki -bki -bhQ +cju +cju +gCn +gCn +cju bkN bIG -bhQ +cju bMB blH -bhQ +cju bEg bEg bEg @@ -125822,12 +122432,12 @@ aaa bUN cke aeu -bzG -bzG -bzG -bzG -bzG -bzG +cfY +cfY +cfY +cfY +cfY +cfY aeu aeu ckz @@ -126028,23 +122638,23 @@ beh bcu bbc qTM -bhH +cju bya biH bje bkH bkK -bhH +cju iwu cDj iwu -bki +gCn bkO byK -bki +gCn bAY blI -bki +gCn acm aaQ bPC @@ -126088,7 +122698,7 @@ aeu aeu aeU aeU -wcg +cMT aeU aeU coy @@ -126291,17 +122901,17 @@ bhN bjf bkI bju -bhW +gCn gKW gKW pMr -blE +ckO bkN bIQ bll bOg blH -blE +ckO bUG acK bEg @@ -126345,7 +122955,7 @@ aeU aeU aUz aeU -loZ +oPT aeU aeU aeU @@ -126542,13 +123152,13 @@ aYn awi jjR bdY -bhH +cju bhV bis bjj bkL blh -bhH +cju aaa aaa aaa @@ -126799,13 +123409,13 @@ aYp awi bgi bkd -bhH -bhH -bhW +cju +cju +gCn biS -bhW -bhH -bhH +gCn +cju +cju aaa aaa aaa @@ -126859,7 +123469,7 @@ aaa acm aaa aaa -qSk +cNy aaa aaa acm @@ -127057,11 +123667,11 @@ awi eow avA acm -bhW +gCn bit bjm bjl -bhW +gCn acm aaa aaa @@ -127116,7 +123726,7 @@ aaa acm aaa aaa -qSk +cNy aaa aaa acm @@ -127314,11 +123924,11 @@ awi ccu avA acm -bhW +gCn biu bjo bmW -bhW +gCn aaQ aaa aaa @@ -127373,7 +123983,7 @@ ckm ckm ckm aaa -cjl +jTB aaa ckm ckm @@ -127571,11 +124181,11 @@ cdc qTM bkd bUG -bkc -bhW +ckO +gCn bnl -bhW -bkc +gCn +ckO bUG aaa aaa @@ -127629,17 +124239,17 @@ ckB ckB ckB ckB -hKF -fYD +kam +iFJ qVV -fHA -fHA -fHA -fHA -fHA -fHA -fHA -fHA +cKi +cKi +cKi +cKi +cKi +cKi +cKi +cKi ckk cnw aaa @@ -127759,9 +124369,9 @@ acm acm acm bUG -aFT +gCn cDm -aFT +gCn bUG aaa aaa @@ -127887,7 +124497,7 @@ ckg ckg cGZ aaa -fYD +iFJ aaa ckg ckg @@ -128016,9 +124626,9 @@ aeu coy aaa acm -aFT +gCn xSa -aFT +gCn acm aaa aaa @@ -128144,7 +124754,7 @@ aaa aaa aaa aaa -fYD +iFJ aaa aaa aaa @@ -128266,16 +124876,16 @@ aeu aeu aeu aeu -ckL -cee -ckL -ckL -ckL -aFT -aFT -cee +cju +nNA +cju +cju +cju +gCn +gCn +nNA sYx -ckL +cju acm aaa aaa @@ -128401,7 +125011,7 @@ ckm ckm ckm aaa -fYD +iFJ aaa ckm ckm @@ -128522,18 +125132,18 @@ aeu aeu aeu aeu -ckL -cee +cju +nNA uHm eUG -cee +nNA cap axW bxF enV xRm -cee -aFT +nNA +gCn ckO aaa aaa @@ -128657,17 +125267,17 @@ ckB ckB ckB ckB -hKF -fYD +kam +iFJ qVV -fHA -fHA -fHA -fHA -fHA -fHA -fHA -cmJ +cKi +cKi +cKi +cKi +cKi +cKi +cKi +fFL ckk cnw aaa @@ -128779,7 +125389,7 @@ aeu aeu aeu aeu -ckL +cju aUa ctG kRp @@ -128915,7 +125525,7 @@ ckg ckg cGZ aaa -fYD +iFJ aaa ckg ckg @@ -129036,11 +125646,11 @@ aeu aeu aeu aeu -ckL +cju ctE meF ckK -aFT +gCn cMU lcY uzF @@ -129172,7 +125782,7 @@ aaa aaa aaa aaa -fYD +iFJ aaa aaa aaa @@ -129293,7 +125903,7 @@ aeu aeu aeu aeu -cee +nNA krk pFx dBo @@ -129429,7 +126039,7 @@ ckm ckm ckm aaa -fYD +iFJ aaa ckm ckm @@ -129550,18 +126160,18 @@ aeu aeu aeu aeu -cee +nNA anr mJx kQQ -evh +bCA hYi bKF xRw pMw vsD -ckL -aFT +cju +gCn wQg aaa aaa @@ -129685,17 +126295,17 @@ ckB ckB ckB ckB -hKF -fYD +kam +iFJ qVV -fHA -fHA -fHA -fHA -fHA -fHA -fHA -cmJ +cKi +cKi +cKi +cKi +cKi +cKi +cKi +fFL ckk cnw aaa @@ -129807,17 +126417,17 @@ aeu aeu aeu aeu -ckL -aFT +cju +gCn rHQ -aFT -ckL +gCn +cju cBJ wWG pWM bXS aJb -aFT +gCn acm bUG aaa @@ -129943,7 +126553,7 @@ ckg ckg cGZ aaa -fYD +iFJ aaa ckg ckg @@ -130063,8 +126673,8 @@ aeu aeu aeu aeu -cee -ckL +nNA +cju bpF bJD ujn @@ -130074,7 +126684,7 @@ vWt aAM bXS vZP -aFT +gCn aaa aaa aaa @@ -130116,7 +126726,7 @@ cGV cGV cGV cGV -sYc +pJm cGV cGV cGV @@ -130200,7 +126810,7 @@ aaa aaa aaa aaa -fYD +iFJ aaa aaa aaa @@ -130320,7 +126930,7 @@ aeu aeu aeu aeu -ckL +cju fEE cao olz @@ -130331,7 +126941,7 @@ iIk peJ wRE vZP -ckL +cju aaa aaa aaa @@ -130370,14 +126980,14 @@ aaa aeU sgd iCs -uaf -uaf -uaf -jRu -dpf -dpf -dpf -dpf +udc +udc +udc +cNj +cnR +cnR +cnR +cnR kup aeU aeU @@ -130457,7 +127067,7 @@ ckm ckm ckm aaa -fYD +iFJ aaa ckm ckm @@ -130577,19 +127187,19 @@ aeu aeu aeu aeu -ckL +cju lrR okJ ozn asg -akE +bNt ovS rIq -ckL +cju aKR -aFT -cee -ckL +gCn +nNA +cju bUG aaa aaa @@ -130630,7 +127240,7 @@ cGX cGX cGX cGX -ccG +gKW cGX cGX cGX @@ -130713,17 +127323,17 @@ ckB ckB ckB ckB -hKF -fYD +kam +iFJ qVV -fHA -fHA -fHA -fHA -fHA -fHA -fHA -cmJ +cKi +cKi +cKi +cKi +cKi +cKi +cKi +fFL ckk cnw aaa @@ -130834,7 +127444,7 @@ aeu aeu aeu aeu -cee +nNA cXF rdc bvP @@ -130842,11 +127452,11 @@ bFv cog pei cnM -aFT +gCn wWG ohv cDs -ckL +cju acm aaa aaa @@ -130887,7 +127497,7 @@ ckk aaa aaa ckk -ccG +gKW ckk aaa aaa @@ -130971,7 +127581,7 @@ ckg ckg cGZ aaa -fYD +iFJ aaa ckg ckg @@ -131091,19 +127701,19 @@ aeu aeu aeu aeu -ckL -cee +cju +nNA ckX -aFT +gCn fmc -ckL +cju qyy whK cuo ctQ rxW bPA -aFT +gCn acm aaa aaa @@ -131143,9 +127753,9 @@ cGV cGV cGV cGV -ccG -ccG -ccG +gKW +gKW +gKW cGV cGV cGV @@ -131228,7 +127838,7 @@ aaa aaa aaa aaa -fYD +iFJ aaa aaa aaa @@ -131349,18 +127959,18 @@ aeu aeu aeu aeu -ckL +cju jzS ckq pRE -cee +nNA uFH ckA rHQ sSM gQP sny -aFT +gCn acm aaa aaa @@ -131396,17 +128006,17 @@ aaa aeo aaa sgd -uaf -uaf -uaf -uaf +udc +udc +udc +udc mys -ccG +gKW hPN -dpf -dpf -dpf -dpf +cnR +cnR +cnR +cnR kup aeU aeU @@ -131485,7 +128095,7 @@ ckm ckm ckm aaa -fYD +iFJ aaa ckm ckm @@ -131606,18 +128216,18 @@ aeu aeu aeu aeu -ckL +cju jaN usX cNz -ckL -cee -ckL -ckL +cju +nNA +cju +cju hLm wSu qwu -cee +nNA acm aaa aaa @@ -131657,9 +128267,9 @@ cGX cGX cGX cGX -ccG -ccG -ccG +gKW +gKW +gKW cGX cGX cGX @@ -131741,17 +128351,17 @@ ckB ckB ckB ckB -hKF +kam mhL qVV -fHA -fHA -fHA -fHA -fHA -fHA -fHA -cmJ +cKi +cKi +cKi +cKi +cKi +cKi +cKi +fFL ckk cnw aaa @@ -131863,18 +128473,18 @@ aeu aeu aeu aeu -ckL +cju ckY ovE ckM -ckL +cju aeu aeu -ckL -cee -ckL -ckL -ckL +cju +nNA +cju +cju +cju bUG aaa aaa @@ -131915,7 +128525,7 @@ ckk aaa aaa ckk -ccG +gKW ckk aaa aaa @@ -132256,7 +128866,7 @@ aaa aaa aaa aaa -qSk +cNy aaa aaa aaa @@ -132425,15 +129035,15 @@ aaa aeo aaa sgd -uaf -uaf -uaf -uaf -jRu -dpf -dpf -dpf -dpf +udc +udc +udc +udc +cNj +cnR +cnR +cnR +cnR kup aeU coy @@ -132513,7 +129123,7 @@ cnw cnw cnw aaB -qSk +cNy aaB cnw cnw @@ -132686,7 +129296,7 @@ cGX cGX cGX cGX -ccG +gKW cGX cGX cGX diff --git a/_maps/metis_maps/LayeniaStation/LayeniaStation.dmm b/_maps/metis_maps/LayeniaStation/LayeniaStation.dmm index 07188176ab..0df6476678 100644 --- a/_maps/metis_maps/LayeniaStation/LayeniaStation.dmm +++ b/_maps/metis_maps/LayeniaStation/LayeniaStation.dmm @@ -16,7 +16,7 @@ "acE" = (/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "acM" = (/obj/machinery/light{pixel_y = -1},/turf/closed/mineral/layenia,/area/security/prison) "acU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/central) -"acV" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 4},/obj/machinery/camera{c_tag = "HOP Line"; dir = 6},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) +"acV" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 4},/obj/machinery/camera{c_tag = "HOP Line"; dir = 6},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "adb" = (/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = -28; receive_ore_updates = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/science/misc_lab) "adx" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Foyer Entrance"; network = list("minisat"); start_active = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "adC" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) @@ -54,9 +54,9 @@ "ahy" = (/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/science/misc_lab) "ahE" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Engineering Access Primary"; dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4; name = "air supply pipe"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/engine/break_room) "aib" = (/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"aic" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/artatrium) +"aic" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/artatrium) "aid" = (/obj/item/beacon,/turf/open/floor/engine,/area/science/xenobiology) -"aif" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light/small{dir = 4; pixel_x = 7; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/chapel/main) +"aif" = (/obj/item/kirbyplants/random,/obj/machinery/light/small{dir = 4; pixel_x = 7; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/chapel/main) "aip" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) "aiM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{name = "air scrubber"},/turf/open/floor/plasteel/dark,/area/chapel/main) "aiT" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) @@ -277,7 +277,7 @@ "aKT" = (/obj/structure/table,/obj/item/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/fore) "aLb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel/stairs/left,/area/medical/sleeper) "aLg" = (/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall,/area/library) -"aLj" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/item/twohanded/required/kirbyplants/random,/obj/structure/railing,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"aLj" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/item/kirbyplants/random,/obj/structure/railing,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "aLo" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/turf/open/floor/carpet/black,/area/crew_quarters/bar) "aLD" = (/obj/item/shard{icon_state = "medium"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/white,/area/maintenance/fore) "aLJ" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/crowbar,/obj/item/restraints/handcuffs/cable/zipties,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/white,/area/maintenance/fore) @@ -291,7 +291,7 @@ "aMV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering/reactor_control) "aMX" = (/obj/machinery/light/small{dir = 4; pixel_x = 7; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) "aNo" = (/obj/structure/table/reinforced,/obj/item/storage/box/lights/mixed,/obj/item/storage/box/lights/mixed{pixel_x = 3; pixel_y = 3},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/structure/extinguisher_cabinet{dir = 4; pixel_y = -27},/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/engine/engineering) -"aNy" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/genetics) +"aNy" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/genetics) "aND" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/turf/open/floor/plating,/area/maintenance/fore) "aNI" = (/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall,/area/hydroponics) "aNJ" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness) @@ -312,7 +312,7 @@ "aPQ" = (/obj/structure/table,/obj/item/storage/box/lights/mixed{pixel_y = 7},/obj/item/storage/box/lights/mixed{pixel_y = 7},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/janitor) "aQj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) "aQs" = (/obj/machinery/space_heater,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fore) -"aQC" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"aQC" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/showroomfloor,/area/security/main) "aQE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 8; name = "air scrubber"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/science/misc_lab) "aQF" = (/obj/machinery/door/poddoor/incinerator_atmos_aux,/obj/effect/turf_decal/delivery/red,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) "aQK" = (/obj/structure/table,/obj/item/ashtray,/turf/open/floor/wood,/area/maintenance/port/aft) @@ -362,7 +362,7 @@ "aYk" = (/obj/machinery/gateway{dir = 6},/obj/effect/turf_decal/bot_white/right,/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},/turf/open/floor/plasteel/dark,/area/gateway) "aYq" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light{dir = 1; pixel_y = 19},/turf/open/floor/plasteel/white,/area/medical/virology) "aYx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/turf/open/floor/wood,/area/library/lounge) -"aYy" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/engine/engineering) +"aYy" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/engine/engineering) "aYH" = (/mob/living/simple_animal/pet/cat{name = "Stray Maintenance Cat"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/power/apc{areastring = "/area/hallway/primary/port"; dir = 1; name = "Port Hall APC"; pixel_y = 26},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/starboard) "aYP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/medical/virology) "aZd" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/structure/sign/warning/pods{pixel_y = 32},/turf/open/floor/plasteel/dark/side,/area/security/main) @@ -411,7 +411,7 @@ "bfH" = (/obj/structure/reagent_dispensers/water_cooler,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel/dark,/area/bridge) "bgb" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/engine/atmos) "bgc" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 5},/turf/open/floor/plasteel,/area/engine/break_room) -"bge" = (/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/engine/engineering) +"bge" = (/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/item/kirbyplants/random,/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/engine/engineering) "bgj" = (/obj/structure/table,/obj/machinery/reagentgrinder{pixel_y = 9},/turf/open/floor/plasteel/dark,/area/science/misc_lab) "bgo" = (/obj/machinery/shower{dir = 4; name = "emergency shower"},/obj/item/soap,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness) "bgq" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plasteel/dark/airless,/area/layenia) @@ -434,7 +434,7 @@ "biL" = (/obj/structure/table/glass,/obj/item/reagent_containers/spray/cleaner,/obj/item/storage/fancy/donut_box,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{pixel_y = 25},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay/central) "biR" = (/obj/effect/turf_decal/tile/neutral{dir = 2},/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/structure/table,/obj/item/pen/blue,/obj/item/pen/fourcolor{pixel_x = -4; pixel_y = 5},/obj/item/pen/red{pixel_x = 2; pixel_y = 4},/turf/open/floor/plasteel,/area/artatrium) "bje" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/caution/stand_clear{dir = 4},/turf/open/indestructible/concrete,/area/layenia/cloudlayer) -"bjl" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-05"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/storage/tech) +"bjl" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/storage/tech) "bjx" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/medbay/central) "bjJ" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating/asteroid/layenia,/area/layenia) "bjV" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/fore) @@ -452,7 +452,7 @@ "blB" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) "blF" = (/obj/item/reagent_containers/food/snacks/beans,/turf/open/floor/plating/asteroid/layenia,/area/layenia) "blG" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/science/misc_lab) -"blK" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"blK" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "blQ" = (/obj/structure/table,/obj/effect/turf_decal/delivery,/obj/item/paper_bin{pixel_y = 7},/obj/item/pen,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel{dir = 1; icon_plating = "floor"; icon_state = "floor_whole"},/area/hallway/primary/starboard) "bma" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/grille/broken,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) "bmf" = (/obj/structure/chair/foldingchair,/obj/item/toy/figure/wizard,/turf/open/floor/plating/asteroid/layenia,/area/layenia) @@ -676,7 +676,7 @@ "bMw" = (/obj/machinery/button/door{id = "Dorm5"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/dorms) "bMN" = (/obj/machinery/button/door{id = "permaboltD"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/bed,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 1; name = "air vent"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) "bNc" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/sheet/mineral/plasma{amount = 30},/turf/open/floor/plating,/area/engine/break_room) -"bNg" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plating/asteroid/layenia/garden,/area/security/prison) +"bNg" = (/obj/item/kirbyplants/random,/turf/open/floor/plating/asteroid/layenia/garden,/area/security/prison) "bNi" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/red/line{dir = 8},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "bNj" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/security/checkpoint/escape) "bNk" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/neutral,/obj/machinery/computer/lore_terminal,/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/hallway/primary/port/fore) @@ -726,7 +726,7 @@ "bUl" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) "bUB" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/security/execution/transfer) "bUM" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"bVa" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light/small{pixel_y = -1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/turf/open/floor/plasteel/dark,/area/chapel/main) +"bVa" = (/obj/item/kirbyplants/random,/obj/machinery/light/small{pixel_y = -1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/turf/open/floor/plasteel/dark,/area/chapel/main) "bVd" = (/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/fore) "bVp" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) "bVv" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/light{pixel_y = -1},/turf/open/floor/wood,/area/maintenance/port/aft) @@ -791,7 +791,7 @@ "ced" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) "cem" = (/obj/structure/trash_pile,/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/fore) "ceu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"ceQ" = (/obj/effect/turf_decal/loading_area{icon_state = "steel_panel"; name = "steel pannel"},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/medbay/central) +"ceQ" = (/obj/effect/turf_decal/loading_area{icon_state = "steel_panel"; name = "steel pannel"},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/medbay/central) "ceX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/door/airlock/engineering/glass{dir = 1; name = "Engineering Locker Room"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) "cfb" = (/obj/machinery/door/window/southright{base_state = "left"; dir = 4; icon_state = "left"; name = "Bar Door"; req_one_access_txt = "25;28"},/obj/structure/sign/barsign{pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/bar) "cfe" = (/obj/structure/table,/turf/open/floor/plating/asteroid/layenia/garden,/area/security/prison) @@ -869,7 +869,7 @@ "cpt" = (/obj/structure/closet/wardrobe/white,/obj/item/clothing/shoes/jackboots,/obj/item/reagent_containers/blood/random,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/fore) "cpD" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) "cpE" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/glass,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/fore) -"cpJ" = (/obj/structure/bed/secbed,/mob/living/simple_animal/hostile/carp/cayenne/lia,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 9; name = "air supply pipe"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"cpJ" = (/obj/structure/bed/dogbed,/mob/living/simple_animal/hostile/carp/cayenne/lia,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 9; name = "air supply pipe"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) "cqd" = (/obj/machinery/light{pixel_y = -1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1; name = "air scrubber"},/turf/open/floor/plasteel/dark/side{dir = 1},/area/tcommsat/computer) "cqs" = (/obj/machinery/blackbox_recorder,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) "cqG" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/security/main) @@ -949,7 +949,7 @@ "cCd" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) "cCj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/port) "cCm" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/wood,/area/crew_quarters/fitness) -"cCn" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/port/fore) +"cCn" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/port/fore) "cCC" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) "cCH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/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/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/science/mixing) "cCL" = (/obj/machinery/monkey_recycler,/turf/open/floor/plasteel,/area/science/xenobiology) @@ -1091,7 +1091,7 @@ "cVj" = (/obj/machinery/reagentgrinder{pixel_x = -4; pixel_y = 10},/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/white,/area/medical/chemistry) "cVx" = (/obj/machinery/computer/station_alert,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 1},/area/bridge) "cVE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 2},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"cVG" = (/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/airalarm{pixel_y = 23},/obj/item/twohanded/required/kirbyplants/random,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/security/prison) +"cVG" = (/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/airalarm{pixel_y = 23},/obj/item/kirbyplants/random,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/security/prison) "cVQ" = (/obj/structure/closet,/obj/item/reagent_containers/food/snacks/burger/chicken,/obj/item/clothing/suit/chickensuit,/obj/item/clothing/head/chicken,/turf/open/floor/plasteel/dark,/area/maintenance/fore) "cVV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 4; name = "air supply pipe"},/turf/open/floor/plasteel,/area/hallway/primary/fore) "cVX" = (/obj/effect/decal/cleanable/vomit,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/camera{c_tag = "Prison Common Room 1"; network = list("ss13","prison")},/turf/open/floor/plasteel,/area/security/prison) @@ -1121,7 +1121,7 @@ "dbq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/storage/tech) "dbA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 8; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel{icon_plating = "floor"; icon_state = "floor_whole"},/area/hallway/primary/fore) "dbE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior{dir = 4},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"dbF" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 4},/obj/machinery/camera{c_tag = "Port Hallway 2"},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"dbF" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 4},/obj/machinery/camera{c_tag = "Port Hallway 2"},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "dbL" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/starboard/aft) "dbS" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/igniter/incinerator_atmos,/obj/machinery/air_sensor/atmos/incinerator_tank{pixel_x = 32; pixel_y = -32},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) "dbT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/layenia) @@ -1246,8 +1246,8 @@ "drW" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) "drY" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/white/side{dir = 1},/area/science/research) "drZ" = (/obj/structure/table,/obj/item/folder/white,/obj/item/pen,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/science/server"; dir = 8; name = "Server Room APC"; pixel_x = -25},/turf/open/floor/plasteel/dark,/area/science/server) -"dsi" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/engine/break_room) -"dsu" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/artatrium) +"dsi" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/engine/break_room) +"dsu" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/artatrium) "dsv" = (/turf/closed/wall/r_wall,/area/bridge) "dsA" = (/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/maintenance/port/aft) "dsK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/turf/open/floor/plasteel/showroomfloor,/area/security/main) @@ -1323,7 +1323,7 @@ "dCT" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) "dDb" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/yellow{icon_state = "0-8"},/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},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) "dDh" = (/obj/effect/turf_decal/stripes/end{dir = 1},/obj/structure/fence,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) -"dDK" = (/obj/item/twohanded/required/kirbyplants/dead,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/hor) +"dDK" = (/obj/item/kirbyplants/dead,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/hor) "dEd" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white/side{dir = 6},/area/bridge) "dEq" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "SMES Room"; dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) "dEw" = (/obj/structure/table,/turf/open/floor/plasteel/dark,/area/hallway/primary/port) @@ -1363,14 +1363,14 @@ "dJm" = (/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "dJB" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/storage/tech) "dJS" = (/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering/reactor_control) -"dJY" = (/obj/structure/table,/obj/item/storage/pill_bottle/dice{pixel_x = -9; pixel_y = 10},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/toy/figure{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/security/prison) +"dJY" = (/obj/structure/table,/obj/item/storage/dice{pixel_x = -9; pixel_y = 10},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/toy/figure{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/security/prison) "dKc" = (/turf/open/floor/plasteel/white,/area/medical/medbay/central) "dKg" = (/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/science/robotics/lab) "dKp" = (/obj/structure/table,/obj/item/pen,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) "dKs" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 8; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white/side{dir = 1},/area/science/research) "dKx" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/railing,/obj/effect/turf_decal/stripes/box,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "dKy" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/table,/obj/item/storage/box/cups{pixel_y = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/maintenance/starboard/aft) -"dKO" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/camera{c_tag = "Xenobiology Maintenance Entrance"; dir = 5; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/science/misc_lab) +"dKO" = (/obj/item/kirbyplants/random,/obj/machinery/camera{c_tag = "Xenobiology Maintenance Entrance"; dir = 5; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/science/misc_lab) "dKV" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/power/apc{areastring = "/area/hallway/primary/starboard"; dir = 8; name = "Starboard Primary Hallway APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/hallway/primary/starboard) "dKX" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/engine/engine_smes) "dKZ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction/flip{dir = 2},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/fore) @@ -1463,7 +1463,7 @@ "dXo" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) "dXE" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "dYk" = (/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/bridge) -"dYl" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plasteel/white/corner{dir = 4},/area/crew_quarters/heads/hor) +"dYl" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plasteel/white/corner{dir = 4},/area/crew_quarters/heads/hor) "dYt" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/structure/closet/secure_closet/freezer{name = "fridge"},/obj/item/storage/box/donkpockets/donkpockethonk,/turf/open/floor/plating/asteroid/layenia/garden,/area/security/prison) "dYC" = (/obj/effect/spawner/structure/window,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/medbay/central) "dYF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{dir = 8; id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/engine,/area/science/xenobiology) @@ -1531,7 +1531,7 @@ "eiZ" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/port/fore) "ejg" = (/obj/structure/lattice/catwalk,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/structure/railing,/turf/open/chasm/cloud,/area/layenia/cloudlayer) "ejj" = (/turf/open/floor/plasteel/dark,/area/hallway/primary/port/fore) -"ejk" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) +"ejk" = (/obj/item/kirbyplants/random,/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "ejx" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/white,/area/medical/sleeper) "ejE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/engine/engine_smes) "ejN" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/engine/break_room) @@ -1547,7 +1547,7 @@ "ekQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/turf/open/floor/plasteel/dark,/area/chapel/main) "elc" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/science/misc_lab) "elj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/crew_quarters/dorms) -"elp" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/vaporwave,/area/arcade) +"elp" = (/obj/item/kirbyplants/random,/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/vaporwave,/area/arcade) "elr" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) "els" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) "elu" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/window{dir = 1},/turf/open/floor/plasteel/white/side,/area/medical/virology) @@ -1576,7 +1576,7 @@ "eoP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/dark,/area/maintenance/disposal) "eoR" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{dir = 8; id = "xenobio3"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) "eoS" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/security/courtroom) -"eoZ" = (/obj/machinery/power/apc{areastring = "/area/science/lab"; dir = 4; name = "Research Lab APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-8"},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/white,/area/science/lab) +"eoZ" = (/obj/machinery/power/apc{areastring = "/area/science/lab"; dir = 4; name = "Research Lab APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-8"},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/white,/area/science/lab) "epc" = (/turf/open/floor/plasteel/dark,/area/chapel/main) "epo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 1; name = "air vent"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) "epx" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/starboard/aft) @@ -1621,7 +1621,7 @@ "euS" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/item/mmi,/obj/item/mmi,/obj/item/mmi,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) "euT" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/security/armory) "euZ" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/layenia/cloudlayer) -"evk" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/white/corner{dir = 1},/area/science/research) +"evk" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/white/corner{dir = 1},/area/science/research) "evr" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/indestructible/concrete/smooth,/area/layenia) "evw" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3; pixel_y = 7},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 5},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/maintenance/port/aft) "evB" = (/obj/machinery/door/window/eastleft{dir = 2; name = "Monkey Pen"; req_one_access_txt = "9"},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/grass,/area/medical/genetics) @@ -1689,7 +1689,7 @@ "eDM" = (/obj/structure/bed/dogbed,/mob/living/simple_animal/pet/dog/pug{name = "McGriff"},/obj/machinery/light/small{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/turf/open/floor/wood,/area/security/warden) "eDS" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/layenia/cloudlayer) "eDT" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 1"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/item/bedsheet/orange,/turf/open/floor/plasteel,/area/security/prison) -"eEk" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/bridge) +"eEk" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/bridge) "eEC" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/science/misc_lab) "eEI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) "eEW" = (/turf/open/floor/wood,/area/science/research) @@ -1721,7 +1721,7 @@ "eIS" = (/obj/structure/table/wood,/obj/item/storage/lockbox/medal{pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/heads/captain) "eIW" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/crew_quarters/fitness/pool) "eJn" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"eJs" = (/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"eJs" = (/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/item/kirbyplants/random,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) "eJu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/white,/area/medical/sleeper) "eJE" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 8; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/processing) "eJF" = (/obj/effect/turf_decal/stripes/line,/obj/structure/railing,/turf/open/floor/plasteel,/area/layenia/cloudlayer) @@ -1762,10 +1762,10 @@ "eOh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/starboard/aft) "eOk" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "eOr" = (/obj/item/twohanded/required/fuel_rod,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/pool,/area/engine/engineering/reactor_core) -"eOy" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/light{dir = 1; pixel_y = 19},/turf/open/floor/plasteel/white,/area/medical/virology) -"eOD" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/engineering) +"eOy" = (/obj/item/kirbyplants/random,/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/light{dir = 1; pixel_y = 19},/turf/open/floor/plasteel/white,/area/medical/virology) +"eOD" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/item/kirbyplants/random,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/engineering) "ePe" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) -"ePg" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/baseturf_helper/asteroid/layenia,/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"ePg" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/baseturf_helper/asteroid/layenia,/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "ePw" = (/obj/structure/table/plasmaglass,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/crew_quarters/bar) "ePA" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/obj/machinery/camera{c_tag = "Disposals"},/turf/open/floor/plasteel/dark,/area/maintenance/disposal) "ePD" = (/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/quartermaster/warehouse) @@ -1892,7 +1892,7 @@ "fiL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/turf/open/floor/carpet/red,/area/crew_quarters/bar) "fiS" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/wood,/area/security/detectives_office) "fiT" = (/obj/structure/table,/obj/item/hemostat,/obj/item/cautery{pixel_x = 4},/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"fjs" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/library/lounge) +"fjs" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/library/lounge) "fkl" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 1; icon_state = "right"; name = "Mining Desk"; req_access_txt = "48"},/obj/item/toy/figure/miner,/obj/machinery/door/poddoor/preopen{id = "cargoshut1"; name = "shutters"},/turf/open/floor/plating,/area/quartermaster/miningdock) "fks" = (/obj/machinery/computer/cargo{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) "fkv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/white,/area/science/research) @@ -1937,7 +1937,7 @@ "fqA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 9; name = "scrubbers pipe"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) "fqB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6; name = "air supply pipe"},/turf/closed/wall/r_wall,/area/engine/engineering) "fqJ" = (/turf/open/floor/plasteel/dark,/area/layenia/cloudlayer) -"fqK" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"fqK" = (/obj/item/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "fqM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1; name = "air scrubber"},/turf/open/floor/plasteel/white,/area/medical/genetics/cloning) "fqP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"},/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/plasteel,/area/engine/atmos) "fqU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) @@ -1957,7 +1957,7 @@ "ftq" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/structure/table,/obj/item/restraints/handcuffs,/obj/item/assembly/timer,/turf/open/floor/plasteel,/area/security/main) "ftt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 1; name = "air vent"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/storage) "ftw" = (/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"ftx" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"ftx" = (/obj/item/kirbyplants/random,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "ftB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/table,/obj/item/folder/red,/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/security/main) "ftO" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "fuf" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/research) @@ -1975,7 +1975,7 @@ "fwb" = (/obj/effect/landmark/nuclear_waste_spawner,/turf/open/floor/plasteel,/area/engine/atmos) "fwc" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/medical/sleeper) "fwg" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/hallway/primary/port) -"fwl" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{name = "air scrubber"},/obj/machinery/camera{c_tag = "Prison Hallway"; network = list("ss13","prison")},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/security/prison) +"fwl" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{name = "air scrubber"},/obj/machinery/camera{c_tag = "Prison Hallway"; network = list("ss13","prison")},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/security/prison) "fwq" = (/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/solars/port/fore) "fws" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 8; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) "fwu" = (/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall,/area/security/checkpoint/auxiliary) @@ -2000,7 +2000,7 @@ "fzu" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/trash/waffles,/turf/open/floor/plasteel/dark,/area/maintenance/disposal) "fzI" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) "fzO" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/closet/radiation,/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/engine/break_room) -"fzV" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"fzV" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "fzX" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/genetics) "fAi" = (/obj/machinery/space_heater,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/fore) "fAr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/service) @@ -2161,7 +2161,7 @@ "fXx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) "fXA" = (/obj/effect/turf_decal/bot,/obj/structure/ore_box,/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) "fXC" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/clothing/suit/straight_jacket,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/security/prison) -"fXP" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/structure/railing{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) +"fXP" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/structure/railing{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "fXU" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/table,/obj/item/restraints/handcuffs,/turf/open/floor/plasteel,/area/security/prison) "fYg" = (/obj/machinery/door/window/southleft{name = "O2 Storage"; req_access_txt = "10"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{dir = 1; icon_plating = "floor"; icon_state = "floor_whole"},/area/engine/engineering) "fYp" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/pen,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/paper/guides/jobs/medical/morgue{pixel_x = 5; pixel_y = 4},/obj/item/clothing/gloves/color/latex,/turf/open/floor/plasteel,/area/medical/morgue) @@ -2218,7 +2218,7 @@ "ghO" = (/obj/effect/turf_decal/bot,/obj/machinery/computer/lore_terminal,/turf/open/floor/plasteel,/area/hallway/primary/starboard) "ghX" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/port) "ghY" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{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/machinery/portable_atmospherics/scrubber,/obj/machinery/power/apc{areastring = "/area/science/mixing"; dir = 4; name = "Toxins Lab APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/science/mixing) -"gib" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/machinery/camera{c_tag = "Research Division South"; dir = 8; network = list("ss13","rd")},/turf/open/floor/wood,/area/science/research) +"gib" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/machinery/camera{c_tag = "Research Division South"; dir = 8; network = list("ss13","rd")},/turf/open/floor/wood,/area/science/research) "giL" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil/random,/turf/open/chasm/cloud,/area/layenia/cloudlayer) "giY" = (/obj/effect/turf_decal/caution/stand_clear{dir = 4},/turf/open/indestructible/concrete,/area/layenia) "gjg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 8; name = "scrubbers pipe"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/crew_quarters/fitness) @@ -2236,7 +2236,7 @@ "glu" = (/obj/structure/grille,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "glB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/security/main) "glL" = (/turf/open/floor/plasteel/stairs/right{dir = 4},/area/quartermaster/sorting) -"glR" = (/obj/item/twohanded/required/kirbyplants/random,/obj/item/toy/syndicateballoon,/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/carpet/black,/area/arcade) +"glR" = (/obj/item/kirbyplants/random,/obj/item/toy/syndicateballoon,/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/carpet/black,/area/arcade) "glS" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 6; name = "scrubbers pipe"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/crew_quarters/fitness/pool) "glV" = (/obj/machinery/door/airlock/security/glass{name = "Prisoner Processing"; req_access_txt = "2"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/processing) "glW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) @@ -2326,7 +2326,7 @@ "gwA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Maintenance Access"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard) "gwG" = (/obj/machinery/conveyor{id = "garbage"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/maintenance/disposal) "gwH" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/crew_quarters/fitness/pool) -"gwJ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/security/processing) +"gwJ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/item/kirbyplants/random,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/security/processing) "gwL" = (/obj/structure/target_stake,/obj/machinery/magnetic_module,/turf/open/floor/holofloor{icon_state = "white"},/area/security/range) "gwO" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) "gxa" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) @@ -2584,7 +2584,7 @@ "hkd" = (/obj/structure/trash_pile,/turf/open/pool,/area/maintenance/fore) "hkm" = (/obj/machinery/light{pixel_y = -1},/obj/structure/lattice/catwalk,/obj/structure/railing{dir = 4},/turf/open/chasm/cloud,/area/layenia/cloudlayer) "hks" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/port) -"hkB" = (/obj/machinery/light{pixel_y = -1},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/break_room) +"hkB" = (/obj/machinery/light{pixel_y = -1},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engine/break_room) "hkM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/turf/open/floor/plasteel/dark,/area/maintenance/disposal) "hkZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) "hlo" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = -26; req_access_txt = "5"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/white,/area/medical/medbay/central) @@ -2614,7 +2614,7 @@ "hoj" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) "hor" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/computer/lore_terminal,/turf/open/floor/plasteel,/area/hallway/primary/port) "hox" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/structure/chair/comfy{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/pool"; name = "Pool APC"; pixel_y = -24},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/crew_quarters/fitness/pool) -"hoA" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/security/prison) +"hoA" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/security/prison) "hpD" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) "hpI" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/chair/comfy/black,/turf/open/floor/carpet/black,/area/crew_quarters/bar) "hpS" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/computer/security/telescreen/interrogation{dir = 8; pixel_x = 30},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/security/brig) @@ -2673,7 +2673,7 @@ "hxP" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/science/xenobiology) "hxU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 19},/turf/open/indestructible/concrete,/area/layenia/cloudlayer) "hyc" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"hyt" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light/small{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/turf/open/floor/plasteel/dark,/area/chapel/main) +"hyt" = (/obj/item/kirbyplants/random,/obj/machinery/light/small{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/turf/open/floor/plasteel/dark,/area/chapel/main) "hyx" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 4; name = "air supply pipe"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/processing) "hyB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer1,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering/reactor_control) "hyF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1,/turf/closed/wall/r_wall,/area/engine/engineering/reactor_control) @@ -2721,7 +2721,7 @@ "hFa" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "hFl" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 6; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "hFo" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer1{dir = 8},/obj/structure/table,/obj/machinery/button/door{id = "au_nuclear_vent"; name = "RBMK Compartment Flush"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/engineering/reactor_control) -"hFr" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"hFr" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "hFL" = (/obj/structure/lattice/catwalk,/obj/structure/window/reinforced{dir = 8},/obj/structure/railing{dir = 4},/turf/open/chasm/cloud,/area/layenia/cloudlayer) "hFN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/aft) "hGa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) @@ -2769,9 +2769,9 @@ "hKu" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/medkit_cabinet{pixel_y = 27},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/security/prison) "hKA" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "hKF" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/maintenance/starboard) -"hKL" = (/obj/structure/table,/obj/item/aiModule/supplied/freeform,/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload) +"hKL" = (/obj/structure/table,/obj/item/ai_module/supplied/freeform,/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload) "hKX" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/security/brig) -"hLf" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/security/brig) +"hLf" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/security/brig) "hLs" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) "hLx" = (/turf/closed/wall,/area/medical/medbay/central) "hLF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1; name = "air scrubber"},/turf/open/floor/plasteel,/area/maintenance/fore) @@ -2854,7 +2854,7 @@ "hWb" = (/obj/structure/table,/obj/item/reagent_containers/glass/bottle/morphine{pixel_x = 8; pixel_y = 13},/obj/item/reagent_containers/syringe{pixel_y = 4},/obj/item/reagent_containers/syringe{pixel_y = 4},/obj/item/reagent_containers/glass/bottle/morphine{pixel_x = 4; pixel_y = 10},/turf/open/floor/plasteel/dark,/area/medical/sleeper) "hWd" = (/turf/open/floor/plasteel/dark,/area/bridge) "hWf" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"hWn" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/camera{c_tag = "Brig East"},/turf/open/floor/plasteel,/area/security/brig) +"hWn" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/camera{c_tag = "Brig East"},/turf/open/floor/plasteel,/area/security/brig) "hWq" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) "hWv" = (/obj/structure/fence,/obj/effect/turf_decal/stripes/end,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "hWw" = (/obj/machinery/door/airlock/medical{dir = 8; name = "Medbay Break Room"; req_access_txt = "5"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay/central) @@ -2886,7 +2886,7 @@ "hZb" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/turf/open/floor/plasteel/white,/area/medical/sleeper) "hZo" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain,/turf/open/floor/plasteel/freezer,/area/medical/sleeper) "hZs" = (/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/robotics/lab) -"hZw" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) +"hZw" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) "hZA" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "hZD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) "hZL" = (/obj/machinery/door/airlock/external{dir = 1; name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/quartermaster/storage) @@ -2925,9 +2925,9 @@ "ifC" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) "ifN" = (/obj/machinery/atmospherics/pipe/layer_manifold,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plating,/area/maintenance/fore) "igb" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plating,/area/maintenance/fore) -"ige" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) +"ige" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "igi" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plating,/area/maintenance/fore) -"igl" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel/white,/area/medical/virology) +"igl" = (/obj/item/kirbyplants/random,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel/white,/area/medical/virology) "igs" = (/obj/machinery/atmospherics/pipe/layer_manifold,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/fore) "igw" = (/obj/structure/table/wood/fancy,/obj/item/candle{pixel_x = 1; pixel_y = 5},/obj/item/storage/fancy/candle_box,/turf/open/floor/plasteel/dark/side{dir = 8},/area/chapel/main) "igF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/crew_quarters/dorms) @@ -2976,7 +2976,7 @@ "inR" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port/fore) "iob" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) "iom" = (/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/engine/engineering) -"iot" = (/obj/structure/table,/obj/item/twohanded/rcl/pre_loaded,/obj/item/twohanded/rcl/pre_loaded,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel,/area/engine/break_room) +"iot" = (/obj/structure/table,/obj/item/rcl/pre_loaded,/obj/item/rcl/pre_loaded,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel,/area/engine/break_room) "ioG" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port) "ioM" = (/turf/open/floor/plasteel/dark/side{dir = 8},/area/bridge) "ioS" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{dir = 8; icon_plating = "floor"; icon_state = "floor_whole"},/area/engine/engineering) @@ -3004,7 +3004,7 @@ "irC" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/starboard) "irH" = (/turf/open/floor/plasteel/stairs/medium{dir = 1},/area/hallway/primary/port/fore) "irJ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/bloodbankgen,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"isp" = (/obj/structure/railing{dir = 4},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/side{dir = 1},/area/hallway/primary/port/fore) +"isp" = (/obj/structure/railing{dir = 4},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/side{dir = 1},/area/hallway/primary/port/fore) "isL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/railing{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) "isN" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/light{dir = 1; pixel_y = 19},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/quartermaster/office) "ita" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Atmospherics Access"; dir = 4},/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/engine/engineering) @@ -3085,7 +3085,7 @@ "iBl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/science/xenobiology) "iBn" = (/obj/structure/chair/sofa/corner{dir = 4},/turf/open/floor/wood,/area/maintenance/starboard/aft) "iBD" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/camera{c_tag = "Starboard Primary Hallway 3"; dir = 1},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/starboard) -"iBI" = (/obj/structure/window{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/medical/virology) +"iBI" = (/obj/structure/window{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/item/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/medical/virology) "iBM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4; name = "air supply pipe"},/turf/open/floor/plating,/area/maintenance/aft) "iBP" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) "iCd" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/research) @@ -3239,7 +3239,7 @@ "iUd" = (/obj/machinery/door/airlock/engineering/glass/critical{dir = 4; heat_proof = 1; name = "TEG Burn Chamber"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/obj/structure/fans/tiny,/turf/open/floor/engine/vacuum,/area/engine/engineering) "iUe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "iUf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"iUg" = (/obj/structure/table,/obj/item/aicard,/obj/item/aiModule/reset,/turf/open/floor/plasteel/dark,/area/storage/tech) +"iUg" = (/obj/structure/table,/obj/item/aicard,/obj/item/ai_module/reset,/turf/open/floor/plasteel/dark,/area/storage/tech) "iUp" = (/obj/machinery/door/airlock/maintenance{name = "Maintenance Access"; req_one_access_txt = "12;47"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "iUK" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/fore) "iVe" = (/obj/structure/table/wood/fancy,/obj/item/candle{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/dark,/area/chapel/main) @@ -3247,7 +3247,7 @@ "iVR" = (/turf/closed/wall/r_wall,/area/engine/engineering/reactor_control) "iWa" = (/obj/structure/table,/obj/item/reagent_containers/spray/plantbgone{pixel_y = 3},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/watertank,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hydroponics) "iWe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"iWi" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light/small{dir = 8; pixel_x = -7; pixel_y = 0},/obj/machinery/camera{c_tag = "Chapel Office"},/turf/open/floor/plasteel/grimy,/area/chapel/office) +"iWi" = (/obj/item/kirbyplants/random,/obj/machinery/light/small{dir = 8; pixel_x = -7; pixel_y = 0},/obj/machinery/camera{c_tag = "Chapel Office"},/turf/open/floor/plasteel/grimy,/area/chapel/office) "iWl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/power/apc{areastring = "/area/library"; dir = 4; name = "Library APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/port) "iWm" = (/obj/structure/trash_pile,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/port/aft) "iWy" = (/obj/machinery/light{pixel_y = -1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1; name = "air scrubber"},/turf/open/floor/wood,/area/crew_quarters/heads/hos) @@ -3278,7 +3278,7 @@ "jao" = (/obj/structure/lattice/catwalk,/obj/structure/table,/obj/item/ashtray,/obj/item/cigbutt,/obj/structure/railing{dir = 4},/turf/open/chasm/cloud,/area/layenia/cloudlayer) "jaw" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/sleeper) "jax" = (/obj/machinery/meter/atmos/atmos_waste_loop,/obj/machinery/camera{c_tag = "Atmospherics North East"},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/atmos) -"jaB" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/lawoffice) +"jaB" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/lawoffice) "jaD" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/security/main) "jaH" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat/hallway"; name = "Antechamber Turret Control"; pixel_y = 24; req_access = null; req_access_txt = "65"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "jaR" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{pixel_y = -1},/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/fore) @@ -3368,7 +3368,7 @@ "jmv" = (/turf/open/floor/plasteel/yellowsiding,/area/maintenance/fore) "jmz" = (/obj/machinery/atmospherics/components/binary/circulator{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/circuit/green,/area/engine/engineering) "jmK" = (/obj/machinery/door/airlock/external{name = "Disposal External Airlock"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plating,/area/maintenance/disposal) -"jmP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/blue,/obj/machinery/camera{c_tag = "MiniSat Foyer"; dir = 1; network = list("minisat"); start_active = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"jmP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/blue,/obj/machinery/camera{c_tag = "MiniSat Foyer"; dir = 1; network = list("minisat"); start_active = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "jnp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{dir = 8; id = "xenobio6"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) "jnD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) "jnI" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) @@ -3492,7 +3492,7 @@ "jHR" = (/obj/structure/girder,/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/central/secondary) "jIa" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering/reactor_core) "jIN" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library) -"jIQ" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/railing,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) +"jIQ" = (/obj/item/kirbyplants/random,/obj/structure/railing,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "jJa" = (/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel,/area/layenia/cloudlayer) "jJq" = (/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) "jJs" = (/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/carpet,/area/chapel/main) @@ -3517,7 +3517,7 @@ "jMB" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/railing,/turf/open/floor/plating/snowed,/area/layenia) "jMG" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall,/area/quartermaster/sorting) "jMR" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) -"jMV" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/turf/open/floor/plasteel/white,/area/medical/virology) +"jMV" = (/obj/item/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/turf/open/floor/plasteel/white,/area/medical/virology) "jNm" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Distro"},/turf/open/floor/plasteel,/area/engine/atmos) "jNs" = (/obj/machinery/conveyor{dir = 10; id = "garbage"},/obj/machinery/button/massdriver{id = "Safety"; name = "Safety Door Control"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/disposal) "jNC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/science/lab) @@ -3555,7 +3555,7 @@ "jSs" = (/obj/machinery/disposal/bin,/obj/structure/sign/warning/deathsposal{pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/effect/turf_decal/stripes/box,/obj/effect/turf_decal/stripes/red/box,/turf/open/floor/plasteel/white/corner{dir = 1},/area/medical/virology) "jSu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{name = "air scrubber"},/turf/open/floor/plasteel,/area/security/checkpoint/escape) "jSA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"jSG" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/security/processing) +"jSG" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/security/processing) "jSP" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 1; pixel_y = 19},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/hallway/primary/aft) "jSU" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "jTf" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/medical/sleeper) @@ -3570,7 +3570,7 @@ "jTP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) "jTV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 9; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/processing) "jTY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel/white,/area/medical/virology) -"jUh" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/science/research) +"jUh" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/science/research) "jUE" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/aft) "jUP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/genetics) "jUT" = (/obj/structure/table,/obj/item/stack/ore/iron,/turf/open/floor/plating,/area/maintenance/starboard) @@ -3625,7 +3625,7 @@ "kbK" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/carpet,/area/lawoffice) "kbO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) "kbP" = (/obj/structure/chair/sofa/left{dir = 1},/turf/open/floor/wood,/area/maintenance/starboard/aft) -"kcb" = (/mob/living/simple_animal/parrot/Poly,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/turf/open/floor/wood,/area/crew_quarters/heads/chief) +"kcb" = (/mob/living/simple_animal/parrot/Polly,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/turf/open/floor/wood,/area/crew_quarters/heads/chief) "kcd" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/hydroponics) "kco" = (/obj/machinery/door/airlock/glass_large,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/fans/tiny,/turf/open/floor/plasteel/dark,/area/artatrium) "kcM" = (/obj/structure/chair/office/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/wood,/area/crew_quarters/heads/captain) @@ -3672,12 +3672,12 @@ "kjb" = (/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/security/brig) "kjk" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engineering) "kjy" = (/obj/machinery/door/airlock/external{req_access_txt = "55"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/science/xenobiology) -"kjF" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"kjF" = (/obj/item/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "kjM" = (/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall,/area/medical/genetics) "kjY" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/engine/engineering) "kke" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-8"},/obj/structure/railing,/turf/open/floor/plating,/area/maintenance/aft) "kkx" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 4; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/aft) -"kkA" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/maintenance/port/aft) +"kkA" = (/obj/item/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/maintenance/port/aft) "kkB" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/security/main) "kkD" = (/obj/structure/chair/stool,/obj/structure/railing,/turf/open/floor/plating,/area/maintenance/port) "kkJ" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/white/side{dir = 8},/area/bridge) @@ -3691,7 +3691,7 @@ "kma" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/hydroponics) "kml" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 9; name = "air supply pipe"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/port) "kmq" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"kms" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"kms" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "kmv" = (/obj/structure/chair/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/chapel/main) "kmw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/red/line{dir = 8},/obj/effect/decal/cleanable/ash,/turf/open/floor/plating{icon_state = "panelscorched"},/area/layenia) "kmG" = (/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall/r_wall,/area/security/checkpoint/supply) @@ -3715,7 +3715,7 @@ "kpA" = (/obj/structure/chair/sofa/right{dir = 1},/obj/machinery/light/small{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/wood,/area/maintenance/starboard/aft) "kpC" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "kpO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/turf/open/floor/wood,/area/crew_quarters/heads/cmo) -"kpR" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness) +"kpR" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness) "kpT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/engine/atmos) "kqy" = (/turf/closed/wall/r_wall,/area/crew_quarters/locker) "kqz" = (/obj/structure/table/wood/fancy,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/wood,/area/maintenance/fore) @@ -3756,7 +3756,7 @@ "kur" = (/obj/machinery/door/airlock/security/glass{dir = 4; name = "Security Office"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/science) "kuA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/medical/virology) "kuB" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2,/turf/open/floor/plasteel,/area/engine/atmos) -"kuD" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/tcommsat/computer) +"kuD" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/tcommsat/computer) "kuS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/layenia/cloudlayer) "kvp" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/crate/coffin,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/chapel/main) "kvy" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/crate/coffin,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/chapel/main) @@ -3834,7 +3834,7 @@ "kGl" = (/obj/structure/displaycase/trophy,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/wood,/area/library) "kGn" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Mix"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) "kGr" = (/turf/open/floor/plasteel,/area/science/misc_lab) -"kGt" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/artatrium) +"kGt" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/artatrium) "kGx" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 6; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) "kGy" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/port) "kGC" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/artatrium) @@ -3878,7 +3878,7 @@ "kNv" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint/tertiary) "kNH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/port) "kNJ" = (/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall/r_wall,/area/science/circuit) -"kNK" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/bridge) +"kNK" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/bridge) "kNL" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/chair,/turf/open/floor/plasteel/dark,/area/chapel/main) "kNW" = (/obj/structure/window,/obj/structure/window{dir = 8},/obj/structure/statue/sandstone/venus,/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "kNZ" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/fore/secondary) @@ -3888,7 +3888,7 @@ "kOA" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/dark,/area/science/xenobiology) "kOB" = (/obj/structure/disposalpipe/sorting/wrap{dir = 4},/turf/closed/wall,/area/quartermaster/sorting) "kOF" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"kOJ" = (/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/grimy,/area/chapel/office) +"kOJ" = (/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/grimy,/area/chapel/office) "kPl" = (/obj/structure/tank_dispenser{pixel_x = -1},/turf/open/floor/plasteel,/area/engine/break_room) "kPq" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) "kPt" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/starboard) @@ -3957,12 +3957,12 @@ "lat" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/obj/machinery/light{pixel_y = -1},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "laB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 1; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "laC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/stairs{dir = 8},/area/medical/medbay/central) -"laD" = (/obj/effect/decal/cleanable/cobweb,/obj/item/twohanded/required/kirbyplants/random,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/dark,/area/maintenance/fore) +"laD" = (/obj/effect/decal/cleanable/cobweb,/obj/item/kirbyplants/random,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/dark,/area/maintenance/fore) "laO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/layenia) "laQ" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/white/side{dir = 8},/area/bridge) "lba" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "lbc" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningdock) -"lbz" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/machinery/light{pixel_y = -1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/crew_quarters/fitness/pool) +"lbz" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/item/kirbyplants{icon_state = "plant-10"},/obj/machinery/light{pixel_y = -1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/crew_quarters/fitness/pool) "lbE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) "lcg" = (/obj/structure/flora/junglebush/b,/turf/open/floor/grass,/area/layenia) "lcs" = (/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/stripes/line{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{name = "air scrubber"},/turf/open/floor/plasteel,/area/storage/primary) @@ -4056,7 +4056,7 @@ "lpZ" = (/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/security/courtroom) "lqj" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 1; name = "air vent"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/ai_monitored/storage/eva) "lqn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 9; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"lqq" = (/obj/structure/window{dir = 1},/obj/structure/table/reinforced,/obj/item/twohanded/rcl/pre_loaded,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"lqq" = (/obj/structure/window{dir = 1},/obj/structure/table/reinforced,/obj/item/rcl/pre_loaded,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) "lqK" = (/obj/structure/table/reinforced,/obj/structure/window{dir = 1},/obj/structure/window{dir = 4},/obj/item/clipboard,/obj/item/paper/monitorkey,/obj/item/book/lorebooks/welcome_to_gato,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) "lqP" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/chief) "lrc" = (/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/machinery/porta_turret/ai{dir = 8},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) @@ -4255,7 +4255,7 @@ "lWX" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plating,/area/engine/atmos) "lXa" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/item/toy/plush/plushvar{desc = "I fixed the wiring for you."; name = "Engivar"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) "lXc" = (/obj/machinery/space_heater,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/atmos) -"lXg" = (/obj/machinery/camera{c_tag = "Secure Tech Storage"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-05"},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/turf/open/floor/plasteel,/area/storage/tech) +"lXg" = (/obj/machinery/camera{c_tag = "Secure Tech Storage"},/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/turf/open/floor/plasteel,/area/storage/tech) "lXp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 4; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) "lXw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/power/apc{areastring = "/area/medical/medbay/central"; dir = 4; name = "Medbay APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/aft) "lXK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/tech) @@ -4484,7 +4484,7 @@ "mDL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/turf/open/floor/carpet/red,/area/security/checkpoint/auxiliary{name = "Security Checkpoint"}) "mDS" = (/obj/machinery/light{dir = 1; pixel_y = 19},/turf/open/floor/plating/asteroid/layenia,/area/layenia) "mEn" = (/obj/structure/railing{dir = 4},/turf/open/floor/engine/vacuum,/area/layenia) -"mEt" = (/obj/structure/table,/obj/item/aiModule/supplied/oxygen,/obj/item/aiModule/zeroth/oneHuman,/obj/item/aiModule/reset/purge,/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/item/aiModule/supplied/protectStation,/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/door/window{base_state = "right"; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light/small{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload) +"mEt" = (/obj/structure/table,/obj/item/ai_module/supplied/oxygen,/obj/item/ai_module/zeroth/oneHuman,/obj/item/ai_module/reset/purge,/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/item/ai_module/supplied/protectStation,/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/door/window{base_state = "right"; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light/small{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload) "mEz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/stairs/medium{dir = 8},/area/maintenance/starboard/aft) "mEG" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/storage/primary) "mEJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer1{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/binary/pump{name = "Atmospherics to Moderator"},/turf/open/floor/plasteel/dark,/area/engine/engineering/reactor_control) @@ -4498,7 +4498,7 @@ "mGd" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{icon_plating = "floor"; icon_state = "floor_whole"},/area/science/robotics/lab) "mGn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/fore"; dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 1; name = "scrubbers pipe"},/turf/open/floor/plating,/area/maintenance/fore) "mGo" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room) -"mGu" = (/obj/machinery/computer/arcade/minesweeper{dir = 8},/turf/open/floor/carpet/black,/area/arcade) +"mGu" = (/obj/machinery/computer/arcade/orion_trail{dir = 8},/turf/open/floor/carpet/black,/area/arcade) "mGx" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/engine/engineering) "mGB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "mGJ" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) @@ -4516,7 +4516,7 @@ "mHT" = (/obj/structure/table,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/science/research) "mHX" = (/obj/machinery/flasher/portable,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "mIr" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) -"mIB" = (/obj/machinery/button/door{id = "Gymshutter"; name = "Shutters"; pixel_y = 26},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"mIB" = (/obj/machinery/button/door{id = "Gymshutter"; name = "Shutters"; pixel_y = 26},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) "mIS" = (/obj/machinery/button/door{id = "Dorm2Shutters"; name = "Privacy Shutters Control"; pixel_y = 26; req_access_txt = "0"},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/crew_quarters/dorms) "mIW" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 6; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white/side{dir = 4},/area/science/misc_lab) "mJp" = (/obj/structure/table,/obj/item/kitchen/knife,/obj/item/storage/box/donkpockets/donkpocketberry,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/maintenance/port/aft) @@ -4621,7 +4621,7 @@ "mXk" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 1; name = "air supply pipe"},/turf/open/floor/plating/airless,/area/layenia/cloudlayer) "mXn" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "QMLoad"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/quartermaster/storage) "mXp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"mXt" = (/obj/structure/table,/obj/item/clothing/under/maid,/obj/item/clothing/head/kitty,/turf/open/floor/plating,/area/maintenance/port/fore) +"mXt" = (/obj/structure/table,/obj/item/clothing/under/costume/maid,/obj/item/clothing/head/kitty,/turf/open/floor/plating,/area/maintenance/port/fore) "mXJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/hallway/primary/starboard) "mXL" = (/obj/structure/plasticflaps/opaque,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 1; freq = 1400; location = "Janitor"},/obj/effect/turf_decal/bot,/turf/open/floor/plating,/area/janitor) "mXM" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) @@ -4734,7 +4734,7 @@ "nov" = (/obj/machinery/door/window/eastleft{dir = 2; icon_state = "right"; name = "Incoming Mail"; req_access_txt = "50"},/turf/open/floor/plating,/area/quartermaster/sorting) "nox" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/engine/break_room) "noH" = (/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/bridge) -"noL" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) +"noL" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "noM" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "noP" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/table,/obj/structure/bedsheetbin,/obj/machinery/status_display{pixel_y = 32},/obj/item/razor,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/locker) "noQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) @@ -4806,14 +4806,14 @@ "nyG" = (/obj/machinery/atm{pixel_y = 30},/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "nyM" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Atmospherics West"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/engine/atmos) "nyP" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"nyU" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 6; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/turf/open/floor/plasteel/white/side{dir = 5},/area/engine/break_room) +"nyU" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 6; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/turf/open/floor/plasteel/white/side{dir = 5},/area/engine/break_room) "nyZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/starboard/aft) "nzb" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/dark/side{dir = 1},/area/ai_monitored/turret_protected/ai_upload) "nzn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) "nzs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/engine/break_room) "nzx" = (/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plasteel/dark,/area/bridge) "nzB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/table,/turf/open/floor/plasteel,/area/engine/break_room) -"nzE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/engine/break_room) +"nzE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/item/kirbyplants/random,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/engine/break_room) "nzF" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) "nzG" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/plasteel,/area/engine/break_room) "nzH" = (/obj/machinery/computer/rdconsole/production{dir = 8},/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/engine/break_room) @@ -4856,12 +4856,12 @@ "nEH" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/turf/open/floor/plasteel/dark/side{dir = 4},/area/bridge) "nER" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/light{pixel_y = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/security/main) "nEU" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/engine/atmos) -"nEY" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) +"nEY" = (/obj/item/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "nFb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) "nFf" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"; shuttledocked = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) "nFm" = (/obj/structure/flora/crystal/medium/growth{pixel_y = 3},/turf/open/indestructible/layenia/crystal/garden,/area/crew_quarters/dorms) "nFs" = (/obj/structure/grille,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard) -"nFH" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"nFH" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/crew_quarters/fitness) "nFT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm1Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) "nFU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/sleeper) "nFW" = (/obj/structure/lattice/catwalk,/obj/structure/trash_pile,/turf/open/chasm/cloud,/area/layenia/cloudlayer) @@ -4909,7 +4909,7 @@ "nLu" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/table/glass,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/crew_quarters/fitness/pool) "nLG" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) "nLK" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay/central) -"nLL" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{name = "air scrubber"},/turf/open/floor/plasteel/white,/area/science/misc_lab) +"nLL" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/item/kirbyplants/random,/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{name = "air scrubber"},/turf/open/floor/plasteel/white,/area/science/misc_lab) "nLT" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "nLU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/crew_quarters/locker) "nMG" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/engineering_construction,/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/engine/break_room) @@ -5000,10 +5000,10 @@ "nYV" = (/obj/structure/table,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/item/book/lorebooks/layenia_crystals,/turf/open/floor/plasteel/dark,/area/science/misc_lab) "nYW" = (/turf/open/floor/plasteel{dir = 1; icon_plating = "floor"; icon_state = "floor_whole"},/area/crew_quarters/fitness) "nZa" = (/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library) -"nZj" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/hop) +"nZj" = (/obj/item/kirbyplants/random,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/hop) "nZv" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/engine/break_room) "nZF" = (/obj/machinery/power/solar_control{id = "auxsolareast"; name = "Port Bow Solar Control"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port/fore) -"nZP" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Medbay East"; dir = 9; network = list("ss13","medbay")},/obj/item/twohanded/required/kirbyplants/random,/obj/structure/railing{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"nZP" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Medbay East"; dir = 9; network = list("ss13","medbay")},/obj/item/kirbyplants/random,/obj/structure/railing{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "nZU" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/wood,/area/crew_quarters/fitness) "nZV" = (/obj/machinery/door/airlock/maintenance{name = "Maintenance Access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/maintenance/fore/secondary) "oac" = (/obj/machinery/computer/card/minor/cmo{dir = 8},/obj/machinery/camera{c_tag = "Chief Medical Office"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/cmo) @@ -5045,7 +5045,7 @@ "oev" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "oex" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/vehicle/ridden/janicart,/obj/item/key/janitor,/turf/open/floor/plasteel,/area/janitor) "oey" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 8; name = "air scrubber"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"oeA" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/railing{dir = 1},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) +"oeA" = (/obj/item/kirbyplants/random,/obj/structure/railing{dir = 1},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "oeC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 8},/turf/open/floor/engine/air,/area/engine/atmos) "oeE" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) "oeK" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office) @@ -5074,7 +5074,7 @@ "ohw" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access_txt = "65"},/obj/effect/turf_decal/delivery,/obj/structure/fans/tiny,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "ohx" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 4; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/science/misc_lab) "ohP" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/security/brig) -"ohZ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark/corner,/area/security/main) +"ohZ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark/corner,/area/security/main) "oia" = (/obj/structure/sign/plaques/kiddie/badger{pixel_y = 32},/turf/open/floor/plasteel/grimy,/area/chapel/office) "oic" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/science/robotics/lab) "oie" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker) @@ -5122,7 +5122,7 @@ "opk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "opn" = (/obj/structure/chair/sofa{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/carpet/black,/area/crew_quarters/bar) "opB" = (/obj/structure/table,/obj/machinery/smartfridge/disks{pixel_y = 2},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1; name = "air scrubber"},/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{areastring = "/area/hydroponics"; name = "Hydroponics APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/hydroponics) -"opC" = (/obj/structure/table/wood,/obj/item/storage/pill_bottle/dice,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"opC" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/carpet,/area/crew_quarters/dorms) "opN" = (/obj/structure/lattice/catwalk,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/structure/railing{dir = 1},/obj/machinery/camera{c_tag = "MiniSat Cyborg Storage Entrance"; dir = 9; network = list("minisat"); start_active = 1},/turf/open/floor/plasteel/elevatorshaft,/area/ai_monitored/storage/satellite) "opP" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/maintenance/port/aft) "opW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm/unlocked{pixel_y = 24},/turf/open/floor/plasteel,/area/science/mixing) @@ -5142,7 +5142,7 @@ "orw" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "orE" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/turf/closed/wall,/area/medical/virology) "orG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/dark,/area/security/courtroom) -"osa" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/sign/warning/nosmoking{pixel_y = -32},/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) +"osa" = (/obj/item/kirbyplants/random,/obj/structure/sign/warning/nosmoking{pixel_y = -32},/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "osk" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = 28; pixel_y = 24},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/aft) "osm" = (/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "oss" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/turf/open/floor/wood,/area/crew_quarters/dorms) @@ -5186,7 +5186,7 @@ "ozL" = (/obj/structure/table,/obj/item/toy/figure/virologist,/obj/item/radio/intercom{pixel_y = 12},/turf/open/floor/plasteel/white,/area/medical/virology) "ozX" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/dark,/area/bridge) "oAs" = (/obj/effect/landmark/nuclear_waste_spawner,/turf/open/floor/plating/asteroid/layenia,/area/layenia) -"oAN" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/machinery/camera{c_tag = "Ferry North"; dir = 6},/turf/open/floor/plasteel/white/corner{dir = 4},/area/bridge) +"oAN" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/machinery/camera{c_tag = "Ferry North"; dir = 6},/turf/open/floor/plasteel/white/corner{dir = 4},/area/bridge) "oBi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "oBt" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/bridge) "oBy" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Starboard Solar APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) @@ -5207,7 +5207,7 @@ "oDa" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine,/area/engine/engineering/reactor_core) "oDh" = (/obj/machinery/door/airlock/medical{dir = 8; name = "Psychology Office"; req_access_txt = "71"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/medical/psych) "oDl" = (/obj/structure/table,/obj/machinery/button/door{id = "testlab"; name = "Test Chamber Blast Doors"; pixel_x = 4; pixel_y = 2; req_access_txt = "55"},/obj/machinery/button/ignition{id = "testigniter"; pixel_x = -6; pixel_y = 2},/turf/open/floor/plasteel/dark,/area/science/misc_lab) -"oDo" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/structure/cable{icon_state = "1-4"},/obj/structure/railing,/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) +"oDo" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/structure/cable{icon_state = "1-4"},/obj/structure/railing,/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "oDp" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/caution/stand_clear{dir = 8},/turf/open/floor/plasteel/dark/airless,/area/layenia) "oDq" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/sleeper) "oDW" = (/obj/structure/flora/crystal/small/growth,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/indestructible/layenia/crystal,/area/layenia) @@ -5223,7 +5223,7 @@ "oFc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/turf/open/floor/plasteel,/area/hallway/primary/port) "oFe" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer1{dir = 1; name = "visible"},/obj/machinery/atmospherics/pipe/simple/green/visible/layer3{dir = 1; name = "visible"},/obj/effect/turf_decal/stripes/end{dir = 1},/obj/effect/turf_decal/stripes/red/end{dir = 1},/obj/structure/railing{dir = 1},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "oFj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/medical/virology) -"oFn" = (/obj/structure/closet/athletic_mixed,/obj/item/clothing/under/shorts/redwshort,/obj/item/clothing/under/shorts/redwshort,/obj/item/clothing/under/shorts/yellowwshort,/obj/item/clothing/under/shorts/yellowwshort,/obj/item/clothing/under/shorts/pinkwshort,/obj/item/clothing/under/shorts/pinkwshort,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) +"oFn" = (/obj/structure/closet/athletic_mixed,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/yellow,/obj/item/clothing/under/shorts/yellow,/obj/item/clothing/under/shorts/pink,/obj/item/clothing/under/shorts/pink,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) "oFv" = (/obj/machinery/camera{c_tag = "Port Hallway"; dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "oFC" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{name = "air scrubber"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) "oFN" = (/obj/item/coin/gold,/obj/item/coin/iron,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/port/aft) @@ -5288,7 +5288,7 @@ "oOo" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/turf/open/floor/plasteel/dark,/area/security/range) "oOx" = (/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/atmos) "oOI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"oOK" = (/obj/structure/table,/obj/item/aiModule/core/full/asimov,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/item/aiModule/core/freeformcore,/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/item/aiModule/core/full/custom,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/door/window{name = "High-Risk Modules"; req_access_txt = "20"},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light/small{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload) +"oOK" = (/obj/structure/table,/obj/item/ai_module/core/full/asimov,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/item/ai_module/core/freeformcore,/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/item/ai_module/core/full/custom,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/door/window{name = "High-Risk Modules"; req_access_txt = "20"},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light/small{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload) "oPc" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Port"},/turf/open/floor/plasteel,/area/engine/atmos) "oPg" = (/obj/machinery/computer/upload/borg,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) "oPo" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 14; pixel_y = 5},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 4; pixel_y = 5},/turf/open/floor/wood,/area/maintenance/starboard/aft) @@ -5306,7 +5306,7 @@ "oQE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/starboard) "oQP" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/white/corner{dir = 4},/area/bridge) "oQV" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/crew_quarters/fitness) -"oQX" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) +"oQX" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "oQZ" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/crew_quarters/fitness) "oRc" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fore) "oRf" = (/obj/machinery/atmospherics/components/trinary/mixer/airmix{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) @@ -5314,13 +5314,13 @@ "oRC" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 19},/obj/structure/railing,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "oRD" = (/obj/machinery/atmospherics/components/binary/pump{name = "Mix to Port"},/turf/open/floor/plasteel,/area/engine/atmos) "oRG" = (/obj/item/cigbutt,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay/central) -"oRN" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/heads/hor) +"oRN" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/heads/hor) "oRR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine/vacuum,/area/engine/engineering) "oRV" = (/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/dark,/area/gateway) "oRX" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/window/reinforced{dir = 8},/obj/structure/filingcabinet,/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 1; name = "Quartermaster APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) "oRZ" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/hallway/primary/aft) "oSc" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/engine/engineering) -"oSg" = (/obj/structure/table/wood,/obj/item/candle{pixel_x = 8; pixel_y = 6},/obj/item/storage/pill_bottle/dice{pixel_x = -3},/turf/open/floor/carpet,/area/crew_quarters/fitness/pool) +"oSg" = (/obj/structure/table/wood,/obj/item/candle{pixel_x = 8; pixel_y = 6},/obj/item/storage/dice{pixel_x = -3},/turf/open/floor/carpet,/area/crew_quarters/fitness/pool) "oSh" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/structure/table,/obj/item/clipboard{pixel_y = 10},/obj/item/folder/yellow{pixel_x = -4; pixel_y = 6},/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) "oSi" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "oSl" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{dir = 8; id = "xenobio8"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/engine,/area/science/xenobiology) @@ -5374,7 +5374,7 @@ "oYS" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/satellite) "oZc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 6; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fore/secondary) "oZp" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plating,/area/engine/atmos) -"oZF" = (/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/artatrium) +"oZF" = (/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/artatrium) "oZP" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) "oZQ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "oZZ" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/sleeper) @@ -5386,7 +5386,7 @@ "paZ" = (/obj/machinery/door/poddoor{dir = 4; id = "Secure Storage"; name = "secure storage"},/turf/open/floor/plating,/area/engine/break_room) "pbj" = (/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall,/area/quartermaster/qm) "pbE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) -"pbW" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/bridge) +"pbW" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/bridge) "pca" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) "pce" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{dir = 8; id = "primaryshut1"; name = "primary blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 8; icon_plating = "floor"; icon_state = "floor_whole"},/area/hallway/primary/port) "pcj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 1; pixel_y = 19},/turf/open/indestructible/concrete,/area/layenia/cloudlayer) @@ -5402,7 +5402,7 @@ "pds" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/bridge) "pdH" = (/obj/machinery/door/airlock/external{dir = 4; name = "Escape Airlock"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/bridge) "pdN" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port/fore) -"pdQ" = (/obj/machinery/button/door{id = "lawyer_blast"; name = "Privacy Shutters"; pixel_y = -25},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/carpet,/area/lawoffice) +"pdQ" = (/obj/machinery/button/door{id = "lawyer_blast"; name = "Privacy Shutters"; pixel_y = -25},/obj/item/kirbyplants/random,/turf/open/floor/carpet,/area/lawoffice) "pdR" = (/obj/machinery/door/airlock/external{dir = 4; name = "Escape Airlock"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/effect/turf_decal/delivery,/obj/structure/fans/tiny,/turf/open/floor/plasteel/dark,/area/bridge) "pdZ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/fore) "pef" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{dir = 8; id = "xenobio7"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) @@ -5411,13 +5411,13 @@ "pep" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hydroponics/garden) "peF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) "peI" = (/obj/effect/baseturf_helper/asteroid/layenia,/turf/closed/wall/r_wall,/area/crew_quarters/heads/chief) -"peM" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/camera{c_tag = "Atmospherics North West"},/obj/machinery/firealarm{pixel_y = 25},/turf/open/floor/plasteel,/area/engine/atmos) +"peM" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/kirbyplants/random,/obj/machinery/camera{c_tag = "Atmospherics North West"},/obj/machinery/firealarm{pixel_y = 25},/turf/open/floor/plasteel,/area/engine/atmos) "peQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel{dir = 8; icon_plating = "floor"; icon_state = "floor_whole"},/area/bridge) "peX" = (/obj/docking_port/stationary{dir = 4; dwidth = 2; height = 13; id = "ferry_home"; name = "port bay 2"; width = 5},/turf/open/indestructible/concrete,/area/layenia) "pfa" = (/obj/machinery/light{pixel_y = -1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/crew_quarters/fitness) "pft" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/chasm/cloud,/area/layenia/cloudlayer) "pfw" = (/turf/open/floor/engine,/area/science/xenobiology) -"pfz" = (/obj/structure/table,/obj/item/aiModule/reset,/obj/item/aiModule/supplied/quarantine,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload) +"pfz" = (/obj/structure/table,/obj/item/ai_module/reset,/obj/item/ai_module/supplied/quarantine,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload) "pfE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) "pfG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/science/circuit) "pfI" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/structure/table,/obj/item/paicard,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) @@ -5433,7 +5433,7 @@ "pgW" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/central) "pgX" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/chair/comfy/black,/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/science/research) "phb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 1},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) -"phh" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/machinery/light{pixel_y = -1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/crew_quarters/fitness/pool) +"phh" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/item/kirbyplants{icon_state = "plant-10"},/obj/machinery/light{pixel_y = -1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/crew_quarters/fitness/pool) "phk" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) "phx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/tcommsat/computer) "phC" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/aft) @@ -5539,7 +5539,7 @@ "pvL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window{dir = 4},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/aft) "pvW" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/hallway/primary/fore) "pvY" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"pwd" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) +"pwd" = (/obj/item/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "pwm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/solars/port/fore) "pwF" = (/turf/closed/wall,/area/quartermaster/warehouse) "pwH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/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/structure/cable{icon_state = "4-8"},/obj/structure/fans/tiny,/turf/open/floor/plasteel/dark,/area/tcommsat/computer) @@ -5602,7 +5602,7 @@ "pDn" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/camera{c_tag = "Cryogenics"; dir = 5},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness) "pDo" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/power/apc{areastring = "/area/engine/engine_smes"; name = "SMES room APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) "pDt" = (/obj/machinery/vending/coffee,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/port/fore) -"pDu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) +"pDu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/kirbyplants/random,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) "pDv" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "pDF" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{dir = 1; name = "visible"},/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer3{dir = 1; name = "visible"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 4},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "pDI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Maintenance Access"; req_access_txt = "12"},/obj/effect/baseturf_helper/asteroid/layenia,/turf/open/floor/plasteel/dark,/area/maintenance/starboard) @@ -5723,7 +5723,7 @@ "pVy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "pVF" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Aft Primary Hallway 1"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/aft) "pVJ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"pVK" = (/obj/machinery/newscaster{pixel_x = -30},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/camera{c_tag = "Virology Break Room"; network = list("ss13","medbay")},/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/virology) +"pVK" = (/obj/machinery/newscaster{pixel_x = -30},/obj/item/kirbyplants/random,/obj/machinery/camera{c_tag = "Virology Break Room"; network = list("ss13","medbay")},/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/virology) "pVM" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{dir = 8; id = "primaryshut1"; name = "primary blast door"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel{dir = 8; icon_plating = "floor"; icon_state = "floor_whole"},/area/hallway/primary/port/fore) "pVP" = (/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/chemistry) "pVR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) @@ -5852,7 +5852,7 @@ "qnx" = (/obj/effect/turf_decal/stripes/box,/obj/machinery/light{pixel_y = -1},/obj/structure/railing{dir = 1},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "qny" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/fore) "qnH" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel{icon_plating = "floor"; icon_state = "floor_whole"},/area/engine/engineering) -"qnQ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/security/prison) +"qnQ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{name = "air vent"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/security/prison) "qnS" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/port/fore) "qnT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) "qnX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/turf/open/floor/plasteel,/area/security/brig) @@ -5924,7 +5924,7 @@ "qvH" = (/obj/machinery/requests_console{department = "Locker Room"; pixel_x = -32},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/closet/wardrobe/grey,/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/crew_quarters/locker) "qvK" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) "qvZ" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/security/main) -"qwb" = (/obj/machinery/light{dir = 1; pixel_y = 19},/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/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/artatrium) +"qwb" = (/obj/machinery/light{dir = 1; pixel_y = 19},/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/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/artatrium) "qwg" = (/obj/structure/table,/obj/item/book/lorebooks/welcome_to_gato,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/item/book/lorebooks/layenia_crystals{pixel_x = 4; pixel_y = 3},/turf/open/floor/plasteel,/area/crew_quarters/locker) "qwy" = (/obj/machinery/door/airlock/mining/glass{dir = 4; name = "Cargo Office"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting) "qwz" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) @@ -5969,7 +5969,7 @@ "qBR" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/maintenance/fore) "qBS" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/indestructible/concrete,/area/layenia/cloudlayer) "qBT" = (/obj/machinery/door/airlock/public/glass{dir = 4; name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/turf/open/floor/plasteel/dark,/area/hydroponics) -"qCm" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/security/processing) +"qCm" = (/obj/item/kirbyplants/random,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/security/processing) "qCq" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hydroponics) "qCx" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/engine/engine_smes) "qCE" = (/obj/item/radio/off,/obj/item/screwdriver{pixel_y = 10},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/medical) @@ -5999,7 +5999,7 @@ "qEP" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/break_room) "qFg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{name = "air scrubber"},/turf/open/floor/plasteel/dark,/area/security/courtroom) "qFt" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/paper_bin{pixel_y = 6},/obj/item/pen/blue,/obj/item/folder/blue{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel/dark/corner,/area/tcommsat/computer) -"qFv" = (/obj/effect/turf_decal/tile/blue,/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/tcommsat/computer) +"qFv" = (/obj/effect/turf_decal/tile/blue,/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/tcommsat/computer) "qFG" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = 28},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/dark/side,/area/bridge) "qFH" = (/obj/structure/railing{dir = 8},/turf/open/floor/plating/asteroid/layenia,/area/layenia) "qFJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Courtroom"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/security/courtroom) @@ -6075,10 +6075,10 @@ "qNN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4; name = "air scrubber"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "qOd" = (/turf/open/floor/plasteel,/area/janitor) "qOy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/medical/genetics) -"qOT" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/window{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) +"qOT" = (/obj/item/kirbyplants/random,/obj/structure/window{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) "qOW" = (/obj/machinery/vending/clothing,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) "qOZ" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/medical/sleeper) -"qPt" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/camera{c_tag = "Pool Entrance Hallway"; dir = 1},/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/hallway/primary/port/fore) +"qPt" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/item/kirbyplants/random,/obj/machinery/camera{c_tag = "Pool Entrance Hallway"; dir = 1},/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/hallway/primary/port/fore) "qPz" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/fore) "qPD" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint/tertiary) "qPV" = (/turf/open/floor/plating,/area/maintenance/fore/secondary) @@ -6151,7 +6151,7 @@ "qYx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "qYM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/chapel/main) "qYV" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 28},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/engine/break_room) -"qZe" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-05"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/crew_quarters/fitness) +"qZe" = (/obj/item/kirbyplants{icon_state = "plant-05"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/crew_quarters/fitness) "qZA" = (/obj/machinery/power/smes/engineering,/obj/structure/cable/white,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/engine,/area/engine/engineering/reactor_core) "qZO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/processing) "qZR" = (/obj/machinery/door/window/southleft{name = "Maximum Security Test Chamber"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "Xenolab"; name = "test chamber blast door"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/xenobiology) @@ -6222,7 +6222,7 @@ "rif" = (/obj/structure/bookcase/random/adult,/turf/open/floor/wood,/area/library) "rij" = (/obj/machinery/holopad,/obj/effect/turf_decal/box,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "riq" = (/obj/machinery/modular_computer/console/preset/command,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/bridge) -"riw" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = 3; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/bridge) +"riw" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = 3; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/bridge) "rix" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating,/area/quartermaster/sorting) "riG" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 2},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "riJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology) @@ -6250,7 +6250,7 @@ "rkJ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/crew_quarters/locker) "rkP" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1,/obj/structure/sign/warning/radiation{pixel_y = 32},/obj/structure/railing{dir = 4},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "rkR" = (/obj/structure/toilet{dir = 8},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/locker) -"rkY" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/camera{c_tag = "HOP's West Entrance"; dir = 6},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/starboard) +"rkY" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/kirbyplants/random,/obj/machinery/camera{c_tag = "HOP's West Entrance"; dir = 6},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/starboard) "rlo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 9; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/medical/morgue) "rlq" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 4; name = "air vent"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/tcommsat/computer) "rlK" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1; name = "air scrubber"},/turf/open/floor/plasteel/white,/area/science/circuit) @@ -6270,7 +6270,7 @@ "rmU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 8; name = "scrubbers pipe"},/obj/effect/turf_decal/box,/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/sleeper) "rnr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore/secondary) "rnw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 4; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/fore/secondary) -"rnA" = (/obj/effect/turf_decal/stripes/line,/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) +"rnA" = (/obj/effect/turf_decal/stripes/line,/obj/item/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) "rnJ" = (/obj/structure/chair/sofa/left{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/carpet/black,/area/arcade) "rnO" = (/obj/structure/rack,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/suit/hooded/wintercoat,/turf/open/floor/plating,/area/maintenance/starboard) "roj" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) @@ -6303,7 +6303,7 @@ "rrL" = (/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/machinery/vending/wardrobe/hydro_wardrobe,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/hydroponics) "rrR" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark/side,/area/hydroponics) "rrS" = (/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/structure/window/reinforced{dir = 8},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/hydroponics) -"rrY" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/white/side{dir = 8},/area/science/research) +"rrY" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/white/side{dir = 8},/area/science/research) "rsa" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/science/research) "rsc" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 2"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/item/bedsheet/orange,/turf/open/floor/plasteel,/area/security/prison) "rsp" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) @@ -6331,7 +6331,7 @@ "ruO" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/layenia) "ruS" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/science/xenobiology) "rvb" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/port) -"rvv" = (/obj/structure/window/reinforced{dir = 4},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/turf/open/floor/wood,/area/crew_quarters/heads/captain) +"rvv" = (/obj/structure/window/reinforced{dir = 4},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/components/unary/vent_pump/on/layer3{dir = 8; name = "air vent"},/turf/open/floor/wood,/area/crew_quarters/heads/captain) "rvL" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/chasm/cloud,/area/layenia/cloudlayer) "rvO" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/vending/kink,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness) "rwc" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) @@ -6364,7 +6364,7 @@ "rzx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 6; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/fore) "rzA" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/structure/table/plasmaglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = -6; pixel_y = 11},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = -5; pixel_y = 5},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = -5; pixel_y = -1},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 6; pixel_y = 11},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 5; pixel_y = 5},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 6; pixel_y = -1},/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/carpet/black,/area/crew_quarters/bar) "rzF" = (/obj/machinery/atm{pixel_y = 30},/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"rzR" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/carpet/black,/area/crew_quarters/bar) +"rzR" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/carpet/black,/area/crew_quarters/bar) "rzT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/carpet,/area/crew_quarters/bar) "rzU" = (/obj/structure/chair/sofa/right{dir = 8},/obj/machinery/light/small{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/carpet,/area/crew_quarters/bar) "rAe" = (/obj/effect/turf_decal/tile/neutral{dir = 2},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{dir = 4; icon_plating = "floor"; icon_state = "floor_whole"},/area/artatrium) @@ -6439,7 +6439,7 @@ "rIx" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) "rIA" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4; name = "air supply pipe"},/turf/open/floor/plating/airless,/area/layenia/cloudlayer) "rIE" = (/turf/closed/wall,/area/crew_quarters/theatre) -"rIG" = (/obj/structure/window/reinforced{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"rIG" = (/obj/structure/window/reinforced{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) "rIU" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/hydroponics) "rIW" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/white/corner{dir = 1},/area/maintenance/starboard) "rJc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft) @@ -6453,7 +6453,7 @@ "rJJ" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/machinery/light/small{dir = 1; pixel_y = 16},/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/hop) "rJK" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plating/asteroid/layenia/garden,/area/security/prison) "rKb" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/computer/card/minor/qm{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) -"rKc" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/engine/engineering) +"rKc" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/engine/engineering) "rKh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; name = "Privacy Shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) "rKp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 4; name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/medical/sleeper) "rKt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) @@ -6488,7 +6488,7 @@ "rPe" = (/obj/effect/spawner/structure/window,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) "rPf" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/hallway/primary/fore) "rPh" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/wood,/area/lawoffice) -"rPl" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) +"rPl" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "rPu" = (/obj/structure/table,/obj/item/storage/box/donkpockets/donkpocketberry{pixel_x = 3; pixel_y = 16},/obj/item/reagent_containers/food/snacks/benedict,/turf/open/floor/plasteel/dark/side{dir = 8},/area/bridge) "rPZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "medshut1"; name = "shutters"},/turf/open/floor/plating,/area/medical/sleeper) "rQa" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/camera{c_tag = "Security Checkpoint North"; dir = 6},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/port) @@ -6602,7 +6602,7 @@ "scT" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "cargoshut1"; name = "shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{dir = 8; icon_plating = "floor"; icon_state = "floor_whole"},/area/hallway/primary/aft) "scW" = (/obj/structure/chair/comfy/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/hop) "sdk" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/engine,/area/engine/engineering/reactor_core) -"sdu" = (/obj/structure/table/wood,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"; pixel_y = 14},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"sdu" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-22"; pixel_y = 14},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) "sdx" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/computer/shuttle/mining{dir = 1},/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) "sdJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1; name = "air scrubber"},/turf/open/floor/plasteel/dark,/area/maintenance/disposal) "sdO" = (/obj/item/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/science/research) @@ -6645,7 +6645,7 @@ "sjh" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 9},/turf/open/floor/plating/airless,/area/engine/atmos) "sjk" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "sjq" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 1; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 1; name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/dark,/area/bridge) -"sjA" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel,/area/bridge) +"sjA" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel,/area/bridge) "sjD" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3; pixel_y = 7},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 5},/turf/open/floor/plasteel/dark/side{dir = 8},/area/bridge) "sjF" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/camera{c_tag = "Atmospherics South East"; dir = 1},/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/engine/atmos) "skb" = (/turf/open/floor/plasteel/grimy,/area/chapel/office) @@ -6766,9 +6766,9 @@ "szR" = (/obj/machinery/light{pixel_y = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/turf/open/floor/plasteel/white,/area/science/misc_lab) "szU" = (/obj/effect/turf_decal/arrows/red,/obj/effect/turf_decal/caution/red,/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 1; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) "szV" = (/obj/structure/table/wood,/obj/item/lipstick/random{pixel_x = -2; pixel_y = -2},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre) -"sAf" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"sAf" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "sAn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/start/scientist,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/science/misc_lab) -"sAr" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants/photosynthetic{pixel_y = 10},/turf/open/floor/plasteel,/area/science/misc_lab) +"sAr" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/turf/open/floor/plasteel,/area/science/misc_lab) "sAG" = (/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/engine,/area/science/misc_lab) "sAJ" = (/obj/machinery/atmospherics/components/unary/portables_connector,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering/reactor_core) "sAR" = (/obj/structure/bodycontainer/morgue{dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) @@ -6782,11 +6782,11 @@ "sCs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "sCD" = (/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness) "sCH" = (/obj/structure/chair/comfy/black{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 2},/obj/structure/railing,/turf/open/floor/plasteel/dark,/area/engine/break_room) -"sCK" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light/small{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"sCK" = (/obj/item/kirbyplants/random,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light/small{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel/dark,/area/medical/morgue) "sCL" = (/turf/closed/wall,/area/quartermaster/qm) "sDl" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/closet/l3closet/janitor,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/janitor) "sDp" = (/obj/machinery/space_heater,/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/quartermaster/warehouse) -"sDI" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/camera{c_tag = "Arrivals Bay 2 North"; dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"sDI" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/camera{c_tag = "Arrivals Bay 2 North"; dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) "sDQ" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port) "sEb" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/science/research) "sEr" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) @@ -6835,7 +6835,7 @@ "sJo" = (/obj/structure/table,/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/crew_quarters/fitness) "sJx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/wood,/area/crew_quarters/heads/captain) "sJO" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"sJP" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants/photosynthetic{pixel_y = 10},/obj/machinery/camera{c_tag = "Research Division South East"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/misc_lab) +"sJP" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/machinery/camera{c_tag = "Research Division South East"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/misc_lab) "sJW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "sKe" = (/obj/machinery/light/small{dir = 8; pixel_x = -7; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/turf/open/floor/plating,/area/maintenance/fore) "sKt" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/sign/painting/library{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/artatrium) @@ -6846,7 +6846,7 @@ "sLd" = (/obj/machinery/vending/cola/random,/turf/open/floor/plasteel/dark,/area/science/research) "sLg" = (/obj/machinery/door/airlock/public/glass{name = "Chapel"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/chapel/main) "sLz" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/turf/open/floor/plating,/area/storage/tech) -"sLM" = (/obj/machinery/computer/arcade/minesweeper{dir = 4},/turf/open/floor/carpet/black,/area/arcade) +"sLM" = (/obj/machinery/computer/arcade/orion_trail{dir = 4},/turf/open/floor/carpet/black,/area/arcade) "sMn" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/white,/area/security/prison) "sMA" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) "sME" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/camera{c_tag = "Aft Primary Hallway North West"; dir = 6},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/hallway/primary/fore) @@ -6955,7 +6955,7 @@ "taM" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/fore) "tbb" = (/obj/structure/fence,/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "tbe" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/hallway/primary/fore) -"tbi" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/side{dir = 1},/area/hallway/primary/port/fore) +"tbi" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/side{dir = 1},/area/hallway/primary/port/fore) "tbj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 9; name = "air supply pipe"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/robotics/lab) "tbp" = (/obj/machinery/door/airlock/public/glass{name = "Diner"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) "tbv" = (/obj/structure/table/wood,/obj/item/toy/figure/cmo,/turf/open/floor/wood,/area/crew_quarters/heads/cmo) @@ -6979,7 +6979,7 @@ "tdb" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/docking_port/stationary/random{dir = 8; id = "pod_lavaland2"; name = "lavaland"},/turf/open/indestructible/concrete,/area/layenia/cloudlayer) "tdf" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/aft) "tdo" = (/obj/docking_port/stationary{dir = 8; dwidth = 1; height = 4; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/turf/open/indestructible/concrete,/area/layenia/cloudlayer) -"tdr" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) +"tdr" = (/obj/item/kirbyplants/random,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "tds" = (/obj/machinery/door/airlock/external{dir = 4; name = "Escape Pod One"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/fans/tiny,/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "tdy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8; external_pressure_bound = 140; name = "server vent"; pressure_checks = 0},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) "tdz" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) @@ -7082,7 +7082,7 @@ "tru" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat/service) "trz" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/effect/turf_decal/box,/turf/open/floor/wood,/area/crew_quarters/heads/captain) "trJ" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/disposal/bin,/obj/machinery/light{pixel_y = -1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/primary/aft) -"trU" = (/obj/structure/window/reinforced{dir = 4},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 8; name = "air scrubber"},/turf/open/floor/wood,/area/crew_quarters/heads/captain) +"trU" = (/obj/structure/window/reinforced{dir = 4},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 8; name = "air scrubber"},/turf/open/floor/wood,/area/crew_quarters/heads/captain) "tsk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/turf/open/floor/plating,/area/maintenance/fore) "tst" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/wood,/area/library/lounge) "tsP" = (/obj/machinery/light{pixel_y = -1},/obj/machinery/computer/security/mining{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply) @@ -7125,7 +7125,7 @@ "txA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10; name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) "txP" = (/obj/structure/flora/crystal/small/pile,/obj/structure/flora/crystal/small/growth{icon_state = "crystalgrowth2"},/turf/open/floor/plating/asteroid/layenia,/area/bridge) "tyn" = (/obj/machinery/door/window{base_state = "right"; dir = 8; icon_state = "right"; name = "Captain's Desk Door"; req_access_txt = "20"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) -"tyv" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/white/corner,/area/science/research) +"tyv" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/white/corner,/area/science/research) "tyz" = (/obj/structure/lattice/catwalk,/turf/open/floor/plating/asteroid/layenia,/area/layenia) "tyC" = (/obj/structure/chair/comfy/blue,/obj/effect/landmark/start/captain,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) "tyI" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/turf/open/floor/wood,/area/maintenance/port/aft) @@ -7133,7 +7133,7 @@ "tzb" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) "tzi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) "tzl" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/construction/mining/aux_base) -"tzt" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/white,/area/science/lab) +"tzt" = (/obj/item/kirbyplants/random,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/white,/area/science/lab) "tzG" = (/obj/structure/table/reinforced,/obj/item/trash/plate,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/camera{c_tag = "Engineering Canteen North"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/engine/break_room) "tzM" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/asteroid/layenia,/area/layenia) "tzQ" = (/obj/machinery/newscaster/security_unit{pixel_x = 32},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/captain) @@ -7157,8 +7157,8 @@ "tCn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) "tCq" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 6; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 6; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/science/misc_lab) "tCs" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/vaporwave,/area/arcade) -"tCK" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/crew_quarters/fitness/pool) -"tCQ" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/maintenance/starboard/aft) +"tCK" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/crew_quarters/fitness/pool) +"tCQ" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/maintenance/starboard/aft) "tCT" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet/red,/area/crew_quarters/heads/hos) "tDe" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/camera{c_tag = "Research Division West"; dir = 10; network = list("ss13","rd")},/turf/open/floor/plasteel/white/side{dir = 1},/area/science/research) "tDk" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 8},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/science/xenobiology) @@ -7201,7 +7201,7 @@ "tIg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 8; name = "air scrubber"},/turf/open/floor/plasteel/white,/area/medical/virology) "tIh" = (/obj/structure/chair/sofa/right{dir = 1},/turf/open/floor/carpet/black,/area/arcade) "tIu" = (/obj/effect/turf_decal/loading_area,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/quartermaster/storage) -"tII" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"tII" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "tIK" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/carpet,/area/maintenance/fore) "tIU" = (/obj/structure/chair{dir = 8},/obj/structure/window{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hallway/secondary/exit) "tIY" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/ai_monitored/security/armory) @@ -7377,7 +7377,7 @@ "ufX" = (/turf/open/floor/circuit,/area/ai_monitored/nuke_storage) "ugh" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/starboard/aft) "ugj" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat/atmos) -"ugq" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/twohanded/required/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/aisat/hallway"; dir = 8; name = "MiniSat Chamber Hallway APC"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/hallway) +"ugq" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/aisat/hallway"; dir = 8; name = "MiniSat Chamber Hallway APC"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/hallway) "ugr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 1; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 8; icon_plating = "floor"; icon_state = "floor_whole"},/area/science/xenobiology) "ugv" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/engine/engineering) "ugw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) @@ -7392,7 +7392,7 @@ "uif" = (/obj/structure/floodlight_frame,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "uiB" = (/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 10; network = list("ss13","rd")},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/science/storage"; name = "Toxins Storage APC"; pixel_y = -24},/turf/open/floor/plasteel/dark,/area/science/storage) "uiF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engine_smes) -"uiP" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/crew_quarters/heads/captain) +"uiP" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/crew_quarters/heads/captain) "uiV" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 9; name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply) "uiW" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plating/beach/sand,/area/hallway/secondary/exit) "uja" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible/layer1{dir = 1; name = "visible"},/obj/machinery/atmospherics/pipe/simple/green/visible/layer3{dir = 1; name = "visible"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/red/line{dir = 4},/obj/effect/turf_decal/stripes/red/line{dir = 8},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) @@ -7418,7 +7418,7 @@ "ulb" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/conveyor{id = "gasstor"},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plating,/area/engine/engineering) "ulm" = (/obj/structure/flora/crystal/medium/growth{icon_state = "crystalgrowth1"},/turf/open/indestructible/layenia/crystal/garden,/area/crew_quarters/heads/hor) "ulp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"ulL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/twohanded/required/kirbyplants/photosynthetic{pixel_y = 10},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "Chamber Hallway Turret Control"; pixel_x = 32; pixel_y = 24; req_access = null; req_access_txt = "65"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/hallway) +"ulL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "Chamber Hallway Turret Control"; pixel_x = 32; pixel_y = 24; req_access = null; req_access_txt = "65"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/hallway) "ulM" = (/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/white,/area/medical/chemistry) "umu" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "umv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plasteel,/area/security/main) @@ -7613,7 +7613,7 @@ "uJs" = (/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,/turf/open/floor/plasteel/dark,/area/hydroponics) "uJw" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/conveyor{id = "gasstor"},/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plating,/area/engine/engineering) "uJD" = (/obj/structure/table/wood,/obj/item/electronics/apc,/obj/item/electronics/apc{pixel_x = 3; pixel_y = 3},/turf/open/floor/wood,/area/engine/engineering) -"uJK" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/port/fore) +"uJK" = (/obj/item/kirbyplants/random,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/railing{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/port/fore) "uJL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/pump/on{name = "Air to External"},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/engine/atmos) "uKa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/fore/secondary) "uKh" = (/obj/structure/flora/crystal/small/growth,/turf/open/floor/plating/asteroid/layenia,/area/layenia) @@ -7774,7 +7774,7 @@ "vfn" = (/obj/structure/railing{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "vfr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 8; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/open/floor/plasteel{icon_plating = "floor"; icon_state = "floor_whole"},/area/crew_quarters/locker) "vft" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs/medium,/area/hallway/primary/starboard) -"vfN" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/railing{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) +"vfN" = (/obj/item/kirbyplants/random,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/railing{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "vfU" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white/corner,/area/science/misc_lab) "vgd" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plating/beach/sand,/area/hallway/secondary/exit) "vgf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel,/area/bridge) @@ -7950,7 +7950,7 @@ "vDV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 1; name = "scrubbers pipe"},/obj/machinery/airalarm{pixel_y = 25},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) "vDW" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/hallway/primary/port/fore) "vDX" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"vEa" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants/photosynthetic{pixel_y = 10},/turf/open/floor/plasteel,/area/science/misc_lab) +"vEa" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/turf/open/floor/plasteel,/area/science/misc_lab) "vEd" = (/turf/closed/wall,/area/medical/sleeper) "vEg" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_trim"},/area/engine/engineering) "vEL" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 8; name = "air scrubber"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/mixing) @@ -8069,7 +8069,7 @@ "vSK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/fore/secondary) "vSL" = (/obj/structure/railing{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/structure/railing{dir = 1},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "vSU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"vSY" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/obj/structure/railing{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) +"vSY" = (/obj/item/kirbyplants/random,/obj/machinery/light{pixel_y = -1},/obj/structure/railing{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "vTh" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/hallway/primary/central) "vTj" = (/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) "vTl" = (/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/science/misc_lab) @@ -8169,12 +8169,12 @@ "wfh" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) "wfl" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Port to Filter"},/turf/open/floor/plasteel,/area/engine/atmos) "wfn" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer1{dir = 10},/obj/structure/lattice/catwalk,/turf/open/chasm/cloud,/area/layenia/cloudlayer) -"wfu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/power/apc{areastring = "/area/security/detectives_office"; dir = 4; name = "Detective's Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/security/detectives_office) +"wfu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 10; name = "air supply pipe"},/obj/machinery/power/apc{areastring = "/area/security/detectives_office"; dir = 4; name = "Detective's Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/security/detectives_office) "wfw" = (/obj/structure/table,/obj/machinery/light{pixel_y = -1},/turf/open/floor/plasteel/white,/area/medical/virology) -"wfP" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/artatrium) +"wfP" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/artatrium) "wfQ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/quartermaster/sorting) "wfX" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/cigbutt,/turf/open/floor/plasteel,/area/engine/atmos) -"wgc" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"wgc" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/exit) "wgd" = (/obj/structure/rack,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/turf/open/floor/plasteel/dark,/area/engine/break_room) "wge" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/button/door{id = "robotics"; name = "Shutters Control Button"; pixel_x = -26; pixel_y = 8; req_access_txt = "29"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/white,/area/science/robotics/lab) "wgi" = (/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_trim"},/area/engine/engineering) @@ -8220,7 +8220,7 @@ "wlI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/baseturf_helper/asteroid/layenia,/turf/open/floor/plating,/area/security/warden) "wlS" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/engine/vacuum,/area/engine/engineering) "wlV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/crew_quarters/locker) -"wmb" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/reinforced,/obj/item/destTagger,/obj/item/destTagger,/obj/item/hand_labeler{pixel_y = 8},/obj/item/hand_labeler{pixel_y = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"wmb" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/reinforced,/obj/item/dest_tagger,/obj/item/dest_tagger,/obj/item/hand_labeler{pixel_y = 8},/obj/item/hand_labeler{pixel_y = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) "wmc" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{pixel_y = -1},/turf/open/floor/plating,/area/maintenance/disposal) "wmk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible/layer1{dir = 1; name = "visible"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 8},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "wmG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) @@ -8254,7 +8254,7 @@ "wqn" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) "wqp" = (/obj/structure/table,/obj/item/storage/fancy/donut_box{pixel_y = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "wqq" = (/obj/machinery/rnd/server,/turf/open/floor/circuit/telecomms/server,/area/science/server) -"wqt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"wqt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants/random,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 5; name = "air supply pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) "wqu" = (/obj/structure/table/wood,/obj/item/storage/box/evidence,/turf/open/floor/wood,/area/security/detectives_office) "wqz" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/engineering/reactor_core) "wqT" = (/obj/effect/spawner/structure/window,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/bar) @@ -8386,7 +8386,7 @@ "wHn" = (/obj/structure/table/plasmaglass,/obj/item/toy/redbutton,/turf/open/floor/plasteel/vaporwave,/area/arcade) "wHq" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/side{dir = 1},/area/crew_quarters/heads/cmo) "wHu" = (/obj/structure/rack,/obj/item/stack/sheet/cardboard,/turf/open/floor/plating,/area/quartermaster/storage) -"wHw" = (/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"; name = "trim"},/turf/open/floor/plasteel,/area/engine/break_room) +"wHw" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"; name = "trim"},/turf/open/floor/plasteel,/area/engine/break_room) "wHE" = (/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/port/fore) "wHG" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{dir = 8; id = "primaryshut1"; name = "primary blast door"},/turf/open/floor/plasteel{dir = 8; icon_plating = "floor"; icon_state = "floor_whole"},/area/hallway/primary/fore) "wHL" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/port) @@ -8451,7 +8451,7 @@ "wPT" = (/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 4; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "wPW" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plasteel/white,/area/medical/genetics) "wQa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 8; name = "scrubbers pipe"},/turf/open/floor/plating,/area/maintenance/fore) -"wQm" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) +"wQm" = (/obj/item/kirbyplants/random,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "wQr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack/shelf,/obj/item/clothing/head/welding,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/machinery/camera{c_tag = "MiniSat Atmospherics"; dir = 4; network = list("minisat"); start_active = 1},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat/atmos) "wQv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/gateway) "wQC" = (/turf/closed/wall/r_wall,/area/crew_quarters/fitness) @@ -8521,8 +8521,8 @@ "xcG" = (/obj/machinery/holopad,/obj/effect/landmark/start/station_engineer,/obj/effect/turf_decal/box,/turf/open/floor/plasteel,/area/engine/break_room) "xcM" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology) "xde" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) -"xdq" = (/obj/machinery/airalarm{pixel_y = 24},/obj/item/twohanded/required/kirbyplants/random,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/quartermaster/storage) -"xds" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"xdq" = (/obj/machinery/airalarm{pixel_y = 24},/obj/item/kirbyplants/random,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel{dir = 1; icon_state = "floor_trim"},/area/quartermaster/storage) +"xds" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/secondary/exit) "xdx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) "xdA" = (/obj/machinery/door/airlock/maintenance{name = "Maintenance Access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/maintenance/fore/secondary) "xdC" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) @@ -8578,7 +8578,7 @@ "xlR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/science/misc_lab) "xmg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/turf/open/floor/wood,/area/library) "xml" = (/obj/structure/table/wood,/obj/item/toy/figure/hop{pixel_x = 3; pixel_y = 3},/obj/item/toy/figure/ian,/turf/open/floor/carpet/royalblue,/area/crew_quarters/heads/hop) -"xmv" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"xmv" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/item/kirbyplants/random,/obj/machinery/light{dir = 4; pixel_x = 7; pixel_y = 0},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) "xmy" = (/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/research) "xmO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/bridge) "xmQ" = (/obj/machinery/atmospherics/components/unary/portables_connector,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/engine/engineering) @@ -8609,7 +8609,7 @@ "xpz" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia) "xpG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/docking_port/stationary/random{dir = 8; id = "pod_lavaland1"; name = "lavaland"},/turf/open/indestructible/concrete,/area/layenia/cloudlayer) "xpH" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/open/floor/plating/asteroid/layenia,/area/layenia) -"xqb" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-05"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/crew_quarters/fitness) +"xqb" = (/obj/item/kirbyplants{icon_state = "plant-05"},/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/crew_quarters/fitness) "xqj" = (/obj/structure/table/reinforced,/obj/structure/window{dir = 1},/obj/item/toy/plush/carrot,/obj/structure/window{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/arcade) "xqk" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/fore/secondary) "xql" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/door/window/northright{name = "Arcade Counter Door"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel/dark,/area/arcade) @@ -8630,7 +8630,7 @@ "xsI" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/librarian,/turf/open/floor/carpet,/area/library) "xsM" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/artatrium) "xsQ" = (/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating,/area/maintenance/disposal) -"xsU" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants/photosynthetic{pixel_y = 10},/turf/open/floor/plasteel,/area/science/misc_lab) +"xsU" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/turf/open/floor/plasteel,/area/science/misc_lab) "xtd" = (/obj/structure/table/wood,/obj/item/ashtray,/obj/item/reagent_containers/food/drinks/beer,/turf/open/floor/wood,/area/maintenance/starboard/aft) "xtk" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side,/area/security/main) "xtp" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "xenobio8"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) @@ -8645,9 +8645,9 @@ "xus" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{name = "scrubbers pipe"},/turf/open/floor/plasteel{dir = 4; icon_state = "floor_plate"},/area/hydroponics) "xut" = (/obj/structure/flora/crystal/small/pile,/obj/structure/flora/crystal/small/growth,/turf/open/indestructible/layenia/crystal/garden,/area/crew_quarters/dorms) "xuu" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/carpet,/area/library) -"xux" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/camera{c_tag = "Dormitory North"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/crew_quarters/dorms) +"xux" = (/obj/item/kirbyplants/random,/obj/machinery/camera{c_tag = "Dormitory North"},/turf/open/floor/plasteel{dir = 8; icon_state = "floor_plate"},/area/crew_quarters/dorms) "xuE" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "scishut1"; name = "shutters"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"xuQ" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/carpet,/area/crew_quarters/fitness/pool) +"xuQ" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/carpet,/area/crew_quarters/fitness/pool) "xuS" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "xuV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) "xvq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{name = "air supply pipe"},/turf/open/floor/plating,/area/medical/virology) @@ -8775,7 +8775,7 @@ "xKi" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/engineering) "xKo" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"; shuttledocked = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/fans/tiny,/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) "xKr" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/dark,/area/quartermaster/miningdock) -"xKs" = (/obj/structure/table,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"; pixel_y = 14},/turf/open/floor/plasteel/dark,/area/science/research) +"xKs" = (/obj/structure/table,/obj/item/kirbyplants{icon_state = "plant-22"; pixel_y = 14},/turf/open/floor/plasteel/dark,/area/science/research) "xKx" = (/obj/effect/turf_decal/stripes/line,/turf/open/indestructible/concrete,/area/layenia/cloudlayer) "xKK" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) "xKM" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science) @@ -8791,7 +8791,7 @@ "xMU" = (/turf/closed/wall,/area/maintenance/fore) "xMZ" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plating{initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1},/area/layenia/cloudlayer) "xNp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layer3{dir = 8; name = "air supply pipe"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4; name = "scrubbers pipe"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard) -"xNv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 9; name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"xNv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 9; name = "scrubbers pipe"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) "xNy" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "xNK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/camera{c_tag = "Arrivals Bay 2 South"; dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "xNL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) diff --git a/_maps/metis_maps/MetaStation/MetaStation.dmm b/_maps/metis_maps/MetaStation/MetaStation.dmm index 5d9aa56ba2..e9a47c7676 100644 --- a/_maps/metis_maps/MetaStation/MetaStation.dmm +++ b/_maps/metis_maps/MetaStation/MetaStation.dmm @@ -2,28 +2,23 @@ "aab" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 24},/obj/structure/rack,/obj/item/grenade/barrier{pixel_x = -3; pixel_y = 1},/obj/item/grenade/barrier,/obj/item/grenade/barrier{pixel_x = 3; pixel_y = -1},/obj/item/grenade/barrier{pixel_x = 6; pixel_y = -2},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "aac" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space) "aad" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"aae" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/bat{desc = "A spider who's been revived and pacified by a miner, now it's yours. Sometimes you shiver in fear."; emote_hear = list("chitters"); faction = list("spiders"); harm_intent_damage = 3; health = 200; icon_dead = "guard_dead"; icon_gib = "guard_dead"; icon_living = "guard"; icon_state = "guard"; maxHealth = 250; max_co2 = 5; max_tox = 2; melee_damage_lower = 15; melee_damage_upper = 20; min_oxy = 5; movement_type = 1; name = "Sir Eight-Mor"; real_name = "Sir Eight-Mor"; turns_per_move = 10},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"aae" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/bat{desc = "A spider who's been revived and pacified by a miner, now it's yours. Sometimes you shiver in fear."; emote_hear = list("chitters"); faction = list("spiders"); harm_intent_damage = 3; health = 200; icon_dead = "guard_dead"; icon_gib = "guard_dead"; icon_living = "guard"; icon_state = "guard"; maxHealth = 250; max_co2 = 5; max_tox = 2; melee_damage_lower = 15; melee_damage_upper = 20; min_oxy = 5; movement_type = 1; name = "Sir Eight-Mor"; real_name = "Sir Eight-Mor"; turns_per_move = 10},/turf/open/floor/carpet) "aaf" = (/obj/structure/lattice,/turf/open/space,/area/space/nearstation) "aag" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"aah" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/tracker,/turf/open/floor/plating/airless,/area/solar/port/fore) +"aah" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/tracker,/turf/open/floor/plating/airless) "aai" = (/obj/structure/grille/broken,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) "aaj" = (/obj/structure/grille,/turf/open/space,/area/space/nearstation) -"aak" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"aal" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port/fore) -"aam" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"aan" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"aao" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"aap" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"aaq" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"aar" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"aas" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"aat" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"aau" = (/obj/structure/cable,/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port/fore) +"aal" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel) +"aan" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space) +"aao" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space) +"aar" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space) +"aas" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space) +"aat" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space) +"aau" = (/obj/structure/cable,/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel) "aav" = (/turf/open/space,/area/space) -"aaw" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) +"aaw" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/open/space) "aax" = (/turf/closed/wall/r_wall,/area/security/prison) "aay" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/security/prison) -"aaz" = (/obj/effect/landmark/xeno_spawn,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) "aaA" = (/obj/machinery/seed_extractor,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/security/prison) "aaB" = (/obj/docking_port/stationary{dheight = 1; dir = 8; dwidth = 12; height = 17; id = "syndicate_nw"; name = "northwest of station"; width = 23},/turf/open/space/basic,/area/space/nearstation) "aaC" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/security/prison) @@ -36,26 +31,24 @@ "aaJ" = (/obj/item/reagent_containers/glass/bucket,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) "aaK" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/glowshroom,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) "aaL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/security/prison) -"aaM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"aaN" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/tracker,/turf/open/floor/plating/airless,/area/solar/starboard/fore) -"aaO" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) +"aaM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel) +"aaO" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) "aaP" = (/obj/machinery/hydroponics/constructable,/obj/item/cultivator,/obj/item/seeds/carrot,/turf/open/floor/plasteel,/area/security/prison) "aaQ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/security/prison) "aaR" = (/turf/open/floor/plasteel,/area/security/prison) "aaS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/prison) "aaT" = (/obj/machinery/hydroponics/constructable,/obj/item/plant_analyzer,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/security/prison) -"aaU" = (/obj/structure/table/wood,/obj/item/taperecorder{pixel_x = -4},/obj/item/radio/off{pixel_y = 3},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"aaV" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"aaU" = (/obj/structure/table/wood,/obj/item/taperecorder{pixel_x = -4},/obj/item/radio/off{pixel_y = 3},/turf/open/floor/plasteel/dark) +"aaV" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel) "aaW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/prison) -"aaX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"aaY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) +"aaX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel) "aaZ" = (/turf/closed/wall/r_wall,/area/security/execution/education) "aba" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/prison) "abb" = (/obj/machinery/door/airlock/public/glass{id_tag = "permahydro"; name = "Hydroponics Module"},/turf/open/floor/plasteel,/area/security/prison) "abc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/prison) "abd" = (/obj/machinery/vending/cola/random,/obj/structure/sign/poster/official/pda_ad{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/command) "abe" = (/turf/closed/wall,/area/security/prison) -"abf" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) +"abf" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/lattice/catwalk,/turf/open/space) "abg" = (/obj/machinery/door/poddoor{id = "SecJusticeChamber"; name = "Justice Vent"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/security/execution/education) "abh" = (/obj/item/soap/nanotrasen,/obj/item/bikehorn/rubberducky,/obj/machinery/shower{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/freezer,/area/security/prison) "abi" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/open/floor/plasteel/freezer,/area/security/prison) @@ -71,8 +64,8 @@ "abs" = (/obj/machinery/washing_machine,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) "abt" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "abu" = (/obj/docking_port/stationary{dwidth = 1; height = 4; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/obj/structure/fans/tiny/invisible,/turf/open/space/basic,/area/space) -"abv" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore) -"abw" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) +"abv" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel) +"abw" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space) "abx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/security/execution/education) "aby" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/security/execution/education) "abz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/dark,/area/security/execution/education) @@ -90,13 +83,7 @@ "abL" = (/turf/open/floor/plating,/area/security/prison) "abM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/security/prison) "abN" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/security/prison) -"abO" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) -"abP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) -"abQ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) -"abR" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) -"abS" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) -"abT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) -"abU" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) +"abT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space) "abV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/sparker{id = "executionburn"; pixel_x = -25},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/education) "abW" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/electropack,/turf/open/floor/plasteel/dark,/area/security/execution/education) "abX" = (/obj/machinery/flasher{id = "justiceflash"; name = "mounted justice flash"; pixel_x = 28},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/education) @@ -113,7 +100,7 @@ "aci" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "1"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/security/prison) "acj" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/security/prison) "ack" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"acl" = (/obj/structure/cable,/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore) +"acl" = (/obj/structure/cable,/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel) "acm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/security/execution/education) "acn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/security/execution/education) "aco" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{name = "justice injector"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/dark,/area/security/execution/education) @@ -127,7 +114,6 @@ "acw" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/prison) "acx" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/security/prison) "acy" = (/obj/machinery/door/airlock/external{name = "Escape Pod Two"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/security/prison) -"acz" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) "acA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/education) "acB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/education) "acC" = (/obj/machinery/door/window/brigdoor{name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/brigdoor{dir = 1; name = "Justice Chamber"; req_access_txt = "3"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/education) @@ -143,12 +129,10 @@ "acM" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/machinery/computer/cryopod{dir = 8; pixel_x = 26},/turf/open/floor/plasteel,/area/security/prison) "acN" = (/obj/structure/table/glass,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/bottle/morphine{pixel_y = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/prison) "acO" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/glass/beaker{pixel_x = -5; pixel_y = 6},/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/prison) -"acP" = (/turf/closed/wall,/area/crew_quarters/fitness/recreation) -"acQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) "acR" = (/obj/structure/table/glass,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/bottle/morphine{pixel_y = 6},/obj/machinery/camera{c_tag = "Prison Sanitarium"; network = list("ss13","prison")},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/prison) -"acS" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"acT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) -"acU" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/fore) +"acS" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space) +"acT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space) +"acU" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space) "acV" = (/obj/structure/table,/obj/item/reagent_containers/glass/bottle/morphine{pixel_x = -4; pixel_y = 1},/obj/item/reagent_containers/glass/bottle/chloralhydrate{name = "chloral hydrate bottle"},/obj/item/reagent_containers/glass/bottle/toxin{pixel_x = 6; pixel_y = 8},/obj/item/reagent_containers/glass/bottle/morphine{pixel_x = 5; pixel_y = 1},/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/bottle/facid{name = "fluorosulfuric acid bottle"; pixel_x = -3; pixel_y = 6},/obj/item/reagent_containers/syringe{pixel_y = 5},/obj/item/reagent_containers/dropper,/obj/machinery/airalarm/all_access{dir = 4; pixel_x = -24},/obj/machinery/button/ignition{id = "executionburn"; name = "Justice Ignition Switch"; pixel_x = -25; pixel_y = 36},/obj/machinery/button/door{id = "executionfireblast"; name = "Justice Area Lockdown"; pixel_x = -25; pixel_y = 26; req_access_txt = "2"},/obj/item/assembly/signaler{pixel_x = -3; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/button/flasher{id = "justiceflash"; name = "Justice Flash Control"; pixel_x = -36; pixel_y = 36; req_access_txt = "1"},/obj/machinery/button/door{id = "SecJusticeChamber"; layer = 4; name = "Justice Vent Control"; pixel_x = -36; pixel_y = 26; req_access_txt = "3"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/education) "acW" = (/obj/structure/table,/obj/item/folder/red{pixel_x = 3},/obj/item/taperecorder{pixel_x = -3},/obj/item/storage/fancy/cigarettes,/obj/item/assembly/flash/handheld,/obj/item/reagent_containers/spray/pepper,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/education) "acX" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/education) @@ -163,7 +147,7 @@ "adg" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/turf/open/floor/plasteel/white,/area/security/prison) "adh" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/security/prison) "adi" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/security/prison) -"adj" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"adj" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating) "adk" = (/turf/closed/wall/mineral/plastitanium,/area/security/prison) "adl" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/store/cake/chocolate,/turf/open/floor/plating,/area/maintenance/fore) "adm" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/structure/reagent_dispensers/peppertank{pixel_x = -29},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/execution/education) @@ -184,10 +168,9 @@ "adB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/security/prison) "adC" = (/obj/machinery/flasher{id = "insaneflash"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/security/prison) "adD" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Armory - External"; dir = 1},/turf/open/space,/area/space/nearstation) -"adE" = (/turf/open/floor/plating,/area/crew_quarters/fitness/pool) "adF" = (/obj/docking_port/stationary{dir = 4; dwidth = 1; height = 4; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/obj/structure/fans/tiny/invisible,/turf/open/space/basic,/area/space) "adG" = (/obj/docking_port/stationary/random{id = "pod_lavaland2"; name = "lavaland"},/turf/open/space,/area/space/nearstation) -"adH" = (/obj/structure/closet/wardrobe/grey,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) +"adH" = (/obj/structure/closet/wardrobe/grey,/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},/turf/open/floor/plasteel/dark) "adI" = (/obj/structure/rack,/obj/item/hatchet,/obj/item/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/starboard/aft) "adJ" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table,/obj/item/storage/backpack/duffelbag/sec/surgery{pixel_y = 5},/obj/item/clothing/mask/balaclava,/obj/item/reagent_containers/spray/cleaner{pixel_x = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/education) "adK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/education) @@ -205,11 +188,10 @@ "adW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/prison) "adX" = (/obj/structure/bed/roller,/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/prison) "adY" = (/turf/closed/wall/r_wall,/area/security/warden) -"adZ" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) -"aea" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hosspace"; name = "space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"aeb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hosspace"; name = "space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"aec" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "hosspace"; name = "space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"aed" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"aea" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hosspace"; name = "space shutters"},/turf/open/floor/plating) +"aeb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hosspace"; name = "space shutters"},/turf/open/floor/plating) +"aec" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "hosspace"; name = "space shutters"},/turf/open/floor/plating) +"aed" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating) "aee" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port/fore) "aef" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/solars/port/fore) "aeg" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/dark,/area/security/execution/education) @@ -225,18 +207,17 @@ "aeq" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) "aer" = (/obj/structure/rack,/obj/item/gun/energy/ionrifle,/obj/machinery/light{dir = 1},/obj/item/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "aes" = (/obj/structure/closet/secure_closet{name = "contraband locker"; req_access_txt = "3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/effect/spawner/lootdrop/armory_contraband{loot = list(/obj/item/gun/ballistic/automatic/pistol=5,/obj/item/gun/ballistic/shotgun/automatic/combat=5,/obj/item/gun/ballistic/revolver/mateba,/obj/item/gun/ballistic/automatic/pistol/deagle,/obj/item/storage/box/syndie_kit/throwing_weapons=3)},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"aet" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/item/folder/red,/obj/item/folder/red,/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 23},/obj/machinery/button/door{id = "hosspace"; name = "Space Shutters Control"; pixel_x = -26; pixel_y = 34},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"aeu" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"aev" = (/obj/machinery/computer/security/hos,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"aew" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"aet" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/item/folder/red,/obj/item/folder/red,/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 23},/obj/machinery/button/door{id = "hosspace"; name = "Space Shutters Control"; pixel_x = -26; pixel_y = 34},/turf/open/floor/plasteel/dark) +"aev" = (/obj/machinery/computer/security/hos,/turf/open/floor/plasteel/dark) +"aew" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark) "aex" = (/obj/structure/closet/secure_closet/lethalshots,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "aey" = (/turf/closed/wall,/area/security/range) -"aeA" = (/obj/machinery/door/airlock/external{name = "Escape Pod Three"},/turf/open/floor/plating,/area/crew_quarters/fitness/pool) -"aeB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/crew_quarters/fitness/pool) -"aeC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"aeA" = (/obj/machinery/door/airlock/external{name = "Escape Pod Three"},/turf/open/floor/plating) +"aeB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall) +"aeC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating) "aeD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/public/glass{id_tag = "permahydro"; name = "Recreation Module"},/turf/open/floor/plasteel,/area/security/prison) -"aeE" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/fitness/pool) -"aeF" = (/obj/effect/landmark/xeno_spawn,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/fore) +"aeE" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating) +"aeF" = (/obj/effect/landmark/xeno_spawn,/obj/structure/lattice/catwalk,/turf/open/space) "aeG" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port/fore) "aeH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/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},/turf/open/floor/plasteel/dark,/area/security/execution/education) "aeI" = (/obj/item/tank/internals/oxygen/red{pixel_x = -4; pixel_y = -1},/obj/item/tank/internals/oxygen/red{pixel_x = 4; pixel_y = -1},/obj/item/tank/internals/anesthetic{pixel_x = 2},/obj/item/storage/toolbox/mechanical,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/structure/closet/crate{icon_state = "crateopen"},/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/wrench,/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},/turf/open/floor/plasteel/dark,/area/security/execution/education) @@ -261,30 +242,29 @@ "afb" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/security/prison) "afc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plating,/area/security/prison) "afd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within."; name = "WARNING: Criminally Insane Inmates"; pixel_y = 32},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) -"afe" = (/obj/structure/table/wood,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/machinery/computer/med_data/laptop,/obj/item/storage/secure/safe/HoS{pixel_x = 36; pixel_y = 28},/obj/machinery/camera{c_tag = "Head of Security's Office"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"afe" = (/obj/structure/table/wood,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/machinery/computer/med_data/laptop,/obj/item/storage/secure/safe/HoS{pixel_x = 36; pixel_y = 28},/obj/machinery/camera{c_tag = "Head of Security's Office"},/turf/open/floor/plasteel/dark) "aff" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/item/storage/secure/safe{name = "armory safe A"; pixel_x = 6; pixel_y = 28},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "afg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "afh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"afi" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29; pixel_y = 23},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"afj" = (/obj/machinery/status_display/evac{pixel_x = -32; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"afk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"afl" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"afm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"afn" = (/obj/machinery/status_display/evac{pixel_x = 32; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"afo" = (/obj/machinery/light{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 29},/obj/machinery/suit_storage_unit/hos,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"afi" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29; pixel_y = 23},/turf/open/floor/plasteel/dark) +"afj" = (/obj/machinery/status_display/evac{pixel_x = -32; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark) +"afk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark) +"afl" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark) +"afm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/dark) +"afn" = (/obj/machinery/status_display/evac{pixel_x = 32; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark) +"afo" = (/obj/machinery/light{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 29},/obj/machinery/suit_storage_unit/hos,/turf/open/floor/plasteel/dark) "afp" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/security/range) "afq" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/security/range) "afr" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/security/range) -"afs" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/crew_quarters/fitness/pool) -"aft" = (/obj/structure/reagent_dispensers/water_cooler,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"afu" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/sillycup{pixel_x = -5; pixel_y = 3},/obj/item/reagent_containers/food/drinks/sillycup,/obj/item/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/obj/item/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/obj/item/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/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/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"afv" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"afx" = (/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/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"afy" = (/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/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"afz" = (/obj/structure/closet/emcloset,/obj/structure/sign/warning/pods{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"afA" = (/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"afB" = (/obj/machinery/computer/arcade,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"afC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"afs" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass) +"aft" = (/obj/structure/reagent_dispensers/water_cooler,/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},/turf/open/floor/plasteel/dark) +"afu" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/sillycup{pixel_x = -5; pixel_y = 3},/obj/item/reagent_containers/food/drinks/sillycup,/obj/item/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/obj/item/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/obj/item/reagent_containers/food/drinks/sillycup{pixel_x = 5; pixel_y = 3},/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/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark) +"afx" = (/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/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel/dark) +"afy" = (/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/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel/dark) +"afz" = (/obj/structure/closet/emcloset,/obj/structure/sign/warning/pods{pixel_y = 30},/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},/turf/open/floor/plasteel/dark) +"afA" = (/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},/turf/open/floor/plasteel/dark) +"afB" = (/obj/machinery/computer/arcade,/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},/turf/open/floor/plasteel/dark) +"afC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating) "afD" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) "afE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port/fore) "afF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/prison) @@ -312,28 +292,28 @@ "agb" = (/obj/structure/rack,/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/gun/energy/e_gun/advtaser,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "agc" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "agd" = (/obj/structure/rack,/obj/item/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/laser,/obj/item/gun/energy/laser{pixel_x = 3; pixel_y = -3},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"age" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"agf" = (/obj/structure/table/wood,/obj/item/storage/secure/briefcase{pixel_x = -2},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/book/manual/gato_spacelaw,/obj/item/cartridge/detective,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"agg" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"agh" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"agi" = (/obj/structure/table/wood,/obj/item/stamp/hos,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"agj" = (/obj/item/phone{desc = "Who can it be now?"; pixel_x = -3; pixel_y = 3},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"agk" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"agl" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"agm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"age" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating) +"agf" = (/obj/structure/table/wood,/obj/item/storage/secure/briefcase{pixel_x = -2},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/book/manual/gato_spacelaw,/obj/item/cartridge/detective,/turf/open/floor/plasteel/dark) +"agg" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark) +"agh" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet) +"agi" = (/obj/structure/table/wood,/obj/item/stamp/hos,/turf/open/floor/carpet) +"agj" = (/obj/item/phone{desc = "Who can it be now?"; pixel_x = -3; pixel_y = 3},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet) +"agk" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark) +"agl" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark) +"agm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating) "agn" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/range) "ago" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plasteel,/area/security/range) "agp" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/security/range) "agq" = (/turf/closed/wall,/area/maintenance/fore) -"agr" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ags" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet/orange,/area/crew_quarters/locker) -"agt" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"agu" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"agv" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Fitness Room - Fore"},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"agw" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"agx" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"agy" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/pool"; dir = 1; name = "Recreation Area APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"agz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"agr" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel) +"ags" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet/orange) +"agt" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel) +"agu" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"agv" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Fitness Room - Fore"},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"agw" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel) +"agx" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"agy" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/pool"; dir = 1; name = "Recreation Area APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"agz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) "agA" = (/turf/closed/wall/r_wall,/area/maintenance/solars/port/fore) "agB" = (/obj/machinery/power/solar_control{id = "foreport"; name = "Port Bow Solar Control"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/port/fore) "agC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port/fore) @@ -355,55 +335,51 @@ "agS" = (/obj/machinery/holopad,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "agT" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot,/obj/item/gun/ballistic/shotgun/riot{pixel_x = -3; pixel_y = 3},/obj/item/gun/ballistic/shotgun/riot,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "agU" = (/obj/structure/rack,/obj/item/gun/energy/e_gun{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun{pixel_x = 3; pixel_y = -3},/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/item/gun/energy/e_gun,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"agV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"agW" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"agX" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"agY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"agZ" = (/obj/machinery/holopad,/obj/structure/chair{dir = 1},/obj/effect/landmark/start/head_of_security,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"agV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating) +"agW" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/open/floor/plasteel/dark) +"agX" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark) +"agY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet) +"agZ" = (/obj/machinery/holopad,/obj/structure/chair{dir = 1},/obj/effect/landmark/start/head_of_security,/turf/open/floor/carpet) "aha" = (/obj/structure/fans/tiny/invisible,/turf/open/space/basic,/area/space) "ahb" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "1"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/security/prison) "ahc" = (/obj/structure/lattice,/turf/closed/wall,/area/space/nearstation) -"ahd" = (/turf/closed/wall,/area/crew_quarters/cryopod) -"ahe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/cryopod) -"ahf" = (/turf/closed/wall/mineral/plastitanium,/area/crew_quarters/fitness/pool) -"ahg" = (/obj/machinery/light{dir = 8},/obj/machinery/light_switch{pixel_x = -26},/obj/machinery/cryopod/tele,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahh" = (/obj/machinery/cryopod/tele,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahi" = (/obj/machinery/camera{c_tag = "Fitness Room - Fore"},/obj/machinery/cryopod/tele,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahj" = (/obj/machinery/light{dir = 4},/obj/machinery/cryopod/tele,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahk" = (/obj/structure/lattice,/turf/closed/wall,/area/crew_quarters/cryopod) -"ahl" = (/obj/machinery/computer/cryopod{dir = 4; pixel_x = -26},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahm" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahn" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"aho" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahp" = (/obj/machinery/power/apc/auto_name/east,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) +"ahf" = (/turf/closed/wall/mineral/plastitanium) +"ahg" = (/obj/machinery/light{dir = 8},/obj/machinery/light_switch{pixel_x = -26},/obj/machinery/cryopod/tele,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark) +"ahh" = (/obj/machinery/cryopod/tele,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark) +"ahi" = (/obj/machinery/camera{c_tag = "Fitness Room - Fore"},/obj/machinery/cryopod/tele,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark) +"ahj" = (/obj/machinery/light{dir = 4},/obj/machinery/cryopod/tele,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark) +"ahk" = (/obj/structure/lattice,/turf/closed/wall) +"ahl" = (/obj/machinery/computer/cryopod{dir = 4; pixel_x = -26},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark) +"ahn" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel/dark) +"ahp" = (/obj/machinery/power/apc/auto_name/east,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark) "ahq" = (/turf/open/space/basic,/area/space/nearstation) "ahr" = (/obj/docking_port/stationary/random{dir = 4; id = "pod_lavaland3"; name = "lavaland"},/turf/open/space,/area/space/nearstation) -"ahs" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"aht" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahu" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahv" = (/obj/machinery/light,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahw" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) +"ahs" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark) +"aht" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark) +"ahu" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark) +"ahv" = (/obj/machinery/light,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark) +"ahw" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark) "ahx" = (/obj/machinery/door/airlock/external{name = "Escape Pod Two"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/security/prison) -"ahy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/cryopod) -"ahz" = (/obj/machinery/door/airlock{name = "Cryogenics"},/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"ahA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/cryopod) -"ahB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ahC" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"ahy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating) +"ahz" = (/obj/machinery/door/airlock{name = "Cryogenics"},/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark) +"ahA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating) +"ahB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"ahC" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) "ahD" = (/turf/closed/wall,/area/maintenance/solars/port/fore) "ahE" = (/obj/effect/landmark/event_spawn,/mob/living/simple_animal/bot/secbot{a_intent = "harm"; arrest_type = 1; desc = "It's Officer Beep O'sky's smaller, just-as aggressive cousin, Pipsqueak."; health = 4; icon_state = "secbot1"; idcheck = 1; inertia_move_delay = 5; mob_biotypes = 4; name = "Officer Pipsqueak"; weaponscheck = 1; zone_selected = "chest"},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "ahF" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/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/item/shield/riot,/obj/item/shield/riot,/obj/item/shield/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/suit/armor/riot,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "ahG" = (/turf/open/floor/plasteel,/area/security/range) "ahH" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 2},/obj/item/reagent_containers/food/condiment/sugar,/turf/open/floor/plating,/area/maintenance/fore) -"ahI" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ahJ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/scale,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ahK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) -"ahL" = (/obj/machinery/pool/filter{pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) -"ahN" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) -"ahP" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ahQ" = (/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) -"ahR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/yellowsiding/corner{dir = 8},/area/crew_quarters/fitness/pool) -"ahS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ahT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/fitness/pool) +"ahI" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel) +"ahJ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/scale,/turf/open/floor/plasteel) +"ahK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 8}) +"ahL" = (/obj/machinery/pool/filter{pixel_y = 24},/turf/open/pool) +"ahN" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/yellowsiding) +"ahP" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel) +"ahQ" = (/turf/open/floor/plasteel/yellowsiding) +"ahR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/yellowsiding/corner{dir = 8}) +"ahS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"ahT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall) "ahU" = (/turf/closed/wall,/area/maintenance/disposal) "ahV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) "ahW" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/camera/autoname{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port/fore) @@ -423,29 +399,29 @@ "aik" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/ai_monitored/security/armory"; name = "Armory APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/light,/obj/machinery/camera/motion{c_tag = "Armory - Internal"; dir = 1},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "ail" = (/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "aim" = (/obj/machinery/button/door{id = "armory"; name = "Armory Shutters"; pixel_x = 28; req_access_txt = "3"},/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/structure/rack,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"ain" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -24; pixel_y = -20},/obj/structure/disposalpipe/trunk{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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"aio" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "1-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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"aip" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"aiq" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"air" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"ais" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"ait" = (/obj/machinery/photocopier,/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hos"; dir = 4; name = "Head of Security's Office APC"; pixel_x = 24},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/button/door{id = "hosprivacy"; name = "Privacy Shutters Control"; pixel_x = 26; pixel_y = -26},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"aiu" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"ain" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -24; pixel_y = -20},/obj/structure/disposalpipe/trunk{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},/turf/open/floor/plasteel/dark) +"aio" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "1-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},/turf/open/floor/plasteel/dark) +"aip" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet) +"aiq" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet) +"air" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet) +"ais" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/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},/turf/open/floor/plasteel/dark) +"ait" = (/obj/machinery/photocopier,/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hos"; dir = 4; name = "Head of Security's Office APC"; pixel_x = 24},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/button/door{id = "hosprivacy"; name = "Privacy Shutters Control"; pixel_x = 26; pixel_y = -26},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/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},/turf/open/floor/plasteel/dark) +"aiu" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel) "aiv" = (/obj/structure/sign/poster,/turf/closed/wall/r_wall,/area/science/explab) -"aiw" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 9},/area/crew_quarters/fitness/recreation) -"aix" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/crew_quarters/fitness/pool) -"aiy" = (/turf/open/floor/plasteel/dark/side{dir = 8},/area/crew_quarters/fitness/pool) -"aiz" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/athletic_mixed,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"aiA" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) -"aiB" = (/turf/open/pool,/area/crew_quarters/fitness/pool) -"aiD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"aiw" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 9}) +"aix" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8}) +"aiy" = (/turf/open/floor/plasteel/dark/side{dir = 8}) +"aiz" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/athletic_mixed,/turf/open/floor/plasteel) +"aiA" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool) +"aiB" = (/turf/open/pool) +"aiD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) "aiE" = (/obj/structure/closet/crate{name = "Asshole Containment"},/obj/item/banhammer,/turf/open/floor/mineral/calorite/dance,/area/space) -"aiF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) -"aiG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"aiH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"aiI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 8; name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"aiJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"aiK" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"aiF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/yellowsiding{dir = 8}) +"aiG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aiH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel) +"aiI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 8; name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel) +"aiJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel) +"aiK" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel) "aiL" = (/obj/machinery/door/poddoor{id = "trash"; name = "disposal bay door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/disposal) "aiM" = (/obj/machinery/mass_driver{dir = 8; id = "trash"},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) "aiN" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "garbage"; name = "disposal conveyor"},/turf/open/floor/plating,/area/maintenance/disposal) @@ -470,25 +446,24 @@ "ajg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/security/armory) "ajh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Armory"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "aji" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/security/armory) -"ajj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/security/main) -"ajk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"ajl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"ajm" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_access_txt = "58"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"ajn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"ajo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"ajj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating) +"ajk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating) +"ajl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating) +"ajm" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_access_txt = "58"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/carpet) +"ajn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating) +"ajo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy"; name = "privacy shutters"},/turf/open/floor/plating) "ajp" = (/turf/closed/wall/r_wall,/area/security/range) "ajq" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/security/range) "ajr" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Shooting Range"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/security/range) "ajs" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/security/range) -"ajt" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel/dark/side{dir = 8},/area/crew_quarters/fitness/pool) +"ajt" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel/dark/side{dir = 8}) "aju" = (/obj/machinery/computer/arcade,/obj/item/reagent_containers/food/drinks/bottle/gin{pixel_x = 16; pixel_y = 8},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/sign/poster/random{pixel_x = -32},/turf/open/floor/carpet,/area/science/research) "ajv" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/medbay/aft) -"ajw" = (/obj/machinery/light{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/athletic_mixed,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ajy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ajC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/toy/poolnoodle/blue,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ajD" = (/obj/machinery/computer/holodeck{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ajE" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ajF" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"ajw" = (/obj/machinery/light{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/athletic_mixed,/turf/open/floor/plasteel) +"ajy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/turf/open/floor/plasteel) +"ajC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/toy/poolnoodle/blue,/turf/open/floor/plasteel) +"ajD" = (/obj/machinery/computer/holodeck{dir = 4},/turf/open/floor/plasteel) +"ajE" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel) "ajG" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit"; name = "disposal exit vent"},/turf/open/floor/plating,/area/maintenance/disposal) "ajH" = (/obj/machinery/button/door{id = "Disposal Exit"; name = "Disposal Vent Control"; pixel_x = -25; pixel_y = 4; req_access_txt = "12"},/obj/machinery/button/massdriver{id = "trash"; pixel_x = -26; pixel_y = -6},/obj/structure/chair/stool,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) "ajI" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/disposal) @@ -514,33 +489,31 @@ "akc" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "akd" = (/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "ake" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/airalarm{pixel_y = 28},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"akf" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/security/main) -"akg" = (/obj/machinery/computer/security,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("prison"); pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/security/main) -"akh" = (/turf/closed/wall,/area/security/main) -"aki" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/secequipment,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/security/main) -"akj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/secequipment,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/security/main) -"akk" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark,/area/security/main) -"akl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/secequipment,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/security/main) -"akm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/landmark/secequipment,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/security/main) -"akn" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/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},/turf/open/floor/plasteel/dark,/area/security/main) -"ako" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/cable/yellow{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/security/main) +"akf" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark) +"akg" = (/obj/machinery/computer/security,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("prison"); pixel_y = 30},/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},/turf/open/floor/plasteel/dark) +"aki" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/secequipment,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark) +"akj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/secequipment,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark) +"akl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/secequipment,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark) +"akm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/landmark/secequipment,/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark) +"akn" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/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},/turf/open/floor/plasteel/dark) +"ako" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/cable/yellow{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark) "akp" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/machinery/magnetic_controller{autolink = 1; pixel_y = 3},/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/security/range) "akq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/range) "akr" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light/small{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/range) -"aks" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood,/area/crew_quarters/fitness/pool) -"akt" = (/obj/machinery/door/airlock/public{dir = 4; id_tag = "small_sauna_2"; name = "Small Sauna #2 Bolts"},/obj/structure/fans/tiny,/turf/open/floor/wood,/area/crew_quarters/fitness/pool) -"aku" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"akv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) -"akw" = (/obj/structure/pool/ladder,/turf/open/pool,/area/crew_quarters/fitness/pool) -"akz" = (/obj/machinery/pool/drain,/turf/open/pool,/area/crew_quarters/fitness/pool) -"akB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "engsm"; name = "radiation shutters"},/obj/item/tank/internals/plasma/full,/turf/open/floor/plating,/area/engine/supermatter) -"akC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/pool/Rboard,/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) -"akD" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"akE" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"akF" = (/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"akG" = (/obj/effect/turf_decal/bot_white/right,/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},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"akH" = (/obj/structure/sign/warning/radiation/rad_area{pixel_y = 32},/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"akI" = (/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"aks" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood) +"akt" = (/obj/machinery/door/airlock/public{dir = 4; id_tag = "small_sauna_2"; name = "Small Sauna #2 Bolts"},/obj/structure/fans/tiny,/turf/open/floor/wood) +"aku" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"akv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4}) +"akw" = (/obj/structure/pool/ladder,/turf/open/pool) +"akz" = (/obj/machinery/pool/drain,/turf/open/pool) +"akB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "engsm"; name = "radiation shutters"},/obj/item/tank/internals/plasma/full,/turf/open/floor/plating) +"akC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/pool/Rboard,/turf/open/floor/plasteel/yellowsiding{dir = 8}) +"akD" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel) +"akE" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel) +"akF" = (/turf/open/floor/plasteel/dark) +"akG" = (/obj/effect/turf_decal/bot_white/right,/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},/turf/open/floor/plasteel/dark) +"akH" = (/obj/structure/sign/warning/radiation/rad_area{pixel_y = 32},/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark) +"akI" = (/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark) "akJ" = (/turf/open/space,/area/maintenance/solars/starboard/fore) "akK" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/maintenance/solars/starboard/fore) "akL" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) @@ -576,39 +549,37 @@ "alp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "alq" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "alr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/warden) -"als" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"alt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alu" = (/obj/machinery/light{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alx" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alA" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 28},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alC" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"als" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"alt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"alu" = (/obj/machinery/light{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"alv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"alw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"alx" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"aly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"alz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"alA" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 28},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"alB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"alC" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) "alD" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/range) "alE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/range) "alF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/range) "alG" = (/obj/structure/rack,/obj/item/gun/energy/laser/practice{pixel_x = 2; pixel_y = -2},/obj/item/gun/energy/laser/practice{pixel_x = -3; pixel_y = 3},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Firing Range"; dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/range) -"alH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/coin/gold{pixel_x = 9},/obj/item/flashlight/lamp/green,/obj/structure/table/wood/poker,/turf/open/floor/carpet/orange,/area/crew_quarters/locker) -"alI" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"alJ" = (/obj/structure/chair/bench/right,/turf/open/floor/plaswood,/area/crew_quarters/fitness/pool) -"alK" = (/turf/closed/wall,/area/crew_quarters/fitness/pool) -"alL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/crew_quarters/fitness/pool) +"alH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/coin/gold{pixel_x = 9},/obj/item/flashlight/lamp/green,/obj/structure/table/wood/poker,/turf/open/floor/carpet/orange) +"alI" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"alJ" = (/obj/structure/chair/bench/right,/turf/open/floor/plaswood) +"alL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8}) "alM" = (/obj/machinery/button/door{id = "MaintDorm1"; name = "Dorm bolt control"; normaldoorcontrol = 1; pixel_x = -24; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/port/aft) -"alN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"alO" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness/pool) -"alT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"alU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"alV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 8; name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"alW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Holodeck"; dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"alX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"alO" = (/obj/structure/pool/Lboard,/turf/open/pool) +"alT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"alU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel) +"alV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 8; name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel) +"alW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Holodeck"; dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/machinery/light/small,/turf/open/floor/plasteel) +"alX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel) "alY" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard/fore) "alZ" = (/turf/closed/wall,/area/maintenance/starboard/fore) -"ama" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"amb" = (/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"amc" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"ama" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark) +"amb" = (/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark) +"amc" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark) "amd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "ame" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "amf" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/obj/structure/sign/warning/vacuum{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/disposal) @@ -644,36 +615,35 @@ "amJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "amK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "amL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/door/airlock/security/glass{dir = 8; name = "Gear Room"; req_one_access_txt = "1;4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/security/warden) -"amM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"amN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"amO" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"amP" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"amQ" = (/obj/machinery/photocopier{pixel_y = 3},/turf/open/floor/plasteel,/area/security/main) -"amR" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start/head_of_security,/turf/open/floor/plasteel,/area/security/main) -"amS" = (/obj/machinery/computer/card/minor/hos{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"amT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"amU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"amV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"amW" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 7},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"amM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"amN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"amO" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"amP" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"amQ" = (/obj/machinery/photocopier{pixel_y = 3},/turf/open/floor/plasteel) +"amR" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start/head_of_security,/turf/open/floor/plasteel) +"amS" = (/obj/machinery/computer/card/minor/hos{dir = 8},/turf/open/floor/plasteel) +"amT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"amU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"amV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"amW" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 7},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) "amX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{dir = 4; name = "Firing Range"; req_one_access_txt = "1;4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/range) "amY" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/range) "amZ" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/range) "ana" = (/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/structure/closet/crate/secure{desc = "A secure crate containing various materials for building a customised test-site."; name = "Firing Range Gear Crate"; req_access_txt = "1"},/obj/machinery/power/apc{areastring = "/area/security/range"; dir = 4; name = "Shooting Range APC"; pixel_x = 24},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/range) "anb" = (/obj/machinery/vending/mealdor,/turf/open/floor/plating,/area/maintenance/fore) -"anc" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark/side{dir = 6},/area/crew_quarters/fitness/recreation) -"anf" = (/obj/structure/pool/ladder{dir = 1; pixel_y = -24},/turf/open/pool,/area/crew_quarters/fitness/pool) -"anh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellowsiding/corner,/area/crew_quarters/fitness/pool) -"ani" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/obj/effect/turf_decal/tile/neutral,/obj/item/reagent_containers/rag/towel{pixel_x = -3; pixel_y = -4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"anj" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) -"ank" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/fitness/pool) +"anc" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark/side{dir = 6}) +"anf" = (/obj/structure/pool/ladder{dir = 1; pixel_y = -24},/turf/open/pool) +"anh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellowsiding/corner) +"ani" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed,/obj/effect/turf_decal/tile/neutral,/obj/item/reagent_containers/rag/towel{pixel_x = -3; pixel_y = -4},/turf/open/floor/plasteel) +"anj" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating) "anl" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/fore) "anm" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard/fore) "ann" = (/obj/machinery/door/airlock/external{req_one_access_txt = "13,8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ano" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"anp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"anq" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"anr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/bot_white/right,/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},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"ans" = (/obj/machinery/camera{c_tag = "Gravity Generator Room"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"ano" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark) +"anp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark) +"anq" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark) +"anr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/bot_white/right,/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},/turf/open/floor/plasteel/dark) +"ans" = (/obj/machinery/camera{c_tag = "Gravity Generator Room"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark) "ant" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "anu" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor{dir = 9; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) "anv" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) @@ -708,31 +678,30 @@ "anY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "anZ" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "aoa" = (/obj/machinery/vending/security,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aob" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Security - Office - Port"; dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aoc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/chair{dir = 4},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aod" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel,/area/security/main) -"aoe" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aof" = (/obj/structure/table/reinforced,/obj/item/folder/red{pixel_x = 3},/obj/item/folder/blue{pixel_x = -2; pixel_y = 3},/turf/open/floor/plasteel,/area/security/main) -"aog" = (/obj/structure/table/reinforced,/obj/item/paper,/turf/open/floor/plasteel,/area/security/main) -"aoh" = (/obj/structure/table/reinforced,/obj/item/book/manual/gato_spacelaw,/obj/item/taperecorder{pixel_x = -4},/turf/open/floor/plasteel,/area/security/main) -"aoi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aoj" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plasteel,/area/security/main) -"aok" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair{dir = 8},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aol" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/security/main"; dir = 4; name = "Security Office APC"; pixel_x = 24},/obj/structure/cable/yellow,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aob" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Security - Office - Port"; dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"aoc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/chair{dir = 4},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"aod" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel) +"aoe" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"aof" = (/obj/structure/table/reinforced,/obj/item/folder/red{pixel_x = 3},/obj/item/folder/blue{pixel_x = -2; pixel_y = 3},/turf/open/floor/plasteel) +"aog" = (/obj/structure/table/reinforced,/obj/item/paper,/turf/open/floor/plasteel) +"aoh" = (/obj/structure/table/reinforced,/obj/item/book/manual/gato_spacelaw,/obj/item/taperecorder{pixel_x = -4},/turf/open/floor/plasteel) +"aoi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"aoj" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plasteel) +"aok" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair{dir = 8},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"aol" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/security/main"; dir = 4; name = "Security Office APC"; pixel_x = 24},/obj/structure/cable/yellow,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) "aom" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_one_access_txt = "1;4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore) -"aon" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/button/door{id = "FitnessShower"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/mirror{pixel_x = -28},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/pool) -"aoo" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = -26},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"aop" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellowsiding/corner{dir = 4},/area/crew_quarters/fitness/pool) -"aoq" = (/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"aot" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"aou" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"aov" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/yellowsiding/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aon" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/button/door{id = "FitnessShower"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/mirror{pixel_x = -28},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/turf/open/floor/plasteel/freezer) +"aoo" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = -26},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aop" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellowsiding/corner{dir = 4}) +"aoq" = (/turf/open/floor/plasteel/yellowsiding{dir = 1}) +"aot" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/yellowsiding{dir = 1}) +"aou" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellowsiding{dir = 1}) +"aov" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/yellowsiding/corner{dir = 1}) "aow" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aox" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aoy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"aoz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"aoA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"aoB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"aoy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark) +"aoA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark) +"aoB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark) "aoC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "aoD" = (/turf/open/floor/plating/airless,/area/space/nearstation) "aoE" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space/nearstation) @@ -770,45 +739,45 @@ "apk" = (/obj/machinery/light{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/security/warden"; dir = 8; name = "Brig Control APC"; pixel_x = -26},/obj/structure/cable/yellow,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "apl" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "apm" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"apn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apo" = (/obj/structure/table,/obj/item/restraints/handcuffs,/obj/item/radio/off,/turf/open/floor/plasteel,/area/security/main) -"app" = (/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apq" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aps" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apt" = (/obj/structure/table,/obj/item/folder/red,/obj/item/clothing/mask/gas/sechailer,/obj/item/book/manual/gato_spacelaw,/obj/item/book/manual/gato_spacelaw,/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel,/area/security/main) -"apu" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"apv" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Security Delivery"; req_access_txt = "1"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main) -"apw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "Security"},/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/main) +"apn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"apo" = (/obj/structure/table,/obj/item/restraints/handcuffs,/obj/item/radio/off,/turf/open/floor/plasteel) +"app" = (/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"apq" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"apr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"aps" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"apt" = (/obj/structure/table,/obj/item/folder/red,/obj/item/clothing/mask/gas/sechailer,/obj/item/book/manual/gato_spacelaw,/obj/item/book/manual/gato_spacelaw,/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel) +"apu" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"apv" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Security Delivery"; req_access_txt = "1"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"apw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "Security"},/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) "apx" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/fore) "apy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/fore) "apz" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "apA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/maintenance/fore) "apB" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/fore) "apC" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/maintenance/fore) -"apD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/table/wood/poker,/turf/open/floor/carpet/orange,/area/crew_quarters/locker) +"apD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/table/wood/poker,/turf/open/floor/carpet/orange) "apE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/fore) "apF" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) "apG" = (/obj/machinery/door/airlock/maintenance{dir = 4; req_one_access_txt = "1;4;38;12"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"apH" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"apI" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"apJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"apK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"apL" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers"; location = "14.5-Recreation"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"apM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"apN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"apO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"apH" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"apI" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel) +"apJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"apK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"apL" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers"; location = "14.5-Recreation"},/turf/open/floor/plasteel) +"apM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"apN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"apO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) "apP" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/starboard/fore) "apQ" = (/turf/open/floor/plating,/area/maintenance/starboard/fore) "apR" = (/obj/structure/table,/obj/item/tank/internals/emergency_oxygen{pixel_x = -8},/obj/item/tank/internals/emergency_oxygen{pixel_x = -8},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/effect/decal/cleanable/cobweb,/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore) "apS" = (/obj/structure/rack,/obj/item/storage/belt{desc = "Can hold quite a lot of stuff."; name = "multi-belt"},/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/open/floor/plating,/area/maintenance/starboard/fore) "apT" = (/obj/structure/easel,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard/fore) "apU" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/item/reagent_containers/food/drinks/beer{desc = "Takes you to a whole new level of thinking."; name = "Meta-Cider"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"apV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/gravity_generator) -"apW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/gravity_generator) -"apX" = (/obj/machinery/door/airlock/command/glass{name = "Gravity Generator Area"; req_access_txt = "19; 61"},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"apY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/gravity_generator) -"apZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/gravity_generator) +"apV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating) +"apW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating) +"apX" = (/obj/machinery/door/airlock/command/glass{name = "Gravity Generator Area"; req_access_txt = "19; 61"},/turf/open/floor/plasteel/dark) +"apY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating) +"apZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating) "aqa" = (/turf/closed/wall,/area/maintenance/solars/starboard/fore) "aqb" = (/obj/machinery/power/solar_control{id = "forestarboard"; name = "Starboard Bow Solar Control"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "aqc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) @@ -842,40 +811,38 @@ "aqE" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "aqF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "aqG" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/machinery/camera{c_tag = "Security - Gear Room"; dir = 8},/obj/machinery/vending/wardrobe/sec_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aqH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aqI" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/chair{dir = 4},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aqJ" = (/obj/structure/table,/obj/item/folder/red,/obj/item/storage/fancy/cigarettes,/obj/item/clothing/mask/gas/sechailer,/turf/open/floor/plasteel,/area/security/main) -"aqK" = (/obj/structure/table,/obj/item/folder/red,/obj/item/restraints/handcuffs,/turf/open/floor/plasteel,/area/security/main) -"aqL" = (/obj/structure/table,/obj/item/folder/red,/obj/item/storage/secure/briefcase,/turf/open/floor/plasteel,/area/security/main) -"aqM" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aqN" = (/obj/structure/table,/obj/item/folder/red,/obj/item/assembly/flash/handheld,/turf/open/floor/plasteel,/area/security/main) -"aqO" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/syndicatebomb/training,/turf/open/floor/plasteel,/area/security/main) -"aqP" = (/obj/structure/table,/obj/item/folder/red,/obj/item/pen,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel,/area/security/main) -"aqQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Security - Office - Starboard"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aqR" = (/turf/closed/wall/r_wall,/area/security/main) +"aqH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"aqI" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/chair{dir = 4},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"aqJ" = (/obj/structure/table,/obj/item/folder/red,/obj/item/storage/fancy/cigarettes,/obj/item/clothing/mask/gas/sechailer,/turf/open/floor/plasteel) +"aqK" = (/obj/structure/table,/obj/item/folder/red,/obj/item/restraints/handcuffs,/turf/open/floor/plasteel) +"aqL" = (/obj/structure/table,/obj/item/folder/red,/obj/item/storage/secure/briefcase,/turf/open/floor/plasteel) +"aqM" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"aqN" = (/obj/structure/table,/obj/item/folder/red,/obj/item/assembly/flash/handheld,/turf/open/floor/plasteel) +"aqO" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/syndicatebomb/training,/turf/open/floor/plasteel) +"aqP" = (/obj/structure/table,/obj/item/folder/red,/obj/item/pen,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel) +"aqQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Security - Office - Starboard"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) "aqS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/maintenance/fore) -"aqT" = (/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/structure/chair/comfy{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"aqU" = (/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/structure/table/glass,/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"aqV" = (/obj/structure/sign/poster/official/random{pixel_y = -32},/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/structure/chair/comfy{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"aqW" = (/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/structure/table,/obj/item/reagent_containers/rag/towel,/obj/item/reagent_containers/rag/towel{pixel_y = 3},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"aqX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"aqY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"aqZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"ara" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_y = -26},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera{c_tag = "Fitness Room - Aft"; dir = 1},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"arb" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/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/machinery/vending/mealdor,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"arc" = (/obj/machinery/light,/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/machinery/vending/gato,/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"ard" = (/obj/machinery/vending/cigarette,/obj/structure/extinguisher_cabinet{pixel_x = 27},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/fitness/pool) -"are" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/crew_quarters/fitness/pool) -"arf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness/pool) -"arg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/fitness/pool) -"arh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/clothing/under/maid,/obj/item/clothing/head/kitty,/turf/open/floor/carpet/orange,/area/maintenance/port/fore) +"aqT" = (/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/structure/chair/comfy{dir = 4},/turf/open/floor/plasteel/dark) +"aqU" = (/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/structure/table/glass,/obj/machinery/light,/turf/open/floor/plasteel/dark) +"aqV" = (/obj/structure/sign/poster/official/random{pixel_y = -32},/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/structure/chair/comfy{dir = 8},/turf/open/floor/plasteel/dark) +"aqW" = (/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/structure/table,/obj/item/reagent_containers/rag/towel,/obj/item/reagent_containers/rag/towel{pixel_y = 3},/turf/open/floor/plasteel/dark) +"aqX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aqY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel) +"aqZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"ara" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_y = -26},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera{c_tag = "Fitness Room - Aft"; dir = 1},/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},/turf/open/floor/plasteel/dark) +"arb" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/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/machinery/vending/mealdor,/turf/open/floor/plasteel/dark) +"arc" = (/obj/machinery/light,/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/machinery/vending/gato,/turf/open/floor/plasteel/dark) +"ard" = (/obj/machinery/vending/cigarette,/obj/structure/extinguisher_cabinet{pixel_x = 27},/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},/turf/open/floor/plasteel/dark) +"are" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall) +"arf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall) +"arh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/clothing/under/costume/maid,/obj/item/clothing/head/kitty,/turf/open/floor/carpet/orange,/area/maintenance/port/fore) "ari" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard/fore) "arj" = (/obj/item/mmi{name = "man-machine interface"},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ark" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/engine/gravity_generator"; dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"arl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"arm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"arn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"aro" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/power/port_gen/pacman,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"ark" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/engine/gravity_generator"; dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel) +"arl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"arm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"arn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aro" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/power/port_gen/pacman,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) "arp" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/camera/autoname{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "arq" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "arr" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) @@ -918,27 +885,26 @@ "asc" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "asd" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "ase" = (/obj/machinery/newscaster/security_unit,/turf/closed/wall,/area/security/warden) -"asf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"asg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"ash" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"asi" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"asj" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"ask" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"asl" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"asm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"asn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aso" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{dir = 4; name = "Interrogation Monitoring"; req_one_access_txt = "1;4"},/turf/open/floor/plasteel/grimy,/area/security/main) -"asp" = (/turf/open/floor/plasteel/grimy,/area/security/main) -"asq" = (/obj/machinery/computer/security/telescreen/interrogation{pixel_y = 32},/turf/open/floor/plasteel/grimy,/area/security/main) -"asr" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/grimy,/area/security/main) -"ass" = (/obj/item/phone{desc = "Who can it be now?"; pixel_x = -3; pixel_y = 3},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/structure/table/wood,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/grimy,/area/security/main) -"ast" = (/obj/machinery/door/airlock/public{dir = 4; id_tag = "small_sauna_1"; name = "Small Sauna #2 Bolts"},/obj/structure/fans/tiny,/turf/open/floor/wood,/area/crew_quarters/fitness/pool) +"asf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"asg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"ash" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"asi" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"asj" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"ask" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"asl" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"asm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"asn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel) +"aso" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{dir = 4; name = "Interrogation Monitoring"; req_one_access_txt = "1;4"},/turf/open/floor/plasteel/grimy) +"asp" = (/turf/open/floor/plasteel/grimy) +"asq" = (/obj/machinery/computer/security/telescreen/interrogation{pixel_y = 32},/turf/open/floor/plasteel/grimy) +"asr" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/grimy) +"ass" = (/obj/item/phone{desc = "Who can it be now?"; pixel_x = -3; pixel_y = 3},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/structure/table/wood,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/grimy) +"ast" = (/obj/machinery/door/airlock/public{dir = 4; id_tag = "small_sauna_1"; name = "Small Sauna #2 Bolts"},/obj/structure/fans/tiny,/turf/open/floor/wood) "asu" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/item/trash/can,/turf/open/floor/carpet,/area/maintenance/fore) "asv" = (/obj/structure/bed,/obj/item/bedsheet/random,/obj/item/toy/plush/random,/turf/open/floor/carpet,/area/maintenance/fore) -"asw" = (/turf/closed/wall,/area/crew_quarters/dorms) -"asx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Recreation Area"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"asy" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/dorms) -"asz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Recreation Area"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"asx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Recreation Area"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"asy" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall) +"asz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Recreation Area"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) "asA" = (/obj/structure/closet,/obj/item/poster/random_contraband,/obj/item/poster/random_contraband,/obj/item/poster/random_contraband,/obj/item/poster/random_contraband,/obj/item/poster/random_contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore) "asB" = (/obj/structure/closet,/obj/item/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard/fore) "asC" = (/obj/structure/rack,/obj/item/extinguisher,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore) @@ -947,12 +913,12 @@ "asF" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard/fore) "asG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/fore) "asH" = (/obj/structure/rack,/obj/item/book/manual/wiki/engineering_guide{pixel_x = 3; pixel_y = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"asI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"asJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"asK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"asL" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"asM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/power/terminal,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"asN" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/structure/cable{icon_state = "1-2"},/obj/structure/chair/office/light,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"asI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall) +"asJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel) +"asK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"asL" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"asM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/power/terminal,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"asN" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/structure/cable{icon_state = "1-2"},/obj/structure/chair/office/light,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) "asO" = (/obj/machinery/power/apc{areastring = "/area/maintenance/solars/starboard/fore"; dir = 8; name = "Starboard Bow Solar APC"; pixel_x = -25; pixel_y = 3},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "asP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "asQ" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) @@ -986,42 +952,39 @@ "ats" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "att" = (/obj/structure/table,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/folder/red,/obj/item/restraints/handcuffs,/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "atu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) -"atv" = (/obj/vehicle/ridden/secway,/obj/item/key/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atw" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aty" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atA" = (/obj/machinery/light,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atC" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atF" = (/obj/machinery/rnd/production/techfab/department/security,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"atG" = (/obj/structure/chair,/obj/structure/window/reinforced/tinted,/turf/open/floor/plasteel/grimy,/area/security/main) -"atH" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/structure/table/wood,/obj/item/radio/intercom{freerange = 1; frequency = 1424; name = "Interrogation Intercom"; pixel_y = -31},/turf/open/floor/plasteel/grimy,/area/security/main) +"atv" = (/obj/vehicle/ridden/secway,/obj/item/key/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atw" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"aty" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atA" = (/obj/machinery/light,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atC" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atF" = (/obj/machinery/rnd/production/techfab/department/security,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"atG" = (/obj/structure/chair,/obj/structure/window/reinforced/tinted,/turf/open/floor/plasteel/grimy) +"atH" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/structure/table/wood,/obj/item/radio/intercom{freerange = 1; frequency = 1424; name = "Interrogation Intercom"; pixel_y = -31},/turf/open/floor/plasteel/grimy) "atI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/book/manual/blubbery_bartender,/turf/open/floor/plating,/area/maintenance/fore) "atJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/abandoned{dir = 8; name = "Storage Room"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fore) -"atK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/clothing/under/polychromic/stripper,/turf/open/floor/plating,/area/maintenance/fore) +"atK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fore) "atL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/carpet,/area/maintenance/fore) -"atM" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_y = 32},/obj/item/lighter,/turf/open/floor/wood,/area/crew_quarters/dorms) -"atN" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/wood,/area/crew_quarters/dorms) -"atO" = (/obj/machinery/button/door{id = "Cabin3"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/double_bed,/obj/item/bedsheet/double_blue,/turf/open/floor/wood,/area/crew_quarters/dorms) -"atP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/dorms) -"atQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"atR" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"atS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"atT" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/machinery/button/door{id = "Cabin4"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/bed,/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"atU" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"atV" = (/obj/structure/dresser,/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"atM" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_y = 32},/obj/item/lighter,/turf/open/floor/wood) +"atN" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/wood) +"atO" = (/obj/machinery/button/door{id = "Cabin3"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/bed/double,/obj/item/bedsheet/double_blue,/turf/open/floor/wood) +"atQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"atS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"atT" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/machinery/button/door{id = "Cabin4"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/bed,/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/carpet) +"atU" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/carpet) +"atV" = (/obj/structure/dresser,/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/carpet) "atW" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore) "atX" = (/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/starboard/fore) "atY" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard/fore) "atZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aua" = (/turf/closed/wall,/area/engine/gravity_generator) -"aub" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"auc" = (/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Room"; req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"aud" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"aue" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/table,/obj/item/paper/guides/jobs/engi/gravity_gen,/obj/item/pen/blue,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"aub" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall) +"auc" = (/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Room"; req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel) +"aud" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aue" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/table,/obj/item/paper/guides/jobs/engi/gravity_gen,/obj/item/pen/blue,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) "auf" = (/obj/machinery/space_heater,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard/fore) "aug" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/engineering{name = "Starboard Bow Solar Access"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) "auh" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall,/area/maintenance/solars/starboard/fore) @@ -1030,9 +993,8 @@ "auk" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/port/fore) "aul" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/port/fore) "aum" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore) -"aun" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/flora/junglebush/c,/turf/open/floor/grass,/area/crew_quarters/fitness/pool) +"aun" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/flora/junglebush/c,/turf/open/floor/grass) "aup" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Mining Dock Maintenance"; req_access_txt = "48"},/turf/open/floor/plating,/area/maintenance/port/fore) -"auq" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) "aur" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore) "aus" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) "aut" = (/obj/item/cigbutt,/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/starboard/fore) @@ -1056,27 +1018,24 @@ "auL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/warden) "auM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Gear Room"; req_one_access_txt = "1;4"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/warden) "auN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/warden) -"auO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/main) -"auP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/security/glass{bound_width = 64; doorOpen = 'sound/machines/bigairlockopen.ogg'; icon = 'icons/obj/doors/airlocks/station/securitydouble.dmi'; id_tag = "innerbrig"; name = "Security Office"; note_overlay_file = 'icons/obj/doors/airlocks/station/overlaysdouble.dmi'; overlays_file = 'icons/obj/doors/airlocks/station/overlaysdouble.dmi'; req_one_access_txt = "1;4"},/turf/open/floor/plasteel,/area/security/main) -"auQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/main) -"auR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating,/area/security/main) -"auS" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/security/main) -"auT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/main) -"auU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main) +"auO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/turf/open/floor/plating) +"auP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/security/glass{bound_width = 64; doorOpen = 'sound/machines/bigairlockopen.ogg'; icon = 'icons/obj/doors/airlocks/station/securitydouble.dmi'; id_tag = "innerbrig"; name = "Security Office"; note_overlay_file = 'icons/obj/doors/airlocks/station/overlaysdouble.dmi'; overlays_file = 'icons/obj/doors/airlocks/station/overlaysdouble.dmi'; req_one_access_txt = "1;4"},/turf/open/floor/plasteel) +"auQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"auR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating) +"auT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating) "auV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fore) "auW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/burger/superbite{pixel_x = -10; pixel_y = 10},/obj/item/reagent_containers/food/snacks/chocolatebunny{pixel_x = 10; pixel_y = 10},/obj/item/reagent_containers/food/snacks/store/cake/birthday{pixel_x = -3; pixel_y = -5},/turf/open/floor/carpet,/area/maintenance/fore) "auX" = (/obj/item/trash/syndi_cakes,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore) -"auY" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/wood,/area/crew_quarters/dorms) -"auZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) -"ava" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/wood,/area/crew_quarters/dorms) -"avb" = (/obj/machinery/door/airlock{dir = 4; id_tag = "Cabin3"; name = "Cabin 6"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) -"avc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"ave" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avf" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Cabin4"; name = "Cabin 5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) -"avg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"avh" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"avi" = (/turf/open/floor/carpet,/area/crew_quarters/dorms) +"auY" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/wood) +"auZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood) +"ava" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/wood) +"avb" = (/obj/machinery/door/airlock{dir = 4; id_tag = "Cabin3"; name = "Cabin 6"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood) +"avc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"avd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"ave" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"avf" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Cabin4"; name = "Cabin 5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood) +"avg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet) +"avh" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet) "avj" = (/obj/structure/mopbucket,/obj/item/mop,/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard/fore) "avk" = (/obj/structure/closet/crate/hydroponics,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore) "avl" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/fore) @@ -1084,9 +1043,9 @@ "avn" = (/obj/structure/closet,/obj/item/stock_parts/matter_bin,/turf/open/floor/plating,/area/maintenance/starboard/fore) "avo" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard/fore) "avp" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"avq" = (/obj/structure/closet/radiation,/obj/structure/sign/warning/radiation/rad_area{dir = 1; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"avr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"avs" = (/obj/machinery/camera{c_tag = "Gravity Generator Foyer"},/obj/structure/closet/radiation,/obj/structure/sign/warning/radiation/rad_area{dir = 1; pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"avq" = (/obj/structure/closet/radiation,/obj/structure/sign/warning/radiation/rad_area{dir = 1; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"avr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel) +"avs" = (/obj/machinery/camera{c_tag = "Gravity Generator Foyer"},/obj/structure/closet/radiation,/obj/structure/sign/warning/radiation/rad_area{dir = 1; pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) "avt" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard/fore) "avu" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) "avv" = (/obj/item/clothing/suit/poncho,/obj/item/clothing/head/sombrero,/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/starboard/fore) @@ -1095,7 +1054,6 @@ "avy" = (/obj/structure/closet/emcloset,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore) "avz" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) "avA" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating/airless,/area/space/nearstation) -"avB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) "avC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) "avD" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/port/fore) "avE" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/port/fore) @@ -1126,20 +1084,18 @@ "awd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/computer/security/telescreen/interrogation{dir = 8; pixel_x = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) "awe" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/brig) "awf" = (/turf/open/floor/plasteel/dark,/area/security/brig) -"awg" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"awh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"awi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"awj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/dorms) -"awk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/dorms) +"awg" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"awh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel) +"awi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) "awl" = (/obj/item/cigbutt,/obj/effect/turf_decal/stripes/line,/obj/item/book/manual/fatty_chems,/turf/open/floor/plating,/area/maintenance/starboard/fore) "awm" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard/fore) "awn" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/starboard/fore) "awo" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) "awp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/warning/radiation/rad_area{dir = 1; pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) "awq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 4; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"awr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"aws" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"awt" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"awr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel) +"aws" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel) +"awt" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) "awu" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 8; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore) "awv" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/warning/radiation/rad_area{dir = 1; pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore) "aww" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/port) @@ -1190,26 +1146,24 @@ "axr" = (/obj/structure/table,/obj/item/flashlight/lamp,/turf/open/floor/plasteel/dark,/area/security/brig) "axs" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) "axt" = (/obj/machinery/camera{c_tag = "Interrogation room"; dir = 8; network = list("interrogation")},/turf/open/floor/plasteel/dark,/area/security/brig) -"axu" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/vending/snack/orange,/turf/open/floor/wood,/area/library) -"axv" = (/obj/machinery/light/small{dir = 1},/obj/machinery/newscaster{pixel_y = 32},/obj/structure/dresser,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axw" = (/obj/machinery/button/door{id = "Cabin2"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/double_bed,/obj/item/bedsheet/double_red,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Dormitories - Fore"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"axy" = (/obj/machinery/button/door{id = "Cabin5"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/bed,/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/wood,/area/crew_quarters/dorms) -"axz" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/table/wood,/obj/item/paper,/turf/open/floor/wood,/area/crew_quarters/dorms) +"axu" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/vending/snack/orange,/turf/open/floor/wood) +"axv" = (/obj/machinery/light/small{dir = 1},/obj/machinery/newscaster{pixel_y = 32},/obj/structure/dresser,/turf/open/floor/carpet) +"axw" = (/obj/machinery/button/door{id = "Cabin2"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/bed/double,/obj/item/bedsheet/double_red,/turf/open/floor/carpet) +"axx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Dormitories - Fore"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"axy" = (/obj/machinery/button/door{id = "Cabin5"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/bed,/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/wood) +"axz" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/table/wood,/obj/item/paper,/turf/open/floor/wood) "axA" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Storage Room"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/fore) "axB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) -"axC" = (/turf/closed/wall/r_wall,/area/engine/engineering) -"axD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Foyer"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"axD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Foyer"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel) "axE" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/fore) "axF" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore) "axG" = (/obj/structure/chair/comfy{dir = 1},/turf/open/floor/carpet/purple,/area/maintenance/port/fore) "axH" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore) -"axI" = (/obj/structure/table/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/reagent_containers/glass/bucket{pixel_x = 8; pixel_y = 9},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood,/area/crew_quarters/fitness/pool) +"axI" = (/obj/structure/table/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/reagent_containers/glass/bucket{pixel_x = 8; pixel_y = 9},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood) "axJ" = (/obj/structure/closet/crate,/obj/item/coin/silver,/turf/open/floor/plating,/area/maintenance/port/fore) "axK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore) "axL" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/light/small{pixel_x = -4},/turf/open/floor/plating,/area/maintenance/port/fore) "axM" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"axN" = (/turf/closed/wall/r_wall,/area/security/nuke_storage) "axO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) "axP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) "axQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/security/brig) @@ -1239,15 +1193,12 @@ "ayo" = (/obj/structure/table,/obj/item/folder/red,/obj/item/taperecorder,/obj/item/radio/intercom{broadcasting = 1; freerange = 1; frequency = 1424; listening = 0; name = "Interrogation Intercom"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) "ayp" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) "ayq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"ayr" = (/turf/closed/wall,/area/crew_quarters/toilet/restrooms) -"ays" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayu" = (/obj/machinery/door/airlock{dir = 4; id_tag = "Cabin2"; name = "Cabin 4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) -"ayv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"ayw" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Cabin5"; name = "Cabin 3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) -"ayx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/dorms) -"ayy" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/light/small,/turf/open/floor/wood,/area/crew_quarters/dorms) -"ayz" = (/obj/item/caution,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ayt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet) +"ayu" = (/obj/machinery/door/airlock{dir = 4; id_tag = "Cabin2"; name = "Cabin 4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood) +"ayv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"ayw" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Cabin5"; name = "Cabin 3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood) +"ayx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood) +"ayy" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/light/small,/turf/open/floor/wood) "ayA" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard/fore) "ayC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/cigbutt,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) "ayD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) @@ -1256,29 +1207,26 @@ "ayG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) "ayH" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/port/fore) "ayI" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ayJ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Engineering"},/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) -"ayK" = (/obj/machinery/door/window/southright{dir = 4; name = "Engineering Deliveries"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) -"ayL" = (/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"ayM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"ayN" = (/obj/machinery/light_switch{pixel_x = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8; name = "emergency shower"},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering) -"ayO" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ayP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ayQ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ayR" = (/obj/structure/table/reinforced,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath{pixel_x = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"ayJ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Engineering"},/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"ayK" = (/obj/machinery/door/window/southright{dir = 4; name = "Engineering Deliveries"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"ayL" = (/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"ayM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"ayN" = (/obj/machinery/light_switch{pixel_x = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8; name = "emergency shower"},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) +"ayO" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark) +"ayP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel/dark) +"ayQ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark) +"ayR" = (/obj/structure/table/reinforced,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath{pixel_x = 4},/turf/open/floor/plasteel/dark) "ayS" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass{amount = 10},/obj/item/stack/rods,/turf/open/floor/plating/airless,/area/space/nearstation) "ayT" = (/obj/structure/grille,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore) -"ayU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningoffice) -"ayV" = (/turf/closed/wall,/area/quartermaster/miningoffice) -"ayW" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/miningoffice) +"ayW" = (/obj/machinery/status_display/supply,/turf/closed/wall) "ayX" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/mining{name = "Cargo Bay"; req_one_access_txt = "48;50"},/turf/open/floor/plating,/area/maintenance/port/fore) -"ayY" = (/turf/closed/wall,/area/quartermaster/warehouse) "ayZ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/mining{name = "Cargo Bay"; req_one_access_txt = "48;50"},/turf/open/floor/plating,/area/maintenance/port/fore) "aza" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore) -"azb" = (/obj/machinery/computer/bank_machine,/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) -"azc" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/circuit/green{luminosity = 2},/area/security/nuke_storage) -"azd" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/circuit/green{luminosity = 2},/area/security/nuke_storage) -"aze" = (/obj/machinery/power/apc{areastring = "/area/security/nuke_storage"; dir = 1; name = "Vault APC"; pixel_y = 25},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/security/nuke_storage) -"azf" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) +"azb" = (/obj/machinery/computer/bank_machine,/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark) +"azc" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/circuit/green{luminosity = 2}) +"azd" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/circuit/green{luminosity = 2}) +"aze" = (/obj/machinery/power/apc{areastring = "/area/security/nuke_storage"; dir = 1; name = "Vault APC"; pixel_y = 25},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/circuit/green{luminosity = 2}) +"azf" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/obj/effect/turf_decal/bot_white,/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},/turf/open/floor/plasteel/dark) "azg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/brig) "azh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 1"; name = "Cell 1"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) "azi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/brig) @@ -1295,42 +1243,41 @@ "azt" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/detectives_office) "azu" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "detective_shutters"; name = "detective's office shutters"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/detectives_office) "azv" = (/turf/closed/wall,/area/security/detectives_office) -"azw" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"azx" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/airalarm{pixel_y = 26},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"azy" = (/obj/machinery/shower{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"azz" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"azA" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"azB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"azw" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer) +"azx" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/airalarm{pixel_y = 26},/turf/open/floor/plasteel/freezer) +"azy" = (/obj/machinery/shower{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer) +"azz" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"azA" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel) +"azB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) "azC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/starboard/fore) "azD" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"azE" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/turf/open/floor/plasteel,/area/engine/engineering) -"azF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"azG" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{sortType = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"azH" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"azI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Supermatter Engine"; req_access_txt = "10"},/turf/open/floor/plating,/area/engine/engineering) -"azJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"azK" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"azL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"azM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/engine/engineering) +"azE" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/turf/open/floor/plasteel) +"azF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"azG" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{sortType = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel) +"azH" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel) +"azI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Supermatter Engine"; req_access_txt = "10"},/turf/open/floor/plating) +"azJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark) +"azK" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark) +"azL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark) +"azM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall) "azN" = (/obj/item/stack/cable_coil,/turf/open/floor/plating/airless,/area/space/nearstation) "azO" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/port/fore) -"azP" = (/obj/item/stack/ore/iron,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"azQ" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"azR" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"azS" = (/obj/structure/closet/crate,/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"azT" = (/obj/machinery/power/apc{areastring = "/area/quartermaster/miningoffice"; dir = 1; name = "Mining APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light_switch{pixel_y = 38},/obj/structure/closet/wardrobe/miner,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"azU" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"azV" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency{pixel_x = 2; pixel_y = -3},/obj/item/storage/toolbox/emergency,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"azW" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"azX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"azY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"azZ" = (/obj/machinery/airalarm{pixel_y = 28},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aAa" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aAb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/bot_white/right,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) -"aAc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/circuit/green{luminosity = 2},/area/security/nuke_storage) -"aAd" = (/obj/machinery/nuclearbomb/selfdestruct,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) -"aAe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/circuit/green{luminosity = 2},/area/security/nuke_storage) -"aAf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) +"azP" = (/obj/item/stack/ore/iron,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"azQ" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"azR" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"azS" = (/obj/structure/closet/crate,/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"azT" = (/obj/machinery/power/apc{areastring = "/area/quartermaster/miningoffice"; dir = 1; name = "Mining APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light_switch{pixel_y = 38},/obj/structure/closet/wardrobe/miner,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel) +"azU" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"azV" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency{pixel_x = 2; pixel_y = -3},/obj/item/storage/toolbox/emergency,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"azW" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel) +"azX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel) +"azZ" = (/obj/machinery/airalarm{pixel_y = 28},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel) +"aAa" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel) +"aAb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/bot_white/right,/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},/turf/open/floor/plasteel/dark) +"aAc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/circuit/green{luminosity = 2}) +"aAd" = (/obj/machinery/nuclearbomb/selfdestruct,/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},/turf/open/floor/plasteel/dark) +"aAe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/circuit/green{luminosity = 2}) +"aAf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark) "aAg" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/fore) "aAh" = (/turf/closed/wall,/area/hallway/primary/fore) "aAi" = (/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) @@ -1359,56 +1306,50 @@ "aAF" = (/obj/item/stack/sheet/cardboard,/obj/item/flashlight,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aAG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore) "aAH" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/fore) -"aAI" = (/obj/structure/mirror{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aAJ" = (/obj/effect/landmark/xeno_spawn,/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aAK" = (/obj/structure/mirror{pixel_x = 28},/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aAL" = (/obj/machinery/washing_machine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aAM" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 28},/obj/item/clothing/accessory/waistcoat,/obj/item/clothing/suit/toggle/lawyer/black,/obj/item/clothing/neck/tie/black,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aAN" = (/obj/machinery/washing_machine,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aAO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aAP" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aAQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aAI" = (/obj/structure/mirror{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel/freezer) +"aAJ" = (/obj/effect/landmark/xeno_spawn,/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/freezer) +"aAK" = (/obj/structure/mirror{pixel_x = 28},/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer) +"aAL" = (/obj/machinery/washing_machine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"aAM" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 28},/obj/item/clothing/accessory/waistcoat,/obj/item/clothing/suit/toggle/lawyer/black,/obj/item/clothing/neck/tie/black,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"aAN" = (/obj/machinery/washing_machine,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"aAO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aAP" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel) +"aAQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) "aAR" = (/obj/machinery/door/airlock/maintenance{dir = 8; req_access_txt = "12"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) "aAS" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore) "aAT" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) "aAU" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "aAV" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/port/fore) "aAW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) -"aAX" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) -"aAY" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"aAZ" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"aBa" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/camera{c_tag = "Engineering - Fore"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"aBb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering) -"aBc" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aBd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aBe" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aBf" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 4; network = list("ss13","engine")},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aBg" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aBh" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aBi" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aBj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aBk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) +"aAX" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aAY" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel) +"aAZ" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"aBa" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/camera{c_tag = "Engineering - Fore"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aBb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) +"aBc" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel) +"aBd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aBe" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aBf" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 4; network = list("ss13","engine")},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/turf/open/floor/plasteel/dark) +"aBg" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel/dark) +"aBh" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel/dark) +"aBi" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel/dark) +"aBj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel/dark) "aBl" = (/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; roundstart_template = /datum/map_template/shuttle/mining/box; width = 7},/turf/open/space/basic,/area/space) -"aBm" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningoffice) -"aBn" = (/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aBo" = (/obj/machinery/door/airlock/mining/glass{name = "Mining Dock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aBp" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aBq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aBr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aBs" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aBt" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"aBm" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating) +"aBo" = (/obj/machinery/door/airlock/mining/glass{name = "Mining Dock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel) +"aBp" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aBs" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel) +"aBt" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel) "aBu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/stairs{dir = 1},/area/maintenance/port/fore) -"aBv" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aBw" = (/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aBx" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aBy" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aBz" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aBx" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel) +"aBy" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"aBz" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel) "aBA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"aBB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/bot_white/right,/obj/structure/closet/crate/goldcrate,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) -"aBC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/security/nuke_storage) -"aBD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/security/nuke_storage) -"aBE" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/circuit/green{luminosity = 2},/area/security/nuke_storage) -"aBF" = (/obj/effect/turf_decal/bot_white/left,/obj/structure/closet/crate/silvercrate,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) +"aBB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/bot_white/right,/obj/structure/closet/crate/goldcrate,/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},/turf/open/floor/plasteel/dark) +"aBC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2}) +"aBD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2}) +"aBE" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/circuit/green{luminosity = 2}) +"aBF" = (/obj/effect/turf_decal/bot_white/left,/obj/structure/closet/crate/silvercrate,/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},/turf/open/floor/plasteel/dark) "aBG" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/box; width = 9},/turf/open/space/basic,/area/space) "aBH" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "aBI" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Labor Shuttle Dock"; dir = 8},/obj/machinery/flasher{id = "PRelease"; pixel_x = 24; pixel_y = 20},/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) @@ -1434,51 +1375,47 @@ "aCc" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore) "aCd" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/fore) "aCe" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fore) -"aCf" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aCg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aCh" = (/obj/machinery/shower{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aCi" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aCj" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aCk" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light/small{dir = 1},/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms"; dir = 1; name = "Dormitories APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aCl" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aCm" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aCn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/warning/pods{pixel_x = 30},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aCf" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer) +"aCg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer) +"aCh" = (/obj/machinery/shower{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/freezer) +"aCi" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aCj" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aCk" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light/small{dir = 1},/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms"; dir = 1; name = "Dormitories APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aCl" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aCm" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aCn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/warning/pods{pixel_x = 30},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) "aCo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard/fore) -"aCp" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/turf_decal/bot{dir = 1},/obj/structure/closet/crate/solarpanel_defence,/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aCq" = (/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aCr" = (/obj/structure/tank_dispenser,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aCs" = (/obj/machinery/camera{c_tag = "Engineering - Storage"},/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aCt" = (/obj/item/stack/sheet/plasteel{amount = 10; pixel_x = -2; pixel_y = 2},/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 30; pixel_x = 2; pixel_y = -2},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aCu" = (/turf/closed/wall,/area/engine/engineering) -"aCv" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"aCw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"aCx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"aCy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/engine/engineering) -"aCz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"aCA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/rnd/production/circuit_imprinter,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"aCB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/rnd/production/protolathe/department/engineering,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"aCC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/rdconsole/production{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"aCD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"aCE" = (/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aCF" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aCG" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste,/turf/open/floor/plating/airless,/area/engine/engineering) +"aCp" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/turf_decal/bot{dir = 1},/obj/structure/closet/crate/solarpanel_defence,/turf/open/floor/plasteel{dir = 1}) +"aCq" = (/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aCr" = (/obj/structure/tank_dispenser,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aCs" = (/obj/machinery/camera{c_tag = "Engineering - Storage"},/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aCt" = (/obj/item/stack/sheet/plasteel{amount = 10; pixel_x = -2; pixel_y = 2},/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 30; pixel_x = 2; pixel_y = -2},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aCv" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"aCw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aCx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel) +"aCy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel) +"aCz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"aCA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/rnd/production/circuit_imprinter,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"aCB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/rnd/production/protolathe/department/engineering,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aCC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/rdconsole/production{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aCD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating) +"aCF" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/turf/open/floor/plasteel/dark) +"aCG" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste,/turf/open/floor/plating/airless) "aCH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/trash_pile,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore) -"aCI" = (/obj/item/stack/ore/silver,/obj/item/stack/ore/silver,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aCJ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/camera{c_tag = "Mining Dock"; dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aCK" = (/obj/structure/sign/warning/vacuum/external,/turf/closed/wall,/area/quartermaster/miningoffice) -"aCL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aCM" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aCN" = (/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Mining Office"; dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aCO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aCP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aCQ" = (/obj/structure/closet/crate/freezer,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aCR" = (/obj/structure/closet/crate,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/stack/ore/glass,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aCS" = (/obj/structure/rack,/obj/item/electronics/apc,/obj/item/stock_parts/cell{maxcharge = 2000},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aCT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot_white/right,/obj/machinery/ore_silo,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) -"aCU" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/security/nuke_storage) -"aCV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) -"aCW" = (/obj/machinery/camera/motion{c_tag = "Vault"; dir = 1; network = list("vault")},/obj/machinery/light,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) -"aCX" = (/obj/structure/safe,/obj/item/storage/backpack/duffelbag/syndie/hitman{contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen)},/obj/item/lazarus_injector,/obj/item/gun/energy/e_gun/advtaser,/obj/item/clothing/neck/stethoscope,/obj/item/book{desc = "An undeniably handy book."; icon_state = "bookknock"; name = "A Simpleton's Guide to Safe-cracking with Stethoscopes"},/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) +"aCI" = (/obj/item/stack/ore/silver,/obj/item/stack/ore/silver,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel) +"aCJ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/camera{c_tag = "Mining Dock"; dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"aCK" = (/obj/structure/sign/warning/vacuum/external,/turf/closed/wall) +"aCN" = (/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Mining Office"; dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel) +"aCO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel) +"aCP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel) +"aCQ" = (/obj/structure/closet/crate/freezer,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel) +"aCR" = (/obj/structure/closet/crate,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/stack/ore/glass,/turf/open/floor/plasteel) +"aCS" = (/obj/structure/rack,/obj/item/electronics/apc,/obj/item/stock_parts/cell{maxcharge = 2000},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel) +"aCT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot_white/right,/obj/machinery/ore_silo,/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},/turf/open/floor/plasteel/dark) +"aCU" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark) +"aCV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark) +"aCW" = (/obj/machinery/camera/motion{c_tag = "Vault"; dir = 1; network = list("vault")},/obj/machinery/light,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark) +"aCX" = (/obj/structure/safe,/obj/item/storage/backpack/duffelbag/syndie/hitman{contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen)},/obj/item/lazarus_injector,/obj/item/gun/energy/e_gun/advtaser,/obj/item/clothing/neck/stethoscope,/obj/item/book{desc = "An undeniably handy book."; icon_state = "bookknock"; name = "A Simpleton's Guide to Safe-cracking with Stethoscopes"},/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark) "aCY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "aCZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/turf/open/floor/plating,/area/security/brig) "aDa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/turf/open/floor/plating,/area/security/brig) @@ -1498,50 +1435,44 @@ "aDo" = (/obj/machinery/computer/med_data{dir = 8},/obj/machinery/newscaster{pixel_x = 28},/turf/open/floor/carpet,/area/security/detectives_office) "aDp" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore) "aDq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) -"aDr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/toilet/restrooms) -"aDs" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aDt" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aDu" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aDv" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aDw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aDx" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aDy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aDz" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aDA" = (/obj/machinery/button/door{id = "Cabin6"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/bed,/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"aDs" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer) +"aDt" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aDu" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/carpet/red) +"aDv" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red) +"aDw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet/red) +"aDx" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/carpet/red) +"aDy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/carpet/red) +"aDz" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"aDA" = (/obj/machinery/button/door{id = "Cabin6"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/bed,/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/carpet) "aDB" = (/obj/item/clothing/glasses/meson,/obj/structure/closet/crate,/obj/item/poster/random_contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore) "aDC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aDD" = (/obj/structure/reagent_dispensers/fueltank,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aDE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"aDF" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering) -"aDG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering) -"aDH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aDI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/engine/engineering) -"aDJ" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"aDK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aDL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"aDM" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"aDN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"aDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/engineering) -"aDP" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aDQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"aDR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"aDS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"aDT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/engine/engineering) -"aDU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) +"aDD" = (/obj/structure/reagent_dispensers/fueltank,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aDE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aDF" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) +"aDH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"aDJ" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"aDK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"aDL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall) +"aDM" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating) +"aDN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating) +"aDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall) +"aDP" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/turf/open/floor/plasteel/dark) +"aDQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating) +"aDR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating) +"aDS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall) +"aDT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating) "aDV" = (/turf/closed/wall,/area/construction/mining/aux_base) -"aDW" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/computer/shuttle/mining{dir = 4; req_access = null},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aDX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aDY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aDZ" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aEa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aEb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aEc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aEd" = (/obj/item/stack/sheet/cardboard,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aEe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/light_construct/small{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aEf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/security/nuke_storage) -"aEg" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/security/nuke_storage) -"aEh" = (/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/vault{req_access_txt = "53"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/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},/turf/open/floor/plasteel/dark,/area/security/nuke_storage) -"aEi" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/security/nuke_storage) +"aDW" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/computer/shuttle/mining{dir = 4; req_access = null},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aDX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel) +"aDY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) +"aDZ" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aEa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) +"aEb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel) +"aEc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel) +"aEd" = (/obj/item/stack/sheet/cardboard,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aEe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/light_construct/small{dir = 4},/turf/open/floor/plasteel) +"aEg" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall) +"aEh" = (/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/vault{req_access_txt = "53"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/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},/turf/open/floor/plasteel/dark) "aEj" = (/obj/machinery/door/poddoor/preopen{id = "prison release"; name = "prisoner processing blast door"},/obj/machinery/button/door{id = "prison release"; name = "Labor Camp Shuttle Lockdown"; pixel_x = -25; req_access_txt = "2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/fore) "aEk" = (/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) "aEl" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) @@ -1562,64 +1493,59 @@ "aEA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) "aEB" = (/obj/structure/rack,/obj/item/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) "aEC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/maintenance/fore) -"aED" = (/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/button/door{id = "Toilet3"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/effect/landmark/start/assistant,/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEE" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Toilet3"; name = "Unit 3"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEF" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/urinal{pixel_y = 29},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEH" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/urinal{pixel_y = 29},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/newscaster{pixel_y = 32},/obj/structure/scale,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet/restrooms) -"aEL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aEM" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aEN" = (/obj/structure/table,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aEO" = (/obj/structure/table,/obj/item/storage/crayons,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aEP" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aEQ" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aER" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Cabin6"; name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) -"aES" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"aET" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"aEU" = (/obj/machinery/light/small,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"aED" = (/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/button/door{id = "Toilet3"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/effect/landmark/start/assistant,/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer) +"aEE" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Toilet3"; name = "Unit 3"},/turf/open/floor/plasteel/freezer) +"aEF" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer) +"aEG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/urinal{pixel_y = 29},/turf/open/floor/plasteel/freezer) +"aEH" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/urinal{pixel_y = 29},/turf/open/floor/plasteel/freezer) +"aEI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer) +"aEJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/newscaster{pixel_y = 32},/obj/structure/scale,/turf/open/floor/plasteel/freezer) +"aEL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aEM" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/carpet/red) +"aEN" = (/obj/structure/table,/turf/open/floor/carpet/red) +"aEO" = (/obj/structure/table,/obj/item/storage/crayons,/turf/open/floor/carpet/red) +"aEP" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/open/floor/carpet/red) +"aEQ" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/red) +"aER" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Cabin6"; name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood) +"aES" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet) +"aEU" = (/obj/machinery/light/small,/turf/open/floor/carpet) "aEV" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/cigbutt,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) -"aEW" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aEX" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aEY" = (/obj/effect/landmark/start/station_engineer,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aEZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aFa" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aFb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Engineering Storage"; req_access_txt = "32"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aFc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aFd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"aFe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/white{icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"aFf" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aFg" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"aFh" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/engine/engineering) -"aFi" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aFj" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aFk" = (/obj/machinery/atmospherics/components/binary/pump{name = "Mix to Gas"},/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aFl" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aFm" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Gas to Mix"},/obj/structure/cable/white{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aFn" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/turf/open/floor/engine,/area/engine/engineering) -"aFo" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine,/area/engine/engineering) -"aFp" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"aFq" = (/obj/machinery/firealarm{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aFr" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aFs" = (/turf/open/floor/plating,/area/engine/engineering) +"aEW" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aEY" = (/obj/effect/landmark/start/station_engineer,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel) +"aEZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"aFa" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"aFb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Engineering Storage"; req_access_txt = "32"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aFc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"aFd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aFe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/white{icon_state = "1-4"},/turf/open/floor/plasteel) +"aFf" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"aFg" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating) +"aFh" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine) +"aFi" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine) +"aFj" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/engine) +"aFk" = (/obj/machinery/atmospherics/components/binary/pump{name = "Mix to Gas"},/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine) +"aFl" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/engine) +"aFm" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Gas to Mix"},/obj/structure/cable/white{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine) +"aFn" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/turf/open/floor/engine) +"aFo" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine) +"aFq" = (/obj/machinery/firealarm{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark) +"aFr" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/turf/open/floor/plasteel/dark) "aFt" = (/turf/open/floor/plating,/area/construction/mining/aux_base) "aFu" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) "aFv" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/fore) -"aFw" = (/obj/machinery/computer/security/mining{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aFx" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aFy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aFz" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aFA" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/mineral/equipment_vendor,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aFB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aFC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_y = -24; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aFD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/rack,/obj/item/stack/sheet/cardboard,/obj/item/stack/rods/fifty,/obj/item/paper,/obj/item/storage/box/lights/mixed,/obj/structure/sign/poster/official/random{pixel_y = -32},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aFE" = (/obj/structure/closet/crate/internals,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aFF" = (/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 4; name = "Warehouse APC"; pixel_x = 27},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/landmark/blobstart,/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aFG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/storage/wing) -"aFH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/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/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/construction/storage/wing) -"aFI" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/storage/wing) +"aFw" = (/obj/machinery/computer/security/mining{dir = 4},/turf/open/floor/plasteel) +"aFx" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel) +"aFy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"aFz" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel) +"aFA" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/mineral/equipment_vendor,/turf/open/floor/plasteel) +"aFB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel) +"aFC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_y = -24; req_access_txt = "50"},/turf/open/floor/plasteel) +"aFD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/rack,/obj/item/stack/sheet/cardboard,/obj/item/stack/rods/fifty,/obj/item/paper,/obj/item/storage/box/lights/mixed,/obj/structure/sign/poster/official/random{pixel_y = -32},/turf/open/floor/plasteel) +"aFE" = (/obj/structure/closet/crate/internals,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel) +"aFF" = (/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 4; name = "Warehouse APC"; pixel_x = 27},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/landmark/blobstart,/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel) +"aFG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating) +"aFH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/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/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel/dark) +"aFI" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating) "aFJ" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/fore) "aFK" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) "aFL" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=1.5-Fore-Central"; location = "1-BrigCells"},/turf/open/floor/plasteel,/area/hallway/primary/fore) @@ -1641,62 +1567,53 @@ "aGb" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/bodybag,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/turf/open/floor/plasteel/dark,/area/security/detectives_office) "aGc" = (/obj/machinery/door/window{dir = 1},/turf/open/floor/plasteel/dark,/area/security/detectives_office) "aGd" = (/obj/machinery/door/airlock/maintenance{name = "Detective Maintenance"; req_access_txt = "4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"aGe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/camera{c_tag = "Restrooms"; dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGf" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGg" = (/obj/machinery/light/small,/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet/restrooms"; name = "Restrooms APC"; pixel_y = -26},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGh" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGi" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGj" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{dir = 8; name = "Unisex Restrooms"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aGm" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aGn" = (/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aGo" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aGp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"aGq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aGe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/camera{c_tag = "Restrooms"; dir = 4},/turf/open/floor/plasteel/freezer) +"aGf" = (/turf/open/floor/plasteel/freezer) +"aGg" = (/obj/machinery/light/small,/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet/restrooms"; name = "Restrooms APC"; pixel_y = -26},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plasteel/freezer) +"aGh" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/freezer) +"aGi" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer) +"aGj" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer) +"aGk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{dir = 8; name = "Unisex Restrooms"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer) +"aGl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aGo" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/carpet/red) +"aGp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/red) +"aGq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) "aGr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard/fore) "aGs" = (/obj/structure/rack,/obj/item/stock_parts/matter_bin,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard/fore) -"aGt" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -38},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aGu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"aGv" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"aGw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"aGx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"aGy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering) -"aGz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aGA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aGB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) -"aGC" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aGD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Supermatter Engine"; req_access_txt = "10"},/turf/open/floor/plating,/area/engine/engineering) -"aGE" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aGF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/engine,/area/engine/engineering) -"aGG" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"aGH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/engine,/area/engine/engineering) -"aGI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"aGJ" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix Bypass"},/turf/open/floor/engine,/area/engine/engineering) -"aGK" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line,/obj/machinery/meter,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/engine,/area/engine/engineering) -"aGL" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/engine,/area/engine/engineering) -"aGM" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine,/area/engine/engineering) -"aGN" = (/obj/machinery/door/firedoor,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/engineering/glass{dir = 8; name = "Laser Room"; req_access_txt = "10"},/turf/open/floor/plating,/area/engine/engineering) -"aGO" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/engineering) -"aGP" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-8"},/turf/open/floor/plating,/area/engine/engineering) -"aGQ" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/open/floor/plating,/area/engine/engineering) +"aGt" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -38},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aGw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"aGx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) +"aGy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating) +"aGz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"aGA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aGB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel) +"aGC" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"aGD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Supermatter Engine"; req_access_txt = "10"},/turf/open/floor/plating) +"aGE" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine) +"aGF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/engine) +"aGG" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/engine) +"aGH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/engine) +"aGI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/engine) +"aGJ" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix Bypass"},/turf/open/floor/engine) +"aGK" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line,/obj/machinery/meter,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/engine) +"aGL" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/engine) +"aGM" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine) +"aGN" = (/obj/machinery/door/firedoor,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/engineering/glass{dir = 8; name = "Laser Room"; req_access_txt = "10"},/turf/open/floor/plating) +"aGO" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/open/floor/plating) +"aGP" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-8"},/turf/open/floor/plating) +"aGQ" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/open/floor/plating) "aGR" = (/turf/closed/wall/r_wall,/area/space/nearstation) "aGS" = (/obj/structure/closet/crate,/obj/item/coin/silver,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore) -"aGT" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/pen,/obj/machinery/requests_console{department = "Mining"; pixel_y = -30},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aGU" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aGV" = (/obj/structure/rack,/obj/item/pickaxe{pixel_x = 5},/obj/item/shovel{pixel_x = -5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aGW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aGX" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aGY" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "Warehouse Shutters"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aGZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/warehouse) +"aGT" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/pen,/obj/machinery/requests_console{department = "Mining"; pixel_y = -30},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aGU" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aGV" = (/obj/structure/rack,/obj/item/pickaxe{pixel_x = 5},/obj/item/shovel{pixel_x = -5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aGW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel) +"aGX" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plasteel) +"aGY" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "Warehouse Shutters"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) "aHa" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;63;48;50"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"aHb" = (/turf/closed/wall,/area/construction/storage/wing) -"aHd" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/quartermaster/miningoffice) -"aHe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall,/area/construction/storage/wing) -"aHf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Vault Storage"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/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/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/construction/storage/wing) -"aHg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/construction/storage/wing) -"aHh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/construction/storage/wing) -"aHi" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/storage/wing) +"aHe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall) +"aHf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Vault Storage"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/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/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark) +"aHi" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating) "aHj" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/machinery/camera{c_tag = "Storage Wing - Security Access Door"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "aHk" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "aHl" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) @@ -1728,64 +1645,62 @@ "aHL" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/fore) "aHM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore) "aHN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"aHO" = (/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_y = -32},/obj/effect/landmark/blobstart,/obj/machinery/button/door{id = "Toilet2"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHP" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Toilet2"; name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHR" = (/obj/machinery/light/small{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHS" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/structure/table,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHU" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/camera{c_tag = "Dormitories - Aft"; dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aHW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aHX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aHY" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aIa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aIb" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Cabin7"; name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) -"aIc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet/gato,/area/crew_quarters/dorms) -"aId" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet/gato,/area/crew_quarters/dorms) -"aIe" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet/gato,/area/crew_quarters/dorms) +"aHO" = (/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_y = -32},/obj/effect/landmark/blobstart,/obj/machinery/button/door{id = "Toilet2"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer) +"aHP" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Toilet2"; name = "Unit 2"},/turf/open/floor/plasteel/freezer) +"aHQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer) +"aHR" = (/obj/machinery/light/small{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/freezer) +"aHS" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer) +"aHT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/structure/table,/turf/open/floor/plasteel/freezer) +"aHU" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/freezer) +"aHV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/camera{c_tag = "Dormitories - Aft"; dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aHW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel) +"aHX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"aHY" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"aHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"aIa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"aIb" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Cabin7"; name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood) +"aIc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet/gato) +"aId" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet/gato) +"aIe" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet/gato) "aIf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aIg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard/fore) -"aIh" = (/obj/structure/table,/obj/item/stack/rods/fifty,/obj/item/wrench,/obj/item/storage/box/lights/mixed,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aIi" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/crowbar,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aIj" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -5; pixel_y = 6},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aIk" = (/obj/effect/turf_decal/bot{dir = 1},/obj/structure/closet/crate/solarpanel_small,/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aIl" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/yellow,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aIm" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aIn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"aIo" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aIp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aIq" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aIr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aIs" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "External Gas to Loop"},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aIt" = (/obj/effect/turf_decal/bot{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aIu" = (/obj/machinery/status_display/evac,/turf/closed/wall/r_wall,/area/engine/supermatter) -"aIv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "engsm"; name = "radiation shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aIw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aIx" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,/turf/open/floor/engine,/area/engine/engineering) -"aIy" = (/obj/structure/cable/white,/turf/open/floor/plating,/area/engine/engineering) -"aIz" = (/obj/structure/cable/white,/obj/machinery/power/emitter/anchored{state = 2},/turf/open/floor/plating,/area/engine/engineering) -"aIA" = (/obj/structure/cable/white,/obj/machinery/light{dir = 4},/turf/open/floor/plating,/area/engine/engineering) +"aIh" = (/obj/structure/table,/obj/item/stack/rods/fifty,/obj/item/wrench,/obj/item/storage/box/lights/mixed,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aIi" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/crowbar,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aIj" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -5; pixel_y = 6},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aIk" = (/obj/effect/turf_decal/bot{dir = 1},/obj/structure/closet/crate/solarpanel_small,/turf/open/floor/plasteel{dir = 1}) +"aIl" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/yellow,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aIm" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"aIo" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel) +"aIp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"aIq" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine) +"aIr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine) +"aIs" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "External Gas to Loop"},/turf/open/floor/plasteel/dark) +"aIt" = (/obj/effect/turf_decal/bot{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel/dark) +"aIu" = (/obj/machinery/status_display/evac,/turf/closed/wall/r_wall) +"aIv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "engsm"; name = "radiation shutters"},/turf/open/floor/plating) +"aIw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine) +"aIx" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,/turf/open/floor/engine) +"aIy" = (/obj/structure/cable/white,/turf/open/floor/plating) +"aIz" = (/obj/structure/cable/white,/obj/machinery/power/emitter/anchored{state = 2},/turf/open/floor/plating) +"aIA" = (/obj/structure/cable/white,/obj/machinery/light{dir = 4},/turf/open/floor/plating) "aIB" = (/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/port/fore) -"aIC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/miningoffice) -"aID" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Mining Office"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"aIE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aIF" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_y = 24; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aIG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/dark/side{dir = 4},/area/quartermaster/storage) -"aIH" = (/obj/machinery/light{dir = 1; pixel_y = 12},/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aII" = (/obj/machinery/light_switch{pixel_x = 12; pixel_y = 28},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/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},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aIJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{dir = 4; name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aIK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aIL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light/small{dir = 1; pixel_y = 12},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/construction/storage/wing) -"aIM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{dir = 8; name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aIN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aIO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light{dir = 1; pixel_y = 12},/obj/structure/railing{dir = 1},/turf/open/floor/plasteel/stairs/right{dir = 4},/area/construction/storage/wing) -"aIP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aIQ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aIR" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 1; pixel_y = 12},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aIS" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aIT" = (/obj/machinery/vending/cigarette,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/construction/storage/wing) +"aID" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Mining Office"; req_access_txt = "48"},/turf/open/floor/plasteel) +"aIE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aIF" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_y = 24; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aIG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/dark/side{dir = 4}) +"aIH" = (/obj/machinery/light{dir = 1; pixel_y = 12},/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aII" = (/obj/machinery/light_switch{pixel_x = 12; pixel_y = 28},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/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},/turf/open/floor/plasteel) +"aIJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{dir = 4; name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel) +"aIK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aIL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light/small{dir = 1; pixel_y = 12},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel) +"aIM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{dir = 8; name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aIN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aIO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light{dir = 1; pixel_y = 12},/obj/structure/railing{dir = 1},/turf/open/floor/plasteel/stairs/right{dir = 4}) +"aIP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel) +"aIQ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aIR" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 1; pixel_y = 12},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel) +"aIS" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"aIT" = (/obj/machinery/vending/cigarette,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel) "aIU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "aIV" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "aIW" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) @@ -1798,53 +1713,49 @@ "aJd" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/open/water,/area/security/courtroom{name = "Park"}) "aJe" = (/turf/closed/wall/r_wall,/area/security/courtroom{name = "Park"}) "aJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security"; req_access_txt = "63"},/turf/open/floor/plasteel/dark,/area/security/courtroom{name = "Park"}) -"aJg" = (/turf/closed/wall,/area/lawoffice) +"aJg" = (/turf/closed/wall) "aJh" = (/obj/machinery/door/airlock/maintenance{name = "Law Office Maintenance"; req_access_txt = "38"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) -"aJi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light_switch{pixel_x = -26},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aJj" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aJk" = (/obj/machinery/door/airlock{id_tag = "Toilet4"; name = "Unit 4"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aJl" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aJm" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central"; location = "14.8-Dorms-Lockers"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aJn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aJo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aJp" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{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/item/clothing/under/shorts/pinkwshort,/obj/item/clothing/under/shorts/pinkwshort,/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"aJq" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"aJr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/wardrobe/pjs,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"aJs" = (/obj/machinery/button/door{id = "Cabin7"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/double_bed,/obj/item/bedsheet/double_gato,/turf/open/floor/carpet/gato,/area/crew_quarters/dorms) -"aJt" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet/gato,/area/crew_quarters/dorms) -"aJu" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 29; pixel_y = 1},/obj/item/paper,/turf/open/floor/carpet/gato,/area/crew_quarters/dorms) +"aJi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light_switch{pixel_x = -26},/turf/open/floor/plasteel/freezer) +"aJj" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel/freezer) +"aJk" = (/obj/machinery/door/airlock{id_tag = "Toilet4"; name = "Unit 4"},/turf/open/floor/plasteel/freezer) +"aJl" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/open/floor/plasteel/freezer) +"aJm" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central"; location = "14.8-Dorms-Lockers"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aJn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel) +"aJo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"aJp" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{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/item/clothing/under/shorts/pink,/obj/item/clothing/under/shorts/pink,/turf/open/floor/plasteel/dark) +"aJq" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/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},/turf/open/floor/plasteel/dark) +"aJr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/wardrobe/pjs,/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},/turf/open/floor/plasteel/dark) +"aJs" = (/obj/machinery/button/door{id = "Cabin7"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/double,/obj/item/bedsheet/double_gato,/turf/open/floor/carpet/gato) +"aJt" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet/gato) +"aJu" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 29; pixel_y = 1},/obj/item/paper,/turf/open/floor/carpet/gato) "aJv" = (/obj/structure/closet,/obj/item/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aJw" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aJx" = (/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aJy" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering) -"aJz" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aJA" = (/turf/closed/wall/r_wall,/area/engine/supermatter) -"aJB" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter) -"aJC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine,/area/engine/engineering) -"aJD" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine,/area/engine/engineering) -"aJE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/storage) -"aJF" = (/obj/machinery/conveyor{dir = 5; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aJG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/status_display/supply{pixel_y = 32},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aJH" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aJI" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aJJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera{c_tag = "Cargo Bay - Fore"},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aJK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aJL" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aJM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/dark/side{dir = 4},/area/quartermaster/storage) -"aJN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aJO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/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},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aJP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/mining{dir = 4; name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aJQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aJR" = (/obj/machinery/camera{c_tag = "Cargo Bay - Storage Wing Entrance"; dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aJS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{dir = 8; name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aJT" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/construction/storage/wing"; name = "Storage Wing APC"; pixel_y = -27},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aJU" = (/obj/structure/railing,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/stairs/left{dir = 4},/area/construction/storage/wing) -"aJV" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = -32},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aJW" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aJX" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/construction/storage/wing) -"aJY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=2.2-Leaving-Storage"; location = "2.1-Storage"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aJZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aKa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/construction/storage/wing) +"aJw" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"aJx" = (/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"aJz" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine) +"aJB" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine) +"aJC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine) +"aJD" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine) +"aJF" = (/obj/machinery/conveyor{dir = 5; id = "QMLoad2"},/turf/open/floor/plating) +"aJG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/status_display/supply{pixel_y = 32},/turf/open/floor/plasteel) +"aJH" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel) +"aJI" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aJJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera{c_tag = "Cargo Bay - Fore"},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/open/floor/plasteel) +"aJK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel) +"aJL" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel) +"aJM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/dark/side{dir = 4}) +"aJN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aJO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/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},/turf/open/floor/plasteel) +"aJP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/mining{dir = 4; name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel) +"aJQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel) +"aJR" = (/obj/machinery/camera{c_tag = "Cargo Bay - Storage Wing Entrance"; dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aJS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{dir = 8; name = "Cargo Bay"; req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel) +"aJT" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/construction/storage/wing"; name = "Storage Wing APC"; pixel_y = -27},/turf/open/floor/plasteel) +"aJU" = (/obj/structure/railing,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/stairs/left{dir = 4}) +"aJV" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = -32},/turf/open/floor/plasteel) +"aJW" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel) +"aJX" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel) +"aJY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=2.2-Leaving-Storage"; location = "2.1-Storage"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel) +"aJZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel) "aKb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/airlock/security{name = "Security-Storage Backroom"; req_access_txt = "63"},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "aKc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) "aKd" = (/obj/structure/table,/obj/item/folder/red,/obj/item/restraints/handcuffs,/obj/machinery/newscaster/security_unit{pixel_y = -30},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/hallway/primary/fore) @@ -1863,50 +1774,45 @@ "aKq" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) "aKr" = (/obj/structure/flora/junglebush/c,/turf/open/water,/area/security/courtroom{name = "Park"}) "aKs" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) -"aKt" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/requests_console{department = "Law office"; pixel_y = 32},/obj/machinery/newscaster{pixel_x = -31},/turf/open/floor/wood,/area/lawoffice) -"aKu" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/obj/item/book/manual/wiki/security_space_law,/obj/item/pen/red,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("prison"); pixel_y = 30},/turf/open/floor/wood,/area/lawoffice) -"aKv" = (/obj/structure/rack,/obj/item/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/obj/item/clothing/glasses/sunglasses,/turf/open/floor/wood,/area/lawoffice) -"aKw" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 1; name = "Law Office APC"; pixel_y = 24},/turf/open/floor/wood,/area/lawoffice) -"aKx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/lawoffice) +"aKt" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/requests_console{department = "Law office"; pixel_y = 32},/obj/machinery/newscaster{pixel_x = -31},/turf/open/floor/wood) +"aKu" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/obj/item/book/manual/wiki/security_space_law,/obj/item/pen/red,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("prison"); pixel_y = 30},/turf/open/floor/wood) +"aKv" = (/obj/structure/rack,/obj/item/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/obj/item/clothing/glasses/sunglasses,/turf/open/floor/wood) +"aKw" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 1; name = "Law Office APC"; pixel_y = 24},/turf/open/floor/wood) "aKy" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/fore) -"aKz" = (/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_y = -32},/obj/effect/landmark/blobstart,/obj/machinery/button/door{id = "Toilet1"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKA" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Toilet1"; name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKB" = (/obj/machinery/light/small{dir = 4},/obj/machinery/newscaster{pixel_x = 32},/obj/machinery/button/door{id = "Toilet4"; name = "Lock Control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/obj/effect/landmark/start/assistant,/obj/structure/toilet{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKC" = (/obj/machinery/light/small,/obj/machinery/recharge_station,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aKE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aKF" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) +"aKz" = (/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_y = -32},/obj/effect/landmark/blobstart,/obj/machinery/button/door{id = "Toilet1"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer) +"aKA" = (/obj/machinery/door/airlock{dir = 8; id_tag = "Toilet1"; name = "Unit 1"},/turf/open/floor/plasteel/freezer) +"aKB" = (/obj/machinery/light/small{dir = 4},/obj/machinery/newscaster{pixel_x = 32},/obj/machinery/button/door{id = "Toilet4"; name = "Lock Control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/obj/effect/landmark/start/assistant,/obj/structure/toilet{dir = 1},/turf/open/floor/plasteel/freezer) +"aKC" = (/obj/machinery/light/small,/obj/machinery/recharge_station,/turf/open/floor/plasteel/freezer) +"aKD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aKE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"aKF" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/wood) "aKG" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/contraband/random{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) -"aKH" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering) -"aKI" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering) -"aKJ" = (/obj/machinery/shieldgen,/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Engineering - Secure Storage"},/turf/open/floor/plating,/area/engine/engineering) -"aKK" = (/obj/machinery/shieldgen,/turf/open/floor/plating,/area/engine/engineering) -"aKL" = (/obj/structure/table,/obj/item/airlock_painter,/obj/effect/turf_decal/delivery,/obj/item/twohanded/rcl/pre_loaded,/obj/item/twohanded/rcl/pre_loaded,/obj/item/twohanded/rcl/pre_loaded,/turf/open/floor/plasteel,/area/engine/engineering) -"aKM" = (/obj/structure/table,/obj/effect/turf_decal/delivery,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/turf/open/floor/plasteel,/area/engine/engineering) -"aKN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine,/area/engine/engineering) -"aKO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/supermatter) -"aKP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/power/rad_collector/anchored,/obj/structure/cable,/obj/structure/window/plasma/reinforced,/turf/open/floor/engine,/area/engine/supermatter) -"aKQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/power/rad_collector/anchored,/obj/structure/cable,/obj/structure/window/plasma/reinforced,/turf/open/floor/engine,/area/engine/supermatter) -"aKR" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,/turf/open/floor/engine,/area/engine/engineering) +"aKH" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/field/generator,/turf/open/floor/plating) +"aKI" = (/obj/machinery/field/generator,/turf/open/floor/plating) +"aKJ" = (/obj/machinery/shieldgen,/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Engineering - Secure Storage"},/turf/open/floor/plating) +"aKK" = (/obj/machinery/shieldgen,/turf/open/floor/plating) +"aKL" = (/obj/structure/table,/obj/item/airlock_painter,/obj/effect/turf_decal/delivery,/obj/item/rcl/pre_loaded,/obj/item/rcl/pre_loaded,/obj/item/rcl/pre_loaded,/turf/open/floor/plasteel) +"aKM" = (/obj/structure/table,/obj/effect/turf_decal/delivery,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/turf/open/floor/plasteel) +"aKN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine) +"aKO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall) +"aKP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/power/rad_collector/anchored,/obj/structure/cable,/obj/structure/window/plasma/reinforced,/turf/open/floor/engine) +"aKQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/power/rad_collector/anchored,/obj/structure/cable,/obj/structure/window/plasma/reinforced,/turf/open/floor/engine) +"aKR" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,/turf/open/floor/engine) "aKS" = (/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) "aKT" = (/obj/docking_port/stationary{area_type = /area/construction/mining/aux_base; dheight = 4; dwidth = 4; height = 9; id = "aux_base_zone"; name = "aux base zone"; roundstart_template = /datum/map_template/shuttle/aux_base/default; width = 9},/turf/open/floor/plating,/area/construction/mining/aux_base) -"aKU" = (/obj/structure/sign/warning/vacuum/external,/turf/closed/wall,/area/quartermaster/storage) -"aKV" = (/obj/machinery/light{dir = 8},/obj/machinery/conveyor{dir = 1; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aKW" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aKX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aKY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/structure/closet/crate,/obj/item/stack/ore/glass,/obj/item/stack/ore/iron,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aKZ" = (/obj/effect/turf_decal/bot,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aLa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aLb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/quartermaster/storage) -"aLc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aLd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/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},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aKV" = (/obj/machinery/light{dir = 8},/obj/machinery/conveyor{dir = 1; id = "QMLoad2"},/turf/open/floor/plating) +"aKW" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"aKY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/structure/closet/crate,/obj/item/stack/ore/glass,/obj/item/stack/ore/iron,/turf/open/floor/plasteel) +"aKZ" = (/obj/effect/turf_decal/bot,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel) +"aLa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel) +"aLb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4}) +"aLc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aLd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/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},/turf/open/floor/plasteel) "aLe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;63;48;50"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"aLf" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/camera{c_tag = "Storage Wing"; pixel_y = 12},/turf/open/floor/plasteel,/area/construction/storage/wing) -"aLg" = (/turf/closed/wall,/area/storage/primary) -"aLh" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/primary) -"aLi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/primary) -"aLj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aLk" = (/turf/closed/wall/r_wall,/area/storage/primary) +"aLf" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/camera{c_tag = "Storage Wing"; pixel_y = 12},/turf/open/floor/plasteel) +"aLh" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating) +"aLi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"aLj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) "aLl" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) "aLm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) "aLn" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) @@ -1920,69 +1826,68 @@ "aLv" = (/obj/structure/flora/rock/pile/largejungle,/turf/open/water,/area/security/courtroom{name = "Park"}) "aLw" = (/obj/structure/railing{dir = 4},/turf/open/water,/area/security/courtroom{name = "Park"}) "aLx" = (/obj/machinery/light{dir = 4},/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) -"aLy" = (/obj/effect/landmark/start/lawyer,/obj/structure/chair/office/dark{dir = 4},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/open/floor/wood,/area/lawoffice) -"aLz" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/stamp/law,/turf/open/floor/wood,/area/lawoffice) -"aLA" = (/obj/structure/chair{dir = 8},/turf/open/floor/wood,/area/lawoffice) -"aLB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/wood,/area/lawoffice) -"aLC" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/wood,/area/lawoffice) +"aLy" = (/obj/effect/landmark/start/lawyer,/obj/structure/chair/office/dark{dir = 4},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/open/floor/wood) +"aLz" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/stamp/law,/turf/open/floor/wood) +"aLA" = (/obj/structure/chair{dir = 8},/turf/open/floor/wood) +"aLB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/wood) +"aLC" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/wood) "aLD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_one_access_txt = "1;4;38;12"},/turf/open/floor/plating,/area/maintenance/fore) -"aLE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aLF" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock{name = "Dormitories"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aLG" = (/obj/effect/spawner/structure/window/reinforced/tinted,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/crew_quarters/dorms) -"aLH" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock{name = "Dormitories"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aLI" = (/obj/structure/window/reinforced,/obj/structure/flora/junglebush/c,/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) -"aLJ" = (/obj/structure/window/reinforced,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/sign/poster/contraband/lizard{pixel_y = 32},/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) -"aLK" = (/obj/structure/window/reinforced,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/sign/poster/contraband/lamarr{pixel_y = 32},/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) -"aLN" = (/obj/structure/window/reinforced,/obj/structure/flora/ausbushes/leafybush,/obj/structure/sign/poster/contraband/lusty_xenomorph{pixel_y = 32},/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) -"aLO" = (/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) +"aLE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/turf/open/floor/plasteel/freezer) +"aLF" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock{name = "Dormitories"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aLG" = (/obj/effect/spawner/structure/window/reinforced/tinted,/obj/structure/disposalpipe/segment,/turf/open/floor/plating) +"aLH" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock{name = "Dormitories"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aLI" = (/obj/structure/window/reinforced,/obj/structure/flora/junglebush/c,/turf/open/floor/grass) +"aLJ" = (/obj/structure/window/reinforced,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/sign/poster/contraband/lizard{pixel_y = 32},/turf/open/floor/grass) +"aLK" = (/obj/structure/window/reinforced,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/sign/poster/contraband/lamarr{pixel_y = 32},/turf/open/floor/grass) +"aLN" = (/obj/structure/window/reinforced,/obj/structure/flora/ausbushes/leafybush,/obj/structure/sign/poster/contraband/lusty_xenomorph{pixel_y = 32},/turf/open/floor/grass) +"aLO" = (/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass) "aLP" = (/obj/effect/decal/cleanable/cobweb,/obj/item/wirecutters,/obj/item/weldingtool,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aLQ" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/engine/engineering) -"aLR" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "Secure Storage"},/turf/open/floor/plating,/area/engine/engineering) -"aLS" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aLT" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"aLU" = (/obj/machinery/button/door{id = "engsm"; name = "Radiation Shutters Control"; pixel_x = 24; req_access_txt = "10"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aLV" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter) -"aLW" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Gas to Chamber"},/turf/open/floor/engine,/area/engine/supermatter) -"aLX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) -"aLY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) -"aLZ" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/supermatter) -"aMa" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/camera{c_tag = "Engineering Supermatter Starboard"; dir = 4; network = list("ss13","engine")},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine,/area/engine/engineering) -"aMb" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine,/area/engine/engineering) -"aMc" = (/obj/structure/reflector/single/anchored{dir = 9},/turf/open/floor/plating,/area/engine/engineering) +"aLQ" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating) +"aLR" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "Secure Storage"},/turf/open/floor/plating) +"aLS" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel) +"aLT" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"aLU" = (/obj/machinery/button/door{id = "engsm"; name = "Radiation Shutters Control"; pixel_x = 24; req_access_txt = "10"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine) +"aLV" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall) +"aLW" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Gas to Chamber"},/turf/open/floor/engine) +"aLX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/meter,/turf/closed/wall/r_wall) +"aLY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine) +"aLZ" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall) +"aMa" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/camera{c_tag = "Engineering Supermatter Starboard"; dir = 4; network = list("ss13","engine")},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine) +"aMb" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine) +"aMc" = (/obj/structure/reflector/single/anchored{dir = 9},/turf/open/floor/plating) "aMd" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space/nearstation) -"aMe" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"aMf" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/plasteel/dark,/area/aisat) -"aMg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/aisat) -"aMh" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/aisat) +"aMe" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark) +"aMf" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/plasteel/dark) +"aMg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/dark) +"aMh" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark) "aMi" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) "aMj" = (/obj/item/clothing/gloves/color/fyellow,/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aMk" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "Supply Dock Loading Door"},/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aMl" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aMm" = (/obj/machinery/conveyor/inverted{dir = 10; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aMn" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aMo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/box/corners{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aMp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aMq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aMr" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aMs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aMt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/box/corners{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/quartermaster/storage) -"aMu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aMv" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/cardboard,/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},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aMw" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/floor,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aMk" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "Supply Dock Loading Door"},/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/open/floor/plating) +"aMl" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/open/floor/plating) +"aMm" = (/obj/machinery/conveyor/inverted{dir = 10; id = "QMLoad2"},/turf/open/floor/plating) +"aMn" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"aMo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/box/corners{dir = 8},/turf/open/floor/plasteel) +"aMp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aMq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aMr" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aMs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aMt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/box/corners{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4}) +"aMu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aMv" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/cardboard,/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},/turf/open/floor/plasteel) +"aMw" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/floor,/turf/open/floor/plasteel) "aMx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) "aMy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light/small{dir = 1; pixel_x = -8; pixel_y = 12},/turf/open/floor/plasteel/stairs{dir = 4},/area/maintenance/port/fore) "aMz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) "aMA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/port/fore) "aMB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port/fore) -"aMC" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/gps{gpstag = "AUX0"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/camera/autoname{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aMD" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/primary) -"aME" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aMF" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 5},/obj/item/screwdriver{pixel_y = 16},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aMG" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light_switch{pixel_y = 28},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aMH" = (/obj/machinery/vending/assist,/obj/machinery/light/small{dir = 1},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aMI" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aMJ" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/multitool,/obj/item/multitool{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aMK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/storage/primary) +"aMC" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/gps{gpstag = "AUX0"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/camera/autoname{dir = 4},/turf/open/floor/plasteel) +"aMD" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"aME" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aMF" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 5},/obj/item/screwdriver{pixel_y = 16},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aMG" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light_switch{pixel_y = 28},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aMH" = (/obj/machinery/vending/assist,/obj/machinery/light/small{dir = 1},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aMI" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aMJ" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/multitool,/obj/item/multitool{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) "aML" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/space,/area/space/nearstation) "aMM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) "aMN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/porta_turret/ai,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) @@ -1999,70 +1904,66 @@ "aMY" = (/obj/structure/flora/junglebush,/turf/open/water,/area/security/courtroom{name = "Park"}) "aMZ" = (/obj/effect/turf_decal/sand/plating,/turf/open/floor/mineral/sandstone_floor,/area/security/courtroom{name = "Park"}) "aNa" = (/obj/effect/turf_decal/sand/plating,/obj/item/beacon,/turf/open/floor/mineral/sandstone_floor,/area/security/courtroom{name = "Park"}) -"aNb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/light{dir = 8},/turf/open/floor/wood,/area/lawoffice) -"aNc" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/item/clothing/glasses/sunglasses/big,/turf/open/floor/wood,/area/lawoffice) -"aNd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/lawoffice) -"aNe" = (/obj/machinery/photocopier,/obj/machinery/camera{c_tag = "Law Office"; dir = 8},/turf/open/floor/wood,/area/lawoffice) -"aNf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNg" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNh" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light/small{dir = 1},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNi" = (/obj/structure/closet/secure_closet/personal,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNj" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNm" = (/obj/machinery/firealarm{pixel_y = 27},/obj/machinery/vending/gato,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNn" = (/obj/machinery/status_display/evac{pixel_y = 30},/obj/machinery/vending/snack/orange,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNo" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/vending/mealdor,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNp" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/camera{c_tag = "Locker Room Starboard"},/obj/structure/sign/warning/pods{pixel_y = 30},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNq" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNr" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aNt" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) -"aNv" = (/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) -"aNw" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game{pixel_x = 2; pixel_y = 7},/turf/open/floor/plasteel/dark/side{dir = 8},/area/crew_quarters/fitness/recreation) -"aNx" = (/obj/structure/chair/sofa/corner{dir = 1},/turf/open/floor/carpet/red,/area/crew_quarters/locker) +"aNb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/light{dir = 8},/turf/open/floor/wood) +"aNc" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/item/clothing/glasses/sunglasses/big,/turf/open/floor/wood) +"aNd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood) +"aNe" = (/obj/machinery/photocopier,/obj/machinery/camera{c_tag = "Law Office"; dir = 8},/turf/open/floor/wood) +"aNf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aNg" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aNh" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light/small{dir = 1},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aNi" = (/obj/structure/closet/secure_closet/personal,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aNj" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aNm" = (/obj/machinery/firealarm{pixel_y = 27},/obj/machinery/vending/gato,/turf/open/floor/plasteel) +"aNn" = (/obj/machinery/status_display/evac{pixel_y = 30},/obj/machinery/vending/snack/orange,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel) +"aNo" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/vending/mealdor,/turf/open/floor/plasteel) +"aNp" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/camera{c_tag = "Locker Room Starboard"},/obj/structure/sign/warning/pods{pixel_y = 30},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aNq" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aNr" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aNs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aNt" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/wood) +"aNw" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game{pixel_x = 2; pixel_y = 7},/turf/open/floor/plasteel/dark/side{dir = 8}) +"aNx" = (/obj/structure/chair/sofa/corner{dir = 1},/turf/open/floor/carpet/red) "aNy" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard/fore) -"aNz" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/engineering) -"aNA" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/engine/engineering) -"aNB" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"aNC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering) -"aND" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) -"aNE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aNF" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Supermatter Engine"; req_access_txt = "10"},/turf/open/floor/plating,/area/engine/engineering) -"aNG" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aNH" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Gas to Filter"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"aNI" = (/obj/machinery/door/airlock/engineering/glass/critical{dir = 4; heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine,/area/engine/supermatter) -"aNJ" = (/turf/open/floor/engine,/area/engine/supermatter) -"aNK" = (/obj/machinery/door/airlock/engineering/glass/critical{dir = 8; heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/engine,/area/engine/supermatter) -"aNL" = (/obj/machinery/power/supermatter_crystal/engine,/turf/open/floor/engine,/area/engine/supermatter) -"aNM" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/supermatter) -"aNN" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aNO" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aNP" = (/obj/structure/reflector/box/anchored{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"aNz" = (/obj/machinery/power/emitter,/turf/open/floor/plating) +"aNA" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating) +"aNB" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel) +"aNC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) +"aND" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel) +"aNE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"aNF" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Supermatter Engine"; req_access_txt = "10"},/turf/open/floor/plating) +"aNG" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine) +"aNH" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Gas to Filter"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine) +"aNI" = (/obj/machinery/door/airlock/engineering/glass/critical{dir = 4; heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine) +"aNJ" = (/turf/open/floor/engine) +"aNK" = (/obj/machinery/door/airlock/engineering/glass/critical{dir = 8; heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/engine) +"aNL" = (/obj/machinery/power/supermatter_crystal/engine,/turf/open/floor/engine) +"aNM" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating) +"aNN" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel/dark) +"aNO" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/dark) +"aNP" = (/obj/structure/reflector/box/anchored{dir = 8},/turf/open/floor/plasteel/dark) "aNQ" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) "aNR" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space/nearstation) -"aNS" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"aNT" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/dark,/area/aisat) -"aNU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/aisat) -"aNV" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/aisat) +"aNS" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark) +"aNT" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/dark) +"aNU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark) +"aNV" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark) "aNW" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) "aNX" = (/obj/docking_port/stationary/random{id = "pod_lavaland1"; name = "lavaland"},/turf/open/space,/area/space/nearstation) -"aNY" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/storage) -"aNZ" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/storage) -"aOa" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage) -"aOb" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aOc" = (/turf/open/floor/plasteel,/area/quartermaster/storage) -"aOd" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aOe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/quartermaster/storage) -"aOf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aOg" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/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},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aOh" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/primary) -"aOi" = (/turf/open/floor/plasteel,/area/storage/primary) -"aOj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/primary) -"aOk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/storage/primary) -"aOl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aOm" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aOn" = (/obj/structure/table,/obj/item/aiModule/core/full/asimov,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/item/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/item/aiModule/core/full/custom,/obj/machinery/flasher{id = "AI"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aNY" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating) +"aNZ" = (/obj/machinery/light/small,/turf/open/floor/plating) +"aOa" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating) +"aOb" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aOd" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) +"aOe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4}) +"aOf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/railing{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/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aOg" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/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},/turf/open/floor/plasteel) +"aOh" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aOj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel) +"aOk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel) +"aOm" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aOn" = (/obj/structure/table,/obj/item/ai_module/core/full/asimov,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/item/ai_module/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/item/ai_module/core/full/custom,/obj/machinery/flasher{id = "AI"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aOo" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) -"aOp" = (/obj/structure/table,/obj/machinery/door/window{dir = 8; name = "High-Risk Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/machinery/flasher{id = "AI"; pixel_y = 24},/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/item/aiModule/supplied/oxygen,/obj/item/aiModule/supplied/protectStation,/obj/item/aiModule/zeroth/oneHuman,/obj/item/aiModule/reset/purge,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aOp" = (/obj/structure/table,/obj/machinery/door/window{dir = 8; name = "High-Risk Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/machinery/flasher{id = "AI"; pixel_y = 24},/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/item/ai_module/supplied/oxygen,/obj/item/ai_module/supplied/protectStation,/obj/item/ai_module/zeroth/oneHuman,/obj/item/ai_module/reset/purge,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aOq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) "aOr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/fore) "aOs" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) @@ -2072,69 +1973,66 @@ "aOw" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/open/water,/area/security/courtroom{name = "Park"}) "aOx" = (/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) "aOy" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/open/water,/area/security/courtroom{name = "Park"}) -"aOz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/wood,/area/lawoffice) -"aOA" = (/obj/effect/landmark/start/lawyer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood,/area/lawoffice) -"aOB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/wood,/area/lawoffice) -"aOC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/wood,/area/lawoffice) -"aOD" = (/obj/structure/filingcabinet/employment,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/wood,/area/lawoffice) -"aOE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aOF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/bar,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aOH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aOI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aOJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aOL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aOM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aON" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.5-Recreation"; location = "14.3-Lockers-Dorms"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aOP" = (/turf/open/floor/carpet/red,/area/crew_quarters/locker) -"aOQ" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) -"aOS" = (/obj/item/toy/cards/deck,/obj/structure/table/wood/poker,/turf/open/floor/carpet/orange,/area/crew_quarters/locker) +"aOA" = (/obj/effect/landmark/start/lawyer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood) +"aOB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/wood) +"aOC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/wood) +"aOD" = (/obj/structure/filingcabinet/employment,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/wood) +"aOE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aOF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/bar,/turf/open/floor/plasteel) +"aOH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 8},/turf/open/floor/plasteel) +"aOI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel) +"aOJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel) +"aOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel) +"aOL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aOM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel) +"aON" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.5-Recreation"; location = "14.3-Lockers-Dorms"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel) +"aOP" = (/turf/open/floor/carpet/red) +"aOQ" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/wood) +"aOS" = (/obj/item/toy/cards/deck,/obj/structure/table/wood/poker,/turf/open/floor/carpet/orange) "aOU" = (/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aOV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) -"aOW" = (/obj/machinery/power/emitter,/obj/machinery/light/small,/turf/open/floor/plating,/area/engine/engineering) -"aOX" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/gps,/turf/open/floor/plating,/area/engine/engineering) -"aOY" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/engine/engineering) -"aOZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) -"aPa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"aPb" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Engineering Supermatter Port"; dir = 8; network = list("ss13","engine")},/obj/machinery/airalarm/engine{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 8},/turf/open/floor/engine,/area/engine/supermatter) -"aPc" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter) -"aPd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Gas to Filter"},/turf/open/floor/engine,/area/engine/supermatter) -"aPe" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) -"aPf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/engine,/area/engine/supermatter) -"aPg" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/engine/supermatter) -"aPh" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aPi" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,/turf/open/floor/engine,/area/engine/engineering) -"aPj" = (/obj/structure/reflector/double/anchored{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aPk" = (/obj/structure/reflector/single/anchored{dir = 10},/turf/open/floor/plating,/area/engine/engineering) +"aOW" = (/obj/machinery/power/emitter,/obj/machinery/light/small,/turf/open/floor/plating) +"aOX" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/gps,/turf/open/floor/plating) +"aOY" = (/obj/structure/closet/firecloset,/turf/open/floor/plating) +"aOZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aPa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel) +"aPb" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Engineering Supermatter Port"; dir = 8; network = list("ss13","engine")},/obj/machinery/airalarm/engine{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 8},/turf/open/floor/engine) +"aPc" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/closed/wall/r_wall) +"aPd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Gas to Filter"},/turf/open/floor/engine) +"aPe" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall/r_wall) +"aPf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/engine) +"aPg" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall) +"aPh" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/engine) +"aPi" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,/turf/open/floor/engine) +"aPj" = (/obj/structure/reflector/double/anchored{dir = 5},/turf/open/floor/plasteel/dark) +"aPk" = (/obj/structure/reflector/single/anchored{dir = 10},/turf/open/floor/plating) "aPl" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"aPm" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"aPn" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark,/area/aisat) -"aPo" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/aisat) -"aPp" = (/obj/structure/window/reinforced,/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore"; dir = 1; network = list("minisat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/aisat) -"aPq" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/aisat) -"aPr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/plasteel/dark,/area/aisat) +"aPm" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark) +"aPn" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark) +"aPo" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark) +"aPp" = (/obj/structure/window/reinforced,/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore"; dir = 1; network = list("minisat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark) +"aPq" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark) +"aPr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/plasteel/dark) "aPs" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"aPt" = (/turf/closed/wall,/area/quartermaster/storage) -"aPu" = (/obj/machinery/button/door{id = "QMLoaddoor"; layer = 4; name = "Loading Doors"; pixel_x = -27; pixel_y = -5},/obj/machinery/button/door{id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = -27; pixel_y = 5},/obj/machinery/computer/cargo{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aPv" = (/obj/effect/turf_decal/box/corners{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aPx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aPy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aPz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aPA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/box/corners{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 4},/area/quartermaster/storage) -"aPB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/stairs/left,/area/quartermaster/storage) -"aPC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/stairs/right,/area/quartermaster/storage) -"aPD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/qm) -"aPE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 23},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel,/area/quartermaster/qm) -"aPF" = (/obj/machinery/camera/autoname,/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 1; name = "Quartermaster's Office APC"; pixel_y = 30},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals4"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"aPG" = (/obj/machinery/light{dir = 1; pixel_y = 12},/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"aPH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/quartermaster/qm) +"aPu" = (/obj/machinery/button/door{id = "QMLoaddoor"; layer = 4; name = "Loading Doors"; pixel_x = -27; pixel_y = -5},/obj/machinery/button/door{id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = -27; pixel_y = 5},/obj/machinery/computer/cargo{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"aPv" = (/obj/effect/turf_decal/box/corners{dir = 8},/turf/open/floor/plasteel) +"aPx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aPy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aPz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aPA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/box/corners{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 4}) +"aPB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/railing{dir = 8},/turf/open/floor/plasteel/stairs/left) +"aPC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/stairs/right) +"aPD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall) +"aPE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 23},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel) +"aPF" = (/obj/machinery/camera/autoname,/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 1; name = "Quartermaster's Office APC"; pixel_y = 30},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals4"},/turf/open/floor/plasteel) +"aPG" = (/obj/machinery/light{dir = 1; pixel_y = 12},/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel) +"aPH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel) "aPI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"aPJ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/closet/crate/internals,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary) -"aPK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aPL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aPM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aPN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/primary) -"aPO" = (/obj/structure/table,/obj/item/assembly/igniter{pixel_x = -4; pixel_y = -4},/obj/item/assembly/igniter,/obj/item/screwdriver{pixel_y = 16},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aPJ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/closet/crate/internals,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aPK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel) +"aPL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"aPM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"aPO" = (/obj/structure/table,/obj/item/assembly/igniter{pixel_x = -4; pixel_y = -4},/obj/item/assembly/igniter,/obj/item/screwdriver{pixel_y = 16},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) "aPP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload) "aPQ" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aPR" = (/obj/machinery/computer/upload/borg,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/westleft{dir = 2; layer = 3.1; name = "Cyborg Upload Console Window"; req_access_txt = "16"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) @@ -2149,125 +2047,119 @@ "aQa" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) "aQb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) "aQc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) -"aQd" = (/obj/item/taperecorder,/obj/item/cartridge/lawyer,/obj/structure/table/wood,/obj/machinery/button/door{id = "lawyer_shutters"; name = "law office shutters control"; pixel_y = -26; req_access_txt = "38"},/turf/open/floor/wood,/area/lawoffice) -"aQe" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/turf/open/floor/wood,/area/lawoffice) -"aQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/lawoffice) -"aQg" = (/obj/machinery/holopad,/turf/open/floor/wood,/area/lawoffice) -"aQh" = (/obj/machinery/light_switch{pixel_y = -28},/obj/machinery/vending/wardrobe/law_wardrobe,/turf/open/floor/wood,/area/lawoffice) -"aQi" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/structure/table,/obj/item/folder,/obj/item/storage/firstaid/regular,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aQj" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aQk" = (/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aQl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aQm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aQn" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aQo" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet/orange,/area/crew_quarters/locker) -"aQq" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/junglebush/c,/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) -"aQs" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aQt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aQu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aQv" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aQx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/carpet/orange,/area/crew_quarters/locker) -"aQy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/crew_quarters/fitness/recreation) -"aQz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 5},/area/crew_quarters/fitness/recreation) -"aQB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) -"aQC" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/recreation"; dir = 4; name = "Fitness Room APC"; pixel_x = 27; pixel_y = 2},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) -"aQD" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/engineering"; dir = 8; name = "Engine Room APC"; pixel_x = -26},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aQE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"aQF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"aQG" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aQH" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/engine/engineering) -"aQI" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/engine,/area/engine/engineering) -"aQJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/supermatter) -"aQK" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/power/rad_collector/anchored,/obj/structure/cable{icon_state = "0-2"},/obj/structure/window/plasma/reinforced{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) -"aQL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/power/rad_collector/anchored,/obj/structure/cable{icon_state = "0-2"},/obj/structure/window/plasma/reinforced{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) -"aQM" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine,/area/engine/engineering) -"aQN" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) +"aQd" = (/obj/item/taperecorder,/obj/item/cartridge/lawyer,/obj/structure/table/wood,/obj/machinery/button/door{id = "lawyer_shutters"; name = "law office shutters control"; pixel_y = -26; req_access_txt = "38"},/turf/open/floor/wood) +"aQe" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/turf/open/floor/wood) +"aQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/wood) +"aQg" = (/obj/machinery/holopad,/turf/open/floor/wood) +"aQh" = (/obj/machinery/light_switch{pixel_y = -28},/obj/machinery/vending/wardrobe/law_wardrobe,/turf/open/floor/wood) +"aQi" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/structure/table,/obj/item/folder,/obj/item/storage/firstaid/regular,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aQj" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel) +"aQl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aQm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) +"aQn" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aQo" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet/orange) +"aQq" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/junglebush/c,/turf/open/floor/grass) +"aQs" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aQt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aQu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aQv" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4},/turf/open/floor/plasteel) +"aQx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/carpet/orange) +"aQy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1}) +"aQz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 5}) +"aQB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood) +"aQC" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/recreation"; dir = 4; name = "Fitness Room APC"; pixel_x = 27; pixel_y = 2},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/grass) +"aQD" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/engineering"; dir = 8; name = "Engine Room APC"; pixel_x = -26},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"aQE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aQF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel) +"aQG" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"aQH" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall) +"aQI" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/engine) +"aQJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall) +"aQK" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/power/rad_collector/anchored,/obj/structure/cable{icon_state = "0-2"},/obj/structure/window/plasma/reinforced{dir = 1},/turf/open/floor/engine) +"aQL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/power/rad_collector/anchored,/obj/structure/cable{icon_state = "0-2"},/obj/structure/window/plasma/reinforced{dir = 1},/turf/open/floor/engine) +"aQM" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/engine) +"aQN" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark) "aQO" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/space,/area/space/nearstation) "aQP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/space,/area/space/nearstation) -"aQQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice/catwalk,/turf/open/space,/area/aisat) +"aQQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice/catwalk,/turf/open/space) "aQR" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/space,/area/space/nearstation) "aQS" = (/turf/closed/wall/mineral/plastitanium,/area/hallway/secondary/entry) "aQT" = (/obj/docking_port/stationary/public_mining_dock,/turf/open/floor/plating,/area/construction/mining/aux_base) "aQU" = (/obj/item/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/keg,/turf/open/floor/plating,/area/maintenance/starboard) "aQV" = (/obj/docking_port/stationary{dir = 8; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Bay"; width = 12},/turf/open/space/basic,/area/space) -"aQW" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage) -"aQX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aQY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aQZ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{dir = 8; name = "Quartermaster"; req_access_txt = "41"},/obj/machinery/door/poddoor/preopen{id = "QM Shutters"; name = "privacy shutter"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"aRa" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_x = -24; pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals4"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"aRb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/qm) -"aRc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"aRd" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals6"},/turf/open/floor/plasteel,/area/quartermaster/qm) +"aQX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aQY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aQZ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{dir = 8; name = "Quartermaster"; req_access_txt = "41"},/obj/machinery/door/poddoor/preopen{id = "QM Shutters"; name = "privacy shutter"},/turf/open/floor/plasteel) +"aRa" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_x = -24; pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals4"},/turf/open/floor/plasteel) +"aRb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"aRc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals3"},/turf/open/floor/plasteel) +"aRd" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals6"},/turf/open/floor/plasteel) "aRe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"aRf" = (/obj/structure/plasticflaps/opaque,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Tool Storage"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary) -"aRg" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary) -"aRh" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/primary) -"aRi" = (/obj/structure/table,/obj/item/weldingtool,/obj/item/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/storage/primary) -"aRj" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aRk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aRl" = (/obj/structure/table,/obj/item/wirecutters,/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/requests_console{department = "Tool Storage"; pixel_x = 30},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Tool Storage"; dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aRf" = (/obj/structure/plasticflaps/opaque,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Tool Storage"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aRi" = (/obj/structure/table,/obj/item/weldingtool,/obj/item/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel) +"aRj" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aRl" = (/obj/structure/table,/obj/item/wirecutters,/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/requests_console{department = "Tool Storage"; pixel_x = 30},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Tool Storage"; dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) "aRm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload) -"aRn" = (/obj/structure/table,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/aiModule/supplied/quarantine,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aRn" = (/obj/structure/table,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/ai_module/supplied/quarantine,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aRo" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) "aRp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aRq" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/ai_slipper{uses = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aRr" = (/obj/structure/table,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/aiModule/supplied/freeform,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aRr" = (/obj/structure/table,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/ai_module/supplied/freeform,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aRs" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload) "aRt" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=0-SecurityDesk"; location = "16-Fore"},/turf/open/floor/plasteel,/area/hallway/primary/fore) "aRu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Fore Primary Hallway Aft"; dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore) "aRv" = (/obj/structure/chair/bench{dir = 4},/turf/open/floor/wood,/area/security/courtroom{name = "Park"}) "aRw" = (/obj/structure/railing{dir = 8},/turf/open/water,/area/security/courtroom{name = "Park"}) "aRx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) -"aRy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters"; name = "law office shutters"},/turf/open/floor/plating,/area/lawoffice) -"aRz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/lawoffice) -"aRA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters"; name = "law office shutters"},/turf/open/floor/plating,/area/lawoffice) -"aRB" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aRE" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aRH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aRI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) -"aRJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel/dark/side{dir = 8},/area/crew_quarters/fitness/recreation) -"aRK" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/fitness/recreation) -"aRL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 6},/area/crew_quarters/fitness/recreation) -"aRM" = (/obj/machinery/door/window{dir = 8},/obj/structure/flora/ausbushes/ppflowers,/obj/structure/sign/poster/contraband/punch_shit{pixel_x = 32},/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) +"aRy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters"; name = "law office shutters"},/turf/open/floor/plating) +"aRz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood) +"aRA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters"; name = "law office shutters"},/turf/open/floor/plating) +"aRB" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel) +"aRE" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel) +"aRH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aRI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating) +"aRJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel/dark/side{dir = 8}) +"aRK" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 4}) +"aRL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 6}) +"aRM" = (/obj/machinery/door/window{dir = 8},/obj/structure/flora/ausbushes/ppflowers,/obj/structure/sign/poster/contraband/punch_shit{pixel_x = 32},/turf/open/floor/grass) "aRN" = (/obj/effect/spawner/lootdrop/keg,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "aRO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) -"aRP" = (/obj/machinery/computer/atmos_alert,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/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},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aRQ" = (/obj/machinery/computer/station_alert,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aRR" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering - Power Monitoring"},/obj/machinery/modular_computer/console/preset/engineering,/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},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aRS" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/engineering) -"aRT" = (/obj/machinery/vending/engivend,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) -"aRU" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) -"aRV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering) -"aRW" = (/obj/structure/table,/obj/effect/turf_decal/delivery,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/engine/engineering) -"aRX" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aRY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aRZ" = (/obj/effect/turf_decal/bot{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aSa" = (/obj/machinery/camera{c_tag = "Supermatter Chamber"; dir = 4; network = list("engine")},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter) -"aSb" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/open/floor/engine,/area/engine/engineering) -"aSc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{filter_type = "n2"},/turf/open/floor/engine,/area/engine/engineering) +"aRP" = (/obj/machinery/computer/atmos_alert,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/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},/turf/open/floor/plasteel/dark) +"aRQ" = (/obj/machinery/computer/station_alert,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/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},/turf/open/floor/plasteel/dark) +"aRR" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering - Power Monitoring"},/obj/machinery/modular_computer/console/preset/engineering,/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},/turf/open/floor/plasteel/dark) +"aRS" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating) +"aRT" = (/obj/machinery/vending/engivend,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aRU" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aRV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) +"aRW" = (/obj/structure/table,/obj/effect/turf_decal/delivery,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel) +"aRX" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 1},/turf/open/floor/engine) +"aRY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/open/floor/plasteel/dark) +"aRZ" = (/obj/effect/turf_decal/bot{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/dark) +"aSa" = (/obj/machinery/camera{c_tag = "Supermatter Chamber"; dir = 4; network = list("engine")},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine) +"aSb" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/open/floor/engine) +"aSc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{filter_type = "n2"},/turf/open/floor/engine) "aSd" = (/turf/closed/wall,/area/hallway/secondary/entry) "aSe" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/mining/aux_base) "aSf" = (/obj/machinery/door/airlock/external{name = "Construction Zone"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/construction/mining/aux_base) -"aSg" = (/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "Supply Dock Loading Door"},/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aSh" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aSi" = (/obj/machinery/conveyor/inverted{dir = 6; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aSj" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSl" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSm" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/box/corners{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSo" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Cargo Bay - Starboard"; dir = 8},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/rack,/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/destTagger{pixel_x = 4; pixel_y = 3},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSp" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/obj/machinery/door/poddoor/preopen{id = "QM Shutters"; name = "privacy shutter"},/turf/open/floor/plating,/area/quartermaster/qm) -"aSq" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals6"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"aSr" = (/obj/effect/landmark/start/quartermaster,/obj/structure/chair/office/dark,/turf/open/floor/plasteel,/area/quartermaster/qm) -"aSs" = (/turf/open/floor/plasteel,/area/quartermaster/qm) -"aSt" = (/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 28; pixel_y = 6},/obj/machinery/keycard_auth{pixel_x = 26; pixel_y = -8},/obj/structure/table/wood,/obj/item/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/cartridge/quartermaster,/obj/item/gps{gpstag = "QM0"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"aSu" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary) -"aSv" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aSw" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/item/storage/firstaid/regular,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/storage/primary) -"aSx" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/storage/primary) -"aSy" = (/obj/structure/table,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aSz" = (/obj/structure/table,/obj/item/aiModule/reset,/obj/machinery/light{dir = 8},/obj/machinery/status_display/ai{pixel_x = -32},/obj/machinery/flasher{id = "AI"; pixel_y = -24},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aSg" = (/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "Supply Dock Loading Door"},/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/open/floor/plating) +"aSh" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "QMLoad"},/turf/open/floor/plating) +"aSi" = (/obj/machinery/conveyor/inverted{dir = 6; id = "QMLoad"},/turf/open/floor/plating) +"aSj" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aSk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aSl" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"aSm" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"aSn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/box/corners{dir = 4},/turf/open/floor/plasteel) +"aSo" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Cargo Bay - Starboard"; dir = 8},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/rack,/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/dest_tagger{pixel_x = 4; pixel_y = 3},/turf/open/floor/plasteel) +"aSp" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/obj/machinery/door/poddoor/preopen{id = "QM Shutters"; name = "privacy shutter"},/turf/open/floor/plating) +"aSq" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals6"},/turf/open/floor/plasteel) +"aSr" = (/obj/effect/landmark/start/quartermaster,/obj/structure/chair/office/dark,/turf/open/floor/plasteel) +"aSs" = (/turf/open/floor/plasteel) +"aSt" = (/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 28; pixel_y = 6},/obj/machinery/keycard_auth{pixel_x = 26; pixel_y = -8},/obj/structure/table/wood,/obj/item/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/cartridge/quartermaster,/obj/item/gps{gpstag = "QM0"},/turf/open/floor/plasteel) +"aSu" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aSv" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aSw" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/item/storage/firstaid/regular,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel) +"aSy" = (/obj/structure/table,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aSz" = (/obj/structure/table,/obj/item/ai_module/reset,/obj/machinery/light{dir = 8},/obj/machinery/status_display/ai{pixel_x = -32},/obj/machinery/flasher{id = "AI"; pixel_y = -24},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aSA" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/ai_monitored/turret_protected/ai_upload"; name = "Upload APC"; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/camera/motion{c_tag = "AI Upload Chamber - Port"; dir = 1; network = list("aiupload")},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) "aSB" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aSC" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; name = "Private AI Channel"; pixel_y = -25},/obj/machinery/camera/motion{c_tag = "AI Upload Chamber - Starboard"; dir = 1; network = list("aiupload")},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) @@ -2278,45 +2170,42 @@ "aSH" = (/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) "aSI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/sand/plating,/turf/open/floor/mineral/sandstone_floor,/area/security/courtroom{name = "Park"}) "aSJ" = (/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) -"aSK" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSL" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Crew Quarters Entrance"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/airlock{dir = 8; name = "Locker Room"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 16; pixel_y = 3},/obj/item/flashlight/lamp/green{pixel_x = -5},/turf/open/floor/carpet/red,/area/crew_quarters/locker) -"aSS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/table/wood,/turf/open/floor/carpet/red,/area/crew_quarters/locker) -"aST" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet/red,/area/crew_quarters/locker) -"aSU" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTa" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/costume,/obj/effect/spawner/lootdrop/costume,/obj/item/clothing/mask/balaclava,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTb" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) -"aTd" = (/turf/open/floor/plasteel/dark/side{dir = 9},/area/crew_quarters/fitness/recreation) -"aTe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/fitness/recreation) -"aTg" = (/obj/item/conveyor_construct/treadmill,/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) -"aTh" = (/obj/structure/window/reinforced{dir = 8},/obj/item/statuebust,/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) +"aSK" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aSL" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aSM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aSN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aSO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Crew Quarters Entrance"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aSP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/airlock{dir = 8; name = "Locker Room"},/turf/open/floor/plasteel) +"aSQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel) +"aSR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 16; pixel_y = 3},/obj/item/flashlight/lamp/green{pixel_x = -5},/turf/open/floor/carpet/red) +"aSS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/table/wood,/turf/open/floor/carpet/red) +"aST" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet/red) +"aSU" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aSV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aSZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"aTa" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/costume,/obj/effect/spawner/lootdrop/costume,/obj/item/clothing/mask/balaclava,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aTd" = (/turf/open/floor/plasteel/dark/side{dir = 9}) +"aTe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark/side{dir = 4}) +"aTg" = (/obj/machinery/treadmill,/turf/open/floor/wood) +"aTh" = (/obj/structure/window/reinforced{dir = 8},/obj/item/statuebust,/turf/open/floor/grass) "aTi" = (/obj/machinery/light/small{dir = 8},/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aTj" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/cigbutt,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) -"aTk" = (/obj/effect/landmark/start/station_engineer,/obj/machinery/light{dir = 8},/obj/structure/sign/warning/electricshock{pixel_x = -31},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"aTl" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"aTm" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering) -"aTn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/engineering) -"aTo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"aTp" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"aTq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aTr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{sortType = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"aTs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/engine,/area/engine/engineering) -"aTt" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aTu" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/crowbar,/obj/machinery/door/poddoor/preopen{id = "engsm"; name = "radiation shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aTv" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aTw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/engine,/area/engine/engineering) -"aTx" = (/obj/structure/cable/white{icon_state = "0-2"},/turf/open/floor/plating,/area/engine/engineering) -"aTy" = (/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/emitter/anchored{dir = 1; state = 2},/turf/open/floor/plating,/area/engine/engineering) -"aTz" = (/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/emitter/anchored{dir = 1; state = 2},/obj/machinery/light{dir = 4},/turf/open/floor/plating,/area/engine/engineering) -"aTA" = (/turf/closed/wall/r_wall,/area/aisat) -"aTB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/aisat) +"aTk" = (/obj/effect/landmark/start/station_engineer,/obj/machinery/light{dir = 8},/obj/structure/sign/warning/electricshock{pixel_x = -31},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"aTl" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aTm" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) +"aTn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating) +"aTo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"aTp" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"aTq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel) +"aTr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{sortType = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel) +"aTs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/engine) +"aTt" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plasteel/dark) +"aTu" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/crowbar,/obj/machinery/door/poddoor/preopen{id = "engsm"; name = "radiation shutters"},/turf/open/floor/plating) +"aTv" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine) +"aTw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/engine) +"aTx" = (/obj/structure/cable/white{icon_state = "0-2"},/turf/open/floor/plating) +"aTy" = (/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/emitter/anchored{dir = 1; state = 2},/turf/open/floor/plating) +"aTz" = (/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/emitter/anchored{dir = 1; state = 2},/obj/machinery/light{dir = 4},/turf/open/floor/plating) "aTC" = (/obj/machinery/light{dir = 8},/obj/machinery/computer/camera_advanced/base_construction{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) "aTD" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/construction/mining/aux_base) "aTE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/construction/mining/aux_base) @@ -2325,19 +2214,18 @@ "aTH" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/construction/mining/aux_base) "aTI" = (/obj/structure/rack,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/assault_pod/mining,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/construction/mining/aux_base) "aTJ" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/pipe_dispenser,/obj/machinery/light{dir = 4},/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/plasteel,/area/construction/mining/aux_base) -"aTK" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aTL" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"; pixel_x = 6},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTM" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/hand_labeler{pixel_y = 6},/obj/item/hand_labeler,/obj/item/screwdriver{pixel_y = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTN" = (/obj/effect/turf_decal/loading_area{icon_state = "trim"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) -"aTO" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/loading_area{icon_state = "trim"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/computer/security/qm{dir = 1},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) -"aTP" = (/obj/effect/turf_decal/loading_area{icon_state = "trim"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/status_display/supply{pixel_y = -32},/obj/machinery/computer/cargo{dir = 1},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) -"aTQ" = (/obj/effect/turf_decal/loading_area{icon_state = "trim"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -4; pixel_y = 4},/obj/item/pen{pixel_x = -5; pixel_y = 5},/obj/item/stamp/qm{pixel_x = -2; pixel_y = 13},/obj/item/clipboard{pixel_x = 10; pixel_y = 3},/obj/item/folder/yellow{pixel_x = 11; pixel_y = 3},/obj/item/pen/red{pixel_x = 10; pixel_y = 2},/obj/machinery/button/door{id = "QM Shutters"; name = "Quartermaster's Office Shutters"; pixel_x = 24; pixel_y = 7; req_access_txt = "41"},/turf/open/floor/plasteel/dark,/area/quartermaster/qm) +"aTK" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"},/turf/open/floor/plating) +"aTL" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"; pixel_x = 6},/turf/open/floor/plasteel) +"aTM" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/hand_labeler{pixel_y = 6},/obj/item/hand_labeler,/obj/item/screwdriver{pixel_y = 10},/turf/open/floor/plasteel) +"aTN" = (/obj/effect/turf_decal/loading_area{icon_state = "trim"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/plasteel/dark) +"aTO" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/loading_area{icon_state = "trim"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/computer/security/qm{dir = 1},/turf/open/floor/plasteel/dark) +"aTP" = (/obj/effect/turf_decal/loading_area{icon_state = "trim"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/status_display/supply{pixel_y = -32},/obj/machinery/computer/cargo{dir = 1},/turf/open/floor/plasteel/dark) +"aTQ" = (/obj/effect/turf_decal/loading_area{icon_state = "trim"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -4; pixel_y = 4},/obj/item/pen{pixel_x = -5; pixel_y = 5},/obj/item/stamp/qm{pixel_x = -2; pixel_y = 13},/obj/item/clipboard{pixel_x = 10; pixel_y = 3},/obj/item/folder/yellow{pixel_x = 11; pixel_y = 3},/obj/item/pen/red{pixel_x = 10; pixel_y = 2},/obj/machinery/button/door{id = "QM Shutters"; name = "Quartermaster's Office Shutters"; pixel_x = 24; pixel_y = 7; req_access_txt = "41"},/turf/open/floor/plasteel/dark) "aTR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"aTS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/disposal/deliveryChute{dir = 4; name = "Crate Disposal Chute"; pixel_x = -5; pixel_y = 2},/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Crate Disposal Chute"},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary) -"aTT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aTU" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aTV" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/storage/primary) -"aTW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aTS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/disposal/deliveryChute{dir = 4; name = "Crate Disposal Chute"; pixel_x = -5; pixel_y = 2},/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Crate Disposal Chute"},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"aTU" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"aTV" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel) +"aTW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) "aTX" = (/obj/machinery/flasher{id = "AI"; pixel_y = -24},/obj/machinery/porta_turret/ai{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aTY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aTZ" = (/obj/machinery/porta_turret/ai{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) @@ -2345,41 +2233,39 @@ "aUb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Station Park"},/turf/open/floor/plasteel/dark,/area/security/courtroom{name = "Park"}) "aUc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/sand/plating,/turf/open/floor/mineral/sandstone_floor,/area/security/courtroom{name = "Park"}) "aUd" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=16-Fore"; location = "15-Court"},/obj/effect/turf_decal/sand/plating,/turf/open/floor/mineral/sandstone_floor,/area/security/courtroom{name = "Park"}) -"aUe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUh" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/locker) -"aUi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUj" = (/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUl" = (/obj/structure/rack,/obj/item/storage/briefcase,/obj/item/storage/briefcase{pixel_x = 4; pixel_y = -2},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUm" = (/obj/machinery/camera{c_tag = "Pool South"; dir = 1; name = "arrivals camera"},/obj/structure/table,/obj/item/reagent_containers/rag/towel{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/rag/towel,/turf/open/floor/plasteel/dark/side{dir = 10},/area/crew_quarters/fitness/recreation) -"aUo" = (/obj/machinery/vending/gato,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/recreation) -"aUq" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) +"aUe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel) +"aUf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aUi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel) +"aUj" = (/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aUk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"aUl" = (/obj/structure/rack,/obj/item/storage/briefcase,/obj/item/storage/briefcase{pixel_x = 4; pixel_y = -2},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"aUm" = (/obj/machinery/camera{c_tag = "Pool South"; dir = 1; name = "arrivals camera"},/obj/structure/table,/obj/item/reagent_containers/rag/towel{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/rag/towel,/turf/open/floor/plasteel/dark/side{dir = 10}) +"aUo" = (/obj/machinery/vending/gato,/turf/open/floor/plasteel/dark/side) +"aUq" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/wood) "aUr" = (/obj/item/book/manual/wiki/engineering_hacking{pixel_x = 4; pixel_y = 5},/obj/item/book/manual/wiki/engineering_construction{pixel_y = 3},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aUs" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"aUt" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"aUu" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"aUv" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Power Monitoring"; req_access_txt = "32"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aUw" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"aUx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"aUy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aUz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aUA" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"aUB" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"aUC" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/engine,/area/engine/engineering) -"aUD" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"aUE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aUF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/meter,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"aUG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"aUH" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aUI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Cooling Loop Bypass"},/obj/structure/cable/white{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aUJ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"aUK" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"aUL" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-8"},/turf/open/floor/plating,/area/engine/engineering) -"aUM" = (/obj/structure/cable/white{icon_state = "1-8"},/turf/open/floor/plating,/area/engine/engineering) -"aUN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/aisat) -"aUO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/aisat) +"aUs" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel) +"aUt" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"aUu" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) +"aUv" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering/glass{dir = 4; name = "Power Monitoring"; req_access_txt = "32"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aUw" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"aUx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel) +"aUy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aUz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"aUA" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel) +"aUB" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine) +"aUC" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/engine) +"aUD" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/engine) +"aUE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/engine) +"aUF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/meter,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/engine) +"aUG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/engine) +"aUH" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/engine) +"aUI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Cooling Loop Bypass"},/obj/structure/cable/white{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/engine) +"aUJ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/engine) +"aUK" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/floor/engine) +"aUL" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-8"},/turf/open/floor/plating) +"aUM" = (/obj/structure/cable/white{icon_state = "1-8"},/turf/open/floor/plating) +"aUN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall) +"aUO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall) "aUP" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) "aUQ" = (/obj/structure/chair{dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/hallway/secondary/entry) "aUR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry) @@ -2394,25 +2280,23 @@ "aVa" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods/fifty,/obj/item/storage/box/lights/mixed,/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/plasteel,/area/construction/mining/aux_base) "aVb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) "aVc" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/port/fore) -"aVd" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "QMLoad"; pixel_x = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVf" = (/obj/effect/turf_decal/delivery,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVg" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/machinery/light/floor,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/box/corners{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/start/cargo_technician,/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVj" = (/obj/machinery/light{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/item/paper_bin{pixel_x = -1; pixel_y = 6},/obj/item/pen{pixel_x = -1; pixel_y = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVd" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "QMLoad"; pixel_x = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"aVf" = (/obj/effect/turf_decal/delivery,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel) +"aVg" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/machinery/light/floor,/turf/open/floor/plasteel) +"aVh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/box/corners{dir = 4},/turf/open/floor/plasteel) +"aVi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/start/cargo_technician,/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel) +"aVj" = (/obj/machinery/light{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/item/paper_bin{pixel_x = -1; pixel_y = 6},/obj/item/pen{pixel_x = -1; pixel_y = 5},/turf/open/floor/plasteel) "aVk" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/security/checkpoint/supply) "aVl" = (/turf/closed/wall,/area/security/checkpoint/supply) "aVm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) "aVn" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Tool Storage Maintenance"; req_access_txt = "12"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port) -"aVo" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aVp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/primary) -"aVq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/primary) -"aVr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/primary) -"aVs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/primary) -"aVt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/primary) -"aVu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aVv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/primary) +"aVo" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aVp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aVq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aVr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel) +"aVs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aVt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"aVu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) "aVw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{name = "AI Upload"; req_access_txt = "16"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) "aVx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore) "aVy" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/courtroom{name = "Park"}) @@ -2422,71 +2306,69 @@ "aVC" = (/obj/effect/landmark/event_spawn,/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) "aVD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/sand/plating,/turf/open/floor/mineral/sandstone_floor,/area/security/courtroom{name = "Park"}) "aVE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) -"aVF" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms"; location = "14.2-Central-CrewQuarters"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock{dir = 8; name = "Locker Room"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{areastring = "/area/crew_quarters/locker"; name = "Locker Room APC"; pixel_x = -1; pixel_y = -26},/obj/structure/cable/yellow,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/machinery/camera{c_tag = "Locker Room Port"; dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/machinery/newscaster{pixel_y = -32},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVR" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aVF" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"aVG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"aVH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"aVI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms"; location = "14.2-Central-CrewQuarters"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"aVK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock{dir = 8; name = "Locker Room"},/turf/open/floor/plasteel) +"aVL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{areastring = "/area/crew_quarters/locker"; name = "Locker Room APC"; pixel_x = -1; pixel_y = -26},/obj/structure/cable/yellow,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aVM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/machinery/camera{c_tag = "Locker Room Port"; dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aVN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aVO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aVP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/machinery/newscaster{pixel_y = -32},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aVQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"aVR" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) "aVS" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aVT" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/power/smes/engineering,/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},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aVU" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/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},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aVV" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"aVW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"aVX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"aVY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/white{icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"aVZ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"aWa" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/engine/engineering) -"aWb" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"aWc" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Atmos to Loop"},/turf/open/floor/engine,/area/engine/engineering) -"aWd" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/engine,/area/engine/engineering) -"aWe" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Engineering Supermatter Aft"; dir = 1; network = list("ss13","engine")},/turf/open/floor/engine,/area/engine/engineering) -"aWf" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Gas to Cold Loop"},/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"aWg" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"aWh" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"aWi" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Cold Loop to Gas"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/engine/engineering) -"aWj" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aWk" = (/obj/item/wrench,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"aWl" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window{name = "MiniSat Walkway Access"},/turf/open/floor/plasteel/dark,/area/aisat) -"aWm" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore Port"; dir = 8; network = list("minisat")},/turf/open/floor/plasteel/dark,/area/aisat) -"aWn" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/aisat) -"aWo" = (/obj/structure/lattice,/turf/open/space,/area/aisat) +"aVT" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/power/smes/engineering,/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},/turf/open/floor/plasteel/dark) +"aVU" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/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},/turf/open/floor/plasteel/dark) +"aVV" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"aVW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel) +"aVX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"aVY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/white{icon_state = "1-4"},/turf/open/floor/plasteel) +"aVZ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) +"aWa" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine) +"aWb" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine) +"aWc" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Atmos to Loop"},/turf/open/floor/engine) +"aWd" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/engine) +"aWe" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Engineering Supermatter Aft"; dir = 1; network = list("ss13","engine")},/turf/open/floor/engine) +"aWf" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Gas to Cold Loop"},/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine) +"aWg" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine) +"aWh" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine) +"aWi" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Cold Loop to Gas"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine) +"aWj" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark) +"aWk" = (/obj/item/wrench,/turf/open/floor/plasteel/dark) +"aWl" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window{name = "MiniSat Walkway Access"},/turf/open/floor/plasteel/dark) +"aWm" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore Port"; dir = 8; network = list("minisat")},/turf/open/floor/plasteel/dark) +"aWn" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space) +"aWo" = (/obj/structure/lattice,/turf/open/space) "aWp" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) "aWq" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "aWr" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"aWs" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/aisat) -"aWt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore Starboard"; dir = 4; network = list("minisat")},/turf/open/floor/plasteel/dark,/area/aisat) -"aWu" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/door/window{base_state = "right"; icon_state = "right"; name = "MiniSat Walkway Access"},/turf/open/floor/plasteel/dark,/area/aisat) +"aWs" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/open/space) +"aWt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore Starboard"; dir = 4; network = list("minisat")},/turf/open/floor/plasteel/dark) +"aWu" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/door/window{base_state = "right"; icon_state = "right"; name = "MiniSat Walkway Access"},/turf/open/floor/plasteel/dark) "aWv" = (/obj/structure/sign/warning/pods,/turf/closed/wall,/area/hallway/secondary/entry) "aWw" = (/obj/machinery/door/airlock/external{name = "Escape Pod One"},/turf/open/floor/plating,/area/hallway/secondary/entry) "aWx" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/construction/mining/aux_base) "aWy" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering{name = "Auxillary Base Construction"; req_one_access_txt = "32;47;48"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) "aWz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/construction/mining/aux_base) "aWA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore) -"aWB" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"},/obj/machinery/camera{c_tag = "Cargo Bay - Port"; dir = 4},/turf/open/floor/plating,/area/quartermaster/storage) +"aWB" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"},/obj/machinery/camera{c_tag = "Cargo Bay - Port"; dir = 4},/turf/open/floor/plating) "aWC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"aWD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aWE" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;63;48;50"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/primary) -"aWF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/item/clipboard{pixel_x = -4; pixel_y = 4},/obj/item/folder/yellow{pixel_x = 3; pixel_y = 4},/obj/item/folder/yellow{pixel_x = 5; pixel_y = 2},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aWE" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;63;48;50"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating) +"aWF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/item/clipboard{pixel_x = -4; pixel_y = 4},/obj/item/folder/yellow{pixel_x = 3; pixel_y = 4},/obj/item/folder/yellow{pixel_x = 5; pixel_y = 2},/turf/open/floor/plasteel) "aWG" = (/obj/structure/closet/secure_closet/security/cargo,/obj/machinery/airalarm{pixel_y = 23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) "aWH" = (/obj/machinery/power/apc{areastring = "/area/security/checkpoint/supply"; dir = 1; name = "Security Post - Cargo Bay APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) "aWI" = (/obj/item/screwdriver{pixel_y = 10},/obj/item/radio/off,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) "aWJ" = (/obj/structure/filingcabinet,/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aWK" = (/obj/structure/table,/obj/item/analyzer,/obj/machinery/power/apc{areastring = "/area/storage/primary"; name = "Tool Storage APC"; pixel_y = -27},/obj/structure/cable/yellow,/obj/item/wrench,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aWL" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/storage/box/lights/mixed,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aWM" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aWN" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aWO" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aWP" = (/obj/structure/table,/obj/item/crowbar,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/obj/machinery/light/small,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/primary) -"aWQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aWR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 28},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aWK" = (/obj/structure/table,/obj/item/analyzer,/obj/machinery/power/apc{areastring = "/area/storage/primary"; name = "Tool Storage APC"; pixel_y = -27},/obj/structure/cable/yellow,/obj/item/wrench,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aWL" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/storage/box/lights/mixed,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aWM" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aWN" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aWO" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aWP" = (/obj/structure/table,/obj/item/crowbar,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/obj/machinery/light/small,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/open/floor/plasteel) +"aWQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) +"aWR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 28},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel) "aWS" = (/turf/closed/wall/r_wall,/area/hallway/primary/central) "aWT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/hallway/primary/central) "aWU" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) @@ -2502,33 +2384,29 @@ "aXe" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) "aXf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/sand/plating,/turf/open/floor/mineral/sandstone_floor,/area/security/courtroom{name = "Park"}) "aXg" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/flora/ausbushes/brflowers,/obj/machinery/light{dir = 4},/turf/open/floor/grass,/area/security/courtroom{name = "Park"}) -"aXh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXi" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXj" = (/turf/closed/wall,/area/crew_quarters/locker) -"aXk" = (/obj/structure/closet/wardrobe/black,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) -"aXl" = (/obj/structure/closet/wardrobe/white,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) -"aXm" = (/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) -"aXn" = (/obj/machinery/vending/kink,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) -"aXo" = (/obj/machinery/vending/clothing,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) -"aXp" = (/obj/structure/closet/wardrobe/mixed,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) +"aXi" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"aXk" = (/obj/structure/closet/wardrobe/black,/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},/turf/open/floor/plasteel/dark) +"aXl" = (/obj/structure/closet/wardrobe/white,/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},/turf/open/floor/plasteel/dark) +"aXn" = (/obj/machinery/vending/kink,/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},/turf/open/floor/plasteel/dark) +"aXo" = (/obj/machinery/vending/clothing,/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},/turf/open/floor/plasteel/dark) +"aXp" = (/obj/structure/closet/wardrobe/mixed,/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},/turf/open/floor/plasteel/dark) "aXq" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard/fore) "aXr" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) "aXs" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aXt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "aXu" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/item/poster/random_contraband,/turf/open/floor/plating,/area/maintenance/port) -"aXv" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/wardrobe/engi_wardrobe,/turf/open/floor/plasteel,/area/engine/engineering) -"aXw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aXx" = (/obj/machinery/requests_console{department = "Engineering"; departmentType = 4; name = "Engineering RC"},/turf/closed/wall,/area/engine/engineering) -"aXy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/obj/structure/closet/secure_closet/engineering_welding,/turf/open/floor/plasteel,/area/engine/engineering) -"aXz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"aXA" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/plasteel,/area/engine/engineering) -"aXB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) +"aXv" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/wardrobe/engi_wardrobe,/turf/open/floor/plasteel) +"aXw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aXx" = (/obj/machinery/requests_console{department = "Engineering"; departmentType = 4; name = "Engineering RC"},/turf/closed/wall) +"aXy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/obj/structure/closet/secure_closet/engineering_welding,/turf/open/floor/plasteel) +"aXz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel{dir = 1}) +"aXA" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/plasteel) "aXC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/engineering{name = "Supermatter Engine"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/starboard) -"aXD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"aXE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"aXF" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"aXG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"aXH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/engineering) +"aXD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall) +"aXE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall) +"aXF" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall) +"aXG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating) +"aXH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall) "aXI" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) "aXJ" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "aXK" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) @@ -2553,20 +2431,19 @@ "aYd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aYe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) "aYf" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/entry) -"aYg" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/storage) -"aYh" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYh" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"aYi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel) +"aYj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel) +"aYk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"aYl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) "aYm" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{dir = 8; name = "Security Post - Cargo"; req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) "aYn" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) "aYo" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) "aYp" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/start/depsec/supply,/turf/open/floor/plasteel,/area/security/checkpoint/supply) "aYq" = (/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aYr" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/storage/primary) -"aYs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aYt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aYr" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment,/turf/open/floor/plating) +"aYs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"aYt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) "aYu" = (/obj/structure/closet/firecloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "aYv" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/closet/emcloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "aYw" = (/obj/structure/closet/emcloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) @@ -2585,23 +2462,19 @@ "aYJ" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "aYK" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "aYL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/public/glass{name = "Station Park"},/turf/open/floor/plasteel/dark,/area/security/courtroom{name = "Park"}) -"aYM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Crew Quarters Access"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aYN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Crew Quarters Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aYO" = (/obj/structure/sign/warning/pods,/turf/closed/wall,/area/crew_quarters/locker) +"aYM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Crew Quarters Access"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"aYN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Crew Quarters Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) +"aYO" = (/obj/structure/sign/warning/pods,/turf/closed/wall) "aYP" = (/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/machinery/vending/mealdor,/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "aYQ" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "aYR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "2-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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "aYS" = (/obj/machinery/door/airlock/maintenance{dir = 8; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) "aYT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aYU" = (/turf/closed/wall,/area/storage/tech) -"aYV" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/chief) -"aYW" = (/obj/machinery/keycard_auth{pixel_x = -25; pixel_y = 25},/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/computer/apc_control,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"aYX" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_y = 32},/obj/machinery/computer/card/minor/ce,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"aYY" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/computer/station_alert,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"aYZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"aZa" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "Chief Engineer's Office"; req_access_txt = "56"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/crew_quarters/heads/chief) -"aZb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/engineering) -"aZc" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) +"aYW" = (/obj/machinery/keycard_auth{pixel_x = -25; pixel_y = 25},/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/computer/apc_control,/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},/turf/open/floor/plasteel/dark) +"aYX" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_y = 32},/obj/machinery/computer/card/minor/ce,/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},/turf/open/floor/plasteel/dark) +"aYY" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/computer/station_alert,/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},/turf/open/floor/plasteel/dark) +"aZa" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "Chief Engineer's Office"; req_access_txt = "56"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"aZc" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel{dir = 1}) "aZd" = (/turf/open/floor/plating,/area/maintenance/starboard) "aZe" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard) "aZf" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard) @@ -2630,15 +2503,14 @@ "aZC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aZD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aZE" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Arrivals - Fore Arm"; dir = 8},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"aZF" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aZG" = (/obj/machinery/conveyor/inverted{dir = 10; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aZH" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZF" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating) +"aZG" = (/obj/machinery/conveyor/inverted{dir = 10; id = "QMLoad"},/turf/open/floor/plating) +"aZH" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals3"},/turf/open/floor/plasteel) +"aZJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"aZK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"aZL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) +"aZM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel) +"aZN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel) "aZO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/supply) "aZP" = (/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light_switch{pixel_y = -25},/turf/open/floor/plasteel,/area/security/checkpoint/supply) "aZQ" = (/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Security Post - Cargo"; dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) @@ -2650,7 +2522,7 @@ "aZW" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 4; req_one_access_txt = "12;63;48;50"},/turf/open/floor/plating,/area/maintenance/port/fore) "aZX" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "aZY" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZZ" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"},/obj/machinery/light{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage) +"aZZ" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"},/obj/machinery/light{dir = 8},/turf/open/floor/plating) "baa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "bab" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "bac" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -2689,19 +2561,18 @@ "baK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) "baL" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) "baM" = (/obj/item/cigbutt,/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/fore"; name = "Starboard Bow Maintenance APC"; pixel_y = -28},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"baN" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/item/multitool,/turf/open/floor/plasteel/dark,/area/storage/tech) -"baO" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/engineering,/turf/open/floor/plasteel/dark,/area/storage/tech) -"baP" = (/obj/structure/rack,/obj/machinery/status_display/ai{pixel_y = 31},/obj/effect/spawner/lootdrop/techstorage/medical,/turf/open/floor/plasteel/dark,/area/storage/tech) -"baQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/turf/open/floor/plasteel/dark,/area/storage/tech) -"baR" = (/obj/structure/table,/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/light/small{dir = 1},/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 28},/turf/open/floor/plasteel/dark,/area/storage/tech) -"baS" = (/obj/structure/table,/obj/item/aicard,/obj/item/aiModule/reset,/turf/open/floor/plasteel/dark,/area/storage/tech) -"baT" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"baU" = (/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"baV" = (/obj/item/storage/secure/safe{pixel_x = 6; pixel_y = 30},/obj/machinery/camera{c_tag = "Chief Engineer's Office"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"baW" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/chief"; dir = 4; name = "CE Office APC"; pixel_x = 28},/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/light_switch{pixel_x = 26; pixel_y = 26},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"baX" = (/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/obj/item/clothing/glasses/meson/engine,/turf/open/floor/plasteel,/area/engine/engineering) -"baY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"baZ" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/obj/item/clothing/glasses/meson/engine,/turf/open/floor/plasteel,/area/engine/engineering) +"baN" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/item/multitool,/turf/open/floor/plasteel/dark) +"baO" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/engineering,/turf/open/floor/plasteel/dark) +"baP" = (/obj/structure/rack,/obj/machinery/status_display/ai{pixel_y = 31},/obj/effect/spawner/lootdrop/techstorage/medical,/turf/open/floor/plasteel/dark) +"baQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/turf/open/floor/plasteel/dark) +"baR" = (/obj/structure/table,/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/light/small{dir = 1},/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 28},/turf/open/floor/plasteel/dark) +"baS" = (/obj/structure/table,/obj/item/aicard,/obj/item/ai_module/reset,/turf/open/floor/plasteel/dark) +"baT" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/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},/turf/open/floor/plasteel/dark) +"baV" = (/obj/item/storage/secure/safe{pixel_x = 6; pixel_y = 30},/obj/machinery/camera{c_tag = "Chief Engineer's Office"},/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},/turf/open/floor/plasteel/dark) +"baW" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/chief"; dir = 4; name = "CE Office APC"; pixel_x = 28},/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/light_switch{pixel_x = 26; pixel_y = 26},/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},/turf/open/floor/plasteel/dark) +"baX" = (/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/obj/item/clothing/glasses/meson/engine,/turf/open/floor/plasteel) +"baY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"baZ" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/obj/item/clothing/glasses/meson/engine,/turf/open/floor/plasteel) "bba" = (/turf/closed/wall,/area/security/checkpoint/engineering) "bbb" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plating,/area/maintenance/starboard) "bbc" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard) @@ -2721,15 +2592,14 @@ "bbq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bbr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bbs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"bbt" = (/obj/machinery/light_switch{pixel_x = -38},/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/vending/wardrobe/cargo_wardrobe,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "trim"},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bbu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bbv" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bbw" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bbx" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bby" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bbz" = (/obj/machinery/camera{c_tag = "Cargo Bay - Aft"; dir = 1},/obj/effect/turf_decal/delivery,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/railing{dir = 4},/obj/machinery/rnd/production/techfab/department/cargo,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bbA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bbB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 27},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bbt" = (/obj/machinery/light_switch{pixel_x = -38},/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/vending/wardrobe/cargo_wardrobe,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "trim"},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel) +"bbu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel) +"bbv" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel) +"bbx" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel) +"bby" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel) +"bbz" = (/obj/machinery/camera{c_tag = "Cargo Bay - Aft"; dir = 1},/obj/effect/turf_decal/delivery,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/railing{dir = 4},/obj/machinery/rnd/production/techfab/department/cargo,/turf/open/floor/plasteel) +"bbA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel) +"bbB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 27},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel) "bbC" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/supply) "bbD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;63;48;50"},/turf/open/floor/plating,/area/maintenance/port/fore) "bbE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -2758,22 +2628,19 @@ "bcb" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bcc" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bcd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bce" = (/turf/closed/wall,/area/storage/tools) "bcf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance/abandoned{name = "Storage Room"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bcg" = (/turf/closed/wall/r_wall,/area/storage/tech) -"bch" = (/obj/machinery/power/apc{areastring = "/area/storage/tech"; dir = 8; name = "Tech Storage APC"; pixel_x = -27},/obj/structure/cable/yellow{icon_state = "0-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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bci" = (/obj/structure/cable/yellow{icon_state = "4-8"},/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bcj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "4-8"},/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bck" = (/obj/structure/cable/yellow{icon_state = "2-8"},/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bcl" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bcm" = (/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -5; req_access_txt = "10"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -24; pixel_y = 5; req_access_txt = "24"},/obj/machinery/light{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bcn" = (/obj/structure/table/reinforced,/obj/item/flashlight/lamp,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bco" = (/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/stamp/ce,/obj/item/reagent_containers/pill/patch/silver_sulf,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bcp" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/paper/monitorkey,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bcq" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bcr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bcs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"bct" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering) +"bch" = (/obj/machinery/power/apc{areastring = "/area/storage/tech"; dir = 8; name = "Tech Storage APC"; pixel_x = -27},/obj/structure/cable/yellow{icon_state = "0-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},/turf/open/floor/plasteel/dark) +"bci" = (/obj/structure/cable/yellow{icon_state = "4-8"},/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},/turf/open/floor/plasteel/dark) +"bcj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "4-8"},/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},/turf/open/floor/plasteel/dark) +"bck" = (/obj/structure/cable/yellow{icon_state = "2-8"},/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},/turf/open/floor/plasteel/dark) +"bcl" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark) +"bcm" = (/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -5; req_access_txt = "10"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -24; pixel_y = 5; req_access_txt = "24"},/obj/machinery/light{dir = 8},/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},/turf/open/floor/plasteel/dark) +"bcn" = (/obj/structure/table/reinforced,/obj/item/flashlight/lamp,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel) +"bco" = (/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/stamp/ce,/obj/item/reagent_containers/pill/patch/silver_sulf,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"bcp" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/paper/monitorkey,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"bcq" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"bcs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"bct" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) "bcu" = (/obj/structure/filingcabinet,/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) "bcv" = (/obj/structure/table,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_y = 29},/obj/machinery/recharger{pixel_y = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) "bcw" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -1; pixel_y = 5},/obj/item/pen,/obj/machinery/newscaster/security_unit{pixel_x = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) @@ -2804,20 +2671,18 @@ "bcV" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) "bcW" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) "bcX" = (/obj/machinery/door/airlock/maintenance{dir = 8; name = "Cargo Bay Maintenance"; req_one_access_txt = "48;50"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) -"bcY" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals10"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/quartermaster/storage) -"bcZ" = (/obj/machinery/power/apc{areastring = "/area/quartermaster/storage"; name = "Cargo Bay APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bda" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bdb" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"; pixel_x = -8; pixel_y = 2},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals_central4"},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals6"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bdc" = (/obj/effect/turf_decal/delivery,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bdd" = (/obj/effect/turf_decal/delivery,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #2"},/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bde" = (/obj/effect/turf_decal/delivery,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #3"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #3"; suffix = "#3"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bdf" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #4"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bdg" = (/turf/closed/wall,/area/quartermaster/office) -"bdh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "48;50"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bdi" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "48;50"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bdj" = (/obj/machinery/computer/bounty,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/light/small{dir = 1; pixel_x = 16; pixel_y = 12},/turf/open/floor/plasteel/dark,/area/quartermaster/office) -"bdk" = (/obj/machinery/computer/cargo,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel/dark,/area/quartermaster/office) -"bdl" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced,/obj/structure/plasticflaps,/turf/open/floor/plating,/area/quartermaster/sorting) +"bcY" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals10"},/turf/open/floor/plasteel/dark/side{dir = 8}) +"bcZ" = (/obj/machinery/power/apc{areastring = "/area/quartermaster/storage"; name = "Cargo Bay APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel) +"bdb" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"; pixel_x = -8; pixel_y = 2},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals_central4"},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals6"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel) +"bdc" = (/obj/effect/turf_decal/delivery,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel) +"bdd" = (/obj/effect/turf_decal/delivery,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #2"},/obj/machinery/light,/turf/open/floor/plasteel) +"bde" = (/obj/effect/turf_decal/delivery,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #3"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #3"; suffix = "#3"},/turf/open/floor/plasteel) +"bdf" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #4"},/turf/open/floor/plasteel) +"bdh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "48;50"},/turf/open/floor/plasteel) +"bdi" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "48;50"},/turf/open/floor/plasteel) +"bdj" = (/obj/machinery/computer/bounty,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/light/small{dir = 1; pixel_x = 16; pixel_y = 12},/turf/open/floor/plasteel/dark) +"bdk" = (/obj/machinery/computer/cargo,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel/dark) +"bdl" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced,/obj/structure/plasticflaps,/turf/open/floor/plating) "bdm" = (/obj/machinery/computer/cargo/request,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "bdn" = (/obj/machinery/status_display/supply{pixel_y = 32},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/table,/obj/item/paper_bin{pixel_x = -1; pixel_y = 4},/obj/item/folder/yellow{pixel_x = 14; pixel_y = 4},/obj/item/folder/yellow{pixel_x = 17; pixel_y = 2},/obj/item/pen{pixel_x = -1; pixel_y = 5},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/port) "bdo" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/table,/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/port) @@ -2847,30 +2712,30 @@ "bdM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27; pixel_y = -29},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bdN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) "bdO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Central Primary Hallway - Fore - Starboard Corner"; dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdP" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/tools) -"bdQ" = (/obj/machinery/power/apc{areastring = "/area/storage/tools"; dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) -"bdR" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) -"bdS" = (/obj/structure/closet/toolcloset,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) -"bdT" = (/obj/structure/closet/toolcloset,/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/plasteel,/area/storage/tools) +"bdP" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel) +"bdQ" = (/obj/machinery/power/apc{areastring = "/area/storage/tools"; dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bdR" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bdS" = (/obj/structure/closet/toolcloset,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bdT" = (/obj/structure/closet/toolcloset,/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/plasteel) "bdU" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) "bdV" = (/obj/effect/landmark/xeno_spawn,/obj/item/cigbutt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bdX" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bdY" = (/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 8},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light/small{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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bdZ" = (/obj/machinery/light{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bea" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/turf/open/floor/plasteel/dark,/area/storage/tech) -"beb" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/service,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bec" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/lootdrop/techstorage/tcomms,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bed" = (/obj/structure/cable/yellow{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bee" = (/obj/structure/table,/obj/item/electronics/apc,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bef" = (/obj/machinery/button/door{id = "transittube"; name = "Transit Tube Lockdown"; pixel_x = -24; pixel_y = -5; req_access_txt = "24"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = -24; pixel_y = 5; req_access_txt = "11"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"beg" = (/obj/item/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/cartridge/atmos,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"beh" = (/obj/effect/landmark/start/chief_engineer,/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/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},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bei" = (/obj/machinery/holopad,/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},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bej" = (/obj/structure/table/reinforced,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bek" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the engine."; dir = 8; name = "Engine Monitor"; network = list("engine"); pixel_x = 32},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bel" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"bem" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"ben" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Engineering - Entrance"; dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) +"bdX" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/turf/open/floor/plasteel/dark) +"bdY" = (/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 8},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light/small{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},/turf/open/floor/plasteel/dark) +"bdZ" = (/obj/machinery/light{dir = 8},/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},/turf/open/floor/plasteel/dark) +"bea" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/turf/open/floor/plasteel/dark) +"beb" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/service,/turf/open/floor/plasteel/dark) +"bec" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/lootdrop/techstorage/tcomms,/turf/open/floor/plasteel/dark) +"bed" = (/obj/structure/cable/yellow{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark) +"bee" = (/obj/structure/table,/obj/item/electronics/apc,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark) +"bef" = (/obj/machinery/button/door{id = "transittube"; name = "Transit Tube Lockdown"; pixel_x = -24; pixel_y = -5; req_access_txt = "24"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = -24; pixel_y = 5; req_access_txt = "11"},/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},/turf/open/floor/plasteel/dark) +"beg" = (/obj/item/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/cartridge/atmos,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"beh" = (/obj/effect/landmark/start/chief_engineer,/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/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},/turf/open/floor/plasteel) +"bei" = (/obj/machinery/holopad,/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},/turf/open/floor/plasteel) +"bej" = (/obj/structure/table/reinforced,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel) +"bek" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the engine."; dir = 8; name = "Engine Monitor"; network = list("engine"); pixel_x = 32},/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},/turf/open/floor/plasteel/dark) +"bel" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel) +"bem" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"ben" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Engineering - Entrance"; dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) "beo" = (/obj/item/screwdriver{pixel_y = 10},/obj/item/radio/off,/obj/machinery/computer/security/telescreen/minisat{dir = 4; pixel_x = -29},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) "bep" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/depsec/engineering,/turf/open/floor/plasteel,/area/security/checkpoint/engineering) "beq" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = 30},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel,/area/security/checkpoint/engineering) @@ -2887,58 +2752,48 @@ "beB" = (/turf/closed/wall,/area/security/checkpoint/customs) "beC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) "beD" = (/obj/machinery/airalarm{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/science/research) -"beE" = (/turf/closed/wall,/area/quartermaster/sorting) -"beF" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting) -"beG" = (/obj/structure/plasticflaps/opaque,/obj/machinery/conveyor{backwards = 1; forwards = 2; id = "packageSort2"},/obj/effect/turf_decal/loading_area,/turf/open/floor/plating,/area/quartermaster/sorting) -"beH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/quartermaster/sorting) -"beI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/turf/open/floor/plasteel,/area/quartermaster/office) -"beJ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/turf/open/floor/plasteel,/area/quartermaster/office) -"beK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/status_display/supply{pixel_y = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/dark/corner{dir = 4},/area/quartermaster/office) -"beL" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/quartermaster/office) -"beM" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/quartermaster/office) -"beN" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Cargo Desk"},/obj/structure/sign/directions/supply{pixel_y = 32},/obj/machinery/door/window/westleft{name = "Cargo Desk"; req_access_txt = "50"},/turf/open/floor/plating,/area/quartermaster/office) +"beG" = (/obj/structure/plasticflaps/opaque,/obj/machinery/conveyor{backwards = 1; forwards = 2; id = "packageSort2"},/obj/effect/turf_decal/loading_area,/turf/open/floor/plating) +"beH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall) +"beI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/turf/open/floor/plasteel) +"beJ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/turf/open/floor/plasteel) +"beK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/status_display/supply{pixel_y = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/dark/corner{dir = 4}) +"beL" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1}) +"beM" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1}) +"beN" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Cargo Desk"},/obj/structure/sign/directions/supply{pixel_y = 32},/obj/machinery/door/window/westleft{name = "Cargo Desk"; req_access_txt = "50"},/turf/open/floor/plating) "beO" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/port) "beP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/port) "beQ" = (/turf/open/floor/plasteel,/area/hallway/primary/port) "beS" = (/obj/machinery/camera{c_tag = "Cargo - Foyer"; dir = 8},/obj/structure/chair{dir = 8; pixel_y = 3},/turf/open/floor/plasteel,/area/hallway/primary/port) "beT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/status_display/evac{pixel_x = -32},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "beU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"beV" = (/turf/closed/wall,/area/janitor) -"beW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/turf/open/floor/plasteel,/area/janitor) -"beX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/janitor) +"beW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/turf/open/floor/plasteel) "beY" = (/turf/closed/wall,/area/maintenance/central) "beZ" = (/obj/machinery/door/airlock{name = "Central Emergency Storage"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) "bfa" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central) -"bfb" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain/private) -"bfc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain/private) "bfd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bfe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) "bff" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfg" = (/obj/structure/rack,/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hazardvest,/obj/item/multitool,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/tools) -"bfh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/storage/tools) -"bfi" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/storage/tools) -"bfj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/storage/tools) -"bfk" = (/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) +"bfg" = (/obj/structure/rack,/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hazardvest,/obj/item/multitool,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel) +"bfi" = (/obj/machinery/holopad,/turf/open/floor/plasteel) +"bfk" = (/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) "bfl" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/starboard/fore) "bfm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bfn" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/tech) -"bfo" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/RnD_secure,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bfp" = (/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bfq" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bfr" = (/obj/machinery/holopad,/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bfs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bft" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bfu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bfv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bfw" = (/obj/structure/table,/obj/item/screwdriver{pixel_y = 16},/obj/item/wirecutters,/obj/item/multitool,/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bfx" = (/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bfy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bfz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bfA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bfB" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = 30},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bfC" = (/obj/structure/closet/toolcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) -"bfD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) -"bfE" = (/obj/structure/closet/toolcloset,/obj/effect/turf_decal/delivery,/obj/item/clothing/glasses/meson/engine,/turf/open/floor/plasteel,/area/engine/engineering) +"bfn" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating) +"bfo" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/RnD_secure,/turf/open/floor/plasteel/dark) +"bfq" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/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},/turf/open/floor/plasteel/dark) +"bfr" = (/obj/machinery/holopad,/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},/turf/open/floor/plasteel/dark) +"bfs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/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},/turf/open/floor/plasteel/dark) +"bfu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/turf/open/floor/plasteel/dark) +"bfv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark) +"bfw" = (/obj/structure/table,/obj/item/screwdriver{pixel_y = 16},/obj/item/wirecutters,/obj/item/multitool,/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},/turf/open/floor/plasteel/dark) +"bfx" = (/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{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},/turf/open/floor/plasteel/dark) +"bfy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"bfz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel) +"bfA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel) +"bfB" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = 30},/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},/turf/open/floor/plasteel/dark) +"bfC" = (/obj/structure/closet/toolcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bfD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bfE" = (/obj/structure/closet/toolcloset,/obj/effect/turf_decal/delivery,/obj/item/clothing/glasses/meson/engine,/turf/open/floor/plasteel) "bfF" = (/obj/machinery/power/apc{areastring = "/area/security/checkpoint/engineering"; dir = 8; name = "Engineering Security APC"; pixel_x = -24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) "bfG" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) "bfH" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the engine."; dir = 8; name = "Engine Monitor"; network = list("engine"); pixel_x = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) @@ -2958,18 +2813,18 @@ "bfV" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/structure/closet/secure_closet/security,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) "bfW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) "bfX" = (/obj/machinery/light/small{dir = 4},/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/fore) -"bfY" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall,/area/quartermaster/sorting) -"bfZ" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting) -"bga" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/quartermaster/sorting) -"bgb" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bgc" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/plasticflaps,/turf/open/floor/plating,/area/quartermaster/sorting) -"bgd" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating,/area/quartermaster/sorting) -"bge" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/office) -"bgf" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office) -"bgg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bgh" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/paper_bin{pixel_x = 12; pixel_y = 4},/obj/effect/spawner/lootdrop/maintenance{pixel_x = -4; pixel_y = 3},/turf/open/floor/plasteel,/area/quartermaster/office) -"bgi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/item/stamp{pixel_x = -3; pixel_y = 3},/obj/item/pen/red,/obj/structure/table,/turf/open/floor/plasteel,/area/quartermaster/office) -"bgj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/quartermaster/office) +"bfY" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall) +"bfZ" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plating) +"bga" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating) +"bgb" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/turf/open/floor/plating) +"bgc" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/plasticflaps,/turf/open/floor/plating) +"bgd" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating) +"bge" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel) +"bgf" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel) +"bgg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel) +"bgh" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/paper_bin{pixel_x = 12; pixel_y = 4},/obj/effect/spawner/lootdrop/maintenance{pixel_x = -4; pixel_y = 3},/turf/open/floor/plasteel) +"bgi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/item/stamp{pixel_x = -3; pixel_y = 3},/obj/item/pen/red,/obj/structure/table,/turf/open/floor/plasteel) +"bgj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plating) "bgk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port) "bgl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) "bgm" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals4"},/turf/open/floor/plasteel,/area/hallway/primary/port) @@ -2979,44 +2834,43 @@ "bgq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/hallway/primary/central) "bgr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) "bgs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgt" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light_switch{pixel_x = 8; pixel_y = 30},/turf/open/floor/plasteel,/area/janitor) -"bgu" = (/turf/open/floor/plasteel,/area/janitor) -"bgv" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/airalarm{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/janitor) -"bgw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/vending/wardrobe/jani_wardrobe,/turf/open/floor/plasteel,/area/janitor) +"bgt" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light_switch{pixel_x = 8; pixel_y = 30},/turf/open/floor/plasteel) +"bgv" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/airalarm{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel) +"bgw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/vending/wardrobe/jani_wardrobe,/turf/open/floor/plasteel) "bgx" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/central) "bgy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/central) "bgz" = (/turf/closed/wall/r_wall,/area/maintenance/central) -"bgA" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bgB" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/disk/nuclear,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bgC" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bgD" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bgE" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bgF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/filingcabinet{pixel_x = 4},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bgG" = (/obj/machinery/light_switch{pixel_x = 28},/obj/structure/dresser,/obj/item/storage/secure/safe{pixel_x = 6; pixel_y = 28},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) +"bgA" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/carpet) +"bgB" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/disk/nuclear,/turf/open/floor/carpet) +"bgC" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet) +"bgD" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/carpet) +"bgE" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/carpet) +"bgF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/filingcabinet{pixel_x = 4},/turf/open/floor/wood) +"bgG" = (/obj/machinery/light_switch{pixel_x = 28},/obj/structure/dresser,/obj/item/storage/secure/safe{pixel_x = 6; pixel_y = 28},/turf/open/floor/wood) "bgH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bgI" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) "bgJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgK" = (/obj/structure/table,/obj/item/storage/toolbox/emergency,/obj/machinery/light_switch{pixel_x = -26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/tools) -"bgL" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/tools) -"bgM" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/tools) -"bgN" = (/obj/structure/rack,/obj/item/electronics/apc,/obj/item/electronics/airlock,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/tools) -"bgO" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/rods/fifty,/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/plasteel,/area/storage/tools) +"bgK" = (/obj/structure/table,/obj/item/storage/toolbox/emergency,/obj/machinery/light_switch{pixel_x = -26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel) +"bgL" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel) +"bgM" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel) +"bgN" = (/obj/structure/rack,/obj/item/electronics/apc,/obj/item/electronics/airlock,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel) +"bgO" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/rods/fifty,/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/plasteel) "bgP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bgQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/command,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bgR" = (/obj/machinery/light/small{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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bgS" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bgT" = (/obj/structure/table,/obj/item/plant_analyzer,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bgU" = (/obj/structure/table,/obj/item/analyzer,/obj/item/healthanalyzer,/obj/machinery/camera/autoname{dir = 1},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bgV" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/light_switch{pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bgW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bgX" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bgY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bgZ" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -29},/obj/machinery/suit_storage_unit/ce,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bha" = (/obj/structure/rack,/obj/item/storage/secure/briefcase,/obj/item/clothing/mask/cigarette/cigar,/obj/machinery/computer/security/telescreen/ce{dir = 1; pixel_y = -30},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bhb" = (/obj/structure/rack,/obj/item/lighter,/obj/item/clothing/glasses/meson,/obj/machinery/button/door{id = "ceprivacy"; name = "Privacy Shutters Control"; pixel_y = -26},/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/item/twohanded/rcl/pre_loaded,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bhc" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bhd" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/chief) -"bhe" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{dir = 1; name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering) +"bgQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/command,/turf/open/floor/plasteel/dark) +"bgR" = (/obj/machinery/light/small{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},/turf/open/floor/plasteel/dark) +"bgS" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel/dark) +"bgT" = (/obj/structure/table,/obj/item/plant_analyzer,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/dark) +"bgU" = (/obj/structure/table,/obj/item/analyzer,/obj/item/healthanalyzer,/obj/machinery/camera/autoname{dir = 1},/turf/open/floor/plasteel/dark) +"bgV" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/light_switch{pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark) +"bgW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark) +"bgX" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/open/floor/plasteel/dark) +"bgY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/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},/turf/open/floor/plasteel/dark) +"bgZ" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -29},/obj/machinery/suit_storage_unit/ce,/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},/turf/open/floor/plasteel/dark) +"bha" = (/obj/structure/rack,/obj/item/storage/secure/briefcase,/obj/item/clothing/mask/cigarette/cigar,/obj/machinery/computer/security/telescreen/ce{dir = 1; pixel_y = -30},/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},/turf/open/floor/plasteel/dark) +"bhb" = (/obj/structure/rack,/obj/item/lighter,/obj/item/clothing/glasses/meson,/obj/machinery/button/door{id = "ceprivacy"; name = "Privacy Shutters Control"; pixel_y = -26},/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/item/rcl/pre_loaded,/turf/open/floor/plasteel/dark) +"bhc" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/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},/mob/living/simple_animal/parrot/Polly,/turf/open/floor/plasteel/dark) +"bhd" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/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},/turf/open/floor/plasteel/dark) +"bhe" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{dir = 1; name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel{dir = 1}) "bhf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/camera/autoname{dir = 4},/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -6; req_access_txt = "1"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -24; pixel_y = 5; req_access_txt = "1"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) "bhg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) "bhh" = (/obj/structure/closet/secure_closet/security/engine,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) @@ -3026,15 +2880,15 @@ "bhl" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) "bhm" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/space,/area/space/nearstation) "bhn" = (/obj/structure/sign/warning/vacuum/external,/turf/closed/wall/r_wall,/area/space/nearstation) -"bho" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/aisat) -"bhp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Port Fore"; dir = 8; network = list("minisat")},/turf/open/floor/plasteel/dark,/area/aisat) +"bho" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark) +"bhp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Port Fore"; dir = 8; network = list("minisat")},/turf/open/floor/plasteel/dark) "bhq" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) "bhr" = (/obj/machinery/porta_turret/ai,/obj/machinery/flasher{id = "AI"; pixel_y = 24},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "bhs" = (/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/ai"; dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) "bht" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"bhu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Starboard Fore"; dir = 4; network = list("minisat")},/turf/open/floor/plasteel/dark,/area/aisat) -"bhv" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/aisat) -"bhw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark,/area/aisat) +"bhu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Starboard Fore"; dir = 4; network = list("minisat")},/turf/open/floor/plasteel/dark) +"bhv" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark) +"bhw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark) "bhx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating,/area/security/checkpoint/customs) "bhy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/item/folder/red,/obj/item/folder/red,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) "bhz" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint/customs) @@ -3046,71 +2900,66 @@ "bhF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) "bhG" = (/obj/effect/landmark/blobstart,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/port/fore) "bhH" = (/obj/machinery/door/airlock/maintenance{dir = 8; name = "Mailroom Maintenance"; req_access_txt = "50"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/fore) -"bhI" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals10"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/quartermaster/sorting) -"bhJ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/destTagger{pixel_x = 4; pixel_y = 3},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bhK" = (/obj/structure/chair/stool,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bhL" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"; pixel_x = -6; pixel_y = 2},/obj/effect/decal/cleanable/oil,/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals6"},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals_central4"},/obj/machinery/button/door{id = "Deliveries Gates"; name = "Deliveries Gate Shutdown"; pixel_x = 24; pixel_y = 7; req_access_txt = "48;50"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bhM" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/window/reinforced,/obj/machinery/light{dir = 1; pixel_y = 12},/turf/open/floor/plating,/area/quartermaster/sorting) -"bhN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Cargo - Office"; dir = 4},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; dir = 8; name = "Cargo Office APC"; pixel_x = -24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bhO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bhP" = (/turf/open/floor/plasteel,/area/quartermaster/office) -"bhQ" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bhR" = (/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel,/area/quartermaster/office) -"bhS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/quartermaster/office) +"bhI" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals10"},/turf/open/floor/plasteel/dark/side{dir = 8}) +"bhJ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/dest_tagger{pixel_x = 4; pixel_y = 3},/turf/open/floor/plasteel) +"bhK" = (/obj/structure/chair/stool,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"bhL" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"; pixel_x = -6; pixel_y = 2},/obj/effect/decal/cleanable/oil,/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals6"},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals_central4"},/obj/machinery/button/door{id = "Deliveries Gates"; name = "Deliveries Gate Shutdown"; pixel_x = 24; pixel_y = 7; req_access_txt = "48;50"},/turf/open/floor/plasteel) +"bhM" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/window/reinforced,/obj/machinery/light{dir = 1; pixel_y = 12},/turf/open/floor/plating) +"bhN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Cargo - Office"; dir = 4},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; dir = 8; name = "Cargo Office APC"; pixel_x = -24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel) +"bhO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel) +"bhQ" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel) +"bhR" = (/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel) +"bhS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plating) "bhT" = (/obj/effect/turf_decal/arrows{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/hallway/primary/port) "bhU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals4"},/turf/open/floor/plasteel,/area/hallway/primary/port) "bhV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel/dark/side{dir = 4},/area/hallway/primary/port) "bhW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "bhX" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) "bhY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhZ" = (/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/obj/structure/table,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_x = -29},/obj/item/reagent_containers/spray/cleaner,/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/janitor) -"bia" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plating,/area/janitor) -"bib" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/janitor) -"bic" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/janitor) +"bhZ" = (/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/obj/structure/table,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_x = -29},/obj/item/reagent_containers/spray/cleaner,/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel) +"bia" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plating) +"bib" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel) +"bic" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel) "bid" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance"; req_access_txt = "26"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central) "bie" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/central) "bif" = (/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) "big" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/central) -"bih" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/bridge) -"bii" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/bridge) -"bij" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"bik" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"bil" = (/turf/closed/wall/r_wall,/area/bridge) -"bim" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"bin" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/bridge) -"bio" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_x = -30; pixel_y = 1},/obj/item/card/id/captains_spare,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bip" = (/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"biq" = (/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bir" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bis" = (/obj/machinery/door/window/westright,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bit" = (/obj/item/bedsheet/captain,/obj/effect/landmark/start/captain,/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 8},/obj/structure/bed,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) +"bih" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating) +"bii" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating) +"bij" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating) +"bik" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating) +"bil" = (/turf/closed/wall/r_wall) +"bim" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating) +"bin" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating) +"bio" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_x = -30; pixel_y = 1},/obj/item/card/id/captains_spare,/turf/open/floor/carpet) +"bip" = (/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet) +"bir" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet) +"bis" = (/obj/machinery/door/window/westright,/turf/open/floor/wood) +"bit" = (/obj/item/bedsheet/captain,/obj/effect/landmark/start/captain,/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 8},/obj/structure/bed,/turf/open/floor/wood) "biu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "biv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biw" = (/obj/structure/sign/directions/security{dir = 1; pixel_y = 8},/obj/structure/sign/directions/engineering{dir = 4},/obj/structure/sign/directions/command{pixel_y = -8},/turf/closed/wall/r_wall,/area/storage/tools) -"bix" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/tools) -"biy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/tools) -"biz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/storage/tools) +"biw" = (/obj/structure/sign/directions/security{dir = 1; pixel_y = 8},/obj/structure/sign/directions/engineering{dir = 4},/obj/structure/sign/directions/command{pixel_y = -8},/turf/closed/wall/r_wall) +"biy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) "biA" = (/obj/structure/closet/emcloset,/obj/structure/sign/map/left{icon_state = "map-left-MS"; pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "biB" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; icon_state = "map-right-MS"; pixel_y = 32},/obj/structure/closet/firecloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "biC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore) "biD" = (/turf/closed/wall,/area/hallway/primary/starboard) -"biE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/storage/tech) -"biF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_one_access_txt = "23;30"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/storage/tech) -"biG" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"biH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"biI" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "Engineering Security Doors"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"biJ" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "Engineering Security Doors"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) +"biE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall) +"biF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_one_access_txt = "23;30"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark) +"biG" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/open/floor/plating) +"biH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/open/floor/plating) +"biI" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "Engineering Security Doors"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"biJ" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "Engineering Security Doors"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) "biK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/checkpoint/engineering) "biL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Engineering Security Post"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) "biM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/checkpoint/engineering) -"biN" = (/turf/open/floor/plating,/area/engine/break_room) -"biO" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/break_room) +"biN" = (/turf/open/floor/plating) +"biO" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating) "biP" = (/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space/nearstation) -"biQ" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19"},/turf/open/floor/plating,/area/aisat) -"biR" = (/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},/turf/open/floor/plasteel/dark,/area/aisat) -"biS" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{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},/turf/open/floor/plasteel/dark,/area/aisat) -"biT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{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},/turf/open/floor/plasteel/dark,/area/aisat) -"biU" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window{base_state = "right"; dir = 8; icon_state = "right"; name = "MiniSat Airlock Access"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/aisat) +"biQ" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19"},/turf/open/floor/plating) +"biS" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{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},/turf/open/floor/plasteel/dark) +"biT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{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},/turf/open/floor/plasteel/dark) +"biU" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window{base_state = "right"; dir = 8; icon_state = "right"; name = "MiniSat Airlock Access"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark) "biV" = (/obj/structure/table/reinforced,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "biW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "biX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) @@ -3128,53 +2977,53 @@ "bjj" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) "bjk" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/port/fore) "bjl" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port/fore) -"bjm" = (/obj/structure/disposalpipe/sorting/wrap{dir = 1},/turf/closed/wall,/area/quartermaster/sorting) -"bjn" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/light/small{dir = 8; pixel_x = -8},/turf/open/floor/plating,/area/quartermaster/sorting) -"bjo" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bjp" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/door/window/eastleft{dir = 8; name = "Mail"; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bjq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bjr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bjs" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bjt" = (/obj/machinery/status_display/supply{pixel_y = 32},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals10"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 4},/area/quartermaster/sorting) -"bju" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/door/airlock/mining{dir = 8; name = "Mailroom"; req_one_access_txt = "48;50"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bjv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/quartermaster/office) -"bjw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals4"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bjx" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) -"bjy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bjz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bjA" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light_switch{pixel_x = 22; pixel_y = 28},/turf/open/floor/plasteel,/area/quartermaster/office) -"bjB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{dir = 8; name = "Cargo Office"; req_one_access_txt = "48;50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/quartermaster/office) +"bjm" = (/obj/structure/disposalpipe/sorting/wrap{dir = 1},/turf/closed/wall) +"bjn" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/light/small{dir = 8; pixel_x = -8},/turf/open/floor/plating) +"bjo" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bjp" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/door/window/eastleft{dir = 8; name = "Mail"; req_access_txt = "50"},/turf/open/floor/plasteel) +"bjq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel) +"bjr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel) +"bjs" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"bjt" = (/obj/machinery/status_display/supply{pixel_y = 32},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals10"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 4}) +"bju" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/door/airlock/mining{dir = 8; name = "Mailroom"; req_one_access_txt = "48;50"},/turf/open/floor/plasteel) +"bjv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8}) +"bjw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals4"},/turf/open/floor/plasteel) +"bjx" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"bjy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals3"},/turf/open/floor/plasteel) +"bjz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"bjA" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light_switch{pixel_x = 22; pixel_y = 28},/turf/open/floor/plasteel) +"bjB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{dir = 8; name = "Cargo Office"; req_one_access_txt = "48;50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4}) "bjC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/caution/stand_clear{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/port) "bjD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/port) "bjE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central6"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/hallway/primary/port) "bjF" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/port) "bjG" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel/dark/side{dir = 4},/area/hallway/primary/port) -"bjI" = (/obj/machinery/power/apc{areastring = "/area/janitor"; dir = 8; name = "Custodial Closet APC"; pixel_x = -24},/obj/structure/table,/obj/item/clothing/gloves/color/orange,/obj/item/storage/box/mousetraps,/obj/item/storage/box/mousetraps,/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plasteel,/area/janitor) -"bjJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/portable_atmospherics/canister/water_vapor,/mob/living/simple_animal/hostile/lizard{name = "Wags-His-Tail"; real_name = "Wags-His-Tail"},/turf/open/floor/plasteel,/area/janitor) -"bjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/landmark/start/janitor,/turf/open/floor/plasteel,/area/janitor) -"bjL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/janitor) +"bjI" = (/obj/machinery/power/apc{areastring = "/area/janitor"; dir = 8; name = "Custodial Closet APC"; pixel_x = -24},/obj/structure/table,/obj/item/clothing/gloves/color/orange,/obj/item/storage/box/mousetraps,/obj/item/storage/box/mousetraps,/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plasteel) +"bjJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/portable_atmospherics/canister/water_vapor,/mob/living/simple_animal/hostile/lizard{name = "Wags-His-Tail"; real_name = "Wags-His-Tail"},/turf/open/floor/plasteel) +"bjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/landmark/start/janitor,/turf/open/floor/plasteel) +"bjL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel) "bjM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/central) "bjN" = (/obj/effect/landmark/blobstart,/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 4; name = "Central Maintenance APC"; pixel_x = 26},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/maintenance/central) -"bjO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/bridge) -"bjP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/computer/card,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bjQ" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bjR" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bjS" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/item/folder/yellow{pixel_y = 4},/obj/machinery/camera{c_tag = "Bridge - Central"},/obj/structure/table/glass,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bjT" = (/obj/machinery/computer/station_alert,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bjU" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/computer/monitor{name = "Bridge Power Monitoring Console"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bjV" = (/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bjW" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/item/storage/toolbox/mechanical{pixel_x = -1; pixel_y = 4},/obj/structure/table/glass,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bjX" = (/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bjY" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bjZ" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/computer/prisoner/management,/turf/open/floor/plasteel/dark,/area/bridge) -"bka" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/bridge) -"bkb" = (/obj/structure/table/wood,/obj/item/storage/photo_album{pixel_y = -4},/obj/item/camera{pixel_y = 4},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Captain)"; pixel_x = -28},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bkc" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/obj/item/reagent_containers/food/drinks/flask/gold,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bkd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bke" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bkf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bkg" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/holopad,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bkh" = (/obj/structure/table/wood,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) +"bjO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow,/turf/open/floor/plating) +"bjP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/computer/card,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark) +"bjQ" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark) +"bjR" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark) +"bjS" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/item/folder/yellow{pixel_y = 4},/obj/machinery/camera{c_tag = "Bridge - Central"},/obj/structure/table/glass,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark) +"bjT" = (/obj/machinery/computer/station_alert,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark) +"bjU" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/computer/monitor{name = "Bridge Power Monitoring Console"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark) +"bjV" = (/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark) +"bjW" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/item/storage/toolbox/mechanical{pixel_x = -1; pixel_y = 4},/obj/structure/table/glass,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark) +"bjX" = (/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark) +"bjY" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark) +"bjZ" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/computer/prisoner/management,/turf/open/floor/plasteel/dark) +"bka" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/structure/cable/yellow,/turf/open/floor/plating) +"bkb" = (/obj/structure/table/wood,/obj/item/storage/photo_album{pixel_y = -4},/obj/item/camera{pixel_y = 4},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Captain)"; pixel_x = -28},/turf/open/floor/carpet) +"bkc" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/obj/item/reagent_containers/food/drinks/flask/gold,/turf/open/floor/carpet) +"bkd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet) +"bke" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/carpet) +"bkf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet) +"bkg" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/holopad,/turf/open/floor/wood) +"bkh" = (/obj/structure/table/wood,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/wood) "bki" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bkj" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; location = "14-Starboard-Central"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) "bkk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -3195,22 +3044,20 @@ "bkz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{areastring = "/area/hallway/primary/starboard"; dir = 1; name = "Starboard Hallway APC"; pixel_y = 26},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bkA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bkB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14-Starboard-Central"; location = "13.3-Engineering-Central"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bkC" = (/turf/closed/wall/r_wall,/area/engine/break_room) -"bkD" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/glass,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkE" = (/obj/item/book/manual/wiki/engineering_hacking{pixel_x = 4; pixel_y = 5},/obj/item/book/manual/wiki/engineering_construction{pixel_y = 3},/obj/item/book/manual/wiki/engineering_guide{pixel_x = -4},/obj/structure/table/glass,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkF" = (/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/machinery/light{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/table/glass,/obj/item/storage/firstaid/fire{pixel_y = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkG" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkJ" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkM" = (/obj/machinery/disposal/bin{pixel_x = 2; pixel_y = 2},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bkN" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/break_room) +"bkD" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/glass,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bkE" = (/obj/item/book/manual/wiki/engineering_hacking{pixel_x = 4; pixel_y = 5},/obj/item/book/manual/wiki/engineering_construction{pixel_y = 3},/obj/item/book/manual/wiki/engineering_guide{pixel_x = -4},/obj/structure/table/glass,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bkF" = (/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/machinery/light{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/table/glass,/obj/item/storage/firstaid/fire{pixel_y = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bkG" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bkH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bkI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bkJ" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bkK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bkL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) +"bkM" = (/obj/machinery/disposal/bin{pixel_x = 2; pixel_y = 2},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel) "bkO" = (/obj/docking_port/stationary/random{dir = 4; id = "pod_lavaland4"; name = "lavaland"},/turf/open/space,/area/space/nearstation) "bkP" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space,/area/space/nearstation) -"bkQ" = (/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior - Space Access"; dir = 1; network = list("minisat")},/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},/turf/open/floor/plasteel/dark,/area/aisat) -"bkR" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window{dir = 8; name = "MiniSat Airlock Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/aisat) +"bkQ" = (/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior - Space Access"; dir = 1; network = list("minisat")},/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},/turf/open/floor/plasteel/dark) +"bkR" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window{dir = 8; name = "MiniSat Airlock Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark) "bkS" = (/obj/structure/table/reinforced,/obj/item/folder/blue{pixel_y = 2},/obj/item/pen,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "bkT" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/status_display/ai{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) "bkU" = (/obj/machinery/camera{c_tag = "AI Chamber - Aft"; dir = 1; network = list("aicore")},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) @@ -3228,41 +3075,37 @@ "blg" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/port) "blh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;48;50;1"},/turf/open/floor/plating,/area/maintenance/port/fore) "bli" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/port/fore) -"blj" = (/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blk" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "packageExternal"; pixel_y = 18},/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/door/window/eastleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Deliveries"; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bll" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bln" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blo" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/filingcabinet/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 4},/area/quartermaster/sorting) -"blp" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blq" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/office) -"blr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals4"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bls" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/office) -"blt" = (/obj/structure/disposalpipe/segment,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32},/obj/machinery/light{dir = 4},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel,/area/quartermaster/office) +"blj" = (/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel) +"blk" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "packageExternal"; pixel_y = 18},/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/door/window/eastleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Deliveries"; req_access_txt = "50"},/turf/open/floor/plasteel) +"bln" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel) +"blo" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/filingcabinet/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 4}) +"blp" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel) +"blq" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel) +"blr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals4"},/turf/open/floor/plasteel) +"bls" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"blt" = (/obj/structure/disposalpipe/segment,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32},/obj/machinery/light{dir = 4},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel) "blu" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start/assistant,/obj/structure/chair,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/port) "blv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port) "blw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) "blx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port) "bly" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 4},/area/hallway/primary/port) -"blz" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/storage/box/lights/mixed,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/turf/open/floor/plasteel,/area/janitor) -"blA" = (/obj/structure/janitorialcart,/turf/open/floor/plasteel,/area/janitor) -"blB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/vehicle/ridden/janicart,/obj/item/key/janitor,/turf/open/floor/plating,/area/janitor) -"blC" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/janitor) +"blz" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/storage/box/lights/mixed,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/turf/open/floor/plasteel) +"blA" = (/obj/structure/janitorialcart,/turf/open/floor/plasteel) +"blB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/vehicle/ridden/janicart,/obj/item/key/janitor,/turf/open/floor/plating) +"blC" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel) "blD" = (/obj/item/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/central) "blE" = (/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/central) -"blF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"blG" = (/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/glass,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"blH" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"blI" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"blJ" = (/turf/open/floor/plasteel/dark,/area/bridge) -"blK" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) -"blL" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"blM" = (/obj/item/folder/red{pixel_y = 3},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/table/glass,/obj/item/folder/red{pixel_y = 3},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"blN" = (/turf/closed/wall,/area/crew_quarters/heads/captain/private) -"blO" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/bikehorn/rubberducky,/obj/machinery/light_switch{pixel_x = -28},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"blP" = (/obj/machinery/door/window{dir = 1; name = "Captain's Bedroom"; req_access_txt = "20"},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"blQ" = (/obj/structure/closet/secure_closet/captains,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"blR" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/suit_storage_unit/captain,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) +"blF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating) +"blG" = (/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/glass,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark) +"blH" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark) +"blI" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark) +"blK" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark) +"blL" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/dark) +"blM" = (/obj/item/folder/red{pixel_y = 3},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/table/glass,/obj/item/folder/red{pixel_y = 3},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark) +"blO" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/bikehorn/rubberducky,/obj/machinery/light_switch{pixel_x = -28},/turf/open/floor/wood) +"blP" = (/obj/machinery/door/window{dir = 1; name = "Captain's Bedroom"; req_access_txt = "20"},/turf/open/floor/wood) +"blQ" = (/obj/structure/closet/secure_closet/captains,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/turf/open/floor/wood) +"blR" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/suit_storage_unit/captain,/turf/open/floor/wood) "blS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "blT" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) "blU" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -3283,21 +3126,18 @@ "bmj" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bmk" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bml" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bmm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/light_switch{pixel_x = -22},/turf/open/floor/plasteel,/area/engine/break_room) -"bmn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/break_room) -"bmo" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/break_room) -"bmp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/break_room) -"bmq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"bmr" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/engine/break_room) -"bms" = (/turf/open/floor/plasteel,/area/engine/break_room) -"bmt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Escape Pod Four"; req_access_txt = "32"},/turf/open/floor/plasteel,/area/engine/break_room) -"bmu" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/break_room) -"bmv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/aisat) +"bmm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/light_switch{pixel_x = -22},/turf/open/floor/plasteel) +"bmo" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"bmp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel) +"bmq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) +"bmr" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel) +"bmt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Escape Pod Four"; req_access_txt = "32"},/turf/open/floor/plasteel) +"bmu" = (/obj/structure/closet/emcloset,/turf/open/floor/plating) +"bmv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark) "bmw" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat/foyer) "bmx" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) "bmy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) "bmz" = (/obj/machinery/door/airlock/highsecurity{name = "AI Chamber"; req_access_txt = "16"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "AI Chamber entrance shutters"; name = "AI Chamber entrance shutters"},/obj/machinery/flasher{id = "AI"; pixel_x = -26; pixel_y = 3},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_x = 28},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"bmA" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/satellite) "bmB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bmC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bmD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/entry) @@ -3310,18 +3150,17 @@ "bmK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/cable,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) "bmL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) "bmM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bmN" = (/obj/machinery/conveyor{dir = 1; id = "packageExternal"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bmO" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/bounty{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side,/area/quartermaster/sorting) -"bmP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/office/dark,/obj/effect/landmark/start/cargo_technician,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side,/area/quartermaster/sorting) -"bmQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/paper_bin{pixel_x = -1; pixel_y = 4},/obj/item/pen{pixel_x = -1; pixel_y = 5},/obj/item/folder/yellow{pixel_x = 14; pixel_y = 6},/obj/item/folder/yellow{pixel_x = 14; pixel_y = 2},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side,/area/quartermaster/sorting) -"bmR" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/machinery/camera{c_tag = "Cargo - Mailroom"; dir = 1},/obj/structure/table,/obj/item/hand_labeler{pixel_y = 6},/obj/item/hand_labeler,/obj/item/destTagger{pixel_x = 16; pixel_y = 10},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side,/area/quartermaster/sorting) -"bmS" = (/obj/structure/table,/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = -30},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/storage/box/lights/mixed,/obj/machinery/power/apc{areastring = "/area/quartermaster/sorting"; dir = 4; name = "Delivery Office APC"; pixel_x = 26},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/obj/structure/cable/yellow,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 6},/area/quartermaster/sorting) -"bmT" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/closed/wall,/area/quartermaster/sorting) -"bmU" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/structure/table,/obj/item/clipboard{pixel_x = -4; pixel_y = 4},/obj/item/clipboard{pixel_x = -1; pixel_y = 2},/obj/item/multitool{pixel_x = 10},/obj/item/pen/red{pixel_x = -2; pixel_y = 3},/turf/open/floor/plasteel,/area/quartermaster/office) -"bmV" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals4"},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/quartermaster/office) -"bmW" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/office) -"bmX" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bmY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals10"},/turf/open/floor/plasteel,/area/quartermaster/office) +"bmN" = (/obj/machinery/conveyor{dir = 1; id = "packageExternal"},/turf/open/floor/plating) +"bmO" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/bounty{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side) +"bmP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/office/dark,/obj/effect/landmark/start/cargo_technician,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side) +"bmQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/paper_bin{pixel_x = -1; pixel_y = 4},/obj/item/pen{pixel_x = -1; pixel_y = 5},/obj/item/folder/yellow{pixel_x = 14; pixel_y = 6},/obj/item/folder/yellow{pixel_x = 14; pixel_y = 2},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side) +"bmR" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/machinery/camera{c_tag = "Cargo - Mailroom"; dir = 1},/obj/structure/table,/obj/item/hand_labeler{pixel_y = 6},/obj/item/hand_labeler,/obj/item/dest_tagger{pixel_x = 16; pixel_y = 10},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side) +"bmS" = (/obj/structure/table,/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = -30},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/storage/box/lights/mixed,/obj/machinery/power/apc{areastring = "/area/quartermaster/sorting"; dir = 4; name = "Delivery Office APC"; pixel_x = 26},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/obj/structure/cable/yellow,/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 6}) +"bmT" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/closed/wall) +"bmU" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/structure/table,/obj/item/clipboard{pixel_x = -4; pixel_y = 4},/obj/item/clipboard{pixel_x = -1; pixel_y = 2},/obj/item/multitool{pixel_x = 10},/obj/item/pen/red{pixel_x = -2; pixel_y = 3},/turf/open/floor/plasteel) +"bmV" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals4"},/obj/machinery/photocopier,/turf/open/floor/plasteel) +"bmX" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel) +"bmY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals10"},/turf/open/floor/plasteel) "bmZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/table,/obj/item/toner,/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/port) "bna" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/rack,/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2; pixel_y = -3},/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/hand_labeler,/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel/dark/corner,/area/hallway/primary/port) "bnb" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark/side,/area/hallway/primary/port) @@ -3329,24 +3168,22 @@ "bnd" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/medkit_cabinet{pixel_x = 24},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/hallway/primary/port) "bne" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "bnf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bng" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) "bnh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/tank/internals/air,/turf/open/floor/plating,/area/maintenance/central) "bni" = (/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/central) -"bnj" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/modular_computer/console/preset/command,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bnk" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/machinery/modular_computer/console/preset/engineering,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bnl" = (/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/glass,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"bnm" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/bridge) -"bnn" = (/obj/item/beacon,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) -"bno" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/recharger{pixel_y = 3},/obj/item/restraints/handcuffs{pixel_y = 3},/obj/structure/table/glass,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bnp" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/computer/security/mining,/obj/machinery/keycard_auth{pixel_y = 24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bnq" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = 32},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bnr" = (/obj/effect/landmark/xeno_spawn,/obj/item/soap/deluxe,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/shower{pixel_y = 12},/obj/structure/curtain,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/captain/private) -"bns" = (/obj/structure/mirror{pixel_y = 28},/obj/structure/sink{pixel_y = 17},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/captain/private) -"bnt" = (/obj/machinery/light,/obj/effect/landmark/start/captain,/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/toilet{pixel_y = 17},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/captain/private) -"bnu" = (/obj/machinery/door/airlock/silver{name = "Bathroom"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/captain/private) -"bnv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bnw" = (/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bnx" = (/obj/effect/landmark/start/captain,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) +"bnj" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/modular_computer/console/preset/command,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bnk" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/machinery/modular_computer/console/preset/engineering,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bnl" = (/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/glass,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark) +"bnm" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark) +"bnn" = (/obj/item/beacon,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark) +"bno" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/recharger{pixel_y = 3},/obj/item/restraints/handcuffs{pixel_y = 3},/obj/structure/table/glass,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark) +"bnp" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/computer/security/mining,/obj/machinery/keycard_auth{pixel_y = 24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bnq" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = 32},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bnr" = (/obj/effect/landmark/xeno_spawn,/obj/item/soap/deluxe,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/shower{pixel_y = 12},/obj/structure/curtain,/turf/open/floor/plasteel/white) +"bns" = (/obj/structure/mirror{pixel_y = 28},/obj/structure/sink{pixel_y = 17},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white) +"bnt" = (/obj/machinery/light,/obj/effect/landmark/start/captain,/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/toilet{pixel_y = 17},/turf/open/floor/plasteel/white) +"bnu" = (/obj/machinery/door/airlock/silver{name = "Bathroom"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white) +"bnv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/wood) +"bnx" = (/obj/effect/landmark/start/captain,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/wood) "bny" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bnz" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; location = "12-Central-Starboard"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "bnA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -3361,29 +3198,27 @@ "bnJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera{c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bnK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bnL" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bnM" = (/obj/machinery/vending/kink,/turf/open/floor/carpet/black,/area/crew_quarters/bar) +"bnM" = (/obj/machinery/vending/kink,/turf/open/floor/carpet/black) "bnN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bnO" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Starboard Primary Hallway - Engineering"; dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bnP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=13.2-Tcommstore"; location = "13.1-Engineering-Enter"},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bnQ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bnR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bnS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/engine/break_room) -"bnT" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/break_room) -"bnU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/break_room) -"bnV" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/engine/break_room) -"bnW" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/engine/break_room) -"bnX" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"bnY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/break_room) -"bnZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"boa" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bob" = (/obj/structure/sign/warning/pods,/turf/closed/wall/r_wall,/area/engine/break_room) -"boc" = (/turf/closed/wall/mineral/plastitanium,/area/engine/break_room) +"bnS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating) +"bnT" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel) +"bnU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel) +"bnV" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel) +"bnW" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel) +"bnX" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel) +"bnY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) +"boa" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel) +"bob" = (/obj/structure/sign/warning/pods,/turf/closed/wall/r_wall) "bod" = (/obj/structure/lattice,/obj/structure/transit_tube/curved/flipped{dir = 4},/turf/open/space,/area/space/nearstation) "boe" = (/obj/structure/lattice,/obj/structure/transit_tube/crossing/horizontal,/turf/open/space,/area/space/nearstation) "bof" = (/obj/structure/transit_tube/curved{dir = 8},/turf/open/space,/area/space/nearstation) "bog" = (/turf/closed/wall,/area/space/nearstation) "boh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) -"boi" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/aisat) +"boi" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/structure/window/reinforced,/turf/open/floor/plating/airless) "boj" = (/obj/machinery/computer/teleporter,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/firealarm{dir = 4; pixel_x = -26},/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/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) "bok" = (/obj/machinery/teleport/station,/obj/machinery/status_display/evac{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) "bol" = (/obj/machinery/teleport/hub,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) @@ -3392,10 +3227,10 @@ "boo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "bop" = (/obj/structure/showcase/cyborg/old{pixel_y = 20},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "boq" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/porta_turret/ai,/obj/machinery/computer/security/telescreen/minisat{dir = 8; pixel_x = 28},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"bor" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/yellow{icon_state = "0-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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bos" = (/obj/machinery/recharge_station,/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/cable/yellow{icon_state = "2-8"},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bot" = (/obj/machinery/airalarm{pixel_y = 26},/obj/machinery/atmospherics/components/unary/portables_connector/visible{name = "Auxiliary MiniSat Distribution Port"},/obj/machinery/portable_atmospherics/canister/air,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bou" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable{icon_state = "0-2"},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) +"bor" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/yellow{icon_state = "0-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},/turf/open/floor/plasteel/dark) +"bos" = (/obj/machinery/recharge_station,/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/cable/yellow{icon_state = "2-8"},/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},/turf/open/floor/plasteel/dark) +"bot" = (/obj/machinery/airalarm{pixel_y = 26},/obj/machinery/atmospherics/components/unary/portables_connector/visible{name = "Auxiliary MiniSat Distribution Port"},/obj/machinery/portable_atmospherics/canister/air,/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},/turf/open/floor/plasteel/dark) +"bou" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable{icon_state = "0-2"},/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},/turf/open/floor/plasteel/dark) "bov" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bow" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) "box" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port) @@ -3408,71 +3243,67 @@ "boE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port) "boF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) "boG" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port) -"boH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/obj/machinery/door/poddoor/shutters/preopen{id = "Deliveries Gates"; name = "Deliveries Shutters"},/turf/open/floor/plating,/area/quartermaster/sorting) -"boI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Deliveries Gates"; name = "Deliveries Shutters"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/quartermaster/sorting) -"boJ" = (/obj/machinery/door/firedoor,/obj/machinery/mineral/ore_redemption,/turf/open/floor/plating,/area/quartermaster/office) -"boK" = (/obj/structure/disposalpipe/segment,/obj/machinery/autolathe,/obj/machinery/door/window/westleft{dir = 1; name = "Cargo Desk"; req_access_txt = "50"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/quartermaster/office) -"boL" = (/obj/structure/sign/directions/supply{dir = 1; pixel_y = 8},/turf/closed/wall,/area/quartermaster/office) +"boH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/obj/machinery/door/poddoor/shutters/preopen{id = "Deliveries Gates"; name = "Deliveries Shutters"},/turf/open/floor/plating) +"boI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Deliveries Gates"; name = "Deliveries Shutters"},/obj/machinery/door/firedoor,/turf/open/floor/plating) +"boJ" = (/obj/machinery/door/firedoor,/obj/machinery/mineral/ore_redemption,/turf/open/floor/plating) +"boK" = (/obj/structure/disposalpipe/segment,/obj/machinery/autolathe,/obj/machinery/door/window/westleft{dir = 1; name = "Cargo Desk"; req_access_txt = "50"},/obj/machinery/door/firedoor,/turf/open/floor/plating) +"boL" = (/obj/structure/sign/directions/supply{dir = 1; pixel_y = 8},/turf/closed/wall) "boM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/port) "boN" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "boO" = (/obj/structure/sign/directions/security{dir = 1; pixel_y = 8},/obj/structure/sign/directions/engineering{dir = 4},/obj/structure/sign/directions/command{pixel_y = -8},/turf/closed/wall/r_wall,/area/hallway/primary/port) "boP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"boQ" = (/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_y = 25; req_access_txt = "28"},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"boR" = (/obj/machinery/light{dir = 1},/obj/item/storage/secure/briefcase,/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/storage/secure/briefcase,/obj/item/assembly/flash/handheld,/obj/machinery/computer/security/telescreen/vault{pixel_y = 30},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"boS" = (/obj/machinery/recharger,/obj/item/storage/secure/safe{pixel_x = 34},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"boQ" = (/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_y = 25; req_access_txt = "28"},/obj/structure/table/wood,/turf/open/floor/wood) +"boR" = (/obj/machinery/light{dir = 1},/obj/item/storage/secure/briefcase,/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/storage/secure/briefcase,/obj/item/assembly/flash/handheld,/obj/machinery/computer/security/telescreen/vault{pixel_y = 30},/turf/open/floor/wood) +"boS" = (/obj/machinery/recharger,/obj/item/storage/secure/safe{pixel_x = 34},/obj/structure/table/wood,/turf/open/floor/wood) "boT" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/central) "boU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/carpet/gato,/area/maintenance/central) "boV" = (/obj/item/radio/off,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/central) "boW" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Bridge"},/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/maintenance/central) -"boX" = (/obj/machinery/door/window/westleft{dir = 4; name = "Bridge Deliveries"; req_access_txt = "19"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/bridge) -"boY" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"boZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"bpa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"bpb" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"bpc" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"bpd" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bpe" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/window/brigdoor{name = "Command Desk"; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bpf" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bpg" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bph" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"bpi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) -"bpj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/chair/office/dark{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Bridge - Starboard"; dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bpk" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) +"boX" = (/obj/machinery/door/window/westleft{dir = 4; name = "Bridge Deliveries"; req_access_txt = "19"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"boY" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"boZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark) +"bpa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark) +"bpb" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark) +"bpc" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) +"bpd" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bpe" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/window/brigdoor{name = "Command Desk"; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bpf" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bpg" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bph" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark) +"bpi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark) +"bpj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/chair/office/dark{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Bridge - Starboard"; dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bpk" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/carpet) "bpl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/status_display/evac{pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bpm" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bpn" = (/obj/structure/sign/directions/evac,/obj/structure/sign/directions/medical{pixel_y = 8},/obj/structure/sign/directions/science{pixel_y = -8},/turf/closed/wall,/area/storage/art) -"bpo" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/art) -"bpp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Art Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/art) -"bpq" = (/turf/closed/wall,/area/storage/art) -"bpr" = (/turf/closed/wall,/area/crew_quarters/bar) +"bpn" = (/obj/structure/sign/directions/evac,/obj/structure/sign/directions/medical{pixel_y = 8},/obj/structure/sign/directions/science{pixel_y = -8},/turf/closed/wall) +"bpp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Art Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) "bps" = (/turf/closed/wall,/area/maintenance/starboard) "bpt" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;25;46"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard) -"bpu" = (/obj/machinery/vending/cigarette,/turf/open/floor/carpet/black,/area/crew_quarters/bar) +"bpu" = (/obj/machinery/vending/cigarette,/turf/open/floor/carpet/black) "bpw" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;25;46"},/turf/open/floor/plating,/area/maintenance/starboard) "bpx" = (/obj/structure/sign/directions/engineering{dir = 4; pixel_y = 8},/turf/closed/wall,/area/maintenance/starboard) "bpy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bpz" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bpA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bpB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{dir = 8; name = "Engineering Foyer"; req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/break_room) -"bpC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bpD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"bpE" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/break_room) -"bpF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) -"bpG" = (/obj/structure/table/glass,/obj/item/lightreplacer{pixel_y = 7},/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/engine/break_room) -"bpH" = (/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{pixel_y = 4},/obj/structure/table/glass,/turf/open/floor/plasteel,/area/engine/break_room) -"bpI" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"bpJ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Engineering - Foyer - Starboard"; dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"bpK" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"bpL" = (/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/obj/structure/transit_tube_pod{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"bpM" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/status_display/ai{pixel_y = 32},/obj/structure/transit_tube/curved{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/break_room) +"bpB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{dir = 8; name = "Engineering Foyer"; req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel) +"bpC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel) +"bpD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel) +"bpE" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) +"bpF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel) +"bpG" = (/obj/structure/table/glass,/obj/item/lightreplacer{pixel_y = 7},/obj/item/storage/belt/utility,/turf/open/floor/plasteel) +"bpH" = (/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{pixel_y = 4},/obj/structure/table/glass,/turf/open/floor/plasteel) +"bpI" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) +"bpJ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Engineering - Foyer - Starboard"; dir = 8},/turf/open/floor/plasteel) +"bpK" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bpL" = (/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/obj/structure/transit_tube_pod{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bpM" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/status_display/ai{pixel_y = 32},/obj/structure/transit_tube/curved{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) "bpN" = (/obj/structure/transit_tube/diagonal,/turf/open/space,/area/space/nearstation) -"bpO" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube/curved/flipped,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/aisat) -"bpP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/airalarm{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/aisat) -"bpQ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/aisat) -"bpR" = (/obj/machinery/door/window{dir = 1; name = "MiniSat Walkway Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/aisat) -"bpS" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/aisat) -"bpT" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/showcase/cyborg/old{dir = 8; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/aisat) -"bpU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/aisat) +"bpO" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube/curved/flipped,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"bpP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/airalarm{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"bpQ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"bpR" = (/obj/machinery/door/window{dir = 1; name = "MiniSat Walkway Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"bpS" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"bpT" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/showcase/cyborg/old{dir = 8; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) "bpV" = (/obj/structure/showcase/cyborg/old{dir = 4; pixel_x = -9; pixel_y = 2},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) "bpW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) "bpX" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "Antechamber Turret Control"; pixel_x = 30; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/ai_slipper{uses = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) @@ -3482,10 +3313,10 @@ "bqb" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/cyborg,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "bqc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "bqd" = (/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/aisat_interior"; dir = 4; name = "MiniSat Antechamber APC"; pixel_x = 29},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"bqe" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/ai_slipper{uses = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bqf" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/mob/living/silicon/robot/ai,/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bqg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bqh" = (/obj/structure/showcase/cyborg/old{dir = 8; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) +"bqe" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/ai_slipper{uses = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark) +"bqf" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark) +"bqg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark) +"bqh" = (/obj/structure/showcase/cyborg/old{dir = 8; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark) "bqi" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Arrivals - Station Entrance"; dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bqj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bqk" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) @@ -3513,67 +3344,64 @@ "bqG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Port Primary Hallway"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) "bqH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "bqI" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=4-Customs"; location = "3-Central-Port"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) -"bqK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/computer/bounty{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"bqL" = (/obj/effect/landmark/start/head_of_personnel,/obj/structure/chair/office/dark{dir = 8},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"bqM" = (/obj/machinery/newscaster/security_unit{pixel_x = 32},/obj/machinery/computer/security/mining{dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"bqN" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; dir = 8; name = "Bridge APC"; pixel_x = -27},/obj/structure/cable/yellow,/obj/machinery/camera{c_tag = "Bridge - Port"; dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bqO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"bqP" = (/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"bqQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bqR" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bqS" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/recharger,/obj/item/restraints/handcuffs,/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/bridge) -"bqT" = (/obj/machinery/computer/communications,/turf/open/floor/plasteel/dark,/area/bridge) -"bqU" = (/obj/machinery/computer/security/wooden_tv{pixel_x = 1; pixel_y = 6},/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/bridge) -"bqV" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/glass,/obj/item/folder/blue{pixel_y = 2},/obj/item/folder/blue{pixel_y = 2},/turf/open/floor/plasteel/dark,/area/bridge) -"bqW" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bqX" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bqY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"bqZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bra" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/item/storage/fancy/donut_box,/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/bridge) -"brb" = (/obj/structure/displaycase/captain{pixel_y = 5},/obj/machinery/status_display/evac{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"brc" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"brd" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bre" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"brf" = (/obj/machinery/computer/communications{dir = 8},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Captain)"; pixel_x = 28},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"brg" = (/obj/structure/rack,/obj/item/cane,/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom,/turf/open/floor/plating,/area/crew_quarters/heads/captain/private) +"bqJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plating) +"bqK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/computer/bounty{dir = 4},/turf/open/floor/wood) +"bqL" = (/obj/effect/landmark/start/head_of_personnel,/obj/structure/chair/office/dark{dir = 8},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/wood) +"bqM" = (/obj/machinery/newscaster/security_unit{pixel_x = 32},/obj/machinery/computer/security/mining{dir = 8},/turf/open/floor/wood) +"bqN" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; dir = 8; name = "Bridge APC"; pixel_x = -27},/obj/structure/cable/yellow,/obj/machinery/camera{c_tag = "Bridge - Port"; dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bqP" = (/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) +"bqQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bqR" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bqS" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/recharger,/obj/item/restraints/handcuffs,/obj/structure/table/glass,/turf/open/floor/plasteel/dark) +"bqT" = (/obj/machinery/computer/communications,/turf/open/floor/plasteel/dark) +"bqU" = (/obj/machinery/computer/security/wooden_tv{pixel_x = 1; pixel_y = 6},/obj/structure/table/glass,/turf/open/floor/plasteel/dark) +"bqV" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/glass,/obj/item/folder/blue{pixel_y = 2},/obj/item/folder/blue{pixel_y = 2},/turf/open/floor/plasteel/dark) +"bqW" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bqX" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bqY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark) +"bqZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bra" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/item/storage/fancy/donut_box,/obj/structure/table/glass,/turf/open/floor/plasteel/dark) +"brb" = (/obj/structure/displaycase/captain{pixel_y = 5},/obj/machinery/status_display/evac{pixel_y = 32},/turf/open/floor/wood) +"brc" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/turf/open/floor/wood) +"brd" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/turf/open/floor/wood) +"bre" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood) +"brf" = (/obj/machinery/computer/communications{dir = 8},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Captain)"; pixel_x = 28},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = 24},/turf/open/floor/wood) +"brg" = (/obj/structure/rack,/obj/item/cane,/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom,/turf/open/floor/plating) "brh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/camera{c_tag = "Central Primary Hallway - Starboard - Art Storage"; dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bri" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"brj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/art) -"brk" = (/obj/structure/table,/obj/item/hand_labeler,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj,/obj,/obj,/obj,/turf/open/floor/plasteel,/area/storage/art) -"brl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "1-2"},/obj,/obj,/obj,/obj,/obj,/obj,/turf/open/floor/plasteel,/area/storage/art) -"brm" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/light/small{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/twentythreeXtwentythree,/turf/open/floor/plasteel,/area/storage/art) -"brn" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/obj/item/book/manual/blubbery_bartender,/turf/open/floor/wood,/area/crew_quarters/bar) -"bro" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar) -"brp" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/gun/ballistic/revolver/doublebarrel,/obj/machinery/camera{c_tag = "Bar - Backroom"},/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/wood,/area/crew_quarters/bar) -"brq" = (/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/wood,/area/crew_quarters/bar) -"brr" = (/obj/machinery/door/window/southleft{name = "Bar Delivery"; req_access_txt = "25"},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"brs" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 8; freq = 1400; location = "Bar"},/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/crew_quarters/bar) +"brj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating) +"brk" = (/obj/structure/table,/obj/item/hand_labeler,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj,/obj,/obj,/obj,/turf/open/floor/plasteel) +"brl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "1-2"},/obj,/obj,/obj,/obj,/obj,/obj,/turf/open/floor/plasteel) +"brm" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/light/small{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/twentythreeXtwentythree,/turf/open/floor/plasteel) +"brn" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/obj/item/book/manual/blubbery_bartender,/turf/open/floor/wood) +"bro" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/turf/open/floor/wood) +"brp" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/gun/ballistic/revolver/doublebarrel,/obj/machinery/camera{c_tag = "Bar - Backroom"},/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/wood) +"brq" = (/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/wood) +"brr" = (/obj/machinery/door/window/southleft{name = "Bar Delivery"; req_access_txt = "25"},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"brs" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 8; freq = 1400; location = "Bar"},/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) "brt" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bru" = (/obj/machinery/vending/kink,/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) +"bru" = (/obj/machinery/vending/kink,/turf/open/floor/plating) "brv" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard) "brw" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/starboard) -"brx" = (/obj/structure/chair/sofa/corner{dir = 1},/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"bry" = (/obj/machinery/light/small{bulb_colour = "#FF3232"; color = "#FF3232"; dir = 1; light_color = "#FF3232"},/obj/structure/chair/sofa,/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"brz" = (/obj/structure/chair/sofa/corner,/turf/open/floor/carpet/black,/area/crew_quarters/bar) +"brx" = (/obj/structure/chair/sofa/corner{dir = 1},/turf/open/floor/carpet/black) +"bry" = (/obj/machinery/light/small{bulb_colour = "#FF3232"; color = "#FF3232"; dir = 1; light_color = "#FF3232"},/obj/structure/chair/sofa,/turf/open/floor/carpet/black) +"brz" = (/obj/structure/chair/sofa/corner,/turf/open/floor/carpet/black) "brA" = (/obj/structure/disposalpipe/sorting/mail{dir = 2; sortType = 19},/obj/effect/turf_decal/stripes/line,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard) "brB" = (/obj/machinery/space_heater,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "brC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard) "brD" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "brE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "brF" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"brG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/engine/break_room) -"brH" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/break_room) -"brI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/break_room) -"brJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"brK" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/break_room) -"brL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/item/stack/tile/plasteel{pixel_x = 5; pixel_y = 14},/turf/open/floor/plating,/area/engine/break_room) -"brM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "0-4"},/obj/item/stack/tile/plasteel{pixel_y = 12},/turf/open/floor/plating,/area/engine/break_room) -"brN" = (/obj/machinery/door/poddoor/preopen{id = "transittube"; name = "Transit Tube Blast Door"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"brO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Access"; req_one_access_txt = "32;19"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"brP" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"brQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"brR" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/table/glass,/obj/item/phone{desc = "Who can it be now?"; pixel_x = -3; pixel_y = 3},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/break_room) +"brI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"brJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel) +"brK" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel) +"brL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/item/stack/tile/plasteel{pixel_x = 5; pixel_y = 14},/turf/open/floor/plating) +"brM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "0-4"},/obj/item/stack/tile/plasteel{pixel_y = 12},/turf/open/floor/plating) +"brN" = (/obj/machinery/door/poddoor/preopen{id = "transittube"; name = "Transit Tube Blast Door"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"brO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Access"; req_one_access_txt = "32;19"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark) +"brP" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark) +"brQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark) +"brR" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/table/glass,/obj/item/phone{desc = "Who can it be now?"; pixel_x = -3; pixel_y = 3},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark) "brS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube/curved{dir = 4},/turf/open/space,/area/space/nearstation) "brT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/transit_tube/horizontal,/turf/open/space,/area/space/nearstation) "brU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space,/area/space/nearstation) @@ -3582,12 +3410,12 @@ "brX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/transit_tube/junction/flipped{dir = 8},/turf/open/space,/area/space/nearstation) "brY" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/space/nearstation) "brZ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/space/nearstation) -"bsa" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/transit_tube/station{dir = 4},/turf/open/floor/plasteel/dark,/area/aisat) -"bsb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "0-8"},/obj/item/stack/tile/plasteel{pixel_x = 9; pixel_y = 16},/turf/open/floor/plating,/area/aisat) -"bsc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/item/stack/tile/plasteel{pixel_x = -6; pixel_y = 14},/turf/open/floor/plating,/area/aisat) -"bsd" = (/obj/machinery/holopad,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/aisat) -"bse" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/aisat) -"bsf" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/plasteel/dark,/area/aisat) +"bsa" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/transit_tube/station{dir = 4},/turf/open/floor/plasteel/dark) +"bsb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "0-8"},/obj/item/stack/tile/plasteel{pixel_x = 9; pixel_y = 16},/turf/open/floor/plating) +"bsc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/item/stack/tile/plasteel{pixel_x = -6; pixel_y = 14},/turf/open/floor/plating) +"bsd" = (/obj/machinery/holopad,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark) +"bse" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark) +"bsf" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/plasteel/dark) "bsg" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Foyer"; req_one_access_txt = "32;19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) "bsh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) "bsi" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/holopad,/obj/item/beacon,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) @@ -3599,14 +3427,14 @@ "bso" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "bsp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "bsq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "32"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"bsr" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bss" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bst" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bsu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bsv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"bsw" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/plasteel/dark,/area/aisat) -"bsx" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/aisat) -"bsy" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) +"bsr" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark) +"bss" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark) +"bst" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark) +"bsu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/dark) +"bsv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark) +"bsw" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/plasteel/dark) +"bsx" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark) +"bsy" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark) "bsz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bsA" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bsB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/entry"; dir = 4; name = "Arrivals APC"; pixel_x = 26},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) @@ -3632,78 +3460,76 @@ "bsV" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) "bsW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) "bsX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bsY" = (/obj/item/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/pen,/obj/structure/window/reinforced,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"bsZ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/window{name = "HoP's Desk"; req_access_txt = "57"},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"bta" = (/obj/structure/window/reinforced,/obj/machinery/computer/cargo/request{dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"btb" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"btc" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/obj/machinery/pdapainter{pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"btd" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/bed/dogbed/ian,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"bte" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"btf" = (/turf/closed/wall,/area/crew_quarters/heads/hop) -"btg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bth" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/rack,/obj/item/storage/secure/briefcase,/obj/item/clothing/mask/cigarette/cigar,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bti" = (/obj/structure/rack,/obj/item/aicard,/obj/item/radio/off,/obj/machinery/computer/security/telescreen/minisat{dir = 1; pixel_y = -29},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"btj" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/cell_charger{pixel_y = 4},/obj/structure/table/glass,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/open/floor/plasteel/dark,/area/bridge) -"btk" = (/turf/open/floor/carpet/royalblue,/area/bridge) -"btl" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge) -"btm" = (/obj/structure/window/reinforced{dir = 4},/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/bridge) -"btn" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/structure/rack,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/assembly/timer,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bto" = (/obj/machinery/light,/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/item/storage/toolbox/emergency{pixel_x = -2; pixel_y = -3},/obj/item/wrench,/obj/item/multitool,/obj/machinery/newscaster{pixel_y = -30},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"btp" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"btq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"btr" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/item/paper_bin{pixel_x = -2; pixel_y = 7},/obj/item/pen{pixel_y = 3},/obj/machinery/light_switch{pixel_x = 28},/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/bridge) -"bts" = (/obj/structure/table/wood,/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/captain/private"; dir = 8; name = "Captain's Quarters APC"; pixel_x = -24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light/small{dir = 8},/obj/item/book/manual/gato_spacelaw,/obj/item/coin/plasma,/obj/item/melee/chainofcommand,/obj/item/paper/fluff/gateway,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"btt" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"btu" = (/obj/structure/table/wood,/obj/item/stamp/captain,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"btv" = (/obj/effect/landmark/start/captain,/obj/structure/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"btw" = (/obj/machinery/computer/card{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = 32},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) +"bsY" = (/obj/item/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/pen,/obj/structure/window/reinforced,/obj/structure/table/wood,/turf/open/floor/wood) +"bsZ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/window{name = "HoP's Desk"; req_access_txt = "57"},/turf/open/floor/wood) +"bta" = (/obj/structure/window/reinforced,/obj/machinery/computer/cargo/request{dir = 8},/turf/open/floor/wood) +"btb" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/turf/open/floor/wood) +"btc" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/obj/machinery/pdapainter{pixel_y = 2},/turf/open/floor/wood) +"btd" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/bed/dogbed/ian,/turf/open/floor/wood) +"bte" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/turf/open/floor/wood) +"btg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bth" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/rack,/obj/item/storage/secure/briefcase,/obj/item/clothing/mask/cigarette/cigar,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bti" = (/obj/structure/rack,/obj/item/aicard,/obj/item/radio/off,/obj/machinery/computer/security/telescreen/minisat{dir = 1; pixel_y = -29},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"btj" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/cell_charger{pixel_y = 4},/obj/structure/table/glass,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/open/floor/plasteel/dark) +"btk" = (/turf/open/floor/carpet/royalblue) +"btl" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/carpet/royalblue) +"btm" = (/obj/structure/window/reinforced{dir = 4},/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/dark) +"btn" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/structure/rack,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/assembly/timer,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bto" = (/obj/machinery/light,/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/item/storage/toolbox/emergency{pixel_x = -2; pixel_y = -3},/obj/item/wrench,/obj/item/multitool,/obj/machinery/newscaster{pixel_y = -30},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"btp" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"btq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"btr" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/item/paper_bin{pixel_x = -2; pixel_y = 7},/obj/item/pen{pixel_y = 3},/obj/machinery/light_switch{pixel_x = 28},/obj/structure/table/glass,/turf/open/floor/plasteel/dark) +"bts" = (/obj/structure/table/wood,/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/captain/private"; dir = 8; name = "Captain's Quarters APC"; pixel_x = -24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light/small{dir = 8},/obj/item/book/manual/gato_spacelaw,/obj/item/coin/plasma,/obj/item/melee/chainofcommand,/obj/item/paper/fluff/gateway,/turf/open/floor/wood) +"btt" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/wood) +"btu" = (/obj/structure/table/wood,/obj/item/stamp/captain,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/wood) +"btv" = (/obj/effect/landmark/start/captain,/obj/structure/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood) +"btw" = (/obj/machinery/computer/card{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = 32},/turf/open/floor/wood) "btx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bty" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "btz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"btA" = (/obj/structure/table,/obj/machinery/power/apc{areastring = "/area/storage/art"; dir = 8; name = "Art Storage APC"; pixel_x = -25},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/item/paper_bin,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/open/floor/plasteel,/area/storage/art) -"btB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/storage/art) -"btC" = (/obj/structure/table,/obj/item/paper_bin/construction,/obj/item/airlock_painter,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/storage/art) -"btD" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) -"btE" = (/obj/effect/landmark/start/bartender,/turf/open/floor/wood,/area/crew_quarters/bar) -"btF" = (/obj/structure/disposalpipe/segment{dir = 6},/mob/living/carbon/monkey/punpun,/turf/open/floor/wood,/area/crew_quarters/bar) -"btG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"btH" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/turf/open/floor/wood,/area/crew_quarters/bar) +"btA" = (/obj/structure/table,/obj/machinery/power/apc{areastring = "/area/storage/art"; dir = 8; name = "Art Storage APC"; pixel_x = -25},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/item/paper_bin,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/open/floor/plasteel) +"btB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel) +"btC" = (/obj/structure/table,/obj/item/paper_bin/construction,/obj/item/airlock_painter,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel) +"btD" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood) +"btE" = (/obj/effect/landmark/start/bartender,/turf/open/floor/wood) +"btF" = (/obj/structure/disposalpipe/segment{dir = 6},/mob/living/carbon/monkey/punpun,/turf/open/floor/wood) +"btG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood) +"btH" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/turf/open/floor/wood) "btI" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Bar Maintenance"; req_access_txt = "25"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard) "btJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard) "btK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard) -"btL" = (/obj/structure/table/wood,/obj/effect/spawner/lootdrop/gambling{pixel_y = 7},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/bar) -"btM" = (/obj/structure/chair/sofa{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"btN" = (/obj/structure/chair/sofa{dir = 4},/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"btO" = (/obj/structure/pole,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/bar) -"btP" = (/obj/structure/chair/sofa{dir = 8},/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"btQ" = (/obj/structure/table/wood,/obj/item/ashtray{name = "candle holder"},/obj/item/candle{pixel_x = 1; pixel_y = 7},/turf/open/floor/wood,/area/crew_quarters/bar) -"btR" = (/obj/structure/chair/sofa/right{dir = 4},/obj/item/storage/pill_bottle/breast_enlargement{pixel_x = -12; pixel_y = -10},/obj/item/storage/pill_bottle/penis_enlargement{pixel_x = -12},/obj/item/reagent_containers/pill/butt_enlargement{pixel_x = -12; pixel_y = 10},/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"btS" = (/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"btT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/keg,/turf/open/floor/wood,/area/crew_quarters/bar) +"btL" = (/obj/structure/table/wood,/obj/effect/spawner/lootdrop/gambling{pixel_y = 7},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood) +"btM" = (/obj/structure/chair/sofa{dir = 4},/turf/open/floor/wood) +"btN" = (/obj/structure/chair/sofa{dir = 4},/turf/open/floor/carpet/black) +"btP" = (/obj/structure/chair/sofa{dir = 8},/turf/open/floor/carpet/black) +"btQ" = (/obj/structure/table/wood,/obj/item/ashtray{name = "candle holder"},/obj/item/candle{pixel_x = 1; pixel_y = 7},/turf/open/floor/wood) +"btR" = (/obj/structure/chair/sofa/right{dir = 4},/obj/item/storage/pill_bottle/breast_enlargement{pixel_x = -12; pixel_y = -10},/obj/item/storage/pill_bottle/penis_enlargement{pixel_x = -12},/obj/item/reagent_containers/pill/butt_enlargement{pixel_x = -12; pixel_y = 10},/turf/open/floor/carpet/black) +"btS" = (/turf/open/floor/carpet/black) +"btT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/keg,/turf/open/floor/wood) "btU" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "btV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "btW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/warning/securearea{pixel_x = 32},/turf/open/floor/plasteel/dark/corner,/area/hallway/primary/starboard) -"btX" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/engine/break_room) -"btY" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -30},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/engine/break_room) -"btZ" = (/obj/machinery/microwave{pixel_y = 4},/obj/machinery/camera{c_tag = "Engineering - Foyer - Port"; dir = 1},/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/engine/break_room) -"bua" = (/obj/machinery/newscaster{pixel_y = -32},/obj/item/storage/box/donkpockets,/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/engine/break_room) -"bub" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"buc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{areastring = "/area/engine/break_room"; name = "Engineering Foyer APC"; pixel_x = -1; pixel_y = -26},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light,/turf/open/floor/plasteel,/area/engine/break_room) -"bud" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel,/area/engine/break_room) -"bue" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"buf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/break_room) -"bug" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/warning/securearea{pixel_x = 32},/turf/open/floor/plasteel,/area/engine/break_room) -"buh" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"bui" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/engine/break_room) -"buj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/glass,/obj/item/folder/blue{pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/pen,/obj/machinery/computer/security/telescreen/minisat{dir = 1; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/engine/break_room) +"btX" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"btY" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -30},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"btZ" = (/obj/machinery/microwave{pixel_y = 4},/obj/machinery/camera{c_tag = "Engineering - Foyer - Port"; dir = 1},/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bua" = (/obj/machinery/newscaster{pixel_y = -32},/obj/item/storage/box/donkpockets,/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bub" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"buc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{areastring = "/area/engine/break_room"; name = "Engineering Foyer APC"; pixel_x = -1; pixel_y = -26},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light,/turf/open/floor/plasteel) +"bud" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel) +"bue" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"buf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"bug" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/warning/securearea{pixel_x = 32},/turf/open/floor/plasteel) +"buh" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark) +"bui" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) +"buj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/glass,/obj/item/folder/blue{pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/pen,/obj/machinery/computer/security/telescreen/minisat{dir = 1; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) "buk" = (/obj/structure/transit_tube/diagonal/topleft,/turf/open/space,/area/space/nearstation) -"bul" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube/curved{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"bum" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior Access"; dir = 1; network = list("minisat")},/obj/machinery/power/apc{areastring = "/area/aisat"; name = "MiniSat Exterior APC"; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"bun" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"buo" = (/obj/machinery/door/window{name = "MiniSat Walkway Access"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"bup" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"buq" = (/obj/structure/window/reinforced,/obj/structure/showcase/cyborg/old{dir = 8; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"bur" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/aisat) +"bul" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube/curved{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bum" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior Access"; dir = 1; network = list("minisat")},/obj/machinery/power/apc{areastring = "/area/aisat"; name = "MiniSat Exterior APC"; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bun" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"buo" = (/obj/machinery/door/window{name = "MiniSat Walkway Access"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bup" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"buq" = (/obj/structure/window/reinforced,/obj/structure/showcase/cyborg/old{dir = 8; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark) +"bur" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall) "bus" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) "but" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) "buu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; name = "MiniSat Foyer APC"; pixel_y = -29},/obj/structure/cable/yellow,/obj/machinery/camera/motion{c_tag = "MiniSat Foyer"; dir = 8; network = list("minisat")},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) @@ -3713,10 +3539,10 @@ "buy" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "buz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) "buA" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/blue,/mob/living/simple_animal/bot/cleanbot,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"buB" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/satellite"; name = "MiniSat Maint APC"; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow,/obj/item/stack/sheet/mineral/plasma{amount = 35},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"buC" = (/obj/machinery/computer/station_alert{dir = 1},/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/computer/security/telescreen/minisat{dir = 1; pixel_y = -29},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"buD" = (/obj/structure/table,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/monitor{dir = 1},/obj/structure/cable/yellow,/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) -"buE" = (/obj/machinery/camera/motion{c_tag = "MiniSat Maintenance"; dir = 8; network = list("minisat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/multitool,/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/satellite) +"buB" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/satellite"; name = "MiniSat Maint APC"; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow,/obj/item/stack/sheet/mineral/plasma{amount = 35},/turf/open/floor/plasteel/dark) +"buC" = (/obj/machinery/computer/station_alert{dir = 1},/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/computer/security/telescreen/minisat{dir = 1; pixel_y = -29},/turf/open/floor/plasteel/dark) +"buD" = (/obj/structure/table,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/monitor{dir = 1},/obj/structure/cable/yellow,/turf/open/floor/plasteel/dark) +"buE" = (/obj/machinery/camera/motion{c_tag = "MiniSat Maintenance"; dir = 8; network = list("minisat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/multitool,/turf/open/floor/plasteel/dark) "buF" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space/nearstation) "buG" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/mealdor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "buH" = (/obj/item/beacon,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) @@ -3745,55 +3571,51 @@ "bve" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Port Primary Hallway"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port) "bvf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bvg" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=7-Command-Starboard"; location = "6-Port-Central"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bvh" = (/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = -24; pixel_y = -6; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -25; pixel_y = 5},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bvi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bvj" = (/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bvk" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hop"; dir = 1; name = "Head of Personnel APC"; pixel_y = 24},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bvl" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bvm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bvn" = (/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bvo" = (/obj/machinery/keycard_auth{pixel_x = 26},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bvp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bvq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bvr" = (/turf/closed/wall,/area/bridge) -"bvs" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel/dark,/area/bridge) -"bvt" = (/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "19"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/button/door{id = "council blast"; name = "Council Chamber Blast Door Control"; pixel_x = -1; pixel_y = -34; req_access_txt = "19"},/obj/machinery/camera{c_tag = "Bridge - Command Chair"; dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge) -"bvu" = (/obj/machinery/holopad,/turf/open/floor/carpet/royalblue,/area/bridge) -"bvv" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/button/door{id = "evashutter"; name = "E.V.A. Storage Shutter Control"; pixel_y = -24; req_access_txt = "19"},/obj/machinery/button/door{id = "gateshutter"; name = "Gateway Shutter Control"; pixel_y = -34; req_access_txt = "19"},/turf/open/floor/carpet/royalblue,/area/bridge) -"bvw" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/vending/mealdor,/turf/open/floor/plasteel/dark,/area/bridge) -"bvx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bvy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bvz" = (/obj/structure/table/wood,/obj/structure/window/reinforced,/obj/machinery/light_switch{pixel_x = -28},/obj/item/storage/secure/briefcase{pixel_x = -2; pixel_y = 4},/obj/item/storage/lockbox/medal,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bvA" = (/obj/machinery/door/window{name = "Captain's Desk"; req_access_txt = "20"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bvB" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/pen,/obj/structure/window/reinforced,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bvC" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/machinery/door/window{base_state = "right"; icon_state = "right"; name = "Captain's Desk"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/item/stamp/captain,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bvD" = (/obj/structure/table/wood,/obj/item/hand_tele,/obj/structure/window/reinforced,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) +"bvh" = (/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = -24; pixel_y = -6; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -25; pixel_y = 5},/turf/open/floor/carpet) +"bvi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/carpet) +"bvj" = (/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/carpet) +"bvk" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hop"; dir = 1; name = "Head of Personnel APC"; pixel_y = 24},/turf/open/floor/carpet) +"bvm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/carpet) +"bvo" = (/obj/machinery/keycard_auth{pixel_x = 26},/turf/open/floor/carpet) +"bvp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bvq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bvs" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel/dark) +"bvt" = (/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "19"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/button/door{id = "council blast"; name = "Council Chamber Blast Door Control"; pixel_x = -1; pixel_y = -34; req_access_txt = "19"},/obj/machinery/camera{c_tag = "Bridge - Command Chair"; dir = 1},/turf/open/floor/carpet/royalblue) +"bvu" = (/obj/machinery/holopad,/turf/open/floor/carpet/royalblue) +"bvv" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/button/door{id = "evashutter"; name = "E.V.A. Storage Shutter Control"; pixel_y = -24; req_access_txt = "19"},/obj/machinery/button/door{id = "gateshutter"; name = "Gateway Shutter Control"; pixel_y = -34; req_access_txt = "19"},/turf/open/floor/carpet/royalblue) +"bvw" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/vending/mealdor,/turf/open/floor/plasteel/dark) +"bvx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bvy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark) +"bvz" = (/obj/structure/table/wood,/obj/structure/window/reinforced,/obj/machinery/light_switch{pixel_x = -28},/obj/item/storage/secure/briefcase{pixel_x = -2; pixel_y = 4},/obj/item/storage/lockbox/medal,/turf/open/floor/wood) +"bvA" = (/obj/machinery/door/window{name = "Captain's Desk"; req_access_txt = "20"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood) +"bvB" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/pen,/obj/structure/window/reinforced,/turf/open/floor/wood) +"bvC" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/machinery/door/window{base_state = "right"; icon_state = "right"; name = "Captain's Desk"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/item/stamp/captain,/turf/open/floor/wood) +"bvD" = (/obj/structure/table/wood,/obj/item/hand_tele,/obj/structure/window/reinforced,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/turf/open/floor/wood) "bvE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/landmark/blobstart,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/central) "bvF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{dir = 8; req_one_access_txt = "20;12"},/turf/open/floor/plating,/area/maintenance/central) "bvG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bvH" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bvI" = (/obj/structure/table,/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/twentythreeXnineteen,/obj/item/canvas/twentythreeXnineteen,/obj/item/canvas/nineteenXnineteen,/obj/item/canvas/nineteenXnineteen,/obj/item/storage/crayons,/obj/item/storage/crayons,/obj/item/storage/crayons,/turf/open/floor/plasteel,/area/storage/art) -"bvJ" = (/obj/structure/table,/obj/item/camera,/turf/open/floor/plasteel,/area/storage/art) -"bvK" = (/obj/structure/table,/obj/item/camera_film,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/storage/art) -"bvL" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar) -"bvM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/xeno_spawn,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/crew_quarters/bar) -"bvN" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/item/wrench,/obj/item/stack/sheet/glass{amount = 30},/obj/item/stack/sheet/metal{amount = 30},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/structure/closet,/obj/item/vending_refill/cigarette,/turf/open/floor/wood,/area/crew_quarters/bar) -"bvO" = (/obj/machinery/chem_master/condimaster{desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; name = "HoochMaster Deluxe"; pixel_x = -4},/turf/open/floor/wood,/area/crew_quarters/bar) +"bvI" = (/obj/structure/table,/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/twentythreeXnineteen,/obj/item/canvas/twentythreeXnineteen,/obj/item/canvas/nineteenXnineteen,/obj/item/canvas/nineteenXnineteen,/obj/item/storage/crayons,/obj/item/storage/crayons,/obj/item/storage/crayons,/turf/open/floor/plasteel) +"bvJ" = (/obj/structure/table,/obj/item/camera,/turf/open/floor/plasteel) +"bvK" = (/obj/structure/table,/obj/item/camera_film,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel) +"bvL" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood) +"bvM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/xeno_spawn,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood) +"bvN" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/item/wrench,/obj/item/stack/sheet/glass{amount = 30},/obj/item/stack/sheet/metal{amount = 30},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/structure/closet,/obj/item/vending_refill/cigarette,/turf/open/floor/wood) +"bvO" = (/obj/machinery/chem_master/condimaster{desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; name = "HoochMaster Deluxe"; pixel_x = -4},/turf/open/floor/wood) "bvP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard) -"bvQ" = (/obj/structure/chair/sofa/left{dir = 8},/obj/machinery/camera{c_tag = "Club - Private Room"; dir = 8},/turf/open/floor/carpet/black,/area/crew_quarters/bar) +"bvQ" = (/obj/structure/chair/sofa/left{dir = 8},/obj/machinery/camera{c_tag = "Club - Private Room"; dir = 8},/turf/open/floor/carpet/black) "bvR" = (/obj/structure/closet/firecloset{pixel_x = 0},/turf/open/floor/plating,/area/maintenance/starboard) "bvS" = (/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/port) "bvT" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "bvU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/starboard) "bvV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/primary/starboard) -"bvW" = (/turf/closed/wall,/area/engine/break_room) "bvX" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Foyer Maintenance"; req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard) -"bvY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/engine/break_room) -"bvZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/engine/break_room) -"bwa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/engine/break_room) -"bwb" = (/obj/structure/table/glass,/obj/item/wrench,/obj/item/crowbar,/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"bwc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/camera{c_tag = "Engineering - Transit Tube Access"; dir = 8},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/dark,/area/engine/break_room) -"bwd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/break_room) +"bvY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner) +"bvZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner) +"bwa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner) +"bwb" = (/obj/structure/table/glass,/obj/item/wrench,/obj/item/crowbar,/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/dark) +"bwc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/camera{c_tag = "Engineering - Transit Tube Access"; dir = 8},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/dark) +"bwd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall) "bwe" = (/obj/structure/lattice,/obj/structure/transit_tube/curved{dir = 4},/turf/open/space,/area/space/nearstation) "bwf" = (/obj/structure/lattice,/obj/structure/transit_tube/curved/flipped{dir = 8},/turf/open/space,/area/space/nearstation) "bwg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) @@ -3814,52 +3636,45 @@ "bwv" = (/obj/structure/closet/emcloset,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) "bww" = (/turf/closed/wall,/area/maintenance/port) "bwx" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;27;37"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bwy" = (/turf/closed/wall,/area/library) -"bwz" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Library"},/turf/open/floor/wood,/area/library) -"bwA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Library"},/turf/open/floor/wood,/area/library) -"bwB" = (/obj/structure/sign/directions/evac,/obj/structure/sign/directions/medical{pixel_y = 8},/obj/structure/sign/directions/science{pixel_y = -8},/turf/closed/wall,/area/library) +"bwz" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Library"},/turf/open/floor/wood) +"bwA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Library"},/turf/open/floor/wood) "bwC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bwD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 15},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bwE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bwF" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Head of Personnel"; req_access_txt = "57"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"bwG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bwH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bwI" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bwJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/holopad,/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bwK" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bwL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bwM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"bwN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 4; name = "Head of Personnel"; req_access_txt = "57"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"bwO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"bwP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"bwQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/bridge) -"bwR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bookcase,/turf/open/floor/wood,/area/bridge) -"bwS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/bridge) -"bwT" = (/obj/machinery/door/airlock/command{name = "Command Desk"; req_access_txt = "19"},/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},/turf/open/floor/plasteel/dark,/area/bridge) -"bwU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/bridge) -"bwV" = (/obj/structure/bookcase,/turf/open/floor/wood,/area/bridge) -"bwW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -26},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"bwX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"bwY" = (/obj/machinery/vending/boozeomat,/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"bwZ" = (/obj/machinery/holopad{pixel_x = 9; pixel_y = -9},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bxa" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bxb" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bxc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bxd" = (/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) +"bwF" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Head of Personnel"; req_access_txt = "57"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood) +"bwG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/carpet) +"bwH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/carpet) +"bwJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/holopad,/turf/open/floor/carpet) +"bwK" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet) +"bwL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/carpet) +"bwM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet) +"bwN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 4; name = "Head of Personnel"; req_access_txt = "57"},/turf/open/floor/plasteel/dark) +"bwO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) +"bwP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark) +"bwR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bookcase,/turf/open/floor/wood) +"bwS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall) +"bwT" = (/obj/machinery/door/airlock/command{name = "Command Desk"; req_access_txt = "19"},/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},/turf/open/floor/plasteel/dark) +"bwW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -26},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) +"bwY" = (/obj/machinery/vending/boozeomat,/obj/machinery/light/small{dir = 8},/turf/open/floor/wood) +"bwZ" = (/obj/machinery/holopad{pixel_x = 9; pixel_y = -9},/turf/open/floor/carpet) +"bxa" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/carpet) +"bxb" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet) +"bxc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/carpet) +"bxd" = (/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/turf/open/floor/carpet) "bxe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Captain's Office - Emergency Escape"; dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/central) "bxf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bxg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bxh" = (/obj/machinery/vending/boozeomat,/turf/closed/wall,/area/crew_quarters/bar) -"bxi" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/crew_quarters/bar) -"bxj" = (/obj/machinery/computer/slot_machine{pixel_y = 2},/obj/structure/sign/barsign{pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bxk" = (/obj/machinery/computer/slot_machine{pixel_y = 2},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bxl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bxm" = (/obj/machinery/disposal/bin{pixel_x = 2; pixel_y = 2},/obj/structure/disposalpipe/trunk,/turf/open/floor/wood,/area/crew_quarters/bar) -"bxn" = (/obj/machinery/computer/arcade,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/bar) -"bxo" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/bar"; dir = 1; name = "Bar APC"; pixel_y = 25},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bxp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/chair/stool/bar/bronze,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bxq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/chair/stool/bar/bronze,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bxr" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Club - Fore"},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/carpet,/area/crew_quarters/bar) +"bxh" = (/obj/machinery/vending/boozeomat,/turf/closed/wall) +"bxi" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood) +"bxj" = (/obj/machinery/computer/slot_machine{pixel_y = 2},/obj/structure/sign/barsign{pixel_y = 32},/turf/open/floor/carpet) +"bxk" = (/obj/machinery/computer/slot_machine{pixel_y = 2},/turf/open/floor/carpet) +"bxl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood) +"bxm" = (/obj/machinery/disposal/bin{pixel_x = 2; pixel_y = 2},/obj/structure/disposalpipe/trunk,/turf/open/floor/wood) +"bxn" = (/obj/machinery/computer/arcade,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/wood) +"bxo" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/bar"; dir = 1; name = "Bar APC"; pixel_y = 25},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/carpet) +"bxp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/chair/stool/bar/bronze,/turf/open/floor/carpet) +"bxq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/chair/stool/bar/bronze,/turf/open/floor/carpet) +"bxr" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Club - Fore"},/obj/item/kirbyplants/random,/turf/open/floor/carpet) "bxs" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard) "bxt" = (/obj/machinery/door/airlock/maintenance{dir = 4; req_one_access_txt = "12;25;46"},/turf/open/floor/plating,/area/maintenance/starboard) "bxu" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/starboard) @@ -3871,16 +3686,15 @@ "bxA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard) "bxB" = (/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard) "bxC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) -"bxD" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/engine/break_room) -"bxE" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"bxF" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"bxG" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"bxH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/break_room) -"bxI" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/tank/internals/emergency_oxygen{pixel_x = -8},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"bxJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"bxK" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"bxL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/break_room) -"bxM" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/break_room) +"bxD" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating) +"bxE" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bxF" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bxG" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bxI" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/tank/internals/emergency_oxygen{pixel_x = -8},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/turf/open/floor/plasteel/dark) +"bxJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark) +"bxK" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark) +"bxL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark) +"bxM" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark) "bxN" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat/foyer) "bxO" = (/obj/machinery/light/small{dir = 8},/obj/machinery/announcement_system,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) "bxP" = (/obj/structure/table/wood,/obj/machinery/status_display/evac{pixel_y = 31},/obj/item/radio/off{pixel_y = 4},/obj/item/screwdriver{pixel_y = 10},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) @@ -3889,7 +3703,6 @@ "bxS" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/showcase/cyborg/old{pixel_y = 20},/obj/item/drone_shell/snowflake,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) "bxT" = (/obj/structure/table/wood,/obj/machinery/status_display/ai{pixel_y = 31},/obj/item/flashlight/lamp,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) "bxU" = (/obj/machinery/light/small{dir = 4},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecomms)"; pixel_y = 30},/obj/structure/table/wood,/obj/item/phone{desc = "Who can it be now?"; pixel_x = -3; pixel_y = 3},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) -"bxV" = (/turf/closed/wall,/area/aisat) "bxW" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bxX" = (/obj/structure/chair,/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bxY" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) @@ -3910,80 +3723,68 @@ "byn" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/port) "byo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/port) "byp" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port) -"byq" = (/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) -"byr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) "bys" = (/obj/machinery/space_heater,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/port) "byt" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/port) "byu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/research) -"byv" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/effect/decal/cleanable/cobweb,/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library) -"byw" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/open/floor/wood,/area/library) -"byx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/library) -"byy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library) -"byz" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) -"byA" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/cult,/area/library) -"byB" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_y = 32},/obj/item/folder,/obj/item/folder,/turf/open/floor/plasteel/cult,/area/library) -"byC" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/turf/open/floor/plasteel/cult,/area/library) -"byD" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_y = 32},/obj/item/folder,/obj/item/folder,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plasteel/cult,/area/library) +"byv" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/effect/decal/cleanable/cobweb,/obj/structure/bookcase/random/fiction,/turf/open/floor/wood) +"byw" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/open/floor/wood) +"byx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet) +"byz" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet/red) +"byA" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/cult) +"byB" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_y = 32},/obj/item/folder,/obj/item/folder,/turf/open/floor/plasteel/cult) +"byC" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/turf/open/floor/plasteel/cult) +"byD" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_y = 32},/obj/item/folder,/obj/item/folder,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plasteel/cult) "byE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"byF" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"byG" = (/obj/item/hand_labeler,/obj/item/stack/packageWrap,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"byH" = (/obj/structure/closet/secure_closet/hop,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"byI" = (/obj/machinery/camera{c_tag = "Head of Personnel's Office"; dir = 1},/obj/structure/table/wood,/obj/item/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/silver_ids,/obj/item/storage/box/ids,/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"byJ" = (/obj/machinery/computer/secure_data{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"byK" = (/obj/machinery/computer/card{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"byL" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/head_of_personnel,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = 38; pixel_y = -35},/obj/machinery/button/door{id = "hopqueue"; name = "Queue Shutters Control"; pixel_x = 25; pixel_y = -36; req_access_txt = "28"},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 25; pixel_y = -26; req_access_txt = "28"},/obj/machinery/button/flasher{id = "hopflash"; pixel_x = 38; pixel_y = -25},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"byM" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/stamp/hop{pixel_x = -4; pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"byN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"byO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Bridge - Port Access"; dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"byP" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/dark,/area/bridge) -"byQ" = (/obj/structure/table/wood,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 28},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel/dark,/area/bridge) -"byR" = (/obj/machinery/holopad,/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"byS" = (/obj/machinery/camera{c_tag = "Council Chamber"},/obj/machinery/light{dir = 1},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/bridge) -"byT" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/machinery/firealarm{pixel_y = 28},/turf/open/floor/plasteel/dark,/area/bridge) -"byU" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/machinery/light_switch{pixel_x = 28},/turf/open/floor/plasteel/dark,/area/bridge) -"byV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Bridge - Starboard Access"; dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"byW" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"byX" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"byY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"byZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bza" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/storage/fancy/donut_box,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bzb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bzc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) +"byF" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood) +"byG" = (/obj/item/hand_labeler,/obj/item/stack/packageWrap,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/wood,/turf/open/floor/wood) +"byH" = (/obj/structure/closet/secure_closet/hop,/turf/open/floor/wood) +"byI" = (/obj/machinery/camera{c_tag = "Head of Personnel's Office"; dir = 1},/obj/structure/table/wood,/obj/item/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/silver_ids,/obj/item/storage/box/ids,/obj/machinery/light,/turf/open/floor/wood) +"byJ" = (/obj/machinery/computer/secure_data{dir = 1},/turf/open/floor/wood) +"byK" = (/obj/machinery/computer/card{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood) +"byL" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/head_of_personnel,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = 38; pixel_y = -35},/obj/machinery/button/door{id = "hopqueue"; name = "Queue Shutters Control"; pixel_x = 25; pixel_y = -36; req_access_txt = "28"},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 25; pixel_y = -26; req_access_txt = "28"},/obj/machinery/button/flasher{id = "hopflash"; pixel_x = 38; pixel_y = -25},/turf/open/floor/wood) +"byM" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/stamp/hop{pixel_x = -4; pixel_y = 4},/turf/open/floor/wood) +"byN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) +"byO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Bridge - Port Access"; dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"byP" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/dark) +"byQ" = (/obj/structure/table/wood,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 28},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel/dark) +"byR" = (/obj/machinery/holopad,/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark) +"byS" = (/obj/machinery/camera{c_tag = "Council Chamber"},/obj/machinery/light{dir = 1},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark) +"byT" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/machinery/firealarm{pixel_y = 28},/turf/open/floor/plasteel/dark) +"byU" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/machinery/light_switch{pixel_x = 28},/turf/open/floor/plasteel/dark) +"byV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Bridge - Starboard Access"; dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) +"byW" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"byX" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood) +"byY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet) +"byZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet) +"bza" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/storage/fancy/donut_box,/turf/open/floor/carpet) +"bzb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet) +"bzc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet) "bzd" = (/obj/machinery/door/airlock/command{dir = 8; name = "Emergency Escape"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/central) "bze" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/central) "bzf" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) "bzg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bzh" = (/obj/structure/table,/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/machinery/chem_dispenser/drinks,/obj/structure/sign/barsign{pixel_y = 32},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bzi" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bzj" = (/obj/machinery/camera{c_tag = "Bar"},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_y = 30; receive_ore_updates = 1},/obj/structure/table,/obj/item/book/manual/wiki/barman_recipes{pixel_y = 5},/obj/item/reagent_containers/food/drinks/shaker,/obj/item/reagent_containers/rag{pixel_y = 5},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bzk" = (/obj/machinery/light{dir = 1},/obj/machinery/newscaster{pixel_y = 32},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bzl" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bzm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bzn" = (/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 25},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bzo" = (/obj/structure/curtain{color = "#880202"; opacity = 1; open = 0},/turf/open/floor/carpet/black,/area/crew_quarters/bar) -"bzp" = (/turf/open/floor/carpet,/area/crew_quarters/bar) -"bzq" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_y = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/ashtray{name = "candle holder"; pixel_y = 15},/obj/item/candle{pixel_y = 21},/turf/open/floor/wood,/area/crew_quarters/bar) -"bzr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bzs" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/crew_quarters/bar) -"bzt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/crew_quarters/bar) -"bzu" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/bar) -"bzv" = (/turf/closed/wall,/area/crew_quarters/theatre) -"bzw" = (/obj,/turf/closed/wall,/area/crew_quarters/theatre) -"bzx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/storage/tcom) +"bzh" = (/obj/structure/table,/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/machinery/chem_dispenser/drinks,/obj/structure/sign/barsign{pixel_y = 32},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bzi" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bzj" = (/obj/machinery/camera{c_tag = "Bar"},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_y = 30; receive_ore_updates = 1},/obj/structure/table,/obj/item/book/manual/wiki/barman_recipes{pixel_y = 5},/obj/item/reagent_containers/food/drinks/shaker,/obj/item/reagent_containers/rag{pixel_y = 5},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bzk" = (/obj/machinery/light{dir = 1},/obj/machinery/newscaster{pixel_y = 32},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bzl" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bzm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bzn" = (/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 25},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bzo" = (/obj/structure/curtain{color = "#880202"; opacity = 1; open = 0},/turf/open/floor/carpet/black) +"bzq" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_y = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/ashtray{name = "candle holder"; pixel_y = 15},/obj/item/candle{pixel_y = 21},/turf/open/floor/wood) +"bzs" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood) +"bzt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment,/turf/open/floor/wood) +"bzu" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood) +"bzw" = (/obj,/turf/closed/wall) "bzy" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/starboard) "bzz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bzA" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/primary/starboard) -"bzB" = (/turf/closed/wall/r_wall,/area/engine/atmos) -"bzC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) -"bzD" = (/turf/closed/wall,/area/engine/atmos) -"bzE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bzF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall,/area/engine/atmos) -"bzG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"bzH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall/r_wall,/area/engine/atmos) -"bzI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"bzJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/atmos) -"bzK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"bzL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) +"bzE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/open/floor/plasteel) +"bzF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall) +"bzG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall) +"bzH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall/r_wall) +"bzI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall) +"bzJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall/r_wall) "bzM" = (/obj/machinery/door/airlock/hatch{name = "Telecomms Control Room"; req_one_access_txt = "19; 61"},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) "bzN" = (/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) "bzO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) @@ -4014,86 +3815,83 @@ "bAn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = -32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port) "bAo" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = -32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port) "bAp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bAq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{dir = 4; name = "Auxiliary Bathrooms"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bAr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bAs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) +"bAq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{dir = 4; name = "Auxiliary Bathrooms"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"bAr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/open/floor/plasteel) +"bAs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating) "bAt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "bAu" = (/obj/item/cigbutt,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/maintenance/port"; name = "Port Maintenance APC"; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/port) "bAv" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/port) "bAw" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) -"bAx" = (/obj/machinery/newscaster{pixel_x = -32},/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/library) -"bAA" = (/turf/open/floor/plasteel/cult,/area/library) -"bAB" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/plasteel/cult,/area/library) +"bAx" = (/obj/machinery/newscaster{pixel_x = -32},/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood) +"bAA" = (/turf/open/floor/plasteel/cult) +"bAB" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/plasteel/cult) "bAC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bAD" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) -"bAE" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2; name = "Reception Window"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) -"bAF" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -26},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"bAG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"bAH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Council Chamber"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) -"bAI" = (/obj/structure/chair/comfy/beige,/turf/open/floor/carpet/royalblue,/area/bridge) -"bAJ" = (/obj/structure/chair/comfy/black,/turf/open/floor/carpet/royalblue,/area/bridge) -"bAK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/chair/comfy/beige,/turf/open/floor/carpet/royalblue,/area/bridge) -"bAL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) -"bAM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet/royalblue,/area/bridge) -"bAN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bAO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Council Chamber"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) -"bAP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"bAQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"bAR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain/private) -"bAS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bAT" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bAU" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bAV" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bAW" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) +"bAD" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plating) +"bAE" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2; name = "Reception Window"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plasteel) +"bAF" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -26},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) +"bAG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"bAH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Council Chamber"; req_access_txt = "19"},/turf/open/floor/plasteel/dark) +"bAI" = (/obj/structure/chair/comfy/beige,/turf/open/floor/carpet/royalblue) +"bAJ" = (/obj/structure/chair/comfy/black,/turf/open/floor/carpet/royalblue) +"bAK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/chair/comfy/beige,/turf/open/floor/carpet/royalblue) +"bAL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet/royalblue) +"bAM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet/royalblue) +"bAO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Council Chamber"; req_access_txt = "19"},/turf/open/floor/plasteel/dark) +"bAP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark) +"bAQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"bAR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/turf/open/floor/plasteel/dark) +"bAT" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet) +"bAU" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/carpet) +"bAV" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet) +"bAW" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/open/floor/carpet) "bAX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/central) "bAY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bAZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bBa" = (/obj/structure/sign/poster/random,/turf/closed/wall,/area/crew_quarters/bar) -"bBb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bBc" = (/obj/effect/landmark/start/bartender,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bBd" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/burger/bigbite,/turf/open/floor/wood,/area/crew_quarters/bar) -"bBe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start/bartender,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bBf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{dir = 8; name = "Bar Access"; req_access_txt = "25"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bBg" = (/turf/open/floor/wood,/area/crew_quarters/bar) -"bBh" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/table/wood,/obj/item/storage/fancy/donut_box,/turf/open/floor/wood,/area/crew_quarters/bar) -"bBi" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair/sofa/left{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bBj" = (/obj/structure/sign/poster/random{pixel_y = 32},/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/beer,/turf/open/floor/wood,/area/crew_quarters/bar) -"bBk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar) -"bBl" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/chair/sofa/right{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) -"bBm" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/chair/stool/brass,/turf/open/floor/wood,/area/crew_quarters/bar) -"bBn" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar) -"bBo" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/sign/poster/random{pixel_y = 32},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/crew_quarters/bar) -"bBp" = (/obj/structure/chair/sofa/left{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bBq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair/sofa{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) +"bBa" = (/obj/structure/sign/poster/random,/turf/closed/wall) +"bBb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bBc" = (/obj/effect/landmark/start/bartender,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bBd" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/burger/bigbite,/turf/open/floor/wood) +"bBe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start/bartender,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bBf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{dir = 8; name = "Bar Access"; req_access_txt = "25"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bBh" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/table/wood,/obj/item/storage/fancy/donut_box,/turf/open/floor/wood) +"bBi" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair/sofa/left{dir = 4},/turf/open/floor/wood) +"bBj" = (/obj/structure/sign/poster/random{pixel_y = 32},/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/beer,/turf/open/floor/wood) +"bBk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/table/wood,/turf/open/floor/wood) +"bBl" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/chair/sofa/right{dir = 8},/turf/open/floor/wood) +"bBm" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/chair/stool/brass,/turf/open/floor/wood) +"bBn" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/turf/open/floor/wood) +"bBo" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/sign/poster/random{pixel_y = 32},/obj/item/kirbyplants/random,/turf/open/floor/wood) +"bBp" = (/obj/structure/chair/sofa/left{dir = 4},/turf/open/floor/wood) +"bBq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair/sofa{dir = 8},/turf/open/floor/wood) "bBr" = (/obj/structure/trash_pile,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) "bBs" = (/obj/item/beacon,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/starboard) "bBt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bBu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/primary/starboard) -"bBv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"bBw" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/obj/machinery/airalarm{pixel_y = 23},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/computer/atmos_alert,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBx" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/station_alert,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBy" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/camera{c_tag = "Atmospherics - Control Room"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBz" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBA" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/computer/atmos_control,/turf/open/floor/plasteel/checker,/area/engine/atmos) -"bBB" = (/obj/structure/sign/plaques/atmos{pixel_y = 32},/obj/machinery/light_switch{pixel_x = 26},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/atmos_control,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/checker,/area/engine/atmos) -"bBC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bBD" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/atmos"; dir = 1; name = "Atmospherics APC"; pixel_y = 28},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = -26},/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bBE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bBF" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/pipedispenser,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Atmospherics - Entrance"; dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bBG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/closed/wall,/area/engine/atmos) -"bBH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/meter/atmos/atmos_waste_loop,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBI" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBJ" = (/obj/machinery/meter/atmos/distro_loop,/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBK" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBL" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/obj/machinery/airalarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Atmospherics - Distro Loop"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBM" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bBN" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) +"bBv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/closed/wall/r_wall) +"bBw" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/obj/machinery/airalarm{pixel_y = 23},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/computer/atmos_alert,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBx" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/station_alert,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBy" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; pixel_y = 32},/obj/machinery/camera{c_tag = "Atmospherics - Control Room"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBz" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBA" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/computer/atmos_control,/turf/open/floor/plasteel/checker) +"bBB" = (/obj/structure/sign/plaques/atmos{pixel_y = 32},/obj/machinery/light_switch{pixel_x = 26},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/atmos_control,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel/checker) +"bBC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/closed/wall) +"bBD" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/atmos"; dir = 1; name = "Atmospherics APC"; pixel_y = 28},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = -26},/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel) +"bBE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel) +"bBF" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/pipedispenser,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Atmospherics - Entrance"; dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 4},/turf/open/floor/plasteel) +"bBG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/closed/wall) +"bBH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/meter/atmos/atmos_waste_loop,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBI" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBJ" = (/obj/machinery/meter/atmos/distro_loop,/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBK" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBL" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/obj/machinery/airalarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Atmospherics - Distro Loop"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBM" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bBN" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) "bBO" = (/obj/structure/lattice,/obj/structure/grille,/turf/closed/wall/r_wall,/area/space/nearstation) "bBP" = (/obj/structure/grille,/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space/nearstation) -"bBQ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/aisat) -"bBR" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark,/area/aisat) -"bBS" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Port Aft"; dir = 8; network = list("minisat")},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"bBT" = (/obj/structure/lattice,/turf/closed/wall/r_wall,/area/aisat) +"bBQ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/dark) +"bBR" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark) +"bBS" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Port Aft"; dir = 8; network = list("minisat")},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark) +"bBT" = (/obj/structure/lattice,/turf/closed/wall/r_wall) "bBU" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) "bBV" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) "bBW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) @@ -4101,24 +3899,22 @@ "bBY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) "bBZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/chair/office/dark,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) "bCa" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/tcommsat/computer"; dir = 4; name = "Telecomms Control Room APC"; pixel_x = 26},/obj/machinery/computer/telecomms/server{dir = 8; network = "tcommsat"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) -"bCb" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Starboard Aft"; dir = 4; network = list("minisat")},/turf/open/floor/plasteel/dark,/area/aisat) -"bCc" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/aisat) +"bCb" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Starboard Aft"; dir = 4; network = list("minisat")},/turf/open/floor/plasteel/dark) +"bCc" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark) "bCd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bCe" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) "bCf" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bCg" = (/turf/closed/wall,/area/security/vacantoffice) "bCh" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bCi" = (/obj/machinery/door/airlock/grunge,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"bCj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bCk" = (/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) +"bCi" = (/obj/machinery/door/airlock/grunge,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood) +"bCj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel) +"bCk" = (/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plating) "bCl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) "bCm" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/port) -"bCn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/photocopier{pixel_y = 3},/turf/open/floor/carpet,/area/library) -"bCo" = (/turf/open/floor/wood,/area/library) -"bCp" = (/obj/machinery/light{dir = 4},/obj/machinery/camera/autoname{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/bookbinder,/turf/open/floor/carpet,/area/library) -"bCq" = (/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"},/turf/closed/wall,/area/library) -"bCr" = (/obj/machinery/door/morgue{name = "Study #1"},/turf/open/floor/plasteel/cult,/area/library) -"bCs" = (/obj/machinery/door/morgue{name = "Study #2"},/turf/open/floor/plasteel/cult,/area/library) +"bCn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/photocopier{pixel_y = 3},/turf/open/floor/carpet) +"bCp" = (/obj/machinery/light{dir = 4},/obj/machinery/camera/autoname{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/bookbinder,/turf/open/floor/carpet) +"bCq" = (/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"},/turf/closed/wall) +"bCr" = (/obj/machinery/door/morgue{name = "Study #1"},/turf/open/floor/plasteel/cult) +"bCs" = (/obj/machinery/door/morgue{name = "Study #2"},/turf/open/floor/plasteel/cult) "bCt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bCu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Central Primary Hallway - Port"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) "bCv" = (/turf/closed/wall,/area/hallway/secondary/command) @@ -4129,62 +3925,58 @@ "bCA" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/flasher{id = "hopflash"; pixel_x = 28; pixel_y = -28},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/command) "bCB" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/pen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/command) "bCC" = (/turf/closed/wall/r_wall,/area/hallway/secondary/command) -"bCD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = 24; pixel_y = -24; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"bCE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/vending/coffee{pixel_x = -3},/obj/machinery/button/door{id = "council blast"; name = "Council Chamber Blast Door Control"; pixel_x = -28; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) -"bCF" = (/obj/structure/chair/comfy/teal{dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet/royalblue,/area/bridge) -"bCG" = (/obj/structure/table/wood,/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/turf/open/floor/carpet/royalblue,/area/bridge) -"bCH" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/lighter,/turf/open/floor/carpet/royalblue,/area/bridge) -"bCI" = (/obj/structure/table/wood,/obj/item/folder/red,/turf/open/floor/carpet/royalblue,/area/bridge) -"bCJ" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet/royalblue,/area/bridge) -"bCK" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/dark,/area/bridge) -"bCL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = -24; pixel_y = -24; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) -"bCM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"bCN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bCO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bCP" = (/obj/machinery/light,/obj/machinery/computer/security/telescreen/minisat{dir = 1; pixel_y = -29},/obj/structure/bed/dogbed/renault,/mob/living/simple_animal/pet/fox/Renault,/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bCQ" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) -"bCR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/carpet,/area/crew_quarters/heads/captain/private) +"bCD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = 24; pixel_y = -24; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"bCE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/vending/coffee{pixel_x = -3},/obj/machinery/button/door{id = "council blast"; name = "Council Chamber Blast Door Control"; pixel_x = -28; req_access_txt = "19"},/turf/open/floor/plasteel/dark) +"bCF" = (/obj/structure/chair/comfy/teal{dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet/royalblue) +"bCG" = (/obj/structure/table/wood,/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/turf/open/floor/carpet/royalblue) +"bCH" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/lighter,/turf/open/floor/carpet/royalblue) +"bCI" = (/obj/structure/table/wood,/obj/item/folder/red,/turf/open/floor/carpet/royalblue) +"bCJ" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet/royalblue) +"bCK" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/dark) +"bCL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Access Blast Door Control"; pixel_x = -24; pixel_y = -24; req_access_txt = "19"},/turf/open/floor/plasteel/dark) +"bCM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark) +"bCN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/carpet) +"bCO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/carpet) +"bCP" = (/obj/machinery/light,/obj/machinery/computer/security/telescreen/minisat{dir = 1; pixel_y = -29},/obj/structure/bed/dogbed/renault,/mob/living/simple_animal/pet/fox/Renault,/turf/open/floor/carpet) +"bCQ" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/carpet) +"bCR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/carpet) "bCS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/central) "bCT" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bCU" = (/obj/structure/table/reinforced,/obj/item/lighter,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bCV" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bCW" = (/obj/structure/table/reinforced,/obj/item/clothing/head/that,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bCX" = (/obj/structure/table/reinforced,/obj/item/storage/box/matches{pixel_y = 5},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bCY" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bCZ" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bDa" = (/obj/machinery/smartfridge/drinks{icon_state = "boozeomat"},/turf/closed/wall,/area/crew_quarters/bar) -"bDb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_x = -2; pixel_y = 10},/turf/open/floor/wood,/area/crew_quarters/bar) -"bDc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/chair/stool/brass,/turf/open/floor/wood,/area/crew_quarters/bar) -"bDd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bDe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bDf" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/poster/random{pixel_x = 32},/obj/machinery/vending/clothing,/turf/open/floor/wood,/area/crew_quarters/bar) -"bDg" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bDh" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) -"bDi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/ale,/turf/open/floor/wood,/area/crew_quarters/bar) +"bCU" = (/obj/structure/table/reinforced,/obj/item/lighter,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bCV" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bCW" = (/obj/structure/table/reinforced,/obj/item/clothing/head/that,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bCX" = (/obj/structure/table/reinforced,/obj/item/storage/box/matches{pixel_y = 5},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bCY" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bCZ" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bDa" = (/obj/machinery/smartfridge/drinks{icon_state = "boozeomat"},/turf/closed/wall) +"bDb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_x = -2; pixel_y = 10},/turf/open/floor/wood) +"bDc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/chair/stool/brass,/turf/open/floor/wood) +"bDf" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/poster/random{pixel_x = 32},/obj/machinery/vending/clothing,/turf/open/floor/wood) +"bDh" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/wood) +"bDi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/ale,/turf/open/floor/wood) "bDj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/structure/window/reinforced{dir = 1},/obj/machinery/camera{c_tag = "Starboard Primary Hallway - Atmospherics"; dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/starboard) "bDk" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bDl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/primary/starboard) -"bDm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/engine/atmos) -"bDn" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bDo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bDp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bDq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bDr" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/engine/atmos) -"bDs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) -"bDt" = (/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bDu" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/engine/atmos) -"bDv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"bDw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bDx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/engine/atmos) -"bDy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bDz" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/turf/open/floor/plasteel,/area/engine/atmos) -"bDA" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bDB" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Distro"},/turf/open/floor/plasteel,/area/engine/atmos) -"bDC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bDD" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bDE" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bDF" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) -"bDG" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) +"bDm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating) +"bDn" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bDo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel) +"bDp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel) +"bDr" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel) +"bDs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner) +"bDt" = (/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel) +"bDu" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/light/small,/turf/open/floor/plasteel) +"bDv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel) +"bDw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"bDx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall) +"bDy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel) +"bDz" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/turf/open/floor/plasteel) +"bDA" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{dir = 1},/turf/open/floor/plasteel) +"bDB" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Distro"},/turf/open/floor/plasteel) +"bDC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel) +"bDD" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel) +"bDE" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/turf/open/floor/plasteel) +"bDF" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/closed/wall/r_wall) +"bDG" = (/obj/structure/grille,/turf/closed/wall/r_wall) "bDH" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) "bDI" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/turf/open/space,/area/space/nearstation) "bDJ" = (/obj/machinery/microwave{pixel_y = 4},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer) @@ -4200,83 +3992,74 @@ "bDT" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/port) "bDU" = (/obj/effect/turf_decal/bot,/obj/vehicle/ridden/grocery_cart{dir = 4},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) "bDV" = (/obj/effect/turf_decal/bot,/obj/structure/railing,/obj/vehicle/ridden/grocery_cart{dir = 4},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"bDW" = (/turf/open/floor/wood,/area/security/vacantoffice) -"bDX" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/security/vacantoffice) -"bDY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/wood,/area/security/vacantoffice) -"bDZ" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/chair/sofa/right,/turf/open/floor/wood,/area/security/vacantoffice) -"bEa" = (/obj/structure/chair/sofa/left,/turf/open/floor/wood,/area/security/vacantoffice) -"bEb" = (/obj/structure/urinal{pixel_y = 29},/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) -"bEc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bEd" = (/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bEe" = (/obj/machinery/door/airlock{id_tag = "AuxToilet1"; name = "Unit 1"},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bEf" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet1"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/newscaster{pixel_y = -32},/obj/structure/toilet{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) +"bDY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/wood) +"bDZ" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/chair/sofa/right,/turf/open/floor/wood) +"bEa" = (/obj/structure/chair/sofa/left,/turf/open/floor/wood) +"bEb" = (/obj/structure/urinal{pixel_y = 29},/turf/open/floor/plating) +"bEc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"bEe" = (/obj/machinery/door/airlock{id_tag = "AuxToilet1"; name = "Unit 1"},/turf/open/floor/plasteel) +"bEf" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet1"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/newscaster{pixel_y = -32},/obj/structure/toilet{dir = 8},/turf/open/floor/plasteel) "bEg" = (/obj/structure/rack,/obj/item/flashlight,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) -"bEh" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/displaycase/trophy,/turf/open/floor/wood,/area/library) -"bEi" = (/obj/structure/displaycase/trophy,/turf/open/floor/wood,/area/library) -"bEj" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/wood,/area/library) -"bEk" = (/obj/machinery/vending/coffee,/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/library) -"bEl" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start/assistant,/obj/structure/sign/warning/nosmoking/circle{pixel_y = 34},/turf/open/floor/wood,/area/library) -"bEm" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display/evac{pixel_y = 30},/turf/open/floor/wood,/area/library) -"bEn" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/library) -"bEo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/wood,/area/library) +"bEh" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/displaycase/trophy,/turf/open/floor/wood) +"bEi" = (/obj/structure/displaycase/trophy,/turf/open/floor/wood) +"bEj" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/wood) +"bEk" = (/obj/machinery/vending/coffee,/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood) +"bEl" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start/assistant,/obj/structure/sign/warning/nosmoking/circle{pixel_y = 34},/turf/open/floor/wood) +"bEm" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display/evac{pixel_y = 30},/turf/open/floor/wood) +"bEn" = (/obj/item/kirbyplants/random,/turf/open/floor/wood) +"bEo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/wood) "bEp" = (/obj/structure/sign/directions/command{dir = 4; pixel_y = -8},/obj/structure/sign/directions/security{dir = 1; pixel_y = 8},/obj/structure/sign/directions/engineering{dir = 4},/turf/closed/wall,/area/hallway/secondary/command) "bEq" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/secondary/command) "bEr" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/command) "bEs" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/secondary/command) "bEt" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel,/area/hallway/secondary/command) "bEu" = (/obj/structure/sign/directions/command{dir = 1; pixel_y = -8},/turf/closed/wall/r_wall,/area/hallway/secondary/command) -"bEv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/bridge) -"bEw" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/bridge) -"bEx" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/bridge) -"bEy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating,/area/bridge) -"bEz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/bridge) -"bEA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating,/area/bridge) -"bEB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating,/area/bridge) -"bEC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/bridge) -"bED" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/bridge) -"bEE" = (/obj/structure/sign/directions/command{dir = 1; pixel_y = -8},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain/private) +"bEv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/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},/turf/open/floor/plasteel/dark) +"bEw" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/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},/turf/open/floor/plasteel/dark) +"bEx" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall) +"bEy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating) +"bEz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating) +"bEA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating) +"bEB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating) +"bEC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "council blast"; name = "Council Blast Doors"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating) +"bED" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/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},/turf/open/floor/plasteel/dark) +"bEE" = (/obj/structure/sign/directions/command{dir = 1; pixel_y = -8},/turf/closed/wall/r_wall) "bEF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_one_access_txt = "20;12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/central) "bEG" = (/obj/structure/sign/directions/engineering{dir = 4},/obj/structure/sign/directions/security{dir = 1; pixel_y = 8},/obj/structure/sign/directions/command{dir = 8; pixel_y = -8},/turf/closed/wall,/area/maintenance/central) "bEH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bEI" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=12-Central-Starboard"; location = "11.1-Command-Starboard"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bEJ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/bar) -"bEK" = (/obj/structure/chair/stool/bar,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bEL" = (/obj/machinery/holopad,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bEM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start/assistant,/obj/structure/chair/stool/bar,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bEN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bEO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool/brass,/turf/open/floor/wood,/area/crew_quarters/bar) -"bEP" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/vending/mealdor,/turf/open/floor/wood,/area/crew_quarters/bar) -"bEQ" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/poster/random{pixel_x = 32},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/crew_quarters/bar) -"bER" = (/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bES" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bET" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/wood,/obj/item/storage/fancy/donut_box,/turf/open/floor/wood,/area/crew_quarters/bar) -"bEU" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/bar) +"bEK" = (/obj/structure/chair/stool/bar,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bEL" = (/obj/machinery/holopad,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bEM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start/assistant,/obj/structure/chair/stool/bar,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bEO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool/brass,/turf/open/floor/wood) +"bEP" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/vending/mealdor,/turf/open/floor/wood) +"bEQ" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/poster/random{pixel_x = 32},/obj/item/kirbyplants/random,/turf/open/floor/wood) +"bER" = (/obj/effect/landmark/start/assistant,/turf/open/floor/carpet) +"bET" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/wood,/obj/item/storage/fancy/donut_box,/turf/open/floor/wood) +"bEU" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet) "bEV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "bEW" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/starboard) "bEX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/primary/starboard) -"bEY" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/item/pen,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/effect/turf_decal/delivery,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/atmos) -"bEZ" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/atmospheric_technician,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bFa" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"bFb" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bFc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bFd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/machinery/vending/wardrobe/atmos_wardrobe,/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) -"bFf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bFg" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bFh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bFi" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bFj" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste to Filter"},/turf/open/floor/plasteel,/area/engine/atmos) -"bFk" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bFl" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/purple/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bFm" = (/obj/machinery/atmospherics/pipe/manifold/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bFn" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bFo" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Mix"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bFp" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bFq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bEY" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/item/pen,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/effect/turf_decal/delivery,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel) +"bEZ" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/atmospheric_technician,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bFb" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel) +"bFc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) +"bFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/machinery/vending/wardrobe/atmos_wardrobe,/turf/open/floor/plasteel/dark/corner) +"bFg" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall) +"bFh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel) +"bFi" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall) +"bFj" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste to Filter"},/turf/open/floor/plasteel) +"bFk" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel) +"bFl" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/purple/visible{dir = 1},/turf/open/floor/plasteel) +"bFm" = (/obj/machinery/atmospherics/pipe/manifold/purple/visible,/turf/open/floor/plasteel) +"bFn" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/open/floor/plasteel) +"bFo" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Mix"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/open/floor/plasteel) +"bFp" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel) +"bFq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating) "bFr" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space,/area/space/nearstation) -"bFs" = (/obj/machinery/meter,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"bFt" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{dir = 8},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bFu" = (/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bFs" = (/obj/machinery/meter,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/closed/wall/r_wall) +"bFt" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{dir = 8},/turf/open/floor/engine/vacuum) +"bFu" = (/turf/open/floor/engine/vacuum) "bFv" = (/turf/closed/wall/r_wall,/area/tcommsat/server) "bFw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/server) "bFx" = (/obj/machinery/door/airlock/hatch{name = "Telecomms Server Room"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/tcommsat/server) @@ -4285,18 +4068,18 @@ "bFA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) "bFB" = (/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) "bFC" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/bot,/obj/structure/railing,/obj/vehicle/ridden/grocery_cart{dir = 4},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"bFD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/wood,/area/security/vacantoffice) -"bFE" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"bFF" = (/obj/structure/filingcabinet,/turf/open/floor/wood,/area/security/vacantoffice) -"bFG" = (/obj/structure/scale,/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) -"bFH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bFI" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/toilet/auxiliary"; name = "Auxiliary Restrooms APC"; pixel_y = -24},/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bFJ" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) +"bFD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/wood) +"bFE" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood) +"bFF" = (/obj/structure/filingcabinet,/turf/open/floor/wood) +"bFG" = (/obj/structure/scale,/turf/open/floor/plating) +"bFH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel) +"bFI" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/toilet/auxiliary"; name = "Auxiliary Restrooms APC"; pixel_y = -24},/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel) +"bFJ" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel) "bFK" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/maintenance/port) "bFL" = (/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/port) -"bFM" = (/obj/machinery/newscaster{pixel_x = -32},/obj/structure/displaycase/trophy,/turf/open/floor/wood,/area/library) -"bFN" = (/turf/open/floor/carpet,/area/library) -"bFP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 8; name = "Library"},/turf/open/floor/wood,/area/library) +"bFM" = (/obj/machinery/newscaster{pixel_x = -32},/obj/structure/displaycase/trophy,/turf/open/floor/wood) +"bFN" = (/turf/open/floor/carpet) +"bFP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 8; name = "Library"},/turf/open/floor/wood) "bFQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bFR" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "bFS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -4327,40 +4110,38 @@ "bGr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "bGs" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "bGt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bGu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 8; name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bGv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bGw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bGx" = (/obj/machinery/door/firedoor,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bGy" = (/obj/machinery/camera{c_tag = "Club - Starboard"; dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/sign/poster/random{pixel_x = 32},/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/crew_quarters/bar) -"bGz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bGA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bGB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bGC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bGD" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bGE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar) +"bGu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 8; name = "Bar"},/turf/open/floor/plasteel) +"bGv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bGw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bGx" = (/obj/machinery/door/firedoor,/turf/open/floor/carpet) +"bGy" = (/obj/machinery/camera{c_tag = "Club - Starboard"; dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/sign/poster/random{pixel_x = 32},/obj/machinery/vending/coffee,/turf/open/floor/wood) +"bGz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/carpet) +"bGA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet) +"bGB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/carpet) +"bGD" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/carpet) +"bGE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet) "bGF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard) "bGG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/starboard) "bGH" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bGI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/engine/atmos) -"bGJ" = (/obj/structure/tank_dispenser{pixel_x = -1},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bGK" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/atmos) -"bGL" = (/obj/machinery/holopad,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/atmos) -"bGM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bGN" = (/obj/machinery/door/airlock/atmos/glass{dir = 4; name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"bGO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/atmos) -"bGP" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Atmospherics - Entrance"},/turf/open/floor/plasteel,/area/engine/atmos) -"bGQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/engine/atmos) -"bGR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bGS" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Mix to Filter"},/turf/open/floor/plasteel,/area/engine/atmos) -"bGT" = (/obj/machinery/atmospherics/pipe/manifold/purple/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bGU" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/engine/atmos) -"bGV" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bGW" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bGX" = (/obj/machinery/computer/atmos_control/tank/mix_tank{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bGY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) -"bGZ" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"bHa" = (/obj/machinery/air_sensor/atmos/mix_tank,/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bHb" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bGI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/structure/cable/yellow,/turf/open/floor/plating) +"bGJ" = (/obj/structure/tank_dispenser{pixel_x = -1},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bGK" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) +"bGL" = (/obj/machinery/holopad,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel) +"bGM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) +"bGN" = (/obj/machinery/door/airlock/atmos/glass{dir = 4; name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"bGO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) +"bGP" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Atmospherics - Entrance"},/turf/open/floor/plasteel) +"bGQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating) +"bGR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel) +"bGS" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Mix to Filter"},/turf/open/floor/plasteel) +"bGT" = (/obj/machinery/atmospherics/pipe/manifold/purple/visible{dir = 4},/turf/open/floor/plasteel) +"bGU" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel) +"bGV" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel) +"bGW" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 4},/turf/open/floor/plasteel) +"bGX" = (/obj/machinery/computer/atmos_control/tank/mix_tank{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel) +"bGY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating) +"bHa" = (/obj/machinery/air_sensor/atmos/mix_tank,/turf/open/floor/engine/vacuum) +"bHb" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/vacuum) "bHc" = (/obj/machinery/telecomms/processor/preset_one,/obj/machinery/camera{c_tag = "Telecomms - Server Room - Fore-Port"; network = list("ss13","tcomms")},/turf/open/floor/circuit/green/telecomms/mainframe,/area/tcommsat/server) "bHd" = (/obj/structure/showcase/cyborg/old{pixel_y = 20},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "bHe" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/circuit/green/telecomms/mainframe,/area/tcommsat/server) @@ -4375,18 +4156,18 @@ "bHn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) "bHo" = (/obj/effect/turf_decal/bot,/obj/structure/railing{dir = 8},/obj/vehicle/ridden/grocery_cart,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) "bHp" = (/obj/item/radio/intercom{pixel_y = -28},/obj/effect/turf_decal/bot,/obj/structure/railing{dir = 8},/obj/vehicle/ridden/grocery_cart,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"bHq" = (/obj/structure/light_construct{dir = 8},/turf/open/floor/wood,/area/security/vacantoffice) -"bHr" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -2; pixel_y = 6},/turf/open/floor/wood,/area/security/vacantoffice) -"bHs" = (/obj/machinery/door/airlock{id_tag = "AuxShower"; name = "Shower"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bHt" = (/obj/machinery/door/airlock{id_tag = "AuxToilet2"; name = "Unit 2"},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bHu" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet2"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/newscaster{pixel_y = -32},/obj/structure/toilet{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) +"bHq" = (/obj/structure/light_construct{dir = 8},/turf/open/floor/wood) +"bHr" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -2; pixel_y = 6},/turf/open/floor/wood) +"bHs" = (/obj/machinery/door/airlock{id_tag = "AuxShower"; name = "Shower"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"bHt" = (/obj/machinery/door/airlock{id_tag = "AuxToilet2"; name = "Unit 2"},/turf/open/floor/plasteel) +"bHu" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet2"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/newscaster{pixel_y = -32},/obj/structure/toilet{dir = 8},/turf/open/floor/plasteel) "bHv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port) "bHw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port) -"bHx" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/machinery/camera/autoname{dir = 4},/obj/structure/displaycase/trophy,/turf/open/floor/wood,/area/library) -"bHy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/carpet,/area/library) -"bHz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library) -"bHB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bHC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/carpet,/area/library) +"bHx" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/machinery/camera/autoname{dir = 4},/obj/structure/displaycase/trophy,/turf/open/floor/wood) +"bHy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/carpet) +"bHz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet) +"bHB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet) +"bHC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/carpet) "bHD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=11.1-Command-Starboard"; location = "11-Command-Port"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bHE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) "bHF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{dir = 4; name = "Command Hallway"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/command) @@ -4422,50 +4203,48 @@ "bIj" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bIk" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner"; location = "7-Command-Starboard"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bIl" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bIm" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 8; name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bIn" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bIo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bIp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bIq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bIr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bIs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bIt" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bIv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/xmastree,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bIw" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bIx" = (/obj/machinery/vending/gato,/turf/open/floor/wood,/area/crew_quarters/bar) -"bIy" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/chair/sofachair,/turf/open/floor/wood,/area/crew_quarters/bar) -"bIz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/sofa/right{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) -"bIA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced{dir = 8},/obj/machinery/jukebox,/turf/open/floor/wood,/area/crew_quarters/bar) -"bIB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/pie/plump_pie{pixel_x = 3; pixel_y = 11},/obj/item/reagent_containers/food/snacks/burger/fish{pixel_x = -3},/turf/open/floor/wood,/area/crew_quarters/bar) -"bIC" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bID" = (/obj/structure/chair/sofa{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) -"bIE" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/wood,/obj/item/ashtray{name = "candle holder"; pixel_y = 4},/obj/item/candle{pixel_y = 10},/obj/item/clothing/mask/cigarette/cigar{pixel_x = 6},/turf/open/floor/wood,/area/crew_quarters/bar) +"bIm" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 8; name = "Bar"},/turf/open/floor/plasteel) +"bIn" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bIo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bIp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bIq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bIr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bIs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bIt" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/carpet) +"bIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet) +"bIv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/xmastree,/turf/open/floor/carpet) +"bIw" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/carpet) +"bIx" = (/obj/machinery/vending/gato,/turf/open/floor/wood) +"bIy" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/chair/sofachair,/turf/open/floor/wood) +"bIz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/sofa/right{dir = 8},/turf/open/floor/wood) +"bIA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced{dir = 8},/obj/machinery/jukebox,/turf/open/floor/wood) +"bIB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/pie/plump_pie{pixel_x = 3; pixel_y = 11},/obj/item/reagent_containers/food/snacks/burger/fish{pixel_x = -3},/turf/open/floor/wood) +"bIC" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet) +"bID" = (/obj/structure/chair/sofa{dir = 8},/turf/open/floor/wood) +"bIE" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/wood,/obj/item/ashtray{name = "candle holder"; pixel_y = 4},/obj/item/candle{pixel_y = 10},/obj/item/clothing/mask/cigarette/cigar{pixel_x = 6},/turf/open/floor/wood) "bIG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light/small{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/starboard) "bIH" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bII" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/primary/starboard) -"bIJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/plasticflaps/opaque,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Atmospherics"},/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westleft{req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bIK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bIL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bIM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bIN" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = 26; pixel_y = -26; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bIO" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"bIP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos) -"bIQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bIR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bIS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/airlock/atmos/glass{dir = 8; name = "Distribution Loop"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bIT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"bIU" = (/turf/open/floor/plasteel,/area/engine/atmos) -"bIV" = (/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bIW" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Pure to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) -"bIX" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bIY" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Unfiltered & Air to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) -"bIZ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bJa" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) +"bIJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/plasticflaps/opaque,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Atmospherics"},/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "Atmospherics Blast Door"},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westleft{req_access_txt = "24"},/turf/open/floor/plasteel) +"bIK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel) +"bIL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel) +"bIM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel) +"bIN" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = 26; pixel_y = -26; req_access_txt = "24"},/turf/open/floor/plasteel) +"bIP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"bIQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) +"bIR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"bIS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/airlock/atmos/glass{dir = 8; name = "Distribution Loop"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel) +"bIT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel) +"bIV" = (/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel) +"bIW" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Pure to Mix"},/turf/open/floor/plasteel) +"bIX" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/plasteel) +"bIY" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Unfiltered & Air to Mix"},/turf/open/floor/plasteel) +"bIZ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"bJa" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating) "bJb" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space,/area/space/nearstation) -"bJc" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) -"bJd" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{dir = 8},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bJe" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Mix"; dir = 8},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bJc" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/grille,/turf/closed/wall/r_wall) +"bJd" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{dir = 8},/turf/open/floor/engine/vacuum) +"bJe" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Mix"; dir = 8},/turf/open/floor/engine/vacuum) "bJf" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/circuit/green/telecomms/mainframe,/area/tcommsat/server) "bJg" = (/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "bJh" = (/turf/open/floor/circuit/green/telecomms/mainframe,/area/tcommsat/server) @@ -4474,23 +4253,19 @@ "bJk" = (/obj/machinery/light{dir = 4},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) "bJl" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;27;37"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/secondary/entry) "bJm" = (/obj/item/radio/intercom{name = "Station Intercom (General)"},/turf/closed/wall,/area/hallway/secondary/entry) -"bJn" = (/obj/machinery/shower{dir = 4},/obj/machinery/button/door{id = "AuxShower"; name = "Lock Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/item/soap/nanotrasen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bJo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bJp" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) +"bJn" = (/obj/machinery/shower{dir = 4},/obj/machinery/button/door{id = "AuxShower"; name = "Lock Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/item/soap/nanotrasen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel) +"bJo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel) +"bJp" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plating) "bJq" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_one_access_txt = "12;37"},/turf/open/floor/plating,/area/maintenance/port) -"bJr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/library) -"bJs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/library) -"bJu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/wood,/area/library) -"bJv" = (/obj/machinery/holopad,/turf/open/floor/wood,/area/library) +"bJr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet) +"bJs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/wood) +"bJu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/wood) "bJw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bJx" = (/obj/structure/sign/directions/science{pixel_y = -8},/obj/structure/sign/directions/medical{pixel_y = 8},/obj/structure/sign/directions/evac,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"bJy" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"bJz" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bJA" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"bJB" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bJC" = (/turf/closed/wall/r_wall,/area/teleporter) -"bJD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_one_access_txt = "17;19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) -"bJE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/teleporter) +"bJx" = (/obj/structure/sign/directions/science{pixel_y = -8},/obj/structure/sign/directions/medical{pixel_y = 8},/obj/structure/sign/directions/evac,/turf/closed/wall/r_wall) +"bJz" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bJB" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bJD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_one_access_txt = "17;19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bJE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall) "bJF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/hallway/secondary/command) "bJG" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/command) "bJH" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/command) @@ -4498,10 +4273,7 @@ "bJJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/command) "bJK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/command) "bJL" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Command Hallway - Central"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/command) -"bJM" = (/turf/closed/wall/r_wall,/area/gateway) -"bJN" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/gateway) -"bJO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Atrium"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/gateway) -"bJP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/gateway) +"bJO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Atrium"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) "bJQ" = (/obj/machinery/vending/cola/random,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/command) "bJR" = (/obj/machinery/vending/cigarette,/obj/machinery/newscaster{pixel_y = -29},/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/command) "bJS" = (/obj/machinery/vending/coffee,/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},/turf/open/floor/plasteel/dark,/area/hallway/secondary/command) @@ -4510,38 +4282,35 @@ "bJV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "bJW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "bJX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bJY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar) -"bJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bKa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bKb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bKc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bKd" = (/obj/machinery/light_switch{pixel_x = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/window/reinforced{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/crew_quarters/bar) -"bKe" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/sofa/left{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bKf" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/window/reinforced{dir = 4},/obj/structure/chair/sofachair,/turf/open/floor/wood,/area/crew_quarters/bar) -"bKg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bKh" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/bar) -"bKi" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bKj" = (/obj/structure/chair/sofachair{dir = 1},/turf/open/floor/wood,/area/crew_quarters/bar) -"bKk" = (/obj/structure/chair/sofa/right{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"bJY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating) +"bJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bKa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bKb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bKc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bKd" = (/obj/machinery/light_switch{pixel_x = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/window/reinforced{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/wood) +"bKe" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/sofa/left{dir = 4},/turf/open/floor/wood) +"bKf" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/window/reinforced{dir = 4},/obj/structure/chair/sofachair,/turf/open/floor/wood) +"bKh" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/light,/turf/open/floor/wood) +"bKi" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood) +"bKj" = (/obj/structure/chair/sofachair{dir = 1},/turf/open/floor/wood) +"bKk" = (/obj/structure/chair/sofa/right{dir = 4},/turf/open/floor/wood) "bKl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "bKm" = (/obj/item/crowbar,/obj/item/wrench,/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bKn" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=13.3-Engineering-Central"; location = "13.2-Tcommstore"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bKo" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/primary/starboard) -"bKp" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKr" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/suit_storage_unit/atmos,/turf/open/floor/plasteel,/area/engine/atmos) -"bKs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/engine/atmos) -"bKt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos) -"bKu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bKv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plating,/area/engine/atmos) -"bKw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/open/floor/plating,/area/engine/atmos) -"bKx" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plating,/area/engine/atmos) -"bKy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bKz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bKA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bKB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating,/area/engine/atmos) +"bKp" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"bKr" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/suit_storage_unit/atmos,/turf/open/floor/plasteel) +"bKs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall) +"bKt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel) +"bKv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plating) +"bKw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/open/floor/plating) +"bKx" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plating) +"bKy" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating) +"bKz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating) +"bKA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating) +"bKB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating) "bKC" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space/nearstation) -"bKD" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/aisat) +"bKD" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark) "bKE" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "bKF" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "bKG" = (/obj/machinery/holopad,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) @@ -4550,75 +4319,73 @@ "bKJ" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bKK" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) "bKM" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port) -"bKN" = (/obj/structure/table/wood,/obj/item/book/manual/gato_spacelaw,/turf/open/floor/wood,/area/security/vacantoffice) -"bKO" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/wood,/area/security/vacantoffice) -"bKP" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/wood,/area/security/vacantoffice) -"bKQ" = (/obj/machinery/shower{dir = 4},/obj/machinery/light/small,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/crew_quarters/toilet/auxiliary) -"bKR" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) -"bKS" = (/obj/machinery/light/small,/obj/structure/sign/poster/official/random{pixel_y = -32},/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) -"bKT" = (/obj/machinery/door/airlock{id_tag = "AuxToilet3"; name = "Unit 3"},/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) -"bKU" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet3"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/newscaster{pixel_y = -32},/obj/effect/landmark/blobstart,/obj/structure/toilet{dir = 8},/turf/open/floor/plating,/area/crew_quarters/toilet/auxiliary) +"bKN" = (/obj/structure/table/wood,/obj/item/book/manual/gato_spacelaw,/turf/open/floor/wood) +"bKO" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/wood) +"bKP" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/wood) +"bKQ" = (/obj/machinery/shower{dir = 4},/obj/machinery/light/small,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel) +"bKR" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plating) +"bKS" = (/obj/machinery/light/small,/obj/structure/sign/poster/official/random{pixel_y = -32},/turf/open/floor/plating) +"bKT" = (/obj/machinery/door/airlock{id_tag = "AuxToilet3"; name = "Unit 3"},/turf/open/floor/plating) +"bKU" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet3"; name = "Lock Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/newscaster{pixel_y = -32},/obj/effect/landmark/blobstart,/obj/structure/toilet{dir = 8},/turf/open/floor/plating) "bKV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/maintenance/port) "bKW" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/maintenance/port) -"bKX" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/library) -"bKZ" = (/obj/structure/table/wood,/obj/item/paicard,/turf/open/floor/wood,/area/library) -"bLa" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/wood,/area/library) -"bLb" = (/obj/structure/table/wood,/obj/item/camera_film{pixel_x = -3; pixel_y = 5},/obj/item/camera_film{pixel_y = 9},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/turf/open/floor/wood,/area/library) +"bKX" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood) +"bKZ" = (/obj/structure/table/wood,/obj/item/paicard,/turf/open/floor/wood) +"bLa" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/wood) +"bLb" = (/obj/structure/table/wood,/obj/item/camera_film{pixel_x = -3; pixel_y = 5},/obj/item/camera_film{pixel_y = 9},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/turf/open/floor/wood) "bLc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/radio/intercom{freerange = 1; name = "Station Intercom (General)"; pixel_x = -30},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bLd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bLe" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/structure/extinguisher_cabinet{pixel_x = -27},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/eva) -"bLf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bLg" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bLh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bLi" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light_switch{pixel_x = -8; pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/eva) -"bLj" = (/turf/closed/wall,/area/ai_monitored/storage/eva) -"bLk" = (/obj/structure/table,/obj/item/hand_tele,/obj/item/beacon,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bLl" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bLm" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bLn" = (/obj/structure/closet/crate,/obj/item/stack/cable_coil,/obj/item/crowbar,/obj/item/screwdriver{pixel_y = 16},/obj/machinery/power/apc{areastring = "/area/teleporter"; dir = 4; name = "Teleporter APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "0-8"},/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},/turf/open/floor/plasteel/dark,/area/teleporter) +"bLe" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/structure/extinguisher_cabinet{pixel_x = -27},/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},/turf/open/floor/plasteel/dark) +"bLf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"bLh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) +"bLi" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light_switch{pixel_x = -8; pixel_y = 30},/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},/turf/open/floor/plasteel/dark) +"bLk" = (/obj/structure/table,/obj/item/hand_tele,/obj/item/beacon,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/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},/turf/open/floor/plasteel/dark) +"bLl" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light{dir = 1},/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},/turf/open/floor/plasteel/dark) +"bLm" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark) +"bLn" = (/obj/structure/closet/crate,/obj/item/stack/cable_coil,/obj/item/crowbar,/obj/item/screwdriver{pixel_y = 16},/obj/machinery/power/apc{areastring = "/area/teleporter"; dir = 4; name = "Teleporter APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "0-8"},/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},/turf/open/floor/plasteel/dark) "bLo" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/command) "bLp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/command) "bLq" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/command) "bLr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/secondary/command) -"bLs" = (/obj/structure/closet/secure_closet/exile,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bLt" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/gateway) -"bLu" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/gateway) -"bLv" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/storage/toolbox/emergency,/obj/item/flashlight,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/gateway"; dir = 4; name = "Gateway APC"; pixel_x = 28},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) +"bLs" = (/obj/structure/closet/secure_closet/exile,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bLt" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"bLu" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) +"bLv" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/storage/toolbox/emergency,/obj/item/flashlight,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/gateway"; dir = 4; name = "Gateway APC"; pixel_x = 28},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) "bLw" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/central) "bLx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "bLy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bLz" = (/obj/structure/table,/obj/item/clothing/head/hardhat/cakehat,/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bLA" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bLB" = (/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bLC" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bLD" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/crew_quarters/bar) -"bLE" = (/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) -"bLF" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/burrito,/obj/structure/sign/poster/random{pixel_y = -32},/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/bar) +"bLz" = (/obj/structure/table,/obj/item/clothing/head/hardhat/cakehat,/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bLA" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bLB" = (/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel) +"bLC" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel) +"bLD" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/obj/item/kirbyplants/random,/turf/open/floor/wood) +"bLE" = (/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/wood) +"bLF" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/burrito,/obj/structure/sign/poster/random{pixel_y = -32},/obj/machinery/light,/turf/open/floor/wood) "bLJ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/obj,/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "bLK" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bLL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bLM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/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/plasteel,/area/hallway/primary/starboard) -"bLN" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bLO" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bLP" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bLQ" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bLR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/suit_storage_unit/atmos,/turf/open/floor/plasteel,/area/engine/atmos) -"bLS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/engine/atmos) -"bLT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External Air Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bLU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/atmos) -"bLV" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bLW" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Port to External"},/turf/open/floor/plasteel,/area/engine/atmos) -"bLX" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"bLY" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bLZ" = (/obj/machinery/atmospherics/components/binary/pump{name = "Mix to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bMa" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bMb" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bMc" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/engine/atmos) -"bMd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O to Pure"},/turf/open/floor/plasteel/dark,/area/engine/atmos) +"bLN" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"bLO" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"bLP" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) +"bLQ" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"bLR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/suit_storage_unit/atmos,/turf/open/floor/plasteel) +"bLS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall) +"bLT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External Air Ports"},/turf/open/floor/plasteel) +"bLU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/item/beacon,/turf/open/floor/plasteel) +"bLV" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel) +"bLW" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Port to External"},/turf/open/floor/plasteel) +"bLX" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel) +"bLY" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Ports"},/turf/open/floor/plasteel) +"bLZ" = (/obj/machinery/atmospherics/components/binary/pump{name = "Mix to Ports"},/turf/open/floor/plasteel) +"bMa" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/open/floor/plasteel) +"bMb" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel) +"bMc" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel/cafeteria) +"bMd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O to Pure"},/turf/open/floor/plasteel/dark) "bMe" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space,/area/space/nearstation) -"bMf" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) -"bMg" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{dir = 8},/turf/open/floor/engine/n2o,/area/engine/atmos) -"bMh" = (/turf/open/floor/engine/n2o,/area/engine/atmos) +"bMf" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/grille,/turf/closed/wall/r_wall) +"bMg" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{dir = 8},/turf/open/floor/engine/n2o) +"bMh" = (/turf/open/floor/engine/n2o) "bMi" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/lattice,/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space/nearstation) "bMj" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space/nearstation) "bMk" = (/obj/machinery/telecomms/message_server,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) @@ -4634,93 +4401,89 @@ "bMu" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;27;37"},/turf/open/floor/plating,/area/maintenance/port) "bMv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/port) "bMw" = (/turf/open/floor/plating,/area/maintenance/port) -"bMx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/radio/intercom{pixel_x = -29},/turf/open/floor/wood,/area/security/vacantoffice) -"bMy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/security/vacantoffice) -"bMz" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/vacantoffice) -"bMA" = (/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/carpet,/area/security/vacantoffice) -"bMB" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -2; pixel_y = 6},/turf/open/floor/carpet,/area/security/vacantoffice) -"bMC" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/wood,/area/security/vacantoffice) -"bMD" = (/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/cobweb,/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library) -"bMF" = (/obj/machinery/door/window/northright{base_state = "left"; dir = 8; icon_state = "left"; name = "Library Desk Door"; pixel_x = 3; req_access_txt = "37"},/turf/open/floor/wood,/area/library) -"bMG" = (/obj/effect/landmark/start/librarian,/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/wood,/area/library) -"bMH" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; dir = 8; name = "requests board"; pixel_x = 32},/turf/open/floor/wood,/area/library) +"bMx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/radio/intercom{pixel_x = -29},/turf/open/floor/wood) +"bMy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood) +"bMz" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet) +"bMA" = (/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/carpet) +"bMB" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -2; pixel_y = 6},/turf/open/floor/carpet) +"bMC" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/wood) +"bMD" = (/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/cobweb,/obj/structure/bookcase/random/fiction,/turf/open/floor/wood) +"bMF" = (/obj/machinery/door/window/northright{base_state = "left"; dir = 8; icon_state = "left"; name = "Library Desk Door"; pixel_x = 3; req_access_txt = "37"},/turf/open/floor/wood) +"bMG" = (/obj/effect/landmark/start/librarian,/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/wood) +"bMH" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; dir = 8; name = "requests board"; pixel_x = 32},/turf/open/floor/wood) "bMI" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "bMJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bMK" = (/obj/machinery/suit_storage_unit/standard_unit,/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/eva) -"bML" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bMM" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/item/multitool,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bMN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bMO" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/eva) -"bMP" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bMQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/teleporter) -"bMR" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/teleporter) -"bMS" = (/obj/structure/closet/crate,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal/fifty,/obj/item/storage/toolbox/emergency,/obj/item/flashlight,/obj/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bMT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/teleporter) +"bMK" = (/obj/machinery/suit_storage_unit/standard_unit,/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},/turf/open/floor/plasteel/dark) +"bML" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"bMM" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/item/multitool,/turf/open/floor/plasteel) +"bMN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bMO" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/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},/turf/open/floor/plasteel/dark) +"bMP" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/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},/turf/open/floor/plasteel/dark) +"bMQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"bMR" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) +"bMS" = (/obj/structure/closet/crate,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal/fifty,/obj/item/storage/toolbox/emergency,/obj/item/flashlight,/obj/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/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},/turf/open/floor/plasteel/dark) +"bMT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating) "bMU" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/command) "bMV" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/command) "bMW" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/command) "bMX" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/beacon,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/command) "bMY" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/command) -"bMZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating,/area/gateway) -"bNa" = (/obj/structure/closet/l3closet/scientist,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bNb" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"bNc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/gateway) -"bNd" = (/obj/structure/table,/obj/item/folder/yellow,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bNe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/gateway) -"bNf" = (/obj/effect/turf_decal/bot_white/right,/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/machinery/gateway{dir = 9},/turf/open/floor/plasteel/dark,/area/gateway) -"bNg" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/bot_white,/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/machinery/gateway{dir = 1},/turf/open/floor/plasteel/dark,/area/gateway) -"bNh" = (/obj/effect/turf_decal/bot_white/left,/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/machinery/gateway{dir = 5},/turf/open/floor/plasteel/dark,/area/gateway) +"bMZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating) +"bNa" = (/obj/structure/closet/l3closet/scientist,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bNb" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"bNc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bNd" = (/obj/structure/table,/obj/item/folder/yellow,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bNe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating) +"bNf" = (/obj/effect/turf_decal/bot_white/right,/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/machinery/gateway{dir = 9},/turf/open/floor/plasteel/dark) +"bNg" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/bot_white,/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/machinery/gateway{dir = 1},/turf/open/floor/plasteel/dark) +"bNh" = (/obj/effect/turf_decal/bot_white/left,/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/machinery/gateway{dir = 5},/turf/open/floor/plasteel/dark) "bNj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "bNk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bNl" = (/obj/structure/sign/poster/official/random,/turf/closed/wall,/area/crew_quarters/kitchen) -"bNm" = (/turf/closed/wall,/area/crew_quarters/kitchen) -"bNn" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bNo" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/reagent_containers/food/snacks/pie/cream,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bNp" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bNq" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bNr" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/storage/fancy/donut_box,/obj/machinery/camera{c_tag = "Theatre - Stage"; dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bNs" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bNu" = (/obj/machinery/camera{c_tag = "Theatre - Stage"; dir = 1},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bNy" = (/obj/machinery/door/airlock{name = "Theatre Backstage"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/theatre) -"bNz" = (/turf/closed/wall/r_wall,/area/storage/tcom) -"bNB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Telecomms Storage"; req_access_txt = "61"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/tcom) -"bNC" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bND" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bNE" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bNF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/engine/atmos) -"bNG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/engine/atmos) -"bNH" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bNI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Port to Filter"},/turf/open/floor/plasteel,/area/engine/atmos) -"bNJ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bNK" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bNL" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bNM" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Pure to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bNN" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bNO" = (/obj/machinery/computer/atmos_control/tank/nitrous_tank{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/plasteel/white/corner,/area/engine/atmos) -"bNP" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bNQ" = (/obj/machinery/air_sensor/atmos/nitrous_tank,/turf/open/floor/engine/n2o,/area/engine/atmos) -"bNR" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide{valve_open = 1},/obj/machinery/atmospherics/miner/n2o,/turf/open/floor/engine/n2o,/area/engine/atmos) -"bNS" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/n2o,/area/engine/atmos) +"bNn" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bNo" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/reagent_containers/food/snacks/pie/cream,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bNp" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bNq" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bNr" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "Serving Hatch"},/obj/item/storage/fancy/donut_box,/obj/machinery/camera{c_tag = "Theatre - Stage"; dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bNs" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria) +"bNu" = (/obj/machinery/camera{c_tag = "Theatre - Stage"; dir = 1},/turf/open/floor/carpet) +"bNy" = (/obj/machinery/door/airlock{name = "Theatre Backstage"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood) +"bNB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Telecomms Storage"; req_access_txt = "61"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bNC" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"bND" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"bNE" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"bNG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall) +"bNH" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel) +"bNI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Port to Filter"},/turf/open/floor/plasteel) +"bNJ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel) +"bNK" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel) +"bNL" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel) +"bNM" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Pure to Ports"},/turf/open/floor/plasteel) +"bNN" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plasteel) +"bNO" = (/obj/machinery/computer/atmos_control/tank/nitrous_tank{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/plasteel/white/corner) +"bNP" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel/dark) +"bNQ" = (/obj/machinery/air_sensor/atmos/nitrous_tank,/turf/open/floor/engine/n2o) +"bNR" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide{valve_open = 1},/obj/machinery/atmospherics/miner/n2o,/turf/open/floor/engine/n2o) +"bNS" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/n2o) "bNT" = (/obj/structure/grille,/obj/structure/lattice,/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space/nearstation) -"bNU" = (/obj/machinery/light/small{dir = 4},/obj/machinery/door/window{name = "MiniSat Walkway Access"},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft Port"; dir = 8; network = list("minisat")},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/aisat) -"bNV" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/aisat) +"bNU" = (/obj/machinery/light/small{dir = 4},/obj/machinery/door/window{name = "MiniSat Walkway Access"},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft Port"; dir = 8; network = list("minisat")},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark) +"bNV" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/open/space) "bNW" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) "bNX" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) "bNY" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/circuit/green/telecomms/mainframe,/area/tcommsat/server) "bNZ" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) "bOa" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"bOb" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/door/window{base_state = "right"; icon_state = "right"; name = "MiniSat Walkway Access"},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft Starboard"; dir = 4; network = list("minisat")},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/aisat) +"bOb" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/door/window{base_state = "right"; icon_state = "right"; name = "MiniSat Walkway Access"},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft Starboard"; dir = 4; network = list("minisat")},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark) "bOc" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bOd" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bOe" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bOf" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bOg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bOh" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Arrivals - Aft Arm"; dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"bOi" = (/obj/machinery/power/apc{areastring = "/area/security/vacantoffice"; dir = 8; name = "Vacant Office APC"; pixel_x = -25},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/wood,/area/security/vacantoffice) -"bOj" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/security/vacantoffice) -"bOk" = (/obj/item/folder/blue,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/security/vacantoffice) -"bOl" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/carpet,/area/security/vacantoffice) -"bOm" = (/obj/structure/light_construct{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) +"bOi" = (/obj/machinery/power/apc{areastring = "/area/security/vacantoffice"; dir = 8; name = "Vacant Office APC"; pixel_x = -25},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/wood) +"bOj" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet) +"bOk" = (/obj/item/folder/blue,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet) +"bOl" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/carpet) +"bOm" = (/obj/structure/light_construct{dir = 4},/turf/open/floor/wood) "bOn" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) "bOo" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port) "bOp" = (/obj/structure/closet,/obj/item/clothing/shoes/jackboots,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port) @@ -4728,61 +4491,56 @@ "bOr" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/costume,/obj/effect/spawner/lootdrop/costume,/turf/open/floor/plating,/area/maintenance/port) "bOs" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/rack,/obj/effect/spawner/lootdrop/costume,/obj/effect/spawner/lootdrop/costume,/turf/open/floor/plating,/area/maintenance/port) "bOt" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port) -"bOu" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/library) -"bOv" = (/obj/structure/bookcase/random/adult,/turf/open/floor/wood,/area/library) -"bOw" = (/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library) -"bOx" = (/obj/structure/table/wood,/obj/item/pen/red,/obj/item/pen/blue{pixel_x = 5; pixel_y = 5},/turf/open/floor/wood,/area/library) -"bOy" = (/obj/machinery/light_switch{pixel_x = 28},/turf/open/floor/wood,/area/library) +"bOu" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood) +"bOv" = (/obj/structure/bookcase/random/adult,/turf/open/floor/wood) +"bOw" = (/obj/structure/bookcase/random/reference,/turf/open/floor/wood) +"bOx" = (/obj/structure/table/wood,/obj/item/pen/red,/obj/item/pen/blue{pixel_x = 5; pixel_y = 5},/turf/open/floor/wood) +"bOy" = (/obj/machinery/light_switch{pixel_x = 28},/turf/open/floor/wood) "bOz" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"bOA" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/eva"; dir = 8; name = "E.V.A. Storage APC"; pixel_x = -24},/obj/structure/cable/yellow{icon_state = "0-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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/eva) -"bOB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bOC" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bOD" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bOE" = (/obj/machinery/door/window/northleft{dir = 8; name = "Magboot Storage"; pixel_x = -1; req_access_txt = "19"},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/rack,/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots{pixel_x = 4; pixel_y = -3},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/eva) -"bOF" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/teleporter) -"bOG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/teleporter) -"bOH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/teleporter) -"bOI" = (/obj/machinery/door/window/northleft{dir = 8; name = "Disposals Chute"},/obj/machinery/disposal/deliveryChute{dir = 8; name = "disposals chute"; pixel_x = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bOJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "corporate_privacy"; name = "showroom shutters"},/turf/open/floor/plating,/area/bridge/showroom/corporate) -"bOK" = (/turf/closed/wall/r_wall,/area/bridge/showroom/corporate) -"bOL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom"; req_access_txt = "19"},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bOM" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bON" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"bOO" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/gateway) -"bOP" = (/obj/structure/table,/obj/item/paper/pamphlet/gateway,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bOQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/gateway) -"bOR" = (/obj/effect/turf_decal/bot_white,/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/machinery/gateway{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) -"bOS" = (/obj/machinery/gateway/centerstation{dir = 0},/turf/open/floor/plasteel/dark,/area/gateway) +"bOA" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/eva"; dir = 8; name = "E.V.A. Storage APC"; pixel_x = -24},/obj/structure/cable/yellow{icon_state = "0-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},/turf/open/floor/plasteel/dark) +"bOB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"bOD" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bOE" = (/obj/machinery/door/window/northleft{dir = 8; name = "Magboot Storage"; pixel_x = -1; req_access_txt = "19"},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/rack,/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots{pixel_x = 4; pixel_y = -3},/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},/turf/open/floor/plasteel/dark) +"bOF" = (/obj/machinery/teleport/hub,/turf/open/floor/plating) +"bOG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"bOH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bOI" = (/obj/machinery/door/window/northleft{dir = 8; name = "Disposals Chute"},/obj/machinery/disposal/deliveryChute{dir = 8; name = "disposals chute"; pixel_x = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/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},/turf/open/floor/plasteel/dark) +"bOJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "corporate_privacy"; name = "showroom shutters"},/turf/open/floor/plating) +"bOL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom"; req_access_txt = "19"},/turf/open/floor/wood) +"bOM" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bON" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"bOO" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bOP" = (/obj/structure/table,/obj/item/paper/pamphlet/gateway,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bOR" = (/obj/effect/turf_decal/bot_white,/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/machinery/gateway{dir = 8},/turf/open/floor/plasteel/dark) +"bOS" = (/obj/machinery/gateway/centerstation{dir = 0},/turf/open/floor/plasteel/dark) "bOT" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/cigbutt,/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/central) "bOU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/status_display/evac{pixel_x = -32},/obj/machinery/camera{c_tag = "Central Primary Hallway - Starboard - Kitchen"; dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bOV" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/button/door{id = "kitchenwindow"; name = "Window Shutter Control"; pixel_x = -26; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bOW" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/button/door{id = "kitchen"; name = "Kitchen Shutters Control"; pixel_x = -4; pixel_y = 26; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = 6; pixel_y = 26},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bOX" = (/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bOY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bOZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bPa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bPb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/sink/kitchen{pixel_y = 28},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bPc" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bPd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -26},/turf/open/floor/wood,/area/crew_quarters/theatre) -"bPe" = (/obj/structure/dresser,/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/theatre) -"bPf" = (/obj/machinery/vending/autodrobe,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/light/small{dir = 1; pixel_x = -8; pixel_y = 12},/obj,/turf/open/floor/wood,/area/crew_quarters/theatre) -"bPg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj,/turf/closed/wall,/area/crew_quarters/theatre) +"bOV" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/button/door{id = "kitchenwindow"; name = "Window Shutter Control"; pixel_x = -26; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria) +"bOW" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/button/door{id = "kitchen"; name = "Kitchen Shutters Control"; pixel_x = -4; pixel_y = 26; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = 6; pixel_y = 26},/turf/open/floor/plasteel/cafeteria) +"bOY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bOZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bPa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bPb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/sink/kitchen{pixel_y = 28},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bPc" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bPd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -26},/turf/open/floor/wood) +"bPe" = (/obj/structure/dresser,/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood) +"bPf" = (/obj/machinery/vending/autodrobe,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/light/small{dir = 1; pixel_x = -8; pixel_y = 12},/obj,/turf/open/floor/wood) +"bPg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj,/turf/closed/wall) "bPh" = (/obj/item/storage/box/donkpockets,/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/port) -"bPi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/storage/tcom) -"bPj" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/bus,/obj/item/circuitboard/machine/telecomms/broadcaster,/obj/machinery/camera{c_tag = "Telecomms - Storage"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/storage/tcom) -"bPk" = (/obj/machinery/holopad,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/storage/tcom) -"bPl" = (/obj/structure/table,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/machinery/light_switch{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/storage/tcom) -"bPm" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/engine/atmos) -"bPn" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/binary/pump/on{dir = 0; name = "External to Filter"},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos) -"bPo" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bPp" = (/obj/machinery/atmospherics/components/binary/pump{name = "Port to Fuel Pipe"},/turf/open/floor/plasteel,/area/engine/atmos) -"bPq" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bPr" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix to Engine"},/turf/open/floor/plasteel,/area/engine/atmos) -"bPs" = (/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/engine/atmos) -"bPt" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/white/corner,/area/engine/atmos) -"bPu" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bPv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{dir = 8},/turf/open/floor/engine/n2o,/area/engine/atmos) -"bPw" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - N2O"; dir = 8},/turf/open/floor/engine/n2o,/area/engine/atmos) +"bPj" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/bus,/obj/item/circuitboard/machine/telecomms/broadcaster,/obj/machinery/camera{c_tag = "Telecomms - Storage"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark) +"bPk" = (/obj/machinery/holopad,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark) +"bPl" = (/obj/structure/table,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/machinery/light_switch{pixel_y = 26},/turf/open/floor/plasteel/dark) +"bPm" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"bPn" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/binary/pump/on{dir = 0; name = "External to Filter"},/turf/open/floor/plasteel/white/corner{dir = 1}) +"bPo" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel) +"bPp" = (/obj/machinery/atmospherics/components/binary/pump{name = "Port to Fuel Pipe"},/turf/open/floor/plasteel) +"bPq" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel) +"bPr" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix to Engine"},/turf/open/floor/plasteel) +"bPs" = (/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel) +"bPt" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/white/corner) +"bPu" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 1},/turf/open/floor/plasteel/dark) +"bPv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{dir = 8},/turf/open/floor/engine/n2o) +"bPw" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - N2O"; dir = 8},/turf/open/floor/engine/n2o) "bPx" = (/obj/machinery/airalarm/server{dir = 4; pixel_x = -22},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Telecomms - Server Room - Aft-Port"; dir = 4; network = list("ss13","tcomms")},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "bPy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) "bPz" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) @@ -4797,84 +4555,80 @@ "bPI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; pixel_y = -32},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) "bPJ" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port) "bPK" = (/obj/item/flashlight,/obj/structure/trash_pile,/turf/open/floor/plating,/area/maintenance/port/aft) -"bPL" = (/obj/structure/chair/office/dark,/turf/open/floor/wood,/area/security/vacantoffice) -"bPM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"bPN" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/turf/open/floor/wood,/area/security/vacantoffice) +"bPL" = (/obj/structure/chair/office/dark,/turf/open/floor/wood) +"bPN" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/turf/open/floor/wood) "bPO" = (/obj/structure/mirror{pixel_x = -28},/obj/item/lipstick/black,/obj/item/lipstick/jade{pixel_x = 2; pixel_y = 2},/obj/item/lipstick/purple{pixel_x = -2; pixel_y = -2},/obj/structure/table,/turf/open/floor/plating,/area/maintenance/port) "bPP" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/port) "bPQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/port) "bPR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) "bPS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) "bPT" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/rack_parts,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) -"bPU" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/cobweb,/obj/structure/bookcase/random/adult,/turf/open/floor/wood,/area/library) -"bPV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/comfy/black{dir = 4},/obj/effect/landmark/start/librarian,/turf/open/floor/carpet,/area/library) -"bPW" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/apc/auto_name/south{areastring = "/area/library"; name = "Library APC"},/turf/open/floor/wood,/area/library) -"bPX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/carpet,/area/library) -"bPY" = (/obj/machinery/light/small,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/wood,/area/library) -"bPZ" = (/obj/item/folder,/obj/item/folder,/obj/machinery/camera/autoname{dir = 1},/obj/structure/table/wood,/obj/item/taperecorder,/obj/item/tape,/turf/open/floor/wood,/area/library) -"bQa" = (/obj/machinery/light/small,/obj/machinery/libraryscanner,/turf/open/floor/wood,/area/library) -"bQb" = (/obj/machinery/newscaster{pixel_x = -1; pixel_y = -29},/turf/open/floor/wood,/area/library) -"bQc" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/wood,/area/library) +"bPU" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/cobweb,/obj/structure/bookcase/random/adult,/turf/open/floor/wood) +"bPV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/comfy/black{dir = 4},/obj/effect/landmark/start/librarian,/turf/open/floor/carpet) +"bPW" = (/obj/item/kirbyplants/random,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/apc/auto_name/south{areastring = "/area/library"; name = "Library APC"},/turf/open/floor/wood) +"bPX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/carpet) +"bPY" = (/obj/machinery/light/small,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/wood) +"bPZ" = (/obj/item/folder,/obj/item/folder,/obj/machinery/camera/autoname{dir = 1},/obj/structure/table/wood,/obj/item/taperecorder,/obj/item/tape,/turf/open/floor/wood) +"bQa" = (/obj/machinery/light/small,/obj/machinery/libraryscanner,/turf/open/floor/wood) +"bQb" = (/obj/machinery/newscaster{pixel_x = -1; pixel_y = -29},/turf/open/floor/wood) "bQd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bQe" = (/obj/structure/closet/crate/rcd{pixel_y = 4},/obj/machinery/door/window/northleft{dir = 4; name = "RCD Storage"; pixel_x = 1; req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/eva) -"bQf" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bQg" = (/obj/structure/tank_dispenser/oxygen{pixel_x = -1; pixel_y = 2},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bQh" = (/obj/machinery/camera/motion{c_tag = "E.V.A. Storage"; dir = 8},/obj/machinery/requests_console{department = "EVA"; pixel_x = 32},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bQi" = (/obj/machinery/teleport/station,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plating,/area/teleporter) -"bQj" = (/obj/machinery/bluespace_beacon,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/teleporter) -"bQk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/teleporter) -"bQl" = (/obj/machinery/camera{c_tag = "Teleporter Room"; dir = 8},/obj/structure/rack,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bQm" = (/obj/structure/window/reinforced,/obj/structure/showcase/mecha/ripley,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bQn" = (/obj/structure/sign/plaques/kiddie/perfect_drone{pixel_y = 32},/obj/structure/table/wood,/obj/item/storage/backpack/duffelbag/drone,/obj/structure/window/reinforced,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bQo" = (/obj/structure/showcase/mecha/marauder,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bQp" = (/obj/structure/bookcase,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bQq" = (/obj/structure/table/wood,/obj/item/phone{desc = "Who can it be now?"; pixel_x = -3; pixel_y = 3},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/machinery/light{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bQr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bQs" = (/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/item/clothing/shoes/laceup,/obj/item/clothing/glasses/sunglasses,/obj/machinery/camera{c_tag = "Corporate Showroom"},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bQt" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/window/reinforced,/obj/structure/showcase/machinery/cloning_pod{layer = 4; pixel_x = 2; pixel_y = 5},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bQu" = (/obj/structure/showcase/perfect_employee,/obj/structure/sign/plaques/kiddie/perfect_man{desc = "A guide to the exhibit, explaining how recent developments in mindshield implant and cloning technologies by GATO have led to the development and the effective immortality of the 'perfect man', the loyal GATO Employee."; pixel_y = 32},/obj/structure/window/reinforced,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bQv" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/window/reinforced,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/showcase/machinery/implanter{layer = 2.7; pixel_y = 4},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bQw" = (/turf/closed/wall,/area/gateway) -"bQx" = (/obj/structure/bed/roller,/obj/machinery/vending/wallmed{pixel_x = -28},/obj/machinery/camera{c_tag = "Gateway - Atrium"; dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bQy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/gateway) -"bQz" = (/obj/structure/tank_dispenser/oxygen{pixel_x = -1; pixel_y = 2},/obj/machinery/light{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bQA" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/bot_white,/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/machinery/gateway,/turf/open/floor/plasteel/dark,/area/gateway) +"bQe" = (/obj/structure/closet/crate/rcd{pixel_y = 4},/obj/machinery/door/window/northleft{dir = 4; name = "RCD Storage"; pixel_x = 1; req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/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},/turf/open/floor/plasteel/dark) +"bQg" = (/obj/structure/tank_dispenser/oxygen{pixel_x = -1; pixel_y = 2},/turf/open/floor/plasteel) +"bQh" = (/obj/machinery/camera/motion{c_tag = "E.V.A. Storage"; dir = 8},/obj/machinery/requests_console{department = "EVA"; pixel_x = 32},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bQi" = (/obj/machinery/teleport/station,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plating) +"bQj" = (/obj/machinery/bluespace_beacon,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"bQk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bQl" = (/obj/machinery/camera{c_tag = "Teleporter Room"; dir = 8},/obj/structure/rack,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/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},/turf/open/floor/plasteel/dark) +"bQm" = (/obj/structure/window/reinforced,/obj/structure/showcase/mecha/ripley,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/carpet) +"bQn" = (/obj/structure/sign/plaques/kiddie/perfect_drone{pixel_y = 32},/obj/structure/table/wood,/obj/item/storage/backpack/duffelbag/drone,/obj/structure/window/reinforced,/turf/open/floor/carpet) +"bQo" = (/obj/structure/showcase/mecha/marauder,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/carpet) +"bQp" = (/obj/structure/bookcase,/turf/open/floor/wood) +"bQq" = (/obj/structure/table/wood,/obj/item/phone{desc = "Who can it be now?"; pixel_x = -3; pixel_y = 3},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/machinery/light{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/turf/open/floor/wood) +"bQr" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/wood) +"bQs" = (/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/item/clothing/shoes/laceup,/obj/item/clothing/glasses/sunglasses,/obj/machinery/camera{c_tag = "Corporate Showroom"},/turf/open/floor/wood) +"bQt" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/window/reinforced,/obj/structure/showcase/machinery/cloning_pod{layer = 4; pixel_x = 2; pixel_y = 5},/turf/open/floor/carpet) +"bQu" = (/obj/structure/showcase/perfect_employee,/obj/structure/sign/plaques/kiddie/perfect_man{desc = "A guide to the exhibit, explaining how recent developments in mindshield implant and cloning technologies by GATO have led to the development and the effective immortality of the 'perfect man', the loyal GATO Employee."; pixel_y = 32},/obj/structure/window/reinforced,/turf/open/floor/carpet) +"bQv" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/window/reinforced,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/showcase/machinery/implanter{layer = 2.7; pixel_y = 4},/turf/open/floor/carpet) +"bQx" = (/obj/structure/bed/roller,/obj/machinery/vending/wallmed{pixel_x = -28},/obj/machinery/camera{c_tag = "Gateway - Atrium"; dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bQy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bQz" = (/obj/structure/tank_dispenser/oxygen{pixel_x = -1; pixel_y = 2},/obj/machinery/light{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bQA" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/bot_white,/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/machinery/gateway,/turf/open/floor/plasteel/dark) "bQB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/central) "bQC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "bQD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bQE" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "kitchenwindow"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"bQF" = (/obj/structure/rack,/obj/item/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/stack/packageWrap,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bQH" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bQI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bQJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bQK" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bQL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bQM" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bQN" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bQO" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bQP" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bQQ" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bQR" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/wood,/area/crew_quarters/theatre) -"bQS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/wood,/area/crew_quarters/theatre) -"bQT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/mime,/turf/open/floor/wood,/area/crew_quarters/theatre) -"bQU" = (/obj/structure/sign/poster/contraband/clown{pixel_x = 32},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) -"bQV" = (/obj/structure/table,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc{areastring = "/area/storage/tcom"; dir = 8; name = "Telecomms Storage APC"; pixel_x = -28},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/storage/tcom) -"bQW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/storage/tcom) -"bQX" = (/obj/structure/table,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/storage/tcom) +"bQE" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "kitchenwindow"; name = "kitchen shutters"},/turf/open/floor/plating) +"bQF" = (/obj/structure/rack,/obj/item/book/manual/chef_recipes{pixel_x = 2; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/stack/packageWrap,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bQH" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bQI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bQJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bQK" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bQL" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bQM" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria) +"bQN" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor) +"bQO" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/turf/open/floor/plasteel/showroomfloor) +"bQP" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor) +"bQQ" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/showroomfloor) +"bQR" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/wood) +"bQS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/wood) +"bQT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/mime,/turf/open/floor/wood) +"bQU" = (/obj/structure/sign/poster/contraband/clown{pixel_x = 32},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/wood) +"bQV" = (/obj/structure/table,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc{areastring = "/area/storage/tcom"; dir = 8; name = "Telecomms Storage APC"; pixel_x = -28},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark) +"bQW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/dark) +"bQX" = (/obj/structure/table,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark) "bQY" = (/obj/structure/closet,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard) "bQZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/starboard) "bRa" = (/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/starboard) "bRb" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/starboard) -"bRc" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos) -"bRd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bRe" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bRf" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"bRg" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bRh" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bRi" = (/obj/machinery/door/window/northleft{dir = 8; name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bRj" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bRk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) +"bRc" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1}) +"bRd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 6},/turf/open/floor/plasteel) +"bRe" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel) +"bRf" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/turf/open/floor/plasteel) +"bRg" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/turf/open/floor/plasteel) +"bRh" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel) +"bRi" = (/obj/machinery/door/window/northleft{dir = 8; name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel/dark) +"bRj" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/dark) +"bRk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating) "bRl" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/open/space,/area/space/nearstation) "bRm" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) "bRn" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) @@ -4885,80 +4639,75 @@ "bRs" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) "bRt" = (/obj/machinery/door/airlock/external{name = "Auxiliary Airlock"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/hallway/secondary/entry) "bRu" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port) -"bRv" = (/obj/structure/table/wood,/obj/item/paper,/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/structure/light_construct,/turf/open/floor/wood,/area/security/vacantoffice) -"bRw" = (/obj/structure/table/wood,/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/turf/open/floor/wood,/area/security/vacantoffice) -"bRx" = (/obj/item/toy/cards/deck,/obj/structure/table/wood,/turf/open/floor/wood,/area/security/vacantoffice) +"bRv" = (/obj/structure/table/wood,/obj/item/paper,/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/structure/light_construct,/turf/open/floor/wood) +"bRw" = (/obj/structure/table/wood,/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/turf/open/floor/wood) +"bRx" = (/obj/item/toy/cards/deck,/obj/structure/table/wood,/turf/open/floor/wood) "bRy" = (/obj/structure/table,/obj/item/clothing/mask/cigarette/pipe,/turf/open/floor/plating,/area/maintenance/port) "bRz" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/port) "bRA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) "bRB" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/port) -"bRC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/grunge{name = "Quiet Room"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/library) -"bRD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/grunge{name = "Quiet Room"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/library) -"bRE" = (/obj/machinery/door/morgue{name = "Private Study"; req_access_txt = "37"},/turf/open/floor/engine/cult,/area/library) +"bRC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/grunge{name = "Quiet Room"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood) +"bRD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/grunge{name = "Quiet Room"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood) +"bRE" = (/obj/machinery/door/morgue{name = "Private Study"; req_access_txt = "37"},/turf/open/floor/engine/cult) "bRF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bRG" = (/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/crowbar,/obj/item/wrench,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/eva) -"bRH" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bRI" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bRJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bRK" = (/obj/machinery/door/window/northleft{dir = 8; name = "Jetpack Storage"; pixel_x = -1; req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide/eva{pixel_x = 4; pixel_y = -1},/obj/item/tank/jetpack/carbondioxide/eva,/obj/item/tank/jetpack/carbondioxide/eva{pixel_x = -4; pixel_y = 1},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/storage/eva) -"bRL" = (/obj/machinery/computer/teleporter{dir = 4},/turf/open/floor/plating,/area/teleporter) -"bRM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/teleporter) -"bRN" = (/obj/structure/rack,/obj/item/tank/internals/oxygen,/obj/item/tank/internals/oxygen,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bRO" = (/turf/closed/wall,/area/teleporter) -"bRP" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bRQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bRR" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bRS" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bRT" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bRU" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bRV" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bRW" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/wood{icon_state = "wood-broken6"},/area/bridge/showroom/corporate) -"bRX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bRY" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/bridge/showroom/corporate"; dir = 4; name = "GATO Corporate Showroom APC"; pixel_x = 28},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/item/cigbutt,/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bRZ" = (/obj/structure/rack,/obj/item/reagent_containers/syringe/charcoal,/obj/item/reagent_containers/syringe/epinephrine{pixel_x = -1; pixel_y = 2},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bSa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"bSb" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/gateway) -"bSc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/gateway) -"bSd" = (/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},/turf/open/floor/plasteel/dark,/area/gateway) -"bSe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/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},/turf/open/floor/plasteel/dark,/area/gateway) -"bSf" = (/obj/machinery/light{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},/turf/open/floor/plasteel/dark,/area/gateway) +"bRG" = (/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/crowbar,/obj/item/wrench,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/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},/turf/open/floor/plasteel/dark) +"bRH" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"bRK" = (/obj/machinery/door/window/northleft{dir = 8; name = "Jetpack Storage"; pixel_x = -1; req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide/eva{pixel_x = 4; pixel_y = -1},/obj/item/tank/jetpack/carbondioxide/eva,/obj/item/tank/jetpack/carbondioxide/eva{pixel_x = -4; pixel_y = 1},/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},/turf/open/floor/plasteel/dark) +"bRL" = (/obj/machinery/computer/teleporter{dir = 4},/turf/open/floor/plating) +"bRM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel) +"bRN" = (/obj/structure/rack,/obj/item/tank/internals/oxygen,/obj/item/tank/internals/oxygen,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/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},/turf/open/floor/plasteel/dark) +"bRP" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8},/turf/open/floor/wood) +"bRQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/turf/open/floor/wood) +"bRR" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/wood) +"bRS" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/wood) +"bRT" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/wood) +"bRU" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood) +"bRV" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/wood) +"bRW" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/wood{icon_state = "wood-broken6"}) +"bRX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/wood) +"bRY" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/bridge/showroom/corporate"; dir = 4; name = "GATO Corporate Showroom APC"; pixel_x = 28},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/item/cigbutt,/obj/machinery/light/small{dir = 4},/turf/open/floor/wood) +"bRZ" = (/obj/structure/rack,/obj/item/reagent_containers/syringe/charcoal,/obj/item/reagent_containers/syringe/epinephrine{pixel_x = -1; pixel_y = 2},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bSa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel) +"bSb" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) +"bSe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/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},/turf/open/floor/plasteel/dark) +"bSf" = (/obj/machinery/light{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},/turf/open/floor/plasteel/dark) "bSg" = (/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/central) "bSh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bSi" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/preopen{id = "kitchenwindow"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"bSj" = (/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bSk" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bSl" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bSm" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bSn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bSo" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bSp" = (/obj/effect/landmark/start/cook,/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bSq" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bSr" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bSs" = (/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bSt" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bSu" = (/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bSv" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/lipstick/black,/obj/item/lipstick/jade{pixel_x = 2; pixel_y = 2},/obj/item/lipstick/purple{pixel_x = -2; pixel_y = -2},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/wood,/area/crew_quarters/theatre) -"bSw" = (/obj/structure/chair/wood/wings{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) -"bSx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/start/clown,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) -"bSy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) +"bSi" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/preopen{id = "kitchenwindow"; name = "kitchen shutters"},/turf/open/floor/plating) +"bSj" = (/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bSk" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria) +"bSl" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bSm" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bSn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bSo" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bSp" = (/obj/effect/landmark/start/cook,/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria) +"bSq" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bSr" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/showroomfloor) +"bSs" = (/turf/open/floor/plasteel/showroomfloor) +"bSt" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/open/floor/plasteel/showroomfloor) +"bSu" = (/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/showroomfloor) +"bSv" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/lipstick/black,/obj/item/lipstick/jade{pixel_x = 2; pixel_y = 2},/obj/item/lipstick/purple{pixel_x = -2; pixel_y = -2},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/wood) +"bSw" = (/obj/structure/chair/wood/wings{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood) +"bSx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/start/clown,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood) +"bSy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood) "bSz" = (/obj/machinery/door/airlock{dir = 4; name = "Theatre Backstage"; req_access_txt = "46"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard) "bSA" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{dir = 2; sortType = 18},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard) -"bSB" = (/obj/structure/table,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/turf/open/floor/plasteel/dark,/area/storage/tcom) -"bSC" = (/obj/structure/table,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/capacitor,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/micro_laser/high,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/storage/tcom) -"bSD" = (/obj/structure/table,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/turf/open/floor/plasteel/dark,/area/storage/tcom) +"bSB" = (/obj/structure/table,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/turf/open/floor/plasteel/dark) +"bSC" = (/obj/structure/table,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/capacitor,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/micro_laser/high,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark) +"bSD" = (/obj/structure/table,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/turf/open/floor/plasteel/dark) "bSE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard) "bSF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard) "bSG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard) "bSH" = (/obj/machinery/atmospherics/components/trinary/filter,/turf/open/floor/plating,/area/maintenance/starboard) -"bSI" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bSJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos) -"bSK" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bSL" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bSM" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/dark,/area/engine/atmos) +"bSI" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"bSJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/white/corner{dir = 1}) +"bSK" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel) +"bSL" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel) +"bSM" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/dark) "bSN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"bSO" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{dir = 8},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSP" = (/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSQ" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSO" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{dir = 8},/turf/open/floor/engine/plasma) +"bSP" = (/turf/open/floor/engine/plasma) +"bSQ" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/plasma) "bSR" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/hallway/secondary/entry) "bSS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/port) "bST" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/storage/box/lights/mixed,/obj/structure/closet/firecloset,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/port) @@ -4966,134 +4715,128 @@ "bSV" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) "bSW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/port) "bSX" = (/obj/item/trash/candy,/turf/open/floor/plating,/area/maintenance/port) -"bSY" = (/obj/machinery/door/airlock/maintenance{name = "Vacant Office Maintenance"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/vacantoffice) +"bSY" = (/obj/machinery/door/airlock/maintenance{name = "Vacant Office Maintenance"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating) "bSZ" = (/obj/structure/rack,/obj/item/clothing/mask/horsehead,/obj/effect/spawner/lootdrop/costume,/turf/open/floor/plating,/area/maintenance/port) "bTa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/port) "bTb" = (/obj/structure/rack,/obj/item/storage/box,/turf/open/floor/plating,/area/maintenance/port) "bTd" = (/obj/structure/chair/comfy{dir = 8},/obj/item/restraints/handcuffs/fake/kinky,/turf/open/floor/carpet,/area/maintenance/fore) -"bTe" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/wood,/area/library) -"bTf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/wood,/area/library) -"bTg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/wood,/area/library) -"bTh" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/wood,/area/library) -"bTi" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood,/area/library) -"bTj" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/vending/games,/turf/open/floor/wood,/area/library) -"bTk" = (/obj/structure/destructible/cult/tome,/obj/machinery/newscaster{pixel_x = -30},/obj/effect/decal/cleanable/cobweb,/obj/item/book/codex_gigas,/turf/open/floor/engine/cult,/area/library) -"bTl" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/blobstart,/turf/open/floor/engine/cult,/area/library) -"bTm" = (/obj/machinery/light/small{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30},/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/engine/cult,/area/library) +"bTe" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/wood) +"bTf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/wood) +"bTg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/wood) +"bTh" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/wood) +"bTi" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood) +"bTj" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/vending/games,/turf/open/floor/wood) +"bTk" = (/obj/structure/destructible/cult/tome,/obj/machinery/newscaster{pixel_x = -30},/obj/effect/decal/cleanable/cobweb,/obj/item/book/codex_gigas,/turf/open/floor/engine/cult) +"bTl" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/blobstart,/turf/open/floor/engine/cult) +"bTm" = (/obj/machinery/light/small{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30},/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/engine/cult) "bTn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bTo" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bTp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bTq" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -27},/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bTr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/teleporter) -"bTs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/teleporter) -"bTt" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/light{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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bTu" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/bodypart/chest/robot{pixel_x = -2; pixel_y = 2},/obj/item/bodypart/head/robot{pixel_x = 3; pixel_y = 2},/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bTv" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bTw" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bTx" = (/turf/open/floor/wood{icon_state = "wood-broken3"},/area/bridge/showroom/corporate) -"bTy" = (/obj/machinery/cell_charger,/obj/item/stock_parts/cell/crap,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bTz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/holopad,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bTA" = (/obj/structure/table/wood,/obj/item/toy/plush/carpplushie{color = "red"; name = "GATO wildlife department space carp plushie"},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bTB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bTC" = (/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bTD" = (/obj/structure/table/wood,/obj/machinery/button/door{id = "corporate_privacy"; name = "corporate showroom shutters control"; pixel_x = 28; req_access_txt = "19"},/obj/item/poster/random_official,/obj/item/poster/random_official,/obj/item/poster/random_official,/obj/item/poster/random_official,/obj/item/poster/random_official,/obj/item/paicard{desc = "A real GATO success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; name = "GATO-brand personal AI device exhibit"},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bTE" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bTF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/gateway) -"bTG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/gateway) -"bTH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/gateway) -"bTI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Gateway Chamber"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel,/area/gateway) -"bTJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/gateway) -"bTK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/gateway) -"bTL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/gateway) +"bTo" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/open/floor/plasteel) +"bTp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bTq" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -27},/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},/turf/open/floor/plasteel/dark) +"bTr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"bTs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"bTt" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/light{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},/turf/open/floor/plasteel/dark) +"bTu" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/bodypart/chest/robot{pixel_x = -2; pixel_y = 2},/obj/item/bodypart/head/robot{pixel_x = 3; pixel_y = 2},/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/carpet) +"bTv" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood) +"bTw" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood) +"bTx" = (/turf/open/floor/wood{icon_state = "wood-broken3"}) +"bTy" = (/obj/machinery/cell_charger,/obj/item/stock_parts/cell/crap,/obj/structure/table/wood,/turf/open/floor/carpet) +"bTz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/holopad,/turf/open/floor/carpet) +"bTA" = (/obj/structure/table/wood,/obj/item/toy/plush/carpplushie{color = "red"; name = "GATO wildlife department space carp plushie"},/turf/open/floor/carpet) +"bTB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood) +"bTC" = (/turf/open/floor/wood) +"bTD" = (/obj/structure/table/wood,/obj/machinery/button/door{id = "corporate_privacy"; name = "corporate showroom shutters control"; pixel_x = 28; req_access_txt = "19"},/obj/item/poster/random_official,/obj/item/poster/random_official,/obj/item/poster/random_official,/obj/item/poster/random_official,/obj/item/poster/random_official,/obj/item/paicard{desc = "A real GATO success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; name = "GATO-brand personal AI device exhibit"},/turf/open/floor/carpet) +"bTE" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bTF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel) +"bTG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"bTH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) +"bTI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Gateway Chamber"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel) +"bTJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"bTK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel) +"bTL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) "bTM" = (/obj/machinery/door/airlock/maintenance{dir = 8; name = "Gateway Maintenance"; req_access_txt = "17"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central) "bTN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/central) "bTO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bTP" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bTQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bTR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bTS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bTT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bTU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bTV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bTW" = (/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_x = 30},/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bTX" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bTY" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bTZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bUa" = (/obj/machinery/icecream_vat,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bUb" = (/obj/machinery/light/small{dir = 8},/obj/item/clothing/mask/horsehead,/obj/structure/table/wood,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/item/clothing/mask/cigarette/pipe,/obj/item/clothing/mask/fakemoustache,/turf/open/floor/wood,/area/crew_quarters/theatre) -"bUc" = (/obj/machinery/camera{c_tag = "Theatre - Backstage"; dir = 1},/obj/structure/sign/poster/contraband/random{pixel_y = -32},/obj/structure/table/wood,/obj/item/clothing/mask/pig,/obj/item/bikehorn,/turf/open/floor/wood,/area/crew_quarters/theatre) -"bUd" = (/obj/item/toy/dummy,/obj/item/toy/prize/honk{pixel_y = 12},/obj/structure/table/wood,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/wood,/area/crew_quarters/theatre) -"bUe" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/power/apc/highcap/five_k{areastring = "area/crew_quarters/theatre"; name = "Theatre APC"; pixel_y = -29},/obj/structure/cable/yellow,/obj/structure/closet/crate/wooden/toy,/obj/machinery/light/small{pixel_x = -8},/turf/open/floor/wood,/area/crew_quarters/theatre) +"bTP" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bTQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bTR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bTS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bTT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bTU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bTV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bTW" = (/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_x = 30},/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria) +"bTX" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/showroomfloor) +"bTY" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/showroomfloor) +"bTZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor) +"bUa" = (/obj/machinery/icecream_vat,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor) +"bUb" = (/obj/machinery/light/small{dir = 8},/obj/item/clothing/mask/horsehead,/obj/structure/table/wood,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/item/clothing/mask/cigarette/pipe,/obj/item/clothing/mask/fakemoustache,/turf/open/floor/wood) +"bUc" = (/obj/machinery/camera{c_tag = "Theatre - Backstage"; dir = 1},/obj/structure/sign/poster/contraband/random{pixel_y = -32},/obj/structure/table/wood,/obj/item/clothing/mask/pig,/obj/item/bikehorn,/turf/open/floor/wood) +"bUd" = (/obj/item/toy/dummy,/obj/structure/table/wood,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/wood) +"bUe" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/power/apc/highcap/five_k{areastring = "area/crew_quarters/theatre"; name = "Theatre APC"; pixel_y = -29},/obj/structure/cable/yellow,/obj/structure/closet/crate/wooden/toy,/obj/machinery/light/small{pixel_x = -8},/turf/open/floor/wood) "bUf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/starboard) "bUg" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/maintenance/starboard) -"bUh" = (/obj/machinery/computer/atmos_control/tank/toxin_tank{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bUi" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/camera{c_tag = "Atmospherics - Aft"; dir = 8},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bUj" = (/obj/machinery/air_sensor/atmos/toxin_tank,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bUk" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bUl" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bUm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/aisat) +"bUh" = (/obj/machinery/computer/atmos_control/tank/toxin_tank{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel) +"bUi" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/camera{c_tag = "Atmospherics - Aft"; dir = 8},/turf/open/floor/plasteel/dark) +"bUj" = (/obj/machinery/air_sensor/atmos/toxin_tank,/turf/open/floor/engine/plasma) +"bUk" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma) +"bUl" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/plasma) "bUn" = (/obj/machinery/door/airlock/external{name = "Auxiliary Airlock"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry) "bUo" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/maintenance/port) "bUq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/maintenance/port) "bUr" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) "bUs" = (/obj/item/trash/cheesie,/turf/open/floor/plating,/area/maintenance/port) "bUt" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bUu" = (/obj/structure/scale,/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) -"bUv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/green,/area/library) -"bUw" = (/obj/structure/chair/office/dark,/turf/open/floor/carpet/green,/area/library) -"bUy" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30},/obj/machinery/photocopier,/obj/machinery/light{dir = 4},/turf/open/floor/wood,/area/library) -"bUz" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/engine/cult,/area/library) -"bUA" = (/obj/structure/chair/comfy/brown,/turf/open/floor/engine/cult,/area/library) -"bUB" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi'; icon_state = "minibar"; name = "skeletal minibar"},/obj/item/storage/fancy/candle_box,/turf/open/floor/engine/cult,/area/library) +"bUu" = (/obj/structure/scale,/turf/open/floor/wood) +"bUv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/green) +"bUw" = (/obj/structure/chair/office/dark,/turf/open/floor/carpet/green) +"bUy" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30},/obj/machinery/photocopier,/obj/machinery/light{dir = 4},/turf/open/floor/wood) +"bUz" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/engine/cult) +"bUA" = (/obj/structure/chair/comfy/brown,/turf/open/floor/engine/cult) +"bUB" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi'; icon_state = "minibar"; name = "skeletal minibar"},/obj/item/storage/fancy/candle_box,/turf/open/floor/engine/cult) "bUC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bUD" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bUE" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bUF" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bUG" = (/obj/machinery/shieldwallgen,/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},/turf/open/floor/plasteel/dark,/area/teleporter) -"bUH" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/teleporter) -"bUI" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/teleporter) -"bUJ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/wood,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/item/folder/blue,/obj/item/clothing/head/collectable/HoP{name = "novelty HoP hat"},/obj/machinery/light/small{dir = 8},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bUK" = (/obj/structure/table/wood,/obj/item/storage/secure/briefcase{desc = "A large briefcase with a digital locking system, and the GATO logo emblazoned on the sides."; name = "GATO-brand secure briefcase exhibit"; pixel_y = 2},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bUL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bUM" = (/obj/structure/showcase/machinery/microwave{desc = "The famous GATO microwave, the multi-purpose cooking appliance every station needs! This one appears to be drawn onto a cardboard box."; dir = 1; pixel_y = 2},/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bUN" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/item/toy/beach_ball{desc = "The simple beach ball is one of GATO's most popular products. 'Why do we make beach balls? Because we can! (TM)' - GATO"; name = "GATO-brand beach ball"; pixel_y = 7},/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bUO" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/nuclearbomb/beer{desc = "One of the more successful achievements of the GATO Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every GATO station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back."; name = "GATO-brand nuclear fission explosive"; pixel_x = 2; pixel_y = 6},/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bUP" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/storage/box/matches{pixel_x = -2; pixel_y = 3},/obj/item/clothing/mask/cigarette/cigar{pixel_x = 4; pixel_y = 1},/obj/item/clothing/mask/cigarette/cigar{pixel_x = -4; pixel_y = 1},/obj/item/clothing/mask/cigarette/cigar/cohiba,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bUQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/showcase/machinery/tv{dir = 1; pixel_x = 2; pixel_y = 3},/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bUR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bUS" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/disk/data{pixel_x = 9; pixel_y = -1},/obj/item/disk/tech_disk{pixel_x = -2; pixel_y = -3},/obj/item/disk/design_disk{name = "component design disk"; pixel_y = 6},/obj/structure/table/wood,/obj/item/toy/talking/AI{name = "GATO-brand toy AI"; pixel_y = 6},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bUT" = (/obj/item/book/manual/wiki/security_space_law{name = "space law"; pixel_y = 2},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/item/toy/gun,/obj/item/restraints/handcuffs,/obj/structure/table/wood,/obj/item/clothing/head/collectable/HoS{name = "novelty HoS hat"},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/open/floor/carpet,/area/bridge/showroom/corporate) -"bUU" = (/obj/structure/table,/obj/item/storage/fancy/donut_box,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bUV" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bUW" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bUX" = (/obj/item/storage/belt/utility,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/structure/rack,/obj/machinery/button/door{id = "gateshutter"; name = "Gateway Shutter Control"; pixel_y = -26; req_access_txt = "19"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway) -"bUY" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/gateway) -"bUZ" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Gateway - Access"; dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/gateway) +"bUG" = (/obj/machinery/shieldwallgen,/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},/turf/open/floor/plasteel/dark) +"bUI" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel) +"bUJ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/wood,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/item/folder/blue,/obj/item/clothing/head/collectable/HoP{name = "novelty HoP hat"},/obj/machinery/light/small{dir = 8},/turf/open/floor/carpet) +"bUK" = (/obj/structure/table/wood,/obj/item/storage/secure/briefcase{desc = "A large briefcase with a digital locking system, and the GATO logo emblazoned on the sides."; name = "GATO-brand secure briefcase exhibit"; pixel_y = 2},/turf/open/floor/carpet) +"bUL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood) +"bUM" = (/obj/structure/showcase/machinery/microwave{desc = "The famous GATO microwave, the multi-purpose cooking appliance every station needs! This one appears to be drawn onto a cardboard box."; dir = 1; pixel_y = 2},/obj/structure/table/wood,/turf/open/floor/carpet) +"bUN" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/item/toy/beach_ball{desc = "The simple beach ball is one of GATO's most popular products. 'Why do we make beach balls? Because we can! (TM)' - GATO"; name = "GATO-brand beach ball"; pixel_y = 7},/obj/structure/table/wood,/turf/open/floor/carpet) +"bUO" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/nuclearbomb/beer{desc = "One of the more successful achievements of the GATO Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every GATO station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back."; name = "GATO-brand nuclear fission explosive"; pixel_x = 2; pixel_y = 6},/obj/structure/table/wood,/turf/open/floor/carpet) +"bUP" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/storage/box/matches{pixel_x = -2; pixel_y = 3},/obj/item/clothing/mask/cigarette/cigar{pixel_x = 4; pixel_y = 1},/obj/item/clothing/mask/cigarette/cigar{pixel_x = -4; pixel_y = 1},/obj/item/clothing/mask/cigarette/cigar/cohiba,/obj/structure/table/wood,/turf/open/floor/carpet) +"bUQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/showcase/machinery/tv{dir = 1; pixel_x = 2; pixel_y = 3},/obj/structure/table/wood,/turf/open/floor/carpet) +"bUR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood) +"bUS" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/disk/data{pixel_x = 9; pixel_y = -1},/obj/item/disk/tech_disk{pixel_x = -2; pixel_y = -3},/obj/item/disk/design_disk{name = "component design disk"; pixel_y = 6},/obj/structure/table/wood,/obj/item/toy/talking/AI{name = "GATO-brand toy AI"; pixel_y = 6},/turf/open/floor/carpet) +"bUT" = (/obj/item/book/manual/wiki/security_space_law{name = "space law"; pixel_y = 2},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/item/toy/gun,/obj/item/restraints/handcuffs,/obj/structure/table/wood,/obj/item/clothing/head/collectable/HoS{name = "novelty HoS hat"},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/open/floor/carpet) +"bUU" = (/obj/structure/table,/obj/item/storage/fancy/donut_box,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bUV" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bUW" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bUX" = (/obj/item/storage/belt/utility,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/structure/rack,/obj/machinery/button/door{id = "gateshutter"; name = "Gateway Shutter Control"; pixel_y = -26; req_access_txt = "19"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) +"bUZ" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Gateway - Access"; dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) "bVa" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/central) "bVb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVc" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/mint,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen"; name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable/yellow,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bVd" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/reagent_containers/food/condiment/enzyme{layer = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bVe" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/button/door{id = "kitchenhydro"; name = "Service Shutter Control"; pixel_y = -24; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bVf" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/kitchen/rollingpin,/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bVg" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bVh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bVi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen) -"bVj" = (/obj/machinery/door/airlock{dir = 8; name = "Kitchen Cold Room"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bVk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bVl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Kitchen - Coldroom"; dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bVm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = -26},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bVn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"bVo" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"bVc" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/mint,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen"; name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable/yellow,/turf/open/floor/plasteel/cafeteria) +"bVd" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/reagent_containers/food/condiment/enzyme{layer = 5},/turf/open/floor/plasteel/cafeteria) +"bVe" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/button/door{id = "kitchenhydro"; name = "Service Shutter Control"; pixel_y = -24; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bVf" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/kitchen/rollingpin,/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/turf/open/floor/plasteel/cafeteria) +"bVg" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bVh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bVi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bVj" = (/obj/machinery/door/airlock{dir = 8; name = "Kitchen Cold Room"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor) +"bVk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor) +"bVl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Kitchen - Coldroom"; dir = 1},/turf/open/floor/plasteel/showroomfloor) +"bVm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = -26},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor) +"bVn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor) +"bVo" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/showroomfloor) "bVq" = (/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/maintenance/starboard) "bVr" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/starboard) "bVs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/starboard) "bVt" = (/obj/item/crowbar,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard) -"bVu" = (/obj/structure/fireaxecabinet{pixel_x = -32},/obj/machinery/camera{c_tag = "Atmospherics - Port"; dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bVv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/space_heater,/turf/open/floor/plasteel,/area/engine/atmos) -"bVw" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos) +"bVu" = (/obj/structure/fireaxecabinet{pixel_x = -32},/obj/machinery/camera{c_tag = "Atmospherics - Port"; dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bVv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/space_heater,/turf/open/floor/plasteel) +"bVw" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 1},/turf/open/floor/plasteel/dark) "bVx" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"bVy" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{dir = 8},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bVz" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Toxins"; dir = 8},/turf/open/floor/engine/plasma,/area/engine/atmos) +"bVy" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{dir = 8},/turf/open/floor/engine/plasma) +"bVz" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Toxins"; dir = 8},/turf/open/floor/engine/plasma) "bVA" = (/obj/docking_port/stationary{dir = 2; dwidth = 11; height = 22; id = "whiteship_home"; name = "SS13: Auxiliary Dock, Station-Port"; width = 35},/turf/open/space/basic,/area/space) "bVB" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/port) "bVC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port) @@ -5106,37 +4849,35 @@ "bVK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) "bVL" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/port) "bVM" = (/obj/item/candle/infinite{pixel_x = -10; pixel_y = 11},/obj/structure/scale,/turf/open/floor/plating,/area/maintenance/fore) -"bVN" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) -"bVO" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/green,/area/library) -"bVP" = (/obj/structure/table/wood,/obj/item/folder,/obj/item/folder,/obj/item/pen,/turf/open/floor/carpet/green,/area/library) -"bVQ" = (/obj/structure/table/wood,/obj/item/storage/crayons,/turf/open/floor/carpet/green,/area/library) -"bVR" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/carpet/green,/area/library) -"bVS" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/library) -"bVT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/turf/open/floor/wood,/area/library) -"bVU" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen/invisible,/turf/open/floor/engine/cult,/area/library) -"bVV" = (/obj/item/taperecorder,/obj/item/camera,/obj/structure/table/wood,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/engine/cult,/area/library) -"bVW" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/engine/cult,/area/library) +"bVN" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood) +"bVO" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/green) +"bVP" = (/obj/structure/table/wood,/obj/item/folder,/obj/item/folder,/obj/item/pen,/turf/open/floor/carpet/green) +"bVQ" = (/obj/structure/table/wood,/obj/item/storage/crayons,/turf/open/floor/carpet/green) +"bVR" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/carpet/green) +"bVS" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood) +"bVT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/turf/open/floor/wood) +"bVU" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen/invisible,/turf/open/floor/engine/cult) +"bVV" = (/obj/item/taperecorder,/obj/item/camera,/obj/structure/table/wood,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/engine/cult) +"bVW" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/engine/cult) "bVX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVY" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter"; name = "E.V.A. Storage Shutter"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bVZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter"; name = "E.V.A. Storage Shutter"},/obj/machinery/button/door{id = "evashutter"; name = "E.V.A. Storage Shutter Control"; pixel_x = 30; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bWa" = (/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Access Shutter"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) -"bWb" = (/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Access Shutter"},/obj/machinery/button/door{id = "teleshutter"; name = "Teleporter Shutter Control"; pixel_x = 30; pixel_y = 5; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) -"bWc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/shutters/preopen{id = "corporate_privacy"; name = "showroom shutters"},/turf/open/floor/plating,/area/bridge/showroom/corporate) -"bWd" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/bridge/showroom/corporate) -"bWe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom"; req_access_txt = "19"},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bWf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom"; req_access_txt = "19"},/turf/open/floor/wood,/area/bridge/showroom/corporate) -"bWg" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "gateshutter"; name = "Gateway Access Shutter"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/gateway) +"bVY" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter"; name = "E.V.A. Storage Shutter"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bVZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter"; name = "E.V.A. Storage Shutter"},/obj/machinery/button/door{id = "evashutter"; name = "E.V.A. Storage Shutter Control"; pixel_x = 30; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bWa" = (/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Access Shutter"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bWb" = (/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Access Shutter"},/obj/machinery/button/door{id = "teleshutter"; name = "Teleporter Shutter Control"; pixel_x = 30; pixel_y = 5; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bWc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/shutters/preopen{id = "corporate_privacy"; name = "showroom shutters"},/turf/open/floor/plating) +"bWe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom"; req_access_txt = "19"},/turf/open/floor/wood) +"bWf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom"; req_access_txt = "19"},/turf/open/floor/wood) +"bWg" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "gateshutter"; name = "Gateway Access Shutter"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) "bWh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;17"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/central) "bWi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "bWj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hallway/primary/central) "bWk" = (/turf/closed/wall,/area/hallway/primary/central) -"bWl" = (/turf/closed/wall,/area/hydroponics) -"bWm" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenhydro"; name = "Service Shutter"},/obj/machinery/door/airlock/medical/glass{name = "Service Door"; req_one_access_txt = "35;28"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hydroponics) -"bWn" = (/obj/structure/sign/poster/official/random,/turf/closed/wall,/area/hydroponics) -"bWo" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 1; name = "Kitchen Window"; req_access_txt = "28"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/paper,/obj/machinery/door/window/eastleft{dir = 2; name = "Hydroponics Window"; req_one_access_txt = "30;35"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hydroponics) -"bWp" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/hydroponics) -"bWq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) -"bWr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) +"bWm" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenhydro"; name = "Service Shutter"},/obj/machinery/door/airlock/medical/glass{name = "Service Door"; req_one_access_txt = "35;28"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"bWn" = (/obj/structure/sign/poster/official/random,/turf/closed/wall) +"bWo" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 1; name = "Kitchen Window"; req_access_txt = "28"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/paper,/obj/machinery/door/window/eastleft{dir = 2; name = "Hydroponics Window"; req_one_access_txt = "30;35"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bWp" = (/obj/machinery/smartfridge,/turf/closed/wall) +"bWq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"bWr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) "bWs" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard) "bWt" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/blobstart,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard) "bWu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard) @@ -5147,11 +4888,11 @@ "bWz" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard) "bWA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard) "bWB" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard) -"bWC" = (/obj/machinery/vending/wardrobe/atmos_wardrobe,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bWD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bWE" = (/obj/machinery/door/window/northleft{dir = 8; name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bWF" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bWG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice/catwalk,/obj/structure/window/reinforced,/turf/open/space,/area/aisat) +"bWC" = (/obj/machinery/vending/wardrobe/atmos_wardrobe,/turf/open/floor/plasteel/dark) +"bWD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bWE" = (/obj/machinery/door/window/northleft{dir = 8; name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel/dark) +"bWF" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/dark) +"bWG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice/catwalk,/obj/structure/window/reinforced,/turf/open/space) "bWH" = (/turf/closed/wall,/area/maintenance/solars/port/aft) "bWI" = (/obj/machinery/door/airlock/engineering{name = "Port Quarter Solar Access"; req_access_txt = "10"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/solars/port/aft) "bWJ" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall,/area/maintenance/solars/port/aft) @@ -5159,13 +4900,12 @@ "bWL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/port) "bWM" = (/turf/closed/wall,/area/maintenance/port/aft) "bWN" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/maintenance/port) -"bWO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet/red,/area/crew_quarters/locker) -"bWP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/library) -"bWQ" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/carpet/green,/area/library) -"bWR" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera/autoname{dir = 1},/obj/structure/table/wood,/turf/open/floor/carpet/green,/area/library) -"bWS" = (/obj/structure/table/wood,/turf/open/floor/carpet/green,/area/library) -"bWT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/wood,/area/library) -"bWU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/wood,/area/library) +"bWO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet/red) +"bWQ" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/carpet/green) +"bWR" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera/autoname{dir = 1},/obj/structure/table/wood,/turf/open/floor/carpet/green) +"bWS" = (/obj/structure/table/wood,/turf/open/floor/carpet/green) +"bWT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/wood) +"bWU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/wood) "bWV" = (/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/vending/mealdor,/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "bWW" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=11-Command-Port"; location = "10.2-Aft-Port-Corner"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bWX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -5193,20 +4933,19 @@ "bXt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) "bXu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/departments/botany{pixel_x = 32; pixel_y = 32},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "bXv" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/item/pen,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bXw" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics) -"bXx" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_y = 32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics) -"bXy" = (/obj/machinery/vending/hydronutrients,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics) -"bXz" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics) -"bXA" = (/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics) -"bXB" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics) -"bXC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics) -"bXD" = (/obj/item/wrench,/obj/item/clothing/suit/apron,/obj/item/clothing/accessory/armband/hydro,/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics) -"bXE" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/chem_master/condimaster{desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; name = "BrewMaster 2199"; pixel_x = -4},/turf/open/floor/plasteel,/area/hydroponics) -"bXF" = (/obj/effect/turf_decal/stripes/line,/obj/structure/reagent_dispensers/watertank/high,/obj/item/reagent_containers/glass/bucket,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bXG" = (/obj/effect/turf_decal/stripes/line,/obj/structure/window/reinforced{dir = 4},/obj/structure/reagent_dispensers/watertank/high,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/hydroponics) -"bXH" = (/obj/structure/closet{name = "spare parts locker"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/rack_parts,/obj/item/rack_parts,/obj/item/wrench,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/kitchen) -"bXI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastright{dir = 1; name = "Kitchen Delivery"; req_access_txt = "28"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/kitchen) -"bXJ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "Kitchen"},/obj/structure/plasticflaps/opaque,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/crew_quarters/kitchen) +"bXx" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; name = "requests board"; pixel_y = 32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"bXy" = (/obj/machinery/vending/hydronutrients,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"bXz" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"bXA" = (/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"bXB" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"bXC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"bXD" = (/obj/item/wrench,/obj/item/clothing/suit/apron,/obj/item/clothing/accessory/armband/hydro,/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel) +"bXE" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/chem_master/condimaster{desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; name = "BrewMaster 2199"; pixel_x = -4},/turf/open/floor/plasteel) +"bXF" = (/obj/effect/turf_decal/stripes/line,/obj/structure/reagent_dispensers/watertank/high,/obj/item/reagent_containers/glass/bucket,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel) +"bXG" = (/obj/effect/turf_decal/stripes/line,/obj/structure/window/reinforced{dir = 4},/obj/structure/reagent_dispensers/watertank/high,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel) +"bXH" = (/obj/structure/closet{name = "spare parts locker"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/rack_parts,/obj/item/rack_parts,/obj/item/wrench,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bXI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastright{dir = 1; name = "Kitchen Delivery"; req_access_txt = "28"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"bXJ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "Kitchen"},/obj/structure/plasticflaps/opaque,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) "bXK" = (/obj/structure/disposalpipe/sorting/mail{dir = 2; sortType = 20},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard) "bXL" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard) "bXM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{pixel_x = -8},/turf/open/floor/plating,/area/maintenance/starboard) @@ -5215,27 +4954,26 @@ "bXP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "bXQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/starboard) "bXR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/maintenance/starboard) -"bXS" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bXT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/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/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bXU" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bXV" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) -"bXW" = (/turf/open/floor/engine/co2,/area/engine/atmos) -"bXX" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark,/area/aisat) -"bXY" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark,/area/aisat) -"bXZ" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft"; network = list("minisat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/aisat) -"bYa" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/aisat) +"bXS" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/dark) +"bXT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/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/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel/dark) +"bXU" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"},/turf/open/floor/plasteel/dark) +"bXV" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{dir = 8},/turf/open/floor/engine/co2) +"bXW" = (/turf/open/floor/engine/co2) +"bXX" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/dark) +"bXY" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark) +"bXZ" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft"; network = list("minisat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark) +"bYa" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark) "bYb" = (/obj/machinery/power/apc{areastring = "/area/maintenance/solars/port/aft"; dir = 8; name = "Port Quarter Solar APC"; pixel_x = -26; pixel_y = 3},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/solars/port/aft) "bYc" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port/aft) "bYd" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/solars/port/aft) "bYe" = (/obj/item/cigbutt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/port) -"bYf" = (/obj/structure/reagent_dispensers/keg/aphro/strong,/turf/open/floor/wood,/area/maintenance/port/aft) "bYg" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;5;39;25;28"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/aft) "bYh" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/reagent_containers/food/condiment/flour,/turf/open/floor/plating,/area/maintenance/port/aft) "bYi" = (/obj/structure/table,/obj/item/book/manual/blubbery_bartender,/turf/open/floor/plating,/area/maintenance/port/aft) "bYj" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plating,/area/maintenance/port/aft) "bYk" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plating,/area/maintenance/port/aft) "bYl" = (/obj/structure/closet/crate/bin,/obj/item/kitchen/knife,/turf/open/floor/plating,/area/maintenance/port/aft) -"bYm" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_one_access_txt = "12;37"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/library) +"bYm" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_one_access_txt = "12;37"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating) "bYn" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "bYo" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "bYp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -5255,14 +4993,14 @@ "bYD" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=8-Central-to-Aft"; location = "7.5-Starboard-Aft-Corner"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bYE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) "bYF" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bYG" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Hydroponics Desk"; req_one_access_txt = "30;35"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bYH" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bYI" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bYJ" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bYK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bYL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bYM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bYN" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hydroponics) +"bYG" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4; name = "Hydroponics Desk"; req_one_access_txt = "30;35"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"bYH" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"bYI" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel) +"bYJ" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel) +"bYK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel) +"bYL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"bYM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel) +"bYN" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) "bYO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/secondary/service) "bYP" = (/obj/machinery/door/airlock{name = "Service Hall"; req_access_txt = "null"; req_one_access_txt = "25;26;35;28"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/secondary/service) "bYQ" = (/turf/closed/wall,/area/hallway/secondary/service) @@ -5274,16 +5012,15 @@ "bYW" = (/obj/structure/closet/crate,/obj/item/storage/belt/utility,/obj/item/stack/cable_coil/random,/turf/open/floor/plating,/area/maintenance/starboard) "bYX" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard) "bYY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/starboard) -"bYZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/machinery/light_switch{pixel_y = 28},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bZa" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bZb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bZc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bZd" = (/obj/machinery/computer/atmos_control/tank/carbon_tank{dir = 8},/obj/structure/window/reinforced{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/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bZe" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2,/area/engine/atmos) -"bZf" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) -"bZg" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/co2,/area/engine/atmos) -"bZh" = (/obj/structure/chair,/turf/open/floor/plasteel/dark,/area/aisat) -"bZi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/aisat) +"bYZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/machinery/light_switch{pixel_y = 28},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4; pixel_y = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bZa" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bZb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bZc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"bZd" = (/obj/machinery/computer/atmos_control/tank/carbon_tank{dir = 8},/obj/structure/window/reinforced{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/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel/dark) +"bZe" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2) +"bZf" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2) +"bZg" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/co2) +"bZh" = (/obj/structure/chair,/turf/open/floor/plasteel/dark) "bZj" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera{c_tag = "Aft Port Solar Maintenance"; dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port/aft) "bZk" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port/aft) "bZl" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/turf/open/floor/plating,/area/maintenance/solars/port/aft) @@ -5335,19 +5072,19 @@ "caf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hallway/primary/central) "cag" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "cah" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cai" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 4; name = "Hydroponics Desk"; req_one_access_txt = "30;35"},/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"caj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cak" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cam" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"can" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics) -"cao" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"cap" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"caq" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"car" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel,/area/hydroponics) -"cas" = (/obj/machinery/seed_extractor,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hydroponics) -"cat" = (/obj/machinery/vending/wardrobe/hydro_wardrobe,/turf/open/floor/plasteel,/area/hydroponics) -"cau" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/firealarm{pixel_y = 29},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/structure/closet/crate/hydroponics,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/reagent_containers/glass/bucket,/obj/item/cultivator,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/hydroponics) +"cai" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 4; name = "Hydroponics Desk"; req_one_access_txt = "30;35"},/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"caj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"cak" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"cal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"cam" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"can" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel) +"cao" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel) +"cap" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"caq" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel) +"car" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel) +"cas" = (/obj/machinery/seed_extractor,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel) +"cat" = (/obj/machinery/vending/wardrobe/hydro_wardrobe,/turf/open/floor/plasteel) +"cau" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/firealarm{pixel_y = 29},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/structure/closet/crate/hydroponics,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/reagent_containers/glass/bucket,/obj/item/cultivator,/obj/item/wirecutters,/turf/open/floor/plasteel) "cav" = (/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/storage/bag/plants,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/reagent_containers/glass/bucket,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/service) "caw" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/service) "cax" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/service"; dir = 1; name = "Service Hall APC"; pixel_y = 25},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/service) @@ -5357,17 +5094,17 @@ "caC" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "caD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard) "caE" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Atmospherics Maintenance"; req_access_txt = "24"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard) -"caF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"caG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"caH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"caI" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"caJ" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"caK" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/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/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/space_heater,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"caL" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"caM" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) -"caN" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - CO2"; dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) -"caO" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/aisat) -"caP" = (/obj/structure/window/reinforced,/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/aisat) +"caF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"caG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel) +"caH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel) +"caI" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 6},/turf/open/floor/plasteel) +"caJ" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/turf/open/floor/plasteel) +"caK" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/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/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/space_heater,/turf/open/floor/plasteel/dark) +"caL" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 1},/turf/open/floor/plasteel/dark) +"caM" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{dir = 8},/turf/open/floor/engine/co2) +"caN" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - CO2"; dir = 8},/turf/open/floor/engine/co2) +"caO" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plasteel/dark) +"caP" = (/obj/structure/window/reinforced,/obj/machinery/holopad,/turf/open/floor/plasteel/dark) "caQ" = (/obj/machinery/power/solar_control{dir = 1; id = "aftport"; name = "Port Quarter Solar Control"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port/aft) "caR" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/solars/port/aft) "caS" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/solars/port/aft) @@ -5404,17 +5141,15 @@ "cbx" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12;35;47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) "cby" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/central) "cbz" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics Storage"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cbA" = (/obj/machinery/camera/autoname{dir = 4},/obj/item/book/manual/hydroponics_pod_people,/obj/item/paper/guides/jobs/hydroponics,/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_x = -31; pixel_y = -2},/obj/structure/table/glass,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cbB" = (/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/structure/table/glass,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cbC" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cbD" = (/obj/effect/landmark/start/botanist,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics) -"cbE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"cbF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"cbG" = (/turf/open/floor/plasteel,/area/hydroponics) -"cbH" = (/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"cbI" = (/obj/item/seeds/wheat,/obj/item/seeds/sugarcane,/obj/item/seeds/potato,/obj/item/seeds/apple,/obj/item/grown/corncob,/obj/item/reagent_containers/food/snacks/grown/carrot,/obj/item/reagent_containers/food/snacks/grown/wheat,/obj/item/reagent_containers/food/snacks/grown/pumpkin{pixel_y = 5},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/light{dir = 4},/obj/machinery/camera/autoname{dir = 8},/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cbJ" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel,/area/hydroponics) -"cbK" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel,/area/hydroponics) +"cbA" = (/obj/machinery/camera/autoname{dir = 4},/obj/item/book/manual/hydroponics_pod_people,/obj/item/paper/guides/jobs/hydroponics,/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_x = -31; pixel_y = -2},/obj/structure/table/glass,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"cbB" = (/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/structure/table/glass,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"cbC" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"cbD" = (/obj/effect/landmark/start/botanist,/obj/machinery/holopad,/turf/open/floor/plasteel) +"cbF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel) +"cbH" = (/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel) +"cbI" = (/obj/item/seeds/wheat,/obj/item/seeds/sugarcane,/obj/item/seeds/potato,/obj/item/seeds/apple,/obj/item/grown/corncob,/obj/item/reagent_containers/food/snacks/grown/carrot,/obj/item/reagent_containers/food/snacks/grown/wheat,/obj/item/reagent_containers/food/snacks/grown/pumpkin{pixel_y = 5},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/light{dir = 4},/obj/machinery/camera/autoname{dir = 8},/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel) +"cbJ" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel) +"cbK" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel) "cbL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/structure/table,/obj/item/kitchen/rollingpin,/turf/open/floor/plasteel,/area/hallway/secondary/service) "cbM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/secondary/service) "cbN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/rnd/production/techfab/department/service,/turf/open/floor/plasteel,/area/hallway/secondary/service) @@ -5427,11 +5162,10 @@ "cbU" = (/obj/item/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard) "cbV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard) "cbW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard) -"cbX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/camera{c_tag = "Atmospherics - Port-Aft"; dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"cbY" = (/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"cbZ" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/engine/atmos) -"cca" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"ccb" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"cbX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/camera{c_tag = "Atmospherics - Port-Aft"; dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1}) +"cbY" = (/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel) +"cca" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/dark) +"ccb" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall) "ccc" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port/aft) "ccd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/solars/port/aft) "cce" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) @@ -5473,11 +5207,11 @@ "ccO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/aft) "ccP" = (/obj/item/reagent_containers/food/snacks/grown/wheat,/obj/item/reagent_containers/food/snacks/grown/watermelon,/obj/item/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/reagent_containers/food/snacks/grown/grapes,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/table/glass,/turf/open/floor/plasteel,/area/hallway/primary/central) "ccQ" = (/obj/item/cultivator,/obj/item/crowbar,/obj/item/plant_analyzer,/obj/item/reagent_containers/glass/bucket,/obj/structure/table/glass,/turf/open/floor/plasteel,/area/hallway/primary/central) -"ccR" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"ccS" = (/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"ccT" = (/obj/machinery/biogenerator,/obj/machinery/light_switch{pixel_x = 26},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hydroponics) -"ccU" = (/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/light_switch{pixel_x = -26},/turf/open/floor/plasteel,/area/hydroponics) -"ccV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/turf/open/floor/plasteel,/area/hydroponics) +"ccR" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"ccS" = (/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"ccT" = (/obj/machinery/biogenerator,/obj/machinery/light_switch{pixel_x = 26},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel) +"ccU" = (/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/light_switch{pixel_x = -26},/turf/open/floor/plasteel) +"ccV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/turf/open/floor/plasteel) "ccW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock{name = "Service Hall"; req_access_txt = "null"; req_one_access_txt = "25;26;35;28"},/turf/open/floor/plating,/area/hallway/secondary/service) "ccX" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard) "ccY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard) @@ -5485,12 +5219,12 @@ "cda" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/disposal/incinerator) "cdb" = (/obj/machinery/door/airlock/maintenance{name = "Incinerator Access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) "cdc" = (/turf/closed/wall,/area/maintenance/disposal/incinerator) -"cdd" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"cde" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"cdf" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cdg" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"cdh" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"cdi" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) +"cdd" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/dark/corner{dir = 1}) +"cde" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel) +"cdf" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel) +"cdg" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel) +"cdh" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel) +"cdi" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/floor/plasteel/dark/corner) "cdj" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/airless,/area/maintenance/solars/port/aft) "cdk" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Storage Room"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port/aft) "cdl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/circuit,/area/maintenance/port/aft) @@ -5538,16 +5272,16 @@ "ceb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard/aft) "cec" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plasteel,/area/hallway/primary/central) "ced" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cee" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{dir = 8; name = "Hydroponics"; req_access_txt = "35"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hydroponics) -"cef" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"ceg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"ceh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cei" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cej" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"cek" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hydroponics) -"cel" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{dir = 4; name = "Hydroponics Backroom"; req_access_txt = "35"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/bot,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"cem" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hydroponics) -"cen" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hydroponics) +"cee" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{dir = 8; name = "Hydroponics"; req_access_txt = "35"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"cef" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"ceg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"ceh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"cei" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"cej" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel) +"cek" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel) +"cel" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{dir = 4; name = "Hydroponics Backroom"; req_access_txt = "35"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/bot,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel) +"cem" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) +"cen" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel) "ceo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 8; name = "Hydroponics Maintenance"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard) "cep" = (/obj/structure/disposalpipe/sorting/mail{sortType = 21},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboard) "ceq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/starboard) @@ -5557,20 +5291,20 @@ "ceu" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "cev" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/sign/warning/deathsposal{pixel_y = 32},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "cew" = (/obj/machinery/power/smes{capacity = 9e+006; charge = 10000},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) -"cex" = (/obj/machinery/door/window/northleft{name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cey" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cez" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/engine/atmos) -"ceA" = (/obj/structure/window/reinforced,/obj/machinery/computer/atmos_control/tank/nitrogen_tank{dir = 1},/obj/machinery/atmospherics/pipe/simple/dark/visible,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"ceB" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel,/area/engine/atmos) -"ceC" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft{name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"ceD" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/engine/atmos) -"ceE" = (/obj/structure/window/reinforced,/obj/machinery/computer/atmos_control/tank/oxygen_tank{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"ceF" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/trinary/mixer/airmix{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"ceG" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/northleft{name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"ceH" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/cafeteria,/area/engine/atmos) -"ceI" = (/obj/structure/window/reinforced,/obj/machinery/computer/atmos_control/tank/air_tank{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/engine/atmos) -"ceJ" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel/cafeteria,/area/engine/atmos) -"ceK" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/cafeteria,/area/engine/atmos) +"cex" = (/obj/machinery/door/window/northleft{name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel/dark) +"cey" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plasteel/dark) +"cez" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel) +"ceA" = (/obj/structure/window/reinforced,/obj/machinery/computer/atmos_control/tank/nitrogen_tank{dir = 1},/obj/machinery/atmospherics/pipe/simple/dark/visible,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel) +"ceB" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel) +"ceC" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft{name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel/dark) +"ceD" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel) +"ceE" = (/obj/structure/window/reinforced,/obj/machinery/computer/atmos_control/tank/oxygen_tank{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel) +"ceF" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/trinary/mixer/airmix{dir = 4},/turf/open/floor/plasteel) +"ceG" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/northleft{name = "Inner Pipe Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel/dark) +"ceH" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/cafeteria) +"ceI" = (/obj/structure/window/reinforced,/obj/machinery/computer/atmos_control/tank/air_tank{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"ceJ" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel/cafeteria) +"ceK" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/cafeteria) "ceL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port/aft) "ceM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "ceO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) @@ -5625,18 +5359,17 @@ "cfL" = (/obj/structure/chair/stool,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/wood,/area/maintenance/port/aft) "cfM" = (/obj/structure/table,/obj/item/book/manual/hydroponics_pod_people,/obj/machinery/light,/obj/item/paper/guides/jobs/hydroponics,/obj/machinery/camera{c_tag = "Hydroponics - Foyer"; dir = 1},/obj/item/radio/intercom{pixel_y = -25},/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) "cfN" = (/obj/machinery/vending/hydronutrients,/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},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"cfO" = (/obj/machinery/disposal/bin{pixel_x = -2; pixel_y = -2},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -28},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hydroponics) -"cfP" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hydroponics) -"cfQ" = (/obj/machinery/hydroponics/constructable,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"cfR" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"cfS" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light,/obj/machinery/power/apc{areastring = "/area/hydroponics"; name = "Hydroponics APC"; pixel_y = -28},/obj/structure/cable/yellow,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"cfT" = (/obj/machinery/hydroponics/constructable,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"cfU" = (/obj/machinery/hydroponics/constructable,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"cfV" = (/obj/machinery/plantgenes{pixel_y = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/table,/turf/open/floor/plasteel,/area/hydroponics) -"cfW" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/smartfridge/disks{pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel,/area/hydroponics) -"cfX" = (/obj/item/reagent_containers/spray/plantbgone{pixel_y = 3},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/grenade/chem_grenade/antiweed,/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"cfY" = (/obj/machinery/door/window/eastright{dir = 1; name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hydroponics) -"cfZ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "Hydroponics"},/obj/structure/plasticflaps/opaque,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/hydroponics) +"cfO" = (/obj/machinery/disposal/bin{pixel_x = -2; pixel_y = -2},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -28},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel) +"cfQ" = (/obj/machinery/hydroponics/constructable,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"cfR" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"cfS" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light,/obj/machinery/power/apc{areastring = "/area/hydroponics"; name = "Hydroponics APC"; pixel_y = -28},/obj/structure/cable/yellow,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"cfT" = (/obj/machinery/hydroponics/constructable,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"cfU" = (/obj/machinery/hydroponics/constructable,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"cfV" = (/obj/machinery/plantgenes{pixel_y = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/table,/turf/open/floor/plasteel) +"cfW" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/smartfridge/disks{pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel) +"cfX" = (/obj/item/reagent_containers/spray/plantbgone{pixel_y = 3},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/grenade/chem_grenade/antiweed,/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) +"cfY" = (/obj/machinery/door/window/eastright{dir = 1; name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) +"cfZ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "Hydroponics"},/obj/structure/plasticflaps/opaque,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1}) "cga" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard) "cgb" = (/obj/machinery/atmospherics/components/unary/tank/toxins{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "cgc" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "plasma tank pump"},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) @@ -5645,26 +5378,24 @@ "cgf" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "cgg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "cgh" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/terminal{dir = 1},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 6},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) -"cgi" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) -"cgj" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "Waste Release"},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgl" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgm" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgn" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Nitrogen Outlet"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgo" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "N2 to Pure"},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgp" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgq" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgr" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "O2 to Airmix"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgs" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgt" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgu" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgv" = (/obj/machinery/camera{c_tag = "Atmospherics - Starboard Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgw" = (/obj/machinery/door/airlock/external{req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) -"cgx" = (/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"cgy" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/engine/atmos) -"cgz" = (/turf/open/floor/plating,/area/engine/atmos) -"cgA" = (/obj/machinery/door/window/northleft{dir = 8; name = "glass door"; req_access_txt = "24"},/obj/machinery/door/window/northleft{dir = 4; name = "glass door"; req_access_txt = "24"},/turf/open/floor/plating,/area/engine/atmos) -"cgB" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/port/aft) +"cgi" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 10},/turf/closed/wall/r_wall) +"cgj" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "Waste Release"},/turf/open/floor/plasteel/dark) +"cgk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plasteel/dark) +"cgl" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/turf/open/floor/plasteel/dark) +"cgm" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel/dark) +"cgn" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Nitrogen Outlet"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark) +"cgo" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "N2 to Pure"},/turf/open/floor/plasteel/dark) +"cgp" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/turf/open/floor/plasteel/dark) +"cgq" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark) +"cgr" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "O2 to Airmix"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark) +"cgs" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark) +"cgt" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/dark) +"cgu" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel/dark) +"cgv" = (/obj/machinery/camera{c_tag = "Atmospherics - Starboard Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel/dark) +"cgw" = (/obj/machinery/door/airlock/external{req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating) +"cgx" = (/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating) +"cgy" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating) +"cgA" = (/obj/machinery/door/window/northleft{dir = 8; name = "glass door"; req_access_txt = "24"},/obj/machinery/door/window/northleft{dir = 4; name = "glass door"; req_access_txt = "24"},/turf/open/floor/plating) "cgC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/aft) "cgD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/girder,/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/port/aft) "cgE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/girder,/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/port/aft) @@ -5724,18 +5455,17 @@ "chG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "chH" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "chI" = (/obj/structure/sign/warning/fire{pixel_x = 32},/obj/machinery/atmospherics/components/binary/pump{name = "Fuel Pipe to Incinerator"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) -"chJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/atmos) -"chK" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"chL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"chM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"chN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/turf/open/floor/plating,/area/engine/atmos) -"chO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/atmos) -"chP" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plating,/area/engine/atmos) -"chQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plating,/area/engine/atmos) -"chR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/plating,/area/engine/atmos) -"chS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"chT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) -"chU" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) +"chJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 5},/turf/closed/wall/r_wall) +"chK" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall) +"chL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plating) +"chM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plating) +"chN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/turf/open/floor/plating) +"chO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating) +"chP" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plating) +"chQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plating) +"chR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/plating) +"chT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall) +"chU" = (/obj/structure/lattice/catwalk,/turf/open/space) "chV" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/port/aft) "chW" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/port/aft) "chX" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) @@ -5748,7 +5478,6 @@ "cie" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/turf/open/floor/plating,/area/maintenance/port/aft) "cif" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/aft) "cig" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/port/aft) -"cih" = (/turf/closed/wall,/area/medical/sleeper) "cii" = (/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/obj/item/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire{pixel_x = -3; pixel_y = -3},/obj/structure/table/glass,/obj/machinery/door/window/eastleft{name = "First-Aid Supplies"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/storage) "cij" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/storage) "cik" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/storage) @@ -5800,22 +5529,21 @@ "cjf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "input port pump"},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "cjg" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "cjh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"cji" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space,/area/engine/atmos) +"cji" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space) "cjj" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space,/area/space/nearstation) "cjk" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/space,/area/space/nearstation) "cjl" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/space,/area/space/nearstation) "cjm" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space,/area/space/nearstation) -"cjn" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/port/aft) "cjo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/port/aft) "cjp" = (/obj/item/trash/pistachios,/obj/structure/closet,/obj/item/stack/sheet/glass,/obj/item/extinguisher,/obj/item/storage/belt/utility,/turf/open/floor/plating,/area/maintenance/port/aft) "cjq" = (/obj/item/storage/box,/turf/open/floor/plating,/area/maintenance/port/aft) "cjr" = (/obj/structure/closet/crate,/obj/item/reagent_containers/dropper,/turf/open/floor/plating,/area/maintenance/port/aft) "cjs" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/aft) -"cjt" = (/obj/structure/closet/wardrobe/pjs,/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},/turf/open/floor/plasteel/dark,/area/medical/sleeper) -"cju" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/airalarm{pixel_y = 24},/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},/turf/open/floor/plasteel/dark,/area/medical/sleeper) -"cjv" = (/obj/machinery/computer/med_data,/obj/machinery/light{dir = 1},/obj/structure/sign/warning/nosmoking{pixel_y = 30},/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},/turf/open/floor/plasteel/dark,/area/medical/sleeper) -"cjw" = (/obj/structure/table,/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/item/pen,/obj/machinery/power/apc{areastring = "/area/medical/sleeper"; dir = 1; name = "Sleeper Room APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/item/clothing/neck/stethoscope,/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},/turf/open/floor/plasteel/dark,/area/medical/sleeper) -"cjx" = (/obj/machinery/light_switch{pixel_x = 11; pixel_y = 23},/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/machinery/bloodbankgen,/turf/open/floor/plasteel/dark,/area/medical/sleeper) +"cjt" = (/obj/structure/closet/wardrobe/pjs,/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},/turf/open/floor/plasteel/dark) +"cju" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/airalarm{pixel_y = 24},/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},/turf/open/floor/plasteel/dark) +"cjv" = (/obj/machinery/computer/med_data,/obj/machinery/light{dir = 1},/obj/structure/sign/warning/nosmoking{pixel_y = 30},/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},/turf/open/floor/plasteel/dark) +"cjw" = (/obj/structure/table,/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/item/pen,/obj/machinery/power/apc{areastring = "/area/medical/sleeper"; dir = 1; name = "Sleeper Room APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/item/clothing/neck/stethoscope,/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},/turf/open/floor/plasteel/dark) +"cjx" = (/obj/machinery/light_switch{pixel_x = 11; pixel_y = 23},/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/machinery/bloodbankgen,/turf/open/floor/plasteel/dark) "cjy" = (/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = -3},/obj/item/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute{pixel_x = -3; pixel_y = -3},/obj/machinery/light_switch{pixel_x = -26},/obj/machinery/light/small,/obj/structure/table/glass,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/storage) "cjz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/storage) "cjA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/mob/living/simple_animal/bot/cleanbot{name = "Scrubs, MD"; on = 0},/turf/open/floor/plasteel/white,/area/medical/storage) @@ -5860,12 +5588,12 @@ "ckn" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "cko" = (/obj/machinery/airalarm/all_access{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "ckp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"ckq" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter,/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) -"ckr" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter{name = "Mixed Air Tank In"},/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) -"cks" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter{name = "Mixed Air Tank Out"},/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) -"ckt" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/engine/atmos) -"cku" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"ckv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) +"ckq" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter,/obj/structure/grille,/turf/closed/wall/r_wall) +"ckr" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter{name = "Mixed Air Tank In"},/obj/structure/grille,/turf/closed/wall/r_wall) +"cks" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter{name = "Mixed Air Tank Out"},/obj/structure/grille,/turf/closed/wall/r_wall) +"ckt" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating) +"cku" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating) +"ckv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space) "ckw" = (/obj/structure/closet/emcloset/anchored,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/port/aft) "ckx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/aft) "cky" = (/obj/item/poster/random_contraband,/obj/item/poster/random_contraband,/obj/item/poster/random_contraband,/obj/item/poster/random_contraband,/obj/item/poster/random_contraband,/obj/item/reagent_containers/food/drinks/beer{pixel_x = -3; pixel_y = 2},/obj/item/reagent_containers/food/drinks/ale,/obj/structure/table/wood,/obj/item/instrument/eguitar,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/wood,/area/maintenance/port/aft) @@ -5877,11 +5605,11 @@ "ckE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/aft) "ckF" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "ckG" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Medbay Maintenance"; req_access_txt = "5"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port/aft) -"ckH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"ckI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"ckJ" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/start/medical_doctor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"ckK" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"ckL" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8; name = "emergency shower"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"ckH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) +"ckI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white) +"ckJ" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/start/medical_doctor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white) +"ckK" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white) +"ckL" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8; name = "emergency shower"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white) "ckM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/storage) "ckN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/storage) "ckO" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/storage) @@ -5924,29 +5652,28 @@ "clz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/valve{name = "output gas to space"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "clA" = (/obj/structure/extinguisher_cabinet{pixel_y = -31},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) "clB" = (/obj/machinery/button/ignition/incinerator/atmos{pixel_x = 8; pixel_y = -36},/obj/machinery/computer/security/telescreen{desc = "Used for watching the turbine vent."; dir = 8; name = "turbine vent monitor"; network = list("turbine"); pixel_x = 29},/obj/machinery/button/door/incinerator_vent_atmos_main{pixel_x = -8; pixel_y = -36},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/button/door/incinerator_vent_atmos_aux{pixel_x = -8; pixel_y = -24},/obj/machinery/computer/turbine_computer{dir = 1; id = "incineratorturbine"},/turf/open/floor/plasteel,/area/maintenance/disposal/incinerator) -"clC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) -"clD" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos) -"clE" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) -"clF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) -"clG" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2,/area/engine/atmos) -"clH" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) -"clI" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) -"clJ" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air,/area/engine/atmos) -"clK" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) -"clL" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/engine/atmos) -"clM" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/engine/atmos) -"clN" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) +"clC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2) +"clD" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2) +"clE" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2) +"clF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2) +"clG" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2) +"clH" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2) +"clI" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air) +"clJ" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air) +"clK" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air) +"clL" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating) +"clM" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating) "clO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/aft) "clP" = (/turf/closed/wall,/area/medical/surgery) "clQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/medical/surgery) "clR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/surgery) "clS" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/port/aft) -"clT" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"clU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"clV" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"clW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"clX" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"clY" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"clT" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) +"clU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white) +"clV" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white) +"clW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/white) +"clX" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white) +"clY" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) "clZ" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cma" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cmb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) @@ -5992,19 +5719,19 @@ "cmP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) "cmQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) "cmR" = (/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{pixel_x = 40; pixel_y = 8},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"cmS" = (/turf/open/floor/engine/n2,/area/engine/atmos) -"cmT" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) -"cmU" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - N2"; dir = 8},/turf/open/floor/engine/n2,/area/engine/atmos) -"cmV" = (/turf/open/floor/engine/o2,/area/engine/atmos) -"cmW" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) -"cmX" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - O2"; dir = 8},/turf/open/floor/engine/o2,/area/engine/atmos) -"cmY" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air,/area/engine/atmos) -"cmZ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/engine/air,/area/engine/atmos) -"cna" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Air"; dir = 8},/turf/open/floor/engine/air,/area/engine/atmos) -"cnb" = (/obj/machinery/atmospherics/components/binary/pump,/turf/closed/wall/r_wall,/area/engine/atmos) -"cnc" = (/obj/machinery/door/airlock/atmos/glass{heat_proof = 1; name = "Auxiliary Chamber"; req_access_txt = "24"},/turf/open/floor/plating,/area/engine/atmos) -"cnd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/turf/closed/wall/r_wall,/area/engine/atmos) -"cne" = (/obj/structure/girder/reinforced,/turf/open/floor/plating/airless,/area/engine/atmos) +"cmS" = (/turf/open/floor/engine/n2) +"cmT" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2) +"cmU" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - N2"; dir = 8},/turf/open/floor/engine/n2) +"cmV" = (/turf/open/floor/engine/o2) +"cmW" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2) +"cmX" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - O2"; dir = 8},/turf/open/floor/engine/o2) +"cmY" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air) +"cmZ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/engine/air) +"cna" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Air"; dir = 8},/turf/open/floor/engine/air) +"cnb" = (/obj/machinery/atmospherics/components/binary/pump,/turf/closed/wall/r_wall) +"cnc" = (/obj/machinery/door/airlock/atmos/glass{heat_proof = 1; name = "Auxiliary Chamber"; req_access_txt = "24"},/turf/open/floor/plating) +"cnd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/turf/closed/wall/r_wall) +"cne" = (/obj/structure/girder/reinforced,/turf/open/floor/plating/airless) "cnf" = (/obj/machinery/vending/boozeomat,/turf/open/floor/wood,/area/maintenance/port/aft) "cng" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/effect/spawner/lootdrop/keg,/turf/open/floor/wood{icon_state = "wood-broken3"},/area/maintenance/port/aft) "cnh" = (/obj/structure/rack,/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_x = 3; pixel_y = 2},/obj/item/reagent_containers/food/drinks/bottle/vermouth{pixel_x = -4; pixel_y = 3},/obj/item/reagent_containers/food/drinks/bottle/whiskey,/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/wood,/area/maintenance/port/aft) @@ -6020,12 +5747,12 @@ "cnr" = (/obj/item/cigbutt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/medical/surgery) "cns" = (/obj/structure/chair,/turf/open/floor/plasteel/dark,/area/medical/surgery) "cnt" = (/obj/structure/chair,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/medical/surgery) -"cnu" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/camera{c_tag = "Medbay Sleepers"; dir = 4; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"cnv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"cnw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"cnx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"cny" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"cnz" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"cnu" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/camera{c_tag = "Medbay Sleepers"; dir = 4; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel/white) +"cnv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) +"cnw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/holopad,/turf/open/floor/plasteel/white) +"cnx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) +"cny" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel/white) +"cnz" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) "cnA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cnB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cnC" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) @@ -6076,13 +5803,13 @@ "cov" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{dir = 8},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) "cow" = (/obj/structure/sign/warning/fire{pixel_x = 32},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/binary/pump/on,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) "cox" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"coy" = (/obj/machinery/light/small,/turf/open/floor/engine/n2,/area/engine/atmos) -"coz" = (/obj/machinery/light/small,/turf/open/floor/engine/o2,/area/engine/atmos) -"coA" = (/turf/open/floor/engine/air,/area/engine/atmos) -"coB" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos) -"coC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"coD" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"coE" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/engine/atmos) +"coy" = (/obj/machinery/light/small,/turf/open/floor/engine/n2) +"coz" = (/obj/machinery/light/small,/turf/open/floor/engine/o2) +"coA" = (/turf/open/floor/engine/air) +"coB" = (/obj/machinery/light/small,/turf/open/floor/engine/air) +"coC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/engine/vacuum) +"coD" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine/vacuum) +"coE" = (/obj/structure/girder,/turf/open/floor/plating/airless) "coF" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/port/aft) "coG" = (/obj/structure/closet/secure_closet/bar{pixel_x = -3; pixel_y = -1; req_access_txt = "25"},/turf/open/floor/wood,/area/maintenance/port/aft) "coH" = (/turf/open/floor/wood,/area/maintenance/port/aft) @@ -6100,12 +5827,12 @@ "coT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/medical/surgery) "coU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/medical/surgery) "coV" = (/obj/item/cigbutt,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/sign/warning/nosmoking{pixel_x = 28},/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/dark,/area/medical/surgery) -"coW" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"coX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"coY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"coZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"cpa" = (/obj/machinery/sleeper{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"cpb" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/medical/sleeper) +"coW" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) +"coX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) +"coY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) +"coZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) +"cpa" = (/obj/machinery/sleeper{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white) +"cpb" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating) "cpc" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cpd" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cpe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) @@ -6155,25 +5882,24 @@ "cpW" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/space,/area/space/nearstation) "cpX" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) "cpY" = (/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"cpZ" = (/obj/item/stack/rods{amount = 25},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"cqa" = (/turf/open/floor/plating/airless,/area/engine/atmos) +"cpZ" = (/obj/item/stack/rods{amount = 25},/turf/open/floor/engine/vacuum) +"cqa" = (/turf/open/floor/plating/airless) "cqb" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/shaker,/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/reagent_containers/dropper,/turf/open/floor/wood,/area/maintenance/port/aft) "cqc" = (/obj/item/reagent_containers/food/drinks/ale,/obj/structure/table/wood,/turf/open/floor/wood,/area/maintenance/port/aft) "cqd" = (/obj/structure/light_construct/small{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30},/turf/open/floor/wood,/area/maintenance/port/aft) -"cqe" = (/obj/structure/table/wood,/obj/machinery/light{dir = 1},/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) +"cqe" = (/obj/structure/table/wood,/obj/machinery/light{dir = 1},/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) "cqf" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/surgery) "cqg" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/surgery) "cqh" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/surgery) "cqi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Observation"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/medical/surgery) -"cqj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/sleeper) -"cqk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/sleeper) +"cqj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating) +"cqk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel) "cql" = (/obj/machinery/door/firedoor,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cqm" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cqn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqo" = (/turf/closed/wall,/area/crew_quarters/heads/cmo) -"cqp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"cqq" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"cqr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"cqp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/turf/open/floor/plating) +"cqq" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/turf/open/floor/plating) +"cqr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/turf/open/floor/plating) "cqs" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay/central) "cqt" = (/obj/machinery/reagentgrinder,/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = -30; receive_ore_updates = 1},/obj/structure/table/glass,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) "cqu" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/holopad,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) @@ -6232,11 +5958,11 @@ "crv" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/cryo) "crw" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "crx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cry" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/table/glass,/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"crz" = (/obj/item/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/cartridge/medical,/obj/item/cartridge/chemistry{pixel_y = 2},/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"crA" = (/obj/item/folder/blue,/obj/structure/table/glass,/obj/item/stamp/cmo,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"crB" = (/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/clothing/glasses/hud/health/gar,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"crC" = (/obj/structure/closet/secure_closet/CMO,/obj/item/storage/secure/safe{pixel_x = 5; pixel_y = 26},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30},/obj/item/screwdriver{pixel_y = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/reagent_containers/food/snacks/bbqribs,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) +"cry" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/table/glass,/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"crz" = (/obj/item/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/cartridge/medical,/obj/item/cartridge/chemistry{pixel_y = 2},/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"crA" = (/obj/item/folder/blue,/obj/structure/table/glass,/obj/item/stamp/cmo,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"crB" = (/obj/item/folder/white{pixel_x = 4; pixel_y = -3},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/clothing/glasses/hud/health/gar,/turf/open/floor/plasteel/cafeteria) +"crC" = (/obj/structure/closet/secure_closet/CMO,/obj/item/storage/secure/safe{pixel_x = 5; pixel_y = 26},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30},/obj/item/screwdriver{pixel_y = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/reagent_containers/food/snacks/bbqribs,/turf/open/floor/plasteel/cafeteria) "crD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft) "crE" = (/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/camera{c_tag = "Chemistry"; dir = 4; network = list("ss13","medbay")},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) "crF" = (/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) @@ -6296,11 +6022,11 @@ "csI" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/medical/cryo) "csJ" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/cryo) "csK" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"csL" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/filingcabinet/chestdrawer,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"csM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"csN" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chief_medical_officer,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"csO" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"csP" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 4; name = "CMO's Office APC"; pixel_x = 26},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/camera{c_tag = "CMO's Office"; dir = 8; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) +"csL" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/filingcabinet/chestdrawer,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"csM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"csN" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chief_medical_officer,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"csO" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/cafeteria) +"csP" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 4; name = "CMO's Office APC"; pixel_x = 26},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/camera{c_tag = "CMO's Office"; dir = 8; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) "csQ" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft) "csR" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/vending/wardrobe/chem_wardrobe,/turf/open/floor/plasteel/white,/area/medical/chemistry) "csS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) @@ -6372,12 +6098,12 @@ "cug" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/cryo) "cuh" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cui" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cuj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"cuk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/scale,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cul" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cum" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cun" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cuo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) +"cuj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy"; name = "privacy shutter"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating) +"cuk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/scale,/turf/open/floor/plasteel/cafeteria) +"cul" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cum" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cun" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cuo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) "cup" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 4; name = "CMO Maintenance"; req_access_txt = "40"},/turf/open/floor/plating,/area/maintenance/aft) "cuq" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) "cur" = (/obj/machinery/power/apc{areastring = "/area/medical/chemistry"; dir = 8; name = "Chemistry APC"; pixel_x = -24},/obj/structure/closet/secure_closet/chemical{pixel_x = -3},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/book/manual/fatty_chems,/turf/open/floor/plasteel/white,/area/medical/chemistry) @@ -6440,11 +6166,11 @@ "cvw" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/medical/cryo) "cvx" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/scale,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cvy" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cvz" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cvA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cvB" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/storage/secure/briefcase,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cvC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cvD" = (/obj/machinery/light{dir = 4},/obj/machinery/keycard_auth{pixel_x = 26; pixel_y = -7},/obj/machinery/computer/med_data/laptop,/obj/structure/table/glass,/obj/machinery/button/door{id = "cmoprivacy"; name = "Privacy Shutters Control"; pixel_x = 26; pixel_y = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) +"cvz" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cvA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cvB" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/storage/secure/briefcase,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cvC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cvD" = (/obj/machinery/light{dir = 4},/obj/machinery/keycard_auth{pixel_x = 26; pixel_y = -7},/obj/machinery/computer/med_data/laptop,/obj/structure/table/glass,/obj/machinery/button/door{id = "cmoprivacy"; name = "Privacy Shutters Control"; pixel_x = 26; pixel_y = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) "cvE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) "cvF" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Lab Maintenance"; req_access_txt = "5; 33"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) "cvG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) @@ -6455,10 +6181,9 @@ "cvL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white/side{dir = 5},/area/science/research) "cvM" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/science/research) "cvN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/science/research) -"cvO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"cvP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"cvQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"cvR" = (/turf/closed/wall,/area/crew_quarters/heads/hor) +"cvO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating) +"cvP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating) +"cvQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating) "cvS" = (/turf/closed/wall/r_wall,/area/science/storage) "cvT" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall/r_wall,/area/science/storage) "cvU" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/obj/machinery/door/poddoor/shutters/preopen{id = "toxins_blastdoor"; name = "biohazard containment shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/storage) @@ -6491,12 +6216,12 @@ "cwv" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/camera{c_tag = "Medbay Hallway Central"; dir = 4; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cww" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cwx" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cwy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Chief Medical Officer's Office"; req_access_txt = "40"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cwz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cwA" = (/obj/structure/chair{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cwB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/pen,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cwC" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = -32},/obj/effect/landmark/start/chief_medical_officer,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cwD" = (/obj/machinery/computer/security/telescreen{desc = "Used for monitoring medbay to ensure patient safety."; dir = 8; name = "Medbay Monitor"; network = list("medbay"); pixel_x = 29},/obj/item/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/computer/card/minor/cmo{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) +"cwy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Chief Medical Officer's Office"; req_access_txt = "40"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cwz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cwA" = (/obj/structure/chair{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cwB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/pen,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cwC" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = -32},/obj/effect/landmark/start/chief_medical_officer,/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cwD" = (/obj/machinery/computer/security/telescreen{desc = "Used for monitoring medbay to ensure patient safety."; dir = 8; name = "Medbay Monitor"; network = list("medbay"); pixel_x = 29},/obj/item/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/computer/card/minor/cmo{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) "cwE" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/landmark/blobstart,/obj/item/book/manual/fatty_chems,/turf/open/floor/plating,/area/maintenance/aft) "cwF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) "cwG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft) @@ -6521,13 +6246,13 @@ "cwZ" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/science/research) "cxa" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 13},/turf/open/floor/plasteel/white,/area/science/research) "cxb" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/research) -"cxc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"cxd" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen/rd,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cxe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cxf" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/modular_computer/console/preset/research{dir = 8},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cxg" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/landmark/xmastree/rdrod,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/hor) -"cxh" = (/obj/structure/displaycase/labcage,/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/biohazard{pixel_y = 32},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/hor) -"cxi" = (/obj/item/storage/secure/safe{pixel_x = 32},/obj/machinery/status_display/ai{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/hor) +"cxc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating) +"cxd" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen/rd,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cxe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cxf" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/modular_computer/console/preset/research{dir = 8},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cxg" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/landmark/xmastree/rdrod,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white) +"cxh" = (/obj/structure/displaycase/labcage,/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/biohazard{pixel_y = 32},/turf/open/floor/plasteel/white) +"cxi" = (/obj/item/storage/secure/safe{pixel_x = 32},/obj/machinery/status_display/ai{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white) "cxj" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/machinery/light_switch{pixel_x = -23},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/storage) "cxk" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/storage) "cxl" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/nosmoking{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/storage) @@ -6540,15 +6265,15 @@ "cxs" = (/obj/machinery/camera{active_power_usage = 0; c_tag = "Turbine Vent"; dir = 4; network = list("turbine"); use_power = 0},/turf/open/space,/area/space/nearstation) "cxt" = (/obj/structure/grille/broken,/turf/open/space,/area/space/nearstation) "cxw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/port/aft) -"cxx" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/closet/secure_closet/psychology,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) -"cxy" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/structure/chair/comfy/brown,/turf/open/floor/carpet/blue,/area/medical/psych) -"cxz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) -"cxA" = (/obj/machinery/door/poddoor/preopen{id = "isola"; name = "privacy shutters"},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/psych) -"cxB" = (/obj/effect/landmark/start/psychologist,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) +"cxx" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) +"cxy" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/structure/chair/comfy/brown,/turf/open/floor/carpet/blue) +"cxz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) +"cxA" = (/obj/machinery/door/poddoor/preopen{id = "isola"; name = "privacy shutters"},/obj/effect/spawner/structure/window,/turf/open/floor/plating) +"cxB" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) "cxC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cxD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_x = -28},/obj/machinery/newscaster{pixel_y = -30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cxE" = (/obj/machinery/suit_storage_unit/cmo,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"cxF" = (/obj/structure/table/glass,/obj/item/pen,/obj/item/clothing/neck/stethoscope,/obj/structure/extinguisher_cabinet{pixel_x = 6; pixel_y = -30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) +"cxD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_x = -28},/obj/machinery/newscaster{pixel_y = -30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cxE" = (/obj/machinery/suit_storage_unit/cmo,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) +"cxF" = (/obj/structure/table/glass,/obj/item/pen,/obj/item/clothing/neck/stethoscope,/obj/structure/extinguisher_cabinet{pixel_x = 6; pixel_y = -30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria) "cxG" = (/turf/closed/wall/r_wall,/area/medical/genetics) "cxH" = (/turf/closed/wall,/area/medical/genetics) "cxI" = (/obj/machinery/door/airlock/maintenance{name = "Genetics Maintenance"; req_access_txt = "9"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft) @@ -6566,12 +6291,12 @@ "cxU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white/side{dir = 6},/area/science/research) "cxV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/research) "cxW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/research) -"cxX" = (/obj/machinery/button/door{id = "xeno_blastdoor"; name = "Secure Lab Shutter Control"; pixel_x = -5; pixel_y = -5; req_access_txt = "47"},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "rdprivacy"; name = "Privacy Shutters Control"; pixel_x = 5; pixel_y = 5},/obj/machinery/button/door{id = "Biohazard"; name = "Entrance Shutter Control"; pixel_x = -5; pixel_y = 5; req_access_txt = "47"},/obj/machinery/button/door{id = "toxins_blastdoor"; name = "Toxins Shutter Control"; pixel_x = 5; pixel_y = -5; req_access_txt = "47"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cxY" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/research_director,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cxZ" = (/obj/machinery/computer/robotics{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cya" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/hor) -"cyb" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/hor) -"cyc" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/hor) +"cxX" = (/obj/machinery/button/door{id = "xeno_blastdoor"; name = "Secure Lab Shutter Control"; pixel_x = -5; pixel_y = -5; req_access_txt = "47"},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "rdprivacy"; name = "Privacy Shutters Control"; pixel_x = 5; pixel_y = 5},/obj/machinery/button/door{id = "Biohazard"; name = "Entrance Shutter Control"; pixel_x = -5; pixel_y = 5; req_access_txt = "47"},/obj/machinery/button/door{id = "toxins_blastdoor"; name = "Toxins Shutter Control"; pixel_x = 5; pixel_y = -5; req_access_txt = "47"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cxY" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/research_director,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cxZ" = (/obj/machinery/computer/robotics{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cya" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white) +"cyb" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white) +"cyc" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/white) "cyd" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/storage) "cye" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/storage) "cyf" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/storage) @@ -6588,14 +6313,14 @@ "cyq" = (/obj/machinery/nuclearbomb/beer{pixel_x = 2; pixel_y = 6},/turf/open/floor/plating,/area/maintenance/starboard/aft) "cyr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/space) "cys" = (/obj/structure/lattice,/turf/open/space/basic,/area/space) -"cyt" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/solar{id = "aftport"; name = "Aft-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port/aft) +"cyt" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/solar{id = "aftport"; name = "Aft-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel) "cyv" = (/obj/structure/closet,/obj/item/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/reagent_containers/dropper,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/aft) "cyw" = (/obj/structure/closet/crate,/obj/item/stack/cable_coil,/obj/item/grenade/chem_grenade,/obj/item/flashlight,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/aft) "cyx" = (/obj/structure/closet/crate,/obj/item/coin/silver,/obj/item/reagent_containers/spray/weedspray,/obj/item/paper,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/aft) "cyy" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/power/apc{areastring = "/area/maintenance/port/aft"; dir = 1; name = "Port Quarter Maintenance APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/port/aft) -"cyz" = (/obj/machinery/power/apc{areastring = "/area/medical/psych"; dir = 8; name = "Psychologist Office APC"; pixel_x = -26},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) -"cyA" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/carpet/blue,/area/medical/psych) -"cyB" = (/obj/structure/chair/sofa/right{dir = 8},/obj/item/toy/plush/mothplushie/moffplush{name = "Mender Moff"; pixel_x = -3; pixel_y = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet/blue,/area/medical/psych) +"cyz" = (/obj/machinery/power/apc{areastring = "/area/medical/psych"; dir = 8; name = "Psychologist Office APC"; pixel_x = -26},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) +"cyA" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/carpet/blue) +"cyB" = (/obj/structure/chair/sofa/right{dir = 8},/obj/item/toy/plush/mothplushie/moffplush{name = "Mender Moff"; pixel_x = -3; pixel_y = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet/blue) "cyC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port/aft) "cyD" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "cyE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) @@ -6620,12 +6345,12 @@ "cyX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white/side{dir = 5},/area/science/research) "cyY" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/science/research) "cyZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/science/research) -"cza" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"czb" = (/obj/machinery/computer/card/minor/rd{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"czc" = (/obj/machinery/computer/mecha{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"czd" = (/obj/structure/table,/obj/item/aicard,/obj/item/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cze" = (/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"czf" = (/obj/structure/table,/obj/item/taperecorder{pixel_x = -3},/obj/item/paicard{pixel_x = 4},/obj/item/storage/secure/briefcase,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) +"cza" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "rdprivacy"; name = "privacy shutter"},/turf/open/floor/plating) +"czb" = (/obj/machinery/computer/card/minor/rd{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"czc" = (/obj/machinery/computer/mecha{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"czd" = (/obj/structure/table,/obj/item/aicard,/obj/item/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cze" = (/turf/open/floor/plasteel/cafeteria{dir = 5}) +"czf" = (/obj/structure/table,/obj/item/taperecorder{pixel_x = -3},/obj/item/paicard{pixel_x = 4},/obj/item/storage/secure/briefcase,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/cafeteria{dir = 5}) "czg" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/storage) "czh" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/storage) "czi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/storage) @@ -6634,12 +6359,11 @@ "czl" = (/obj/structure/rack,/obj/item/extinguisher,/obj/item/storage/belt/utility,/obj/item/clothing/mask/gas,/obj/item/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/aft) "czm" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/open/floor/plasteel/white,/area/science/circuit) "czn" = (/turf/closed/wall,/area/science/circuit) -"czo" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) -"czp" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) -"czq" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) -"czr" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) -"czs" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) -"czt" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) +"czo" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space) +"czp" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space) +"czq" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space) +"czs" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space) +"czt" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space) "czu" = (/obj/structure/closet/emcloset,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/port/aft) "czv" = (/obj/structure/closet/crate,/obj/item/crowbar/red,/obj/item/pen,/obj/item/flashlight/pen{pixel_x = 4; pixel_y = 3},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/aft) "czw" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) @@ -6648,8 +6372,8 @@ "czz" = (/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/port/aft) "czA" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/aft) "czB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) -"czC" = (/obj/structure/chair/sofa/left{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet/blue,/area/medical/psych) -"czD" = (/obj/structure/table/wood,/obj/machinery/button/door{id = "isola"; name = "Privacy Shutters"; pixel_x = -5},/obj/machinery/light_switch{pixel_x = 8; pixel_y = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) +"czC" = (/obj/structure/chair/sofa/left{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet/blue) +"czD" = (/obj/structure/table/wood,/obj/machinery/button/door{id = "isola"; name = "Privacy Shutters"; pixel_x = -5},/obj/machinery/light_switch{pixel_x = 8; pixel_y = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) "czF" = (/turf/closed/wall,/area/medical/patients_rooms/room_a) "czG" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "czH" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) @@ -6677,12 +6401,12 @@ "cAd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 4},/area/science/research) "cAe" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/science/research) "cAf" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/science/research) -"cAg" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Research Director's Office"; req_access_txt = "30"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cAh" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cAi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cAj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cAk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cAl" = (/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) +"cAg" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 8; name = "Research Director's Office"; req_access_txt = "30"},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cAh" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cAi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cAj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cAk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cAl" = (/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria{dir = 5}) "cAm" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/storage) "cAn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/landmark/blobstart,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/storage) "cAo" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/storage) @@ -6700,7 +6424,7 @@ "cAA" = (/obj/item/screwdriver,/obj/structure/table/reinforced,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/stack/sheet/metal/ten,/turf/open/floor/plasteel/white,/area/science/circuit) "cAB" = (/obj/machinery/power/apc{areastring = "/area/science/circuit"; dir = 1; name = "Circuitry Lab APC"; pixel_y = 30},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/table/reinforced,/obj/item/multitool,/turf/open/floor/plasteel/white,/area/science/circuit) "cAC" = (/obj/structure/table/reinforced,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/machinery/computer/security/telescreen/circuitry{pixel_x = 30},/turf/open/floor/plasteel/white,/area/science/circuit) -"cAD" = (/obj/structure/cable,/obj/machinery/power/solar{id = "aftport"; name = "Aft-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port/aft) +"cAD" = (/obj/structure/cable,/obj/machinery/power/solar{id = "aftport"; name = "Aft-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel) "cAE" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) "cAF" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) "cAG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/port/aft) @@ -6711,12 +6435,11 @@ "cAL" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/open/floor/plating,/area/maintenance/port/aft) "cAN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "cAP" = (/turf/closed/wall,/area/medical/medbay/aft) -"cAQ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) -"cAR" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) -"cAS" = (/obj/structure/table/wood,/obj/item/folder/white{pixel_x = 6; pixel_y = -1},/obj/item/reagent_containers/food/drinks/mug/coco{pixel_x = -5; pixel_y = 8},/obj/item/reagent_containers/food/drinks/mug/coco{pixel_x = -5; pixel_y = -2},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) -"cAT" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = 6; pixel_y = 3},/obj/item/pen/blue{pixel_x = 6; pixel_y = 3},/obj/item/flashlight/lamp/green{pixel_x = -6; pixel_y = 4},/turf/open/floor/carpet/blue,/area/medical/psych) +"cAR" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) +"cAS" = (/obj/structure/table/wood,/obj/item/folder/white{pixel_x = 6; pixel_y = -1},/obj/item/reagent_containers/food/drinks/mug/coco{pixel_x = -5; pixel_y = 8},/obj/item/reagent_containers/food/drinks/mug/coco{pixel_x = -5; pixel_y = -2},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) +"cAT" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = 6; pixel_y = 3},/obj/item/pen/blue{pixel_x = 6; pixel_y = 3},/obj/item/flashlight/lamp/green{pixel_x = -6; pixel_y = 4},/turf/open/floor/carpet/blue) "cAU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/aft) -"cAV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/carpet/blue,/area/medical/psych) +"cAV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/carpet/blue) "cAW" = (/obj/structure/disposalpipe/segment,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/aft) "cAX" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/light_switch{pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics/cloning) "cAY" = (/obj/effect/landmark/start/geneticist,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics/cloning) @@ -6738,12 +6461,12 @@ "cBo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Research Division Hallway - Mech Bay"; dir = 4; network = list("ss13","rd")},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/white/side{dir = 6},/area/science/research) "cBp" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/research) "cBq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/science/research) -"cBr" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hor"; name = "RD Office APC"; pixel_y = -27},/obj/structure/cable/yellow,/obj/machinery/light_switch{pixel_x = -23},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cBs" = (/obj/item/paper_bin{pixel_y = 7},/obj/structure/table,/obj/machinery/newscaster{pixel_y = -30},/obj/item/stamp/rd{pixel_x = 3; pixel_y = -2},/obj/item/folder/white{pixel_x = 9; pixel_y = -1},/obj/item/pen,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cBt" = (/obj/structure/table,/obj/item/cartridge/signal/toxins,/obj/item/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("ss13","rd")},/obj/machinery/light,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cBu" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/keycard_auth{pixel_y = -24},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cBv" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) -"cBw" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/heads/hor) +"cBr" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hor"; name = "RD Office APC"; pixel_y = -27},/obj/structure/cable/yellow,/obj/machinery/light_switch{pixel_x = -23},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cBs" = (/obj/item/paper_bin{pixel_y = 7},/obj/structure/table,/obj/machinery/newscaster{pixel_y = -30},/obj/item/stamp/rd{pixel_x = 3; pixel_y = -2},/obj/item/folder/white{pixel_x = 9; pixel_y = -1},/obj/item/pen,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cBt" = (/obj/structure/table,/obj/item/cartridge/signal/toxins,/obj/item/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("ss13","rd")},/obj/machinery/light,/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cBu" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/keycard_auth{pixel_y = -24},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cBv" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/open/floor/plasteel/cafeteria{dir = 5}) +"cBw" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/cafeteria{dir = 5}) "cBx" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/storage) "cBy" = (/obj/item/cigbutt,/obj/machinery/light_switch{pixel_y = -23},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/storage) "cBz" = (/obj/effect/landmark/start/scientist,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/storage) @@ -6760,15 +6483,13 @@ "cBK" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit) "cBL" = (/obj/item/integrated_electronics/analyzer,/obj/item/integrated_electronics/debugger,/obj/item/integrated_electronics/wirer,/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/science/circuit) "cBM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/circuit) -"cBN" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) "cBO" = (/obj/structure/rack,/obj/item/tank/internals/air,/obj/item/wrench,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/port/aft) "cBP" = (/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/port/aft) -"cBQ" = (/turf/closed/wall,/area/medical/psych) -"cBR" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) +"cBR" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) "cBS" = (/obj/machinery/door/poddoor/preopen{id = "isola2"; name = "privacy shutters"},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/patients_rooms/room_a) -"cBT" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) +"cBT" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) "cBU" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/aft) -"cBV" = (/obj/machinery/door/airlock/medical{name = "Psychology Office"; req_access_txt = "71"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/psych) +"cBV" = (/obj/machinery/door/airlock/medical{name = "Psychology Office"; req_access_txt = "71"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white) "cBW" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/aft) "cBX" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/aft) "cBY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/aft) @@ -6909,7 +6630,6 @@ "cEF" = (/obj/machinery/camera{c_tag = "Research Division Circuitry Lab"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/circuit) "cEG" = (/obj/structure/noticeboard{dir = 1; pixel_y = -32},/turf/open/floor/plasteel/white,/area/science/circuit) "cEH" = (/obj/machinery/light,/turf/open/floor/plasteel/white,/area/science/circuit) -"cEI" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) "cEJ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/port/aft) "cEK" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Medbay Maintenance"; req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay/aft) "cEL" = (/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay/aft) @@ -7008,7 +6728,7 @@ "cGB" = (/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/wall,/area/science/mixing) "cGC" = (/turf/closed/wall,/area/science/test_area) "cGD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/test_area) -"cGE" = (/obj/effect/landmark/xeno_spawn,/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port/aft) +"cGE" = (/obj/effect/landmark/xeno_spawn,/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space) "cGF" = (/turf/closed/wall/r_wall,/area/medical/virology) "cGG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating,/area/medical/virology) "cGI" = (/obj/machinery/light{dir = 8},/obj/machinery/newscaster{pixel_y = -30},/obj/machinery/vending/coffee,/turf/open/floor/carpet,/area/medical/medbay/aft) @@ -7317,7 +7037,7 @@ "cMB" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating/airless,/area/science/test_area) "cMC" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/science/test_area) "cMD" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating/airless,/area/science/test_area) -"cME" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/open/floor/plating/airless,/area/solar/port/aft) +"cME" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/open/floor/plating/airless) "cMF" = (/obj/structure/table/glass,/obj/item/paper_bin{pixel_x = -2; pixel_y = 9},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) "cMG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) "cMH" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) @@ -7421,9 +7141,9 @@ "cOC" = (/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/manifold{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm/server{dir = 8; pixel_x = 22},/turf/open/floor/plasteel/dark/telecomms,/area/science/server) "cOD" = (/obj/item/storage/box,/turf/open/floor/plating,/area/maintenance/starboard/aft) "cOE" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/sunglasses,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cOF" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft) -"cOG" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space,/area/solar/starboard/aft) -"cOH" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft) +"cOF" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel) +"cOG" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space) +"cOH" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel) "cOJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology) "cOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/bedsheet/medical,/obj/structure/bed,/turf/open/floor/plasteel/freezer,/area/medical/virology) "cOL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/virology) @@ -7475,7 +7195,7 @@ "cPH" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft) "cPI" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/aft) "cPJ" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cPK" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard/aft) +"cPK" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space) "cPL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology) "cPM" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology) "cPN" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology) @@ -7530,7 +7250,6 @@ "cQK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) "cQL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) "cQM" = (/obj/structure/cable/yellow{icon_state = "0-8"},/turf/closed/wall/r_wall,/area/medical/virology) -"cQN" = (/turf/closed/wall,/area/chapel/office) "cQO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance"; req_one_access_txt = "27"},/turf/open/floor/plating,/area/maintenance/aft) "cQP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Chapel Office Maintenance"; req_one_access_txt = "22"},/turf/open/floor/plating,/area/maintenance/aft) "cQQ" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) @@ -7579,14 +7298,14 @@ "cRJ" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) "cRK" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) "cRL" = (/obj/structure/chair/stool,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"cRM" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/bodycontainer/morgue{dir = 2},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cRN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 25},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cRO" = (/obj/item/radio/intercom{pixel_y = 25},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cRP" = (/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cRQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cRR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cRS" = (/obj/machinery/door/morgue{name = "Relic Closet"; req_access_txt = "22"},/turf/open/floor/plasteel/cult,/area/chapel/office) -"cRT" = (/obj/structure/table/wood,/obj/item/book/granter/spell/smoke/lesser{name = "mysterious old book of "},/obj/item/reagent_containers/food/drinks/bottle/holywater{pixel_x = -2; pixel_y = 2},/obj/item/nullrod{pixel_x = 4},/obj/item/organ/heart,/obj/item/soulstone/anybody/chaplain,/turf/open/floor/plasteel/cult,/area/chapel/office) +"cRM" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/bodycontainer/morgue{dir = 2},/turf/open/floor/plasteel/dark) +"cRN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 25},/turf/open/floor/plasteel/dark) +"cRO" = (/obj/item/radio/intercom{pixel_y = 25},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy) +"cRP" = (/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/grimy) +"cRQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/grimy) +"cRR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/grimy) +"cRS" = (/obj/machinery/door/morgue{name = "Relic Closet"; req_access_txt = "22"},/turf/open/floor/plasteel/cult) +"cRT" = (/obj/structure/table/wood,/obj/item/book/granter/spell/smoke/lesser{name = "mysterious old book of "},/obj/item/reagent_containers/food/drinks/bottle/holywater{pixel_x = -2; pixel_y = 2},/obj/item/nullrod{pixel_x = 4},/obj/item/organ/heart,/obj/item/soulstone/anybody/chaplain,/turf/open/floor/plasteel/cult) "cRU" = (/obj/machinery/door/airlock/maintenance{name = "Chapel Maintenance"; req_one_access_txt = "12;22"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft) "cRV" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Departure Lounge - Port Fore"; dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cRW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) @@ -7616,20 +7335,19 @@ "cSu" = (/obj/item/trash/popcorn,/obj/structure/table/glass,/obj/structure/cable/yellow{icon_state = "1-8"},/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},/turf/open/floor/plasteel/dark,/area/medical/virology) "cSv" = (/obj/item/reagent_containers/food/snacks/sosjerky,/obj/structure/table/glass,/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},/turf/open/floor/plasteel/dark,/area/medical/virology) "cSw" = (/obj/item/trash/cheesie{pixel_y = 4},/obj/structure/table/glass,/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},/turf/open/floor/plasteel/dark,/area/medical/virology) -"cSx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cSy" = (/obj/machinery/light/small{dir = 4},/obj/effect/landmark/start/chaplain,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cSz" = (/obj/item/flashlight/lamp,/obj/machinery/newscaster{pixel_x = -30},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cSA" = (/obj/structure/chair,/obj/effect/landmark/start/chaplain,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cSB" = (/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cSC" = (/obj/machinery/light/small{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cSD" = (/turf/closed/wall,/area/chapel/main) -"cSE" = (/obj/item/candle,/obj/machinery/light_switch{pixel_x = -27},/obj/effect/decal/cleanable/cobweb,/obj/structure/table/wood,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cSF" = (/obj/item/storage/book/bible,/obj/machinery/light/small{dir = 1},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/camera{c_tag = "Chapel - Fore"},/obj/structure/table/wood,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cSG" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cSH" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cSI" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cSJ" = (/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/structure/noticeboard{pixel_y = 29},/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cSK" = (/obj/item/candle,/obj/machinery/light_switch{pixel_y = 25},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/table/wood,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) +"cSx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark) +"cSy" = (/obj/machinery/light/small{dir = 4},/obj/effect/landmark/start/chaplain,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark) +"cSz" = (/obj/item/flashlight/lamp,/obj/machinery/newscaster{pixel_x = -30},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy) +"cSA" = (/obj/structure/chair,/obj/effect/landmark/start/chaplain,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy) +"cSB" = (/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy) +"cSC" = (/obj/machinery/light/small{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30},/turf/open/floor/plasteel/grimy) +"cSE" = (/obj/item/candle,/obj/machinery/light_switch{pixel_x = -27},/obj/effect/decal/cleanable/cobweb,/obj/structure/table/wood,/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},/turf/open/floor/plasteel/dark) +"cSF" = (/obj/item/storage/book/bible,/obj/machinery/light/small{dir = 1},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/camera{c_tag = "Chapel - Fore"},/obj/structure/table/wood,/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},/turf/open/floor/plasteel/dark) +"cSG" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/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},/turf/open/floor/plasteel/dark) +"cSH" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/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},/turf/open/floor/plasteel/dark) +"cSI" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/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},/turf/open/floor/plasteel/dark) +"cSJ" = (/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/structure/noticeboard{pixel_y = 29},/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},/turf/open/floor/plasteel/dark) +"cSK" = (/obj/item/candle,/obj/machinery/light_switch{pixel_y = 25},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/table/wood,/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},/turf/open/floor/plasteel/dark) "cSL" = (/obj/structure/table,/obj/item/candle,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cSM" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cSN" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) @@ -7658,24 +7376,21 @@ "cTl" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) "cTm" = (/obj/machinery/power/apc{areastring = "/area/maintenance/solars/starboard/aft"; dir = 1; name = "Starboard Quarter Solar APC"; pixel_y = 24},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) "cTn" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"cTo" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/starboard/aft) +"cTo" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space) "cTp" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation) "cTq" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/medical/virology) -"cTr" = (/obj/machinery/button/crematorium{id = "crematoriumChapel"; pixel_x = -26; req_access_txt = "27"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cTs" = (/obj/machinery/camera{c_tag = "Chapel Office - Backroom"; dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cTt" = (/obj/item/storage/crayons,/obj/machinery/light/small{dir = 8},/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cTu" = (/obj/structure/disposalpipe/segment,/obj/structure/table/wood,/obj/item/folder{pixel_y = 2},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cTv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/storage/fancy/candle_box{pixel_y = 5},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cTw" = (/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cTx" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = -25},/obj/structure/chair,/turf/open/floor/plasteel/dark,/area/chapel/office) -"cTy" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cTz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"cTA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"cTB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/carpet,/area/chapel/main) -"cTC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/carpet,/area/chapel/main) -"cTD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main) -"cTE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"cTF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4; name = "Chapel"},/turf/open/floor/plasteel/dark,/area/chapel/main) +"cTr" = (/obj/machinery/button/crematorium{id = "crematoriumChapel"; pixel_x = -26; req_access_txt = "27"},/turf/open/floor/plasteel/dark) +"cTs" = (/obj/machinery/camera{c_tag = "Chapel Office - Backroom"; dir = 8},/turf/open/floor/plasteel/dark) +"cTt" = (/obj/item/storage/crayons,/obj/machinery/light/small{dir = 8},/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/grimy) +"cTu" = (/obj/structure/disposalpipe/segment,/obj/structure/table/wood,/obj/item/folder{pixel_y = 2},/turf/open/floor/plasteel/grimy) +"cTv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/item/storage/fancy/candle_box{pixel_y = 5},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy) +"cTx" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = -25},/obj/structure/chair,/turf/open/floor/plasteel/dark) +"cTy" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark) +"cTz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet) +"cTC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/carpet) +"cTD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet) +"cTE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet) +"cTF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4; name = "Chapel"},/turf/open/floor/plasteel/dark) "cTG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cTH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cTI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) @@ -7701,26 +7416,24 @@ "cUc" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) "cUd" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) "cUe" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"cUf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/solar/starboard/aft) -"cUg" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space,/area/solar/starboard/aft) -"cUh" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard/aft) -"cUi" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/starboard/aft) -"cUj" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space,/area/solar/starboard/aft) -"cUk" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating/airless,/area/solar/starboard/aft) -"cUl" = (/obj/machinery/light/small{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cUm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/chapel/office) -"cUn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 4; name = "Crematorium"; req_access_txt = "22;27"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cUo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cUp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cUq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cUr" = (/obj/machinery/light_switch{pixel_x = 28},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/camera{c_tag = "Chapel Office"; dir = 8},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cUs" = (/obj/effect/spawner/structure/window/reinforced/tinted,/turf/open/floor/plasteel/dark,/area/chapel/office) -"cUt" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/chapel/main"; dir = 8; name = "Chapel APC"; pixel_x = -25},/turf/open/floor/carpet,/area/chapel/main) -"cUu" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet,/area/chapel/main) -"cUv" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/landmark/xmastree,/turf/open/floor/carpet,/area/chapel/main) -"cUw" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"cUx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main) -"cUy" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4; name = "Chapel"},/turf/open/floor/plasteel/dark,/area/chapel/main) +"cUf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space) +"cUg" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space) +"cUi" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space) +"cUj" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space) +"cUk" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating/airless) +"cUl" = (/obj/machinery/light/small{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark) +"cUm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark) +"cUn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 4; name = "Crematorium"; req_access_txt = "22;27"},/turf/open/floor/plasteel/dark) +"cUo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy) +"cUp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy) +"cUq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/grimy) +"cUr" = (/obj/machinery/light_switch{pixel_x = 28},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/camera{c_tag = "Chapel Office"; dir = 8},/turf/open/floor/plasteel/grimy) +"cUs" = (/obj/effect/spawner/structure/window/reinforced/tinted,/turf/open/floor/plasteel/dark) +"cUt" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/chapel/main"; dir = 8; name = "Chapel APC"; pixel_x = -25},/turf/open/floor/carpet) +"cUu" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/carpet) +"cUv" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/landmark/xmastree,/turf/open/floor/carpet) +"cUw" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet) +"cUy" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4; name = "Chapel"},/turf/open/floor/plasteel/dark) "cUz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cUA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cUB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) @@ -7743,22 +7456,21 @@ "cUS" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) "cUT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) "cUU" = (/obj/machinery/power/solar_control{dir = 8; id = "aftstarboard"; name = "Starboard Quarter Solar Control"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"cUV" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/starboard/aft) -"cUW" = (/obj/structure/bodycontainer/crematorium{dir = 1; id = "crematoriumChapel"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cUX" = (/obj/structure/table,/obj/item/storage/box/bodybags{pixel_x = 2; pixel_y = 2},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cUY" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cUZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cVa" = (/obj/machinery/power/apc{areastring = "/area/chapel/office"; name = "Chapel Office APC"; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cVb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"cVc" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cVd" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/chair{dir = 1},/obj/effect/landmark/start/chaplain,/turf/open/floor/plasteel/dark,/area/chapel/office) -"cVe" = (/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"cVf" = (/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"cVg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"cVh" = (/turf/open/floor/plasteel/dark,/area/chapel/main) -"cVi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"cVj" = (/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"cVk" = (/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) +"cUV" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space) +"cUW" = (/obj/structure/bodycontainer/crematorium{dir = 1; id = "crematoriumChapel"},/turf/open/floor/plasteel/dark) +"cUX" = (/obj/structure/table,/obj/item/storage/box/bodybags{pixel_x = 2; pixel_y = 2},/turf/open/floor/plasteel/dark) +"cUY" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/turf/open/floor/plasteel/grimy) +"cUZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/grimy) +"cVa" = (/obj/machinery/power/apc{areastring = "/area/chapel/office"; name = "Chapel Office APC"; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow,/turf/open/floor/plasteel/grimy) +"cVb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy) +"cVc" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/open/floor/plasteel/dark) +"cVd" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/chair{dir = 1},/obj/effect/landmark/start/chaplain,/turf/open/floor/plasteel/dark) +"cVe" = (/turf/open/floor/plasteel/chapel{dir = 4}) +"cVf" = (/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 1}) +"cVg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel{dir = 4}) +"cVi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 1}) +"cVj" = (/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel{dir = 4}) +"cVk" = (/turf/open/floor/plasteel/chapel{dir = 1}) "cVl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cVm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cVn" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) @@ -7776,34 +7488,32 @@ "cVz" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/ambrosia,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/aft) "cVA" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/watermelon,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/seeds/cannabis,/turf/open/floor/plating,/area/maintenance/starboard/aft) "cVB" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/berry,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cVC" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard/aft) -"cVD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/office) -"cVE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/public/glass{name = "Chapel Office"; req_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cVF" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/chapel,/area/chapel/main) -"cVG" = (/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"cVH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel,/area/chapel/main) -"cVI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"cVJ" = (/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel,/area/chapel/main) -"cVK" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) +"cVC" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space) +"cVE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/public/glass{name = "Chapel Office"; req_access_txt = "22"},/turf/open/floor/plasteel/dark) +"cVF" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/chapel) +"cVG" = (/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 8}) +"cVH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel) +"cVI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 8}) +"cVJ" = (/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel) +"cVK" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/chapel{dir = 8}) "cVL" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cVM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cVN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cVO" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cVP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"cVQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chapel_shutters_parlour"; name = "chapel shutters"},/turf/open/floor/plating,/area/chapel/main) -"cVR" = (/obj/structure/closet/crate/coffin,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/chapel/main) -"cVS" = (/obj/structure/closet/crate/coffin,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/chapel/main) -"cVT" = (/obj/structure/noticeboard{desc = "A memorial wall for pinning up momentos"; name = "memorial board"; pixel_y = 32},/obj/item/storage/fancy/candle_box,/obj/item/storage/fancy/candle_box{pixel_x = -2; pixel_y = 2},/obj/effect/decal/cleanable/cobweb,/obj/structure/table/wood,/turf/open/floor/carpet,/area/chapel/main) -"cVU" = (/obj/structure/sign/plaques/kiddie/badger{pixel_y = 32},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/turf/open/floor/carpet,/area/chapel/main) -"cVV" = (/obj/structure/noticeboard{desc = "A memorial wall for pinning up momentos"; name = "memorial board"; pixel_y = 32},/obj/item/storage/book/bible,/obj/structure/table/wood,/turf/open/floor/carpet,/area/chapel/main) -"cVW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/main) -"cVX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main) -"cVY" = (/obj/machinery/light/small{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main) -"cVZ" = (/obj/structure/chair/comfy/black{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"cWa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"cWb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"cWc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"cWd" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) +"cVQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chapel_shutters_parlour"; name = "chapel shutters"},/turf/open/floor/plating) +"cVR" = (/obj/structure/closet/crate/coffin,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating) +"cVS" = (/obj/structure/closet/crate/coffin,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating) +"cVT" = (/obj/structure/noticeboard{desc = "A memorial wall for pinning up momentos"; name = "memorial board"; pixel_y = 32},/obj/item/storage/fancy/candle_box,/obj/item/storage/fancy/candle_box{pixel_x = -2; pixel_y = 2},/obj/effect/decal/cleanable/cobweb,/obj/structure/table/wood,/turf/open/floor/carpet) +"cVU" = (/obj/structure/sign/plaques/kiddie/badger{pixel_y = 32},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/turf/open/floor/carpet) +"cVV" = (/obj/structure/noticeboard{desc = "A memorial wall for pinning up momentos"; name = "memorial board"; pixel_y = 32},/obj/item/storage/book/bible,/obj/structure/table/wood,/turf/open/floor/carpet) +"cVX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark) +"cVY" = (/obj/machinery/light/small{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/obj/item/paper_bin{pixel_x = -2; pixel_y = 8},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/table/wood,/turf/open/floor/plasteel/dark) +"cVZ" = (/obj/structure/chair/comfy/black{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/chapel{dir = 1}) +"cWa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/chapel{dir = 4}) +"cWb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/structure/chair/bench/left,/turf/open/floor/plasteel/chapel{dir = 1}) +"cWc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/chair/bench/right,/turf/open/floor/plasteel/chapel{dir = 4}) +"cWd" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/plasteel/chapel{dir = 4}) "cWe" = (/obj/machinery/camera{c_tag = "Departure Lounge - Port Aft"; dir = 4},/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) @@ -7812,19 +7522,19 @@ "cWj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWl" = (/obj/machinery/camera{c_tag = "Departure Lounge - Starboard Aft"; dir = 8},/obj/machinery/light{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"cWm" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plating,/area/chapel/main) -"cWn" = (/obj/structure/closet/crate/coffin,/obj/machinery/door/window/eastleft{name = "Coffin Storage"; req_access_txt = "22"},/turf/open/floor/plating,/area/chapel/main) -"cWo" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWq" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWs" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4; name = "Funeral Parlour"},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"cWu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel,/area/chapel/main) -"cWv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel,/area/chapel/main) -"cWw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"cWx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"cWy" = (/turf/open/floor/plasteel/chapel,/area/chapel/main) +"cWm" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plating) +"cWn" = (/obj/structure/closet/crate/coffin,/obj/machinery/door/window/eastleft{name = "Coffin Storage"; req_access_txt = "22"},/turf/open/floor/plating) +"cWo" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark) +"cWp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark) +"cWq" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark) +"cWr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark) +"cWs" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4; name = "Funeral Parlour"},/turf/open/floor/plasteel/dark) +"cWt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel{dir = 8}) +"cWu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel) +"cWv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel) +"cWw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/chapel{dir = 8}) +"cWx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/chapel{dir = 8}) +"cWy" = (/turf/open/floor/plasteel/chapel) "cWz" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.4-Escape-4"; location = "9.3-Escape-3"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.3-Escape-3"; location = "9.2-Escape-2"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) @@ -7832,18 +7542,17 @@ "cWD" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/science/xenobiology) "cWE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/xenobiology) "cWF" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cWG" = (/obj/structure/closet/crate/coffin,/obj/machinery/light/small,/turf/open/floor/plating,/area/chapel/main) -"cWH" = (/obj/structure/chair{pixel_y = -2},/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWI" = (/obj/structure/chair{pixel_y = -2},/obj/effect/landmark/event_spawn,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWJ" = (/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Chapel - Funeral Parlour"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall,/area/chapel/main) -"cWL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/main) -"cWM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"cWN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"cWO" = (/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWP" = (/obj/item/storage/book/bible,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main) -"cWQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"cWR" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/camera{c_tag = "Chapel - Starboard"; dir = 8},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) +"cWG" = (/obj/structure/closet/crate/coffin,/obj/machinery/light/small,/turf/open/floor/plating) +"cWH" = (/obj/structure/chair{pixel_y = -2},/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},/turf/open/floor/plasteel/dark) +"cWI" = (/obj/structure/chair{pixel_y = -2},/obj/effect/landmark/event_spawn,/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},/turf/open/floor/plasteel/dark) +"cWJ" = (/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/camera{c_tag = "Chapel - Funeral Parlour"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark) +"cWK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall) +"cWM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/chapel{dir = 1}) +"cWN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/chapel{dir = 4}) +"cWO" = (/obj/structure/table/wood,/turf/open/floor/plasteel/dark) +"cWP" = (/obj/item/storage/book/bible,/obj/structure/table/wood,/turf/open/floor/plasteel/dark) +"cWQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel{dir = 1}) +"cWR" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/camera{c_tag = "Chapel - Starboard"; dir = 8},/turf/open/floor/plasteel/chapel{dir = 4}) "cWS" = (/obj/structure/sign/warning/vacuum{pixel_x = -32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWT" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) @@ -7851,33 +7560,30 @@ "cWW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cWY" = (/obj/structure/sign/warning/vacuum{pixel_x = 32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"cWZ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space,/area/solar/starboard/aft) -"cXa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXb" = (/obj/machinery/door/window{dir = 4; name = "Mass Driver"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXc" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/item/gps,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXd" = (/obj/machinery/camera{c_tag = "Chapel - Port"; dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"cXe" = (/obj/item/flashlight/lantern{pixel_y = 7},/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXf" = (/obj/effect/landmark/start/chaplain,/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"cXh" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/turf/open/floor/plasteel/chapel,/area/chapel/main) +"cWZ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space) +"cXb" = (/obj/machinery/door/window{dir = 4; name = "Mass Driver"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark) +"cXc" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/item/gps,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark) +"cXd" = (/obj/machinery/camera{c_tag = "Chapel - Port"; dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/chapel{dir = 8}) +"cXe" = (/obj/item/flashlight/lantern{pixel_y = 7},/obj/structure/table/wood,/turf/open/floor/plasteel/dark) +"cXf" = (/obj/effect/landmark/start/chaplain,/turf/open/floor/plasteel/dark) +"cXg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/chapel{dir = 8}) +"cXh" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/turf/open/floor/plasteel/chapel) "cXi" = (/obj/machinery/door/airlock/external{name = "Departure Lounge Airlock"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cXj" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall/r_wall,/area/science/xenobiology) "cXk" = (/turf/closed/wall/r_wall,/area/science/xenobiology) "cXl" = (/obj/machinery/doorButtons/access_button{idDoor = "xeno_airlock_exterior"; idSelf = "xeno_airlock_control"; name = "Access Button"; pixel_x = -24},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/research{autoclose = 0; frequency = 1449; id_tag = "xeno_airlock_exterior"; name = "Xenobiology Lab External Airlock"; req_access_txt = "55"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) "cXm" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/science/xenobiology) -"cXn" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/cult,/area/chapel/main) -"cXo" = (/obj/machinery/door/morgue{name = "Chapel Garden"},/turf/open/floor/plasteel/cult,/area/chapel/main) -"cXp" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/button/door{id = "chapel_shutters_parlour"; name = "chapel shutters control"; pixel_y = -25},/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXq" = (/obj/structure/chair,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXr" = (/obj/structure/chair,/obj/effect/landmark/start/chaplain,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXs" = (/obj/machinery/holopad,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXt" = (/obj/structure/window/reinforced{dir = 4},/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/machinery/button/massdriver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = -4; pixel_y = -26},/obj/structure/table/wood,/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXv" = (/obj/structure/bookcase{name = "Holy Bookcase"},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"cXw" = (/obj/machinery/light/small,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"cXx" = (/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},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cXy" = (/obj/machinery/light/small,/obj/machinery/button/door{id = "chapel_shutters_space"; name = "chapel shutters control"; pixel_x = -6; pixel_y = -25},/obj/machinery/light_switch{pixel_x = 6; pixel_y = -25},/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"cXz" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) +"cXn" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/cult) +"cXo" = (/obj/machinery/door/morgue{name = "Chapel Garden"},/turf/open/floor/plasteel/cult) +"cXp" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/button/door{id = "chapel_shutters_parlour"; name = "chapel shutters control"; pixel_y = -25},/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},/turf/open/floor/plasteel/dark) +"cXq" = (/obj/structure/chair,/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},/turf/open/floor/plasteel/dark) +"cXr" = (/obj/structure/chair,/obj/effect/landmark/start/chaplain,/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},/turf/open/floor/plasteel/dark) +"cXt" = (/obj/structure/window/reinforced{dir = 4},/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/machinery/button/massdriver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = -4; pixel_y = -26},/obj/structure/table/wood,/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},/turf/open/floor/plasteel/dark) +"cXu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark) +"cXv" = (/obj/structure/bookcase{name = "Holy Bookcase"},/turf/open/floor/plasteel/chapel{dir = 4}) +"cXw" = (/obj/machinery/light/small,/turf/open/floor/plasteel/chapel{dir = 4}) +"cXy" = (/obj/machinery/light/small,/obj/machinery/button/door{id = "chapel_shutters_space"; name = "chapel shutters control"; pixel_x = -6; pixel_y = -25},/obj/machinery/light_switch{pixel_x = 6; pixel_y = -25},/turf/open/floor/plasteel/chapel{dir = 1}) +"cXz" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/plasteel/chapel{dir = 4}) "cXA" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cXB" = (/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cXC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology) @@ -7891,8 +7597,8 @@ "cXK" = (/obj/structure/table/glass,/obj/item/paper_bin{pixel_y = 4},/obj/item/folder/white{pixel_x = 4; pixel_y = 4},/obj/item/pen{pixel_x = -4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) "cXL" = (/obj/structure/table/glass,/obj/item/storage/box/monkeycubes{pixel_x = 2; pixel_y = -2},/obj/item/storage/box/monkeycubes,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) "cXM" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cXN" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/chapel/main) -"cXO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chapel_shutters_space"; name = "chapel shutters"},/turf/open/floor/plating,/area/chapel/main) +"cXN" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/obj/structure/fans/tiny,/turf/open/floor/plating) +"cXO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chapel_shutters_space"; name = "chapel shutters"},/turf/open/floor/plating) "cXP" = (/obj/machinery/door/airlock/external{name = "Departure Lounge Airlock"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) "cXQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/shower{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) "cXR" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/xenobiology) @@ -8087,179 +7793,173 @@ "dby" = (/obj/machinery/camera{c_tag = "Xenobiology Lab - Kill Chamber"; dir = 1; network = list("ss13","rd","xeno"); start_active = 1},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) "dbz" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/science/xenobiology) "dbA" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/open/floor/plating/airless,/area/science/xenobiology) -"dcd" = (/obj/structure/table/wood/poker,/turf/open/floor/carpet/orange,/area/crew_quarters/locker) -"dpP" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) -"dqC" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) +"dcd" = (/obj/structure/table/wood/poker,/turf/open/floor/carpet/orange) +"dpP" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel) +"dqC" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/wood) "dvQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/central) "dxG" = (/obj/structure/lattice,/turf/closed/wall,/area/maintenance/port/aft) "dFy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/pet/cat,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) "dLG" = (/obj/machinery/vending/cola/random,/turf/open/floor/plating,/area/maintenance/port/fore) -"dQj" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/carpet/green,/area/library) -"dRA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"dRZ" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals4"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"dQj" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/carpet/green) +"dRA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel) +"dRZ" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals6"},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_decals4"},/turf/open/floor/plasteel) "efr" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/aft) "egl" = (/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/hallway/primary/port) -"eiG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"eiG" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel) "euY" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/aft) "ewN" = (/obj/item/book/manual/blubbery_bartender,/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/port/aft) "eJq" = (/obj/machinery/iv_drip/feeding_tube,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"eON" = (/obj/structure/window/reinforced,/obj/machinery/light{color = "#ffa500"; dir = 1},/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/crew_quarters/fitness/pool) -"eTY" = (/obj/effect/turf_decal/bot,/obj/item/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"eON" = (/obj/structure/window/reinforced,/obj/machinery/light{color = "#ffa500"; dir = 1},/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass) +"eTY" = (/obj/effect/turf_decal/bot,/obj/item/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel) "faq" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/vending/mealdor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "flt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/port) "flJ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/hallway/secondary/entry) -"fqe" = (/obj/structure/table/wood,/obj/item/ashtray{name = "candle holder"; pixel_y = 4},/obj/item/candle{pixel_y = 10},/obj/item/reagent_containers/food/snacks/bbqribs{pixel_y = -8},/turf/open/floor/wood,/area/crew_quarters/bar) -"fvY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/storage) -"fCe" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"fNd" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) +"fqe" = (/obj/structure/table/wood,/obj/item/ashtray{name = "candle holder"; pixel_y = 4},/obj/item/candle{pixel_y = 10},/obj/item/reagent_containers/food/snacks/bbqribs{pixel_y = -8},/turf/open/floor/wood) +"fvY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel) +"fNd" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/r_wall) "fSF" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "fSS" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/port) -"gbL" = (/obj/structure/sign/departments/restroom,/turf/closed/wall,/area/crew_quarters/toilet/restrooms) +"gbL" = (/obj/structure/sign/departments/restroom,/turf/closed/wall) "gfc" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"gha" = (/obj/structure/chair/sofa,/turf/open/floor/carpet/red,/area/crew_quarters/locker) +"gha" = (/obj/structure/chair/sofa,/turf/open/floor/carpet/red) "giY" = (/obj/machinery/iv_drip/feeding_tube,/turf/open/floor/plating,/area/maintenance/port/aft) "gkv" = (/obj/structure/sign/poster/official/cleanliness,/turf/closed/wall,/area/medical/patients_rooms/room_a) -"gyx" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/storage/primary) -"gCy" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/paper,/turf/open/floor/wood,/area/security/vacantoffice) -"gLf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 10},/area/crew_quarters/fitness/recreation) -"gMZ" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/psych) -"gNd" = (/turf/open/floor/wood,/area/crew_quarters/fitness/pool) +"gyx" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel) +"gCy" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/paper,/turf/open/floor/wood) +"gLf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 10}) +"gMZ" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white) "gVZ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1; pixel_x = -8; pixel_y = 12},/turf/open/floor/plasteel/dark,/area/maintenance/starboard) "gXT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/pet/cat,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"hbu" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/wood,/area/security/vacantoffice) -"hfO" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/light,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/recreation) -"hqT" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/flora/junglebush/b,/obj/machinery/light{color = "#ffa500"},/turf/open/floor/grass,/area/crew_quarters/fitness/pool) +"hbu" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/wood) +"hfO" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/light,/turf/open/floor/plasteel/dark/side) +"hqT" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/flora/junglebush/b,/obj/machinery/light{color = "#ffa500"},/turf/open/floor/grass) "hqV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) -"hra" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/carpet/red,/area/crew_quarters/locker) +"hra" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/carpet/red) "hHn" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) "iiz" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"isx" = (/obj/item/twohanded/required/kirbyplants/random,/obj/structure/sign/poster/official/libraryposter{pixel_y = 32},/turf/open/floor/wood,/area/library) +"isx" = (/obj/item/kirbyplants/random,/obj/structure/sign/poster/official/libraryposter{pixel_y = 32},/turf/open/floor/wood) "iyq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"izP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/punching_bag,/turf/open/floor/wood,/area/crew_quarters/fitness/recreation) +"izP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/punching_bag,/turf/open/floor/wood) "iBJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/aft) -"iKt" = (/obj/structure/closet/wardrobe/mixed,/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/item/clothing/under/shorts/pinkwshort,/turf/open/floor/plasteel/dark,/area/crew_quarters/locker) -"iOQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals4"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"iUm" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"iKt" = (/obj/structure/closet/wardrobe/mixed,/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/item/clothing/under/shorts/pink,/turf/open/floor/plasteel/dark) +"iOQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals4"},/turf/open/floor/plasteel) +"iUm" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) "iZT" = (/obj/machinery/iv_drip/feeding_tube,/turf/open/floor/plating,/area/maintenance/starboard/fore) "jfl" = (/obj/machinery/vending/mealdor,/turf/open/floor/carpet/orange,/area/maintenance/port/fore) "jgn" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/maintenance/port) -"jqy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/sofa/corner,/turf/open/floor/carpet/red,/area/crew_quarters/locker) +"jqy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/sofa/corner,/turf/open/floor/carpet/red) "jxR" = (/obj/structure/lattice,/obj/structure/lattice,/turf/closed/wall,/area/space/nearstation) "jBK" = (/obj/machinery/door/airlock{dir = 4; id_tag = "MaintDorm1"; name = "Maint Dorm"},/turf/open/floor/plating,/area/maintenance/port/aft) -"jFU" = (/obj/structure/reagent_dispensers/keg/aphro,/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plating,/area/maintenance/port/fore) +"jFU" = (/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plating,/area/maintenance/port/fore) "jTg" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/hallway/primary/port) -"jUZ" = (/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"khd" = (/obj/effect/turf_decal/bot_white/left,/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/machinery/gateway{dir = 10},/turf/open/floor/plasteel/dark,/area/gateway) -"khf" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atm{pixel_y = 30},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"jUZ" = (/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel) +"khd" = (/obj/effect/turf_decal/bot_white/left,/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/machinery/gateway{dir = 10},/turf/open/floor/plasteel/dark) +"khf" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) "khX" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/hallway/secondary/entry) "kie" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard) "kjx" = (/obj/item/trash/boritos,/turf/open/floor/plating,/area/maintenance/fore) "krz" = (/obj/effect/spawner/lootdrop/fiftypercent_chocoslimespawn,/turf/open/floor/engine,/area/science/xenobiology) "kye" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/carpet/purple,/area/maintenance/port/fore) -"kHk" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet/orange,/area/crew_quarters/locker) -"kRU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/chair/sofachair{dir = 1},/turf/open/floor/wood,/area/crew_quarters/bar) +"kHk" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet/orange) +"kRU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/chair/sofachair{dir = 1},/turf/open/floor/wood) "kZS" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"lgC" = (/turf/open/floor/plasteel/dark/side{dir = 5},/area/crew_quarters/fitness/recreation) -"lCk" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"lDx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"lGs" = (/obj/structure/window/reinforced,/obj/structure/flora/junglebush/b,/obj/machinery/light{dir = 1},/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) -"lOJ" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/quartermaster/office) +"lgC" = (/turf/open/floor/plasteel/dark/side{dir = 5}) +"lCk" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel) +"lDx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel) +"lGs" = (/obj/structure/window/reinforced,/obj/structure/flora/junglebush/b,/obj/machinery/light{dir = 1},/turf/open/floor/grass) +"lOJ" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals9"},/turf/open/floor/plasteel) "lPS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/aft) -"lQP" = (/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/pool) -"lUk" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"lVc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"lQP" = (/obj/item/kirbyplants,/turf/open/floor/plasteel/dark/side) +"lVc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plasteel) "lWE" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard) -"mhi" = (/obj/machinery/door/airlock{dir = 1; id_tag = "FitnessShower"; name = "Fitness Room Shower"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/pool) +"mhi" = (/obj/machinery/door/airlock{dir = 1; id_tag = "FitnessShower"; name = "Fitness Room Shower"},/turf/open/floor/plasteel/freezer) "mjI" = (/obj/machinery/vending/coffee,/turf/open/floor/plating,/area/maintenance/port/fore) "mqn" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/port) "mrA" = (/obj/machinery/iv_drip/feeding_tube,/turf/open/floor/plating,/area/maintenance/port/fore) "mtQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/port/fore) -"mDa" = (/obj/machinery/conveyor{dir = 4; id = "packageExternal"},/obj/structure/plasticflaps/opaque,/obj/machinery/door/poddoor/shutters/preopen{id = "Deliveries Gates"; name = "Deliveries Shutters"},/turf/open/floor/plating,/area/quartermaster/sorting) +"mDa" = (/obj/machinery/conveyor{dir = 4; id = "packageExternal"},/obj/structure/plasticflaps/opaque,/obj/machinery/door/poddoor/shutters/preopen{id = "Deliveries Gates"; name = "Deliveries Shutters"},/turf/open/floor/plating) "mQs" = (/obj/machinery/door/airlock/research/glass{name = "Research Break Room"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/science/research) -"mQA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Deliveries Gates"; name = "Deliveries Shutters"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/quartermaster/sorting) +"mQA" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Deliveries Gates"; name = "Deliveries Shutters"},/obj/machinery/door/firedoor,/turf/open/floor/plating) "mRy" = (/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel,/area/security/prison) -"mRP" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/quartermaster/office) +"mRP" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8}) "mSr" = (/obj/structure/chair/wood,/turf/open/floor/carpet/purple,/area/maintenance/port/fore) "nbX" = (/obj/structure/dresser,/obj/item/flashlight/lamp/green{pixel_x = -4; pixel_y = 14},/turf/open/floor/wood{icon_state = "wood-broken3"},/area/maintenance/port/aft) "ncA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/port) -"ngg" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/wood,/area/security/vacantoffice) -"nhT" = (/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/wood,/area/library) -"njR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"ngg" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/wood) +"nhT" = (/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/wood) +"njR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel) "nmb" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 20},/turf/open/floor/plasteel/white,/area/science/research) "nmK" = (/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/carpet,/area/science/research) "npx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 12},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/port) -"nOe" = (/obj/structure/sign/departments/restroom,/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) -"nPG" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/turf/open/floor/wood,/area/library) +"nPG" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/turf/open/floor/wood) "nXN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals4"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) -"oeC" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/junglebush/b,/obj/structure/sign/poster/contraband/rebels_unite{pixel_x = 32},/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) -"ojj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"omF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 4; name = "Captain's Quarters"; req_access_txt = "20"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain/private) -"oDK" = (/obj/effect/turf_decal/bot_white,/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/machinery/gateway{dir = 4},/turf/open/floor/plasteel/dark,/area/gateway) +"oeC" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/junglebush/b,/obj/structure/sign/poster/contraband/rebels_unite{pixel_x = 32},/turf/open/floor/grass) +"ojj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/yellowsiding{dir = 1}) +"omF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 4; name = "Captain's Quarters"; req_access_txt = "20"},/turf/open/floor/plasteel/dark) +"oDK" = (/obj/effect/turf_decal/bot_white,/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/machinery/gateway{dir = 4},/turf/open/floor/plasteel/dark) "oUT" = (/obj/machinery/firealarm{pixel_x = -24},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/hallway/primary/port) "ppv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/port) -"pvi" = (/obj/structure/window/reinforced,/obj/structure/flora/ausbushes/grassybush,/turf/open/floor/grass,/area/crew_quarters/fitness/recreation) +"pvi" = (/obj/structure/window/reinforced,/obj/structure/flora/ausbushes/grassybush,/turf/open/floor/grass) "pDl" = (/obj/structure/sign/nanotrasen,/turf/closed/wall,/area/hallway/primary/port) -"pMC" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"pNp" = (/obj/effect/turf_decal/box/corners{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"pSw" = (/obj/structure/chair/sofa/right{dir = 4},/turf/open/floor/carpet/red,/area/crew_quarters/locker) +"pMC" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel) +"pNp" = (/obj/effect/turf_decal/box/corners{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel) +"pSw" = (/obj/structure/chair/sofa/right{dir = 4},/turf/open/floor/carpet/red) "pWE" = (/obj/structure/rack,/obj/item/storage/box/donkpockets/donkpocketspicy,/obj/machinery/light/small{dir = 2},/turf/open/floor/plating,/area/maintenance/port/fore) -"qfh" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/closet/crate,/obj/machinery/light/floor,/turf/open/floor/plasteel,/area/quartermaster/storage) -"qmc" = (/obj/structure/chair/bench/left,/turf/open/floor/plaswood,/area/crew_quarters/fitness/pool) -"qrV" = (/obj/machinery/door/poddoor/preopen{id = "isola"; name = "privacy shutters"},/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/psych) -"qsr" = (/obj/machinery/portable_atmospherics/canister/water_vapor,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 9},/area/crew_quarters/fitness/pool) -"qKo" = (/obj/structure/chair/sofachair,/turf/open/floor/wood,/area/security/vacantoffice) +"qfh" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/closet/crate,/obj/machinery/light/floor,/turf/open/floor/plasteel) +"qmc" = (/obj/structure/chair/bench/left,/turf/open/floor/plaswood) +"qrV" = (/obj/machinery/door/poddoor/preopen{id = "isola"; name = "privacy shutters"},/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating) +"qsr" = (/obj/machinery/portable_atmospherics/canister/water_vapor,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 9}) +"qKo" = (/obj/structure/chair/sofachair,/turf/open/floor/wood) "qOR" = (/obj/item/candle/infinite{pixel_x = -10; pixel_y = 11},/turf/open/floor/plating,/area/maintenance/fore) -"raB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet/orange,/area/crew_quarters/locker) -"rqU" = (/obj/structure/window/reinforced,/obj/structure/flora/junglebush/b,/turf/open/floor/grass,/area/crew_quarters/fitness/pool) +"raB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet/orange) +"rqU" = (/obj/structure/window/reinforced,/obj/structure/flora/junglebush/b,/turf/open/floor/grass) "rJH" = (/obj/structure/sign/carts,/turf/closed/wall,/area/hallway/secondary/entry) -"rKv" = (/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"rKv" = (/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel) "rWf" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/space/nearstation) "rWv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/aft) "shZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/maintenance/port) -"sok" = (/obj/structure/sign/carts,/turf/closed/wall,/area/security/vacantoffice) +"sok" = (/obj/structure/sign/carts,/turf/closed/wall) "sBJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/aft) "sKK" = (/obj/machinery/door/airlock/maintenance{dir = 8; req_one_access_txt = "12;25;46"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj,/turf/open/floor/plating,/area/maintenance/starboard) -"sMV" = (/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/table,/obj/item/folder/yellow{pixel_x = 3; pixel_y = 4},/obj/item/folder/yellow{pixel_x = 5; pixel_y = 2},/obj/structure/medkit_cabinet{pixel_y = -24},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 8},/area/quartermaster/office) -"sQD" = (/obj/structure/window/reinforced,/obj/structure/flora/junglebush/c,/turf/open/floor/grass,/area/crew_quarters/fitness/pool) -"tcA" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/cryopod) -"tdj" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet/orange,/area/crew_quarters/locker) -"tfC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"sMV" = (/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/table,/obj/item/folder/yellow{pixel_x = 3; pixel_y = 4},/obj/item/folder/yellow{pixel_x = 5; pixel_y = 2},/obj/structure/medkit_cabinet{pixel_y = -24},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 8}) +"tcA" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark) +"tdj" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet/orange) +"tfC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel) "tmX" = (/obj/structure/sign/nanotrasen,/turf/closed/wall,/area/hallway/secondary/entry) "toC" = (/obj/item/cigbutt,/obj/item/restraints/handcuffs/fake/kinky,/turf/open/floor/plating,/area/maintenance/port/fore) -"tFu" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"tFu" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel) "tTS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/port) -"tWw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"tWw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{dir = 4},/turf/open/floor/plasteel) "tXI" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"ufI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "QM Shutters"; name = "privacy shutter"},/turf/open/floor/plating,/area/quartermaster/qm) +"ufI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "QM Shutters"; name = "privacy shutter"},/turf/open/floor/plating) "ujn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) -"unZ" = (/obj/machinery/light_switch{pixel_x = -28},/turf/open/floor/wood,/area/security/vacantoffice) -"uog" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"uOa" = (/obj/structure/chair/bench/right,/obj/machinery/button/door{id = "small_sauna_1"; name = "Sauna bolt control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/turf/open/floor/plaswood,/area/crew_quarters/fitness/pool) +"unZ" = (/obj/machinery/light_switch{pixel_x = -28},/turf/open/floor/wood) +"uog" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel) +"uOa" = (/obj/structure/chair/bench/right,/obj/machinery/button/door{id = "small_sauna_1"; name = "Sauna bolt control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/turf/open/floor/plaswood) "uXK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/maintenance/starboard) -"vfZ" = (/mob/living/simple_animal/sloth/citrus,/turf/open/floor/plasteel,/area/quartermaster/storage) -"vpx" = (/obj/machinery/firealarm{pixel_y = -24},/turf/open/floor/wood,/area/library) -"vvV" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/storage) -"vDt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) -"vFk" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/wood,/area/security/vacantoffice) +"vfZ" = (/mob/living/simple_animal/sloth/citrus,/turf/open/floor/plasteel) +"vpx" = (/obj/machinery/firealarm{pixel_y = -24},/turf/open/floor/wood) +"vvV" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel) +"vDt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellowsiding{dir = 4}) "vPl" = (/obj/structure/lattice,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"vQk" = (/obj/structure/table,/obj/item/reagent_containers/rag/towel,/obj/item/reagent_containers/rag/towel{pixel_y = 3},/obj/item/reagent_containers/rag/towel{pixel_y = 6},/obj/machinery/light/small,/turf/open/floor/plasteel/dark/side{dir = 10},/area/crew_quarters/fitness/pool) +"vQk" = (/obj/structure/table,/obj/item/reagent_containers/rag/towel,/obj/item/reagent_containers/rag/towel{pixel_y = 3},/obj/item/reagent_containers/rag/towel{pixel_y = 6},/obj/machinery/light/small,/turf/open/floor/plasteel/dark/side{dir = 10}) "vVF" = (/obj/item/trash/plate{pixel_x = -5; pixel_y = 4},/obj/item/trash/plate{pixel_x = 5; pixel_y = -4},/obj/item/trash/plate{pixel_x = 7; pixel_y = 5},/obj/item/trash/plate{pixel_x = -13; pixel_y = -10},/turf/open/floor/carpet,/area/maintenance/fore) -"wdc" = (/obj/effect/turf_decal/bot_white/right,/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/machinery/gateway{dir = 6},/turf/open/floor/plasteel/dark,/area/gateway) -"wjO" = (/obj/structure/chair/bench/right,/obj/machinery/button/door{id = "small_sauna_2"; name = "Sauna bolt control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/turf/open/floor/plaswood,/area/crew_quarters/fitness/pool) -"wnW" = (/obj/structure/sign/nanotrasen,/turf/closed/wall,/area/bridge) -"wqS" = (/obj/machinery/shower{dir = 4},/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "shower"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/pool) +"wdc" = (/obj/effect/turf_decal/bot_white/right,/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/machinery/gateway{dir = 6},/turf/open/floor/plasteel/dark) +"wjO" = (/obj/structure/chair/bench/right,/obj/machinery/button/door{id = "small_sauna_2"; name = "Sauna bolt control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/turf/open/floor/plaswood) +"wnW" = (/obj/structure/sign/nanotrasen,/turf/closed/wall) +"wqS" = (/obj/machinery/shower{dir = 4},/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "shower"},/turf/open/floor/plasteel/freezer) "wzp" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/space) "wMm" = (/obj/item/book/manual/fatty_chems,/turf/open/floor/plating,/area/maintenance/starboard/aft) "wQk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/medkit_cabinet{pixel_y = -24},/turf/open/floor/plasteel,/area/hallway/primary/port) "xkE" = (/obj/machinery/light/small{dir = 1},/obj/machinery/vending/mealdor,/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/port/fore) "xle" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "xmm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/maintenance/port) -"xIx" = (/obj/machinery/door/poddoor/preopen{id = "isola"; name = "privacy shutters"},/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/psych) -"xKx" = (/obj/structure/chair/sofa,/obj/item/trash/boritos,/turf/open/floor/carpet/red,/area/crew_quarters/locker) +"xIx" = (/obj/machinery/door/poddoor/preopen{id = "isola"; name = "privacy shutters"},/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating) +"xKx" = (/obj/structure/chair/sofa,/obj/item/trash/boritos,/turf/open/floor/carpet/red) "xPC" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/port) -"ycl" = (/obj/structure/sauna_oven,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood,/area/crew_quarters/fitness/pool) +"ycl" = (/obj/structure/sauna_oven,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/wood) "ycO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/mob/living/simple_animal/pet/cat,/turf/open/floor/plasteel/dark,/area/maintenance/port) -"yhM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"yhM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 8},/turf/open/floor/plasteel) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -8314,125 +8014,125 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaajaagaaiaagaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaajaafaahaafaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaiaajaagaagaaaaaaaaaaakaaaaaaaaaaagaaiaajaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaaaaaaaafaafaaaaaaaaaaakaafaafaaaaafaafaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaalaalaalaalaalaafaamaafaalaalaalaalaalaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoaapaaqaaraasaasaasaasaataafaagaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaafaauaauaauaauaauaafaaqaafaauaauaauaauaauaafaaiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaafaaaaaaaafaaqaaaaaaaafaaaaafaaaaaaaagaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaiaajaagaagaaaaaaaaackvaaaaaaaaaaagaaiaajaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaaaaaaaafaafaaaaaaaaackvaafaafaaaaafaafaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaalaalaalaalaalaafabwaafaalaalaalaalaalaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoczqchUaaraasaasaasaasaataafaagaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaafaauaauaauaauaauaafchUaafaauaauaauaauaauaafaaiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaafaaaaaaaafchUaaaaaaaafaaaaafaaaaaaaagaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaalaalaalaalaalaafaawaafaalaalaalaalaalaafaajaafaafaafaaaaaaaaaaafaaiaajaaiaafaafaafaaaaafaafaafaaaaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoaapaaqaaraasaasaasaasaataaaaagaaaaaaaafaaaaaaaaaaafaaaaafaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaauaauaauaauaauaafaaqaafaauaauaauaauaauaafaaiaafaafaafaafaafaafaafaafaafaafaaxaayaaxaaxaaxaayaaxaayaaxaaxaaaaafaafaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaagaagaagaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaajaaaaaaaaaaafaaaaaaaaaaazaaaaaaaaaaafaaaaaaaafaajaaaaaaaaaaaaaafaafaaaaaaaaaaafaaxaaDablaaxaaAabCaaCabCaaEaaxaafaafaaaadGaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaalaalaalaalaalaafaaqaafaalaalaalaalaalaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaFaaWabEaaxaaGaaHaaIaaJaaKaaLaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaafaaNaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoaapaaqaaraasaasaasaasaataafaaaaaaaaaaaaaaaaaaaafaaaaaaaafaafaaxabCacdaaxaaPaaQaaRaaSaaTaaxaaaadkaaaaaaaaaadkaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaagaagaagaagaagaagaaaaaYaaaaajaagaagaagaajaajaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaauaauaauaauaauaafaaqaafaauaauaauaauaauaafaafaafaafaaaaaZaafaafaafaaxaayaaxaaxaeDaaxaaxaaxabaabbabcaaxaaxaayaaxaaaaaaaaaabeaafaafaafaafaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaafaafaafaaaaaaaaYaafaafaaaaafaafaaaaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoczqchUaaraasaasaasaasaataaaaagaaaaaaaafaaaaaaaaaaafaaaaafaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaauaauaauaauaauaafchUaafaauaauaauaauaauaafaaiaafaafaafaafaafaafaafaafaafaafaaxaayaaxaaxaaxaayaaxaayaaxaaxaaaaafaafaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaagaagaagaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaajaaaaaaaaaaafaaaaaaaaaaeFaaaaaaaaaaafaaaaaaaafaajaaaaaaaaaaaaaafaafaaaaaaaaaaafaaxaaDablaaxaaAabCaaCabCaaEaaxaafaafaaaadGaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaalaalaalaalaalaafchUaafaalaalaalaalaalaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaFaaWabEaaxaaGaaHaaIaaJaaKaaLaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaafaahaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoczqchUaaraasaasaasaasaataafaaaaaaaaaaaaaaaaaaaafaaaaaaaafaafaaxabCacdaaxaaPaaQaaRaaSaaTaaxaaaadkaaaaaaaaaadkaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaagaagaagaagaagaagaaackvaaaaajaagaagaagaajaajaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaauaauaauaauaauaafchUaafaauaauaauaauaauaafaafaafaafaaaaaZaafaafaafaaxaayaaxaaxaeDaaxaaxaaxabaabbabcaaxaaxaayaaxaaaaaaaaaabeaafaafaafaafaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaafaafaafaaaaaackvaafaafaaaaafaafaaaaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaaaaafaafaafaafaafaaaabfaaaaaaaaaaafaaaaaaaafaaaaaaaafaafaaZabgabgabgaaxabhabiabjaaWmRyabmabnaboaaIabpabqabrabsaaxahaabuahaabeaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaabvabvabvabvabvaafabwaafabvabvabvabvabvaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaafaaaaaaaafaafaakaafaafaafaafaafaafaafaaaaaaaaaaaaaaZabxabyabzaaxabAabBaaRabCaaRaaRaaRabFabGaccabIabJabKaaxabLabMabNabeabeabeaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahccLzcLzahccLzcLzjxRcLzcLzahccLzcLzbogcLzcLzbogcLzcLzahcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafabOabPabPabPabPabQabRabSabTabTabTabTabUaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaaaaakaaaaaaaaaaafaaaaaaaafaafaafaafaafaaZabVabWabXaaxabYabeabZabCaaRaaRabDacaacbaccabCaaRaceaaxacfacgachaciacjahbackackaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAaaaaaacHAaaaaaacHAaaaaaaahqaaacHAaaaaaaaaacHAaaaaafaafaafaafaafaafaafaaiaagaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaclaclaclaclaclaafabRaafaclaclaclaclaclaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaakaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaZacmacnacoaaxacpabeacqacraaIaaIacsactacuacvacwaaRacxaaxacyaaxaaxaaxaaxaaxaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAcHAcHAcHAcHAvPlcHAcHAcHAcHAcHAaafcHAaafcHAaafaafaafaafaafaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaaaaaaaaaaafaaaaaaaafaczaaaaaaaaaaafaaaaaaaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaakaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaZacAacBacCaaxaaxaaxacDacEacFacGacHacIacJacKacLaaRacMabeabLabeacNacOacRaaxaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaafaaacHAaaaaaacHAaaaaaaaaacHAalKacQahdahdahdahdahdahdahdahdaaaalKacQalKalKahfaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafabvabvabvabvabvaafabRaafabvabvabvabvabvaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafacSacTacTacTacTacTacTacUaafaafaafaafaaZacVacWacXacYacZadaabeadbabeadcabeaddabeabeabeadeabeabeadfabeadgadhadiaaLaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaacHAaaaaaacHAaaaaaaaaacHAalKwqSahdahgahhahhahiahhahjahdaaaalKadjahaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaabOabPabPabPabPabQabRabSabTabTabTabTabUaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaafaaaaaaaaaaakaaaaaaaafaaaaaZadmadnadoadpadqadradsaaRadtadcaduadvadwabeadxaaRadyabeadzabeadAadBadCaaxaaaaafaaaaaaaaaadDaaaaaaaaaaafaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaafaafaafaafcHAcHAcHAcHAcHAalKaonahkahlahmahnahoahoahpahdahqacQadEadFaaaaaaaaaahraaiaagaaiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaagaafaclaclaclaclaclaafabRaafaclaclaclaclaclaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaafaaaaafaafaakaafaafaafaafaaZadJadKadLadMadNadradOaaRadPadQadRadSadTabeadUaaRadTabeacfabeadVadWadXaaxaafaafaafaeqaeqaeqaeqaeqaafaafaaaaafadZadZaeaaebaecadZadZaaaaafaaaaaaaafaaaalKalKalKalKalKalKmhiahdahsahtahuahvtcAahwahdaaaalKaedahaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaafaaaaaaaaaabRaaaaaaaaaaafaaaaaaaaaaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaafaaaaafaaaaafaeeaefaeeaafaaaaaaaaZaegaehaeiaaxaejaekaelaemabeadcabeaenadcabeaelaeoadcabeahxabeadcaepaelaaxaafaafaeqaeqaesaeraexaeqaeqaafaafadZadZaetaeuaevaewafeadZadZaafajpajpajpajpaeysQDeONrqUalKqsraiuahdaheahyahzahdaheahAahdalKalKaeAalKaeBaeCaeCaeCaeCaeCaeEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaagaaaabvabvabvabvabvaafaeFaafabvabvabvabvabvaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaafaafaafaeeaeGaeeaafaafaaaaaZaeHaeIaeJaaxaeKaeLaeMaeNaeOaePaeQaeRaeSaeTaeUaeVaeWaeXaeYaeZafaafbafdafcaafaeqaeqaffafhafgafgafXaeqaeqaafadZafiafjafkaflafmafnafoadZaafajpafpafqafraeyyclqmcalJalKaiyfCealKaftafuafvalKafyafxafyalKafzafAafBafCafDafDafDafDafDafCaafaafaafaafaafaaaaaaaaaaaaaaaaagaafabOabPabPabPabPabQabRabSabTabTabTabTabUaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaeeaeeafEaeeaeeaafaafaaZaaZaaZaaZaaxafFafGafHafIafJafKafLafGafMafNafOafPafKafRafGafSafTafUafVafWaafaeqaabafYagbagaagdagcaadaeqaafageagfaggaghagiagjagkaglagmaafaeyagnagoagpaeyaksgNdgNdastahIagralKagtahBahCagvaguagwagxagyagzagzahPafCafDafDafDafDafDafCaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaagaafaclaclaclaclaclaafabRaafaclaclaclaclaclaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaafahDagBagCagDahDaafaaaaaaaaaaafaaaaaxaaxagEagFagGaaxagHagIagHabeabeabeabeagJagKagLagMagNagOagPaaxaafaeqagRafYagTagSagUahEahFaeqaafagVagWagXagYagZaaeagXaaUagVaafaeyagnahGagpaeyaxIqmcuOaalKajtfCealKahJanhahQahQahQahNahQahQahQahRahSafCafDafDafDafDafDahTalKalKalKaaaaafaaaaaaaaaaaaaaaaaiaaaaaaaaaaafaaaaaaaaaabRaaaaaaaafaaaaaaaafaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafahUahUahVahVahVahVahVahDahWahXahYahDaafaafaafaafaafaaaaaaaaxaaxafWaaxaaxaaxafWaaxaaxahZaiaaibaicaidaieaifaigaigaigadYadYaeqaihaiiaijaikailagcaimaeqaafadZainaioaipaiqairaisaitadZaafaeyagnahGagpaeyalKalKalKalKaixfCealKaizakvahLaiAaiBaiBaiBaiAaiBaiFaiGaiHafDafDafDafDafDaiIaiJaiKacQaaaaafaafaafaafaafaafaagaafaafaafaafaafaaaaaaabRaaaaaaaaaaaaaaaaafaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiLaiMahVaiNaiOaiPaiQahDaiRaiSaiTagAaiUaiVaiUaiUaafaafaaaaaaaaaaafaaaaaaaaaaafaafaiWaiXaiYaiXaiZajaajbajcaigajdajeajfadYaeqajgajhajiaeqaeqaeqaeqaeqajjadZadZajkajlajmajnajoadZadZajjajpajqajrajsaeyyclqmcwjOalKajtfCealKajwakvaiBaiBaiBaiBaiBaiBaiBahKajCacQafDafDafDafDafDacQajDajEacQaaaaafaaaaafaaaajFajFajFajFajFajFajFaafaafaafabRaafaafaafaafaafaagaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafahUajGahUajHajIajJajKahDahDajLajMagAajNajOajPaiUaiUaafaafaafaafaafaafaafaafaafaafajQaicaicaicaicajRajSajTaigajUajVajWadYajXajYajZakaakbakcakdakeadYakfakgakhakiakjakkaklakmakhaknakoajpakpakqakraeyaksgNdgNdaktahIavBaeCakuvDtakwaiBaiBakzaiBaiBalOakCajyacQafDafDafDafDafDacQakDakEacQaafaafaafaafaafajFakFakGakHakIakFajFaafaaaakJakKakJaaaaaaaafaaaaaaaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaahVakLakMakNakOakPakQakRakSakTakUaiUakVakWakXakYaiUaafaaaaaaaafaaaaaaaaaakZakZakZajQalaalbalcaldalealfalgaigalhalialjadYalkajYallalmalnaloalpalqalralsaltalualvalwalxalyalzalAalBalCalDalEalFalGaeyaxIqmcalJalKalLnjRtWwauqakvaiBaiBaiBaiBaiBaiBaiBahKalTalUafDafDafDafDafDalValWalXalKalYalZaaaaafaaaajFamaambakFambamcajFaafaaaamdameamdaaaaaaaafaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaahUamfahUamgamhamiamjahUamkamlammamnamoampamqamraiUaafakZakZaiVakZakZaaaakZamsamsajQamtamuamvamwamxamyamzamAamBamCamBamDamEamFamGamHamIamJamKamKamLamMamNamOamPamQamRamSamTamUamVamWamXamYamZanaaeyafshqTaunalKvQklQPacQalNakvaiBaiBaiBanfaiBaiBaiBahKanianjafDafDafDafDafDankalKanlalKanmannackackaafajFanoanpanqanransajFaafakJamdantamdakJaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafahUanuanvanvanvanwanxahUanyanzanAaiUanBanCanDanEaiUakZakZjflaoLaoRakZakZakZanHanIajQanJanKanLanManNanOanPaiganQanRanSadYanTanUanVanWanXanYanZaoaaigaobaocaodaoeaofaogaohaoiaojaokaolajpajpaomaeyaeyalKalKalKalKalKalKalKaooaopojjaoqaoqaoqaotaouaouaovaiDanjafDafDafDafDafDankaowaoxalZannalZalZalYalZajFaoyaozakFaoAaoBajFaafamdamdaoCamdamdaafaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaoEaaaaaaaoDaaaaoDaaaaaaaafaafaafaaaaaaaaaaaaaaaaafaaaaafaaaaafaaaahUaoFaoGaoHaoIaoJaoKahUaoSaoMaoNakZaoOaoNaoNmrAaoPakZaoQaoTarharJakZaoUaoVaoWaoXaoYaoZapaapbapcapdapeapfadYakbapgakbadYadYaphapiapjadYapkaplapmapjapnaocapoappamPapqaprapsaptaokapuapvapwapxapyapyapAapBapCapFapEapFapGapHapIeiGapJapKapLapMapNapNapNapOanjafDafDafDafDafDankapPapQalZaoxapRapSapTapUajFapVapWapXapYapZajFaafaqaaqbaqcaqdaqaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaoDaafaafaoDaoDaoDaafaaaaoDaoDaqeaoDaoDaaaaafakZakZaiVakZaafaaaaafaafaafaafaafakZaiVahUahUaqfaqgaqhahUahUahUamkaqiammaqjamoaqkaqlaoNaqmakZjFUtoCaqoakZakZaqpaqqaqraqsajQajQajQaqtaicaquaqvaqwaphaqxaqyaqzaqAaqBaqCanYaqDadYaqEaqFaqGaigaqHaqIaqJaqKaqLaqMaqNaqOaqPaokaqQaqRaqRakhakhakhakhaqSagqagqagqagqalKaqTaqUaqVaqWaqXaqYaqZaraarbarcardarearfarfarfarfarfargautarialZapQapQapQapQarjajFarkarlarmarnaroajFaafaqaarparqarraqaaaaaafaafaafackaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEarsaafaoDaafarsaafbogbogaafbogbogbogbogaoDaaaaaaaaaakZartaruakZarvarwarwarwarwarwarxakZaoQaryakZarzarAamkarBarCakZaoNausarFakZaoOaqnarGarHarIakZanGcCKarKakZarLaqqarMarNarOakZarPajQarQarRarSaqvaqwadYarTarUarVarWarXarYarZasaasbakdascasdaseasfasgashasiasjaskasjaslasjasmasnasoaspasqasrassakhaqSagqcobasuasvaswaswaswaswaswasxasyaszaswaswaswaswaswasAalZasBasCauAalZalZapQalZavvasFasGapQasHasIasJasKasLasMasNajFalYaqaasOasPasQaqaaaaaafaaaaaaackaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaafaoDaafaoDaoDaoDaqeaafaafaafaoDaoDaafaaaaafaafaiVasRasSasTasUasVasVasVasVasVasWasXasYasZataatbatciizkZSkZSkZSateatfakZakZakZakZakZakZakZakZakZakZatgakZathakZakZakZakZakZakZajQatiatjanNaqvaqwaphatkatlatmatnatoatpatqatranXakdatsattatuatvatwatxatyatzatAatBatCatDatEatFaqRatGatGatGatHakhatIatJatKatLvVFaswatMatNatOatPatQkhfatSaswatTatUatVaswalZalZatWatXatYapPalZapQalZasDapQatZiZTauaaubaucajFajFaudaueajFaufaqaaqaaugauhaqaalZalYalZalZauialZaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaoDaoDaoDaoDaafaoDaoDaafarsaoDaoDaafaafaafaafakZakZaujakZakZaukaulaulaulaulaulaumakZakZakZakZakZakZaupakZakZakZakZhHnakZayHauuauvauwauxakSauyauzauzauBauCauDakZaaaaaaaaaaaaaaaajSauEauFanNauGauHauIanXauJanXadYadYauKauLanXadYauMauNaigaigakhauOauPauQauOakhauRauSakhauTaqRaqRauUauUauUakhakhauVagqqORauWbTdaswauYauZavaavbavcavdaveavfavgavhaviaswavjalZavkavlavmavnalZavoalZalZalZavpalZauaavqavravsajFajFajFajFavtapPapQavuaAFalZavwavxavyalZavzalZaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafaoDaoDaoDaoDaoDaoDaoDaoDaoDaoDaoDavAaoDaafarsakZakZakZaAVavCakZaafaafaafaafaafaafaafaafaafaafaafakZanFmSravJxkEdLGarDakZavGavHavIavJavKakZakZakZavLavMavMavMavNakZakZaaaaaaaaaaaaaaaajSajSaicavOavPavQavRavRavSavTavRavRavUavVavRavWavRavXavYavZawaavTawbawcavRavRavRavTavRawdajQaweawfawfawfawfaicaqSagqauXkjxbVMaswaswaswaswaswawgawhawiawjawkaswaswaswawlalZapPawmatZapQalZapQalZawnalZawoawpawqawrawsawtawuawvawyawyawyawydFyawAapQapQawmapQawBawCawBawDackackaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarsaafaoDaqeaoDaoDaoDaoDawEaafaoDaoDaoDaoDaoDaoDawFawGawHawIavKakZakZaafaaaaaaaaaaaaaaaaaaaaaaaaaafakZbSUavFaurujnawKujnawLawMawNawOawPavKakZaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaawRawfawSawTawUawVawWawWawXawVawWawWawYawZaxaaxbaxcaxdaxeaxfawWaxgaxhaxiaxjaxjaxkaxlaxmaxnaxoaxpaxqaxraxsaxtaicaqSagqadlahHanbaswaxvatUaxwatPatQatRaxxaswaxyatNaxzaswaxAalZalZalZavpalZalZapQalZarialZaxBaxCaxCaubaxDajFaxCaxCaxCaxCaxCaxCaxCaxEaxEaowaxEaxEaxEaxEaxEaxEaxEaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaoDaoDaoDaoDaoDaoDaoDaoDaoDaoDaafaoDaoDaoDaafakZakZakZaxFavKasEakZaaaaaaaaaaaaaaaaaaaafaafaafaafakZaxGkyeaxHpWEarEmjIakZaxJakZaxKaxLaxMakZaaaaxNaxNaxNaxNaxNaxNaxNaaaaaaaaaaaaaaaaaaajSajSaicaxOaxPaxQaxRaxSaxTaxQaxUaxSaxPaxVaxWaxXaxYaxZayaaybaycaydayeayfaygayhayfayiayjaykaylaymaynayoaypayqaicaqSayrayrayrayrayraviaysaytayuayvavdaveaywayxayyauYaswayzayAayFayCayDayEayFayFayGgXTayGayIayJayKayLayMayNaxCayOayPayQayPayRaxCaxEaxEaxEaxEaaaaaaaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaoDaoDaoDaoDaoDaoDaoDaySaoDaafaafaafaafakZayTavKaoOaiVaaaaaaaaaaaaaaaaaaayVayUayUayVayWayVayVayXayVayVayYayYayYayYayZayYmtQakZaafaxNazbazcazdazeazfaxNaaaaaaaaaaaaaaaaaaaaaaaaaicazgazhaziaicazgazjaziaicazgazkaziaicazlaiWazmaicaiWaznazoazpazqazrazrazsaztazuazrazrazvaicaicaicaicaicaqSayrazwazxazyayraswaswaswaswazzazAazBawjawkaswaswaswalZazCapPaowapQapQazDapQaxCaxCaxCaxCaxCazEazFazGazHazIazJazKazKazKazLazMaafaafaafaaaaaaaaaaaaaaaaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafaafaafaoDaoDaoDaoDaqeaoDaoDaoDazNaoDaoDaoDaoDaafaaaaafaiVavDavKazOakZaaaaaaaaaaaaaaaaaaayUazPazQayVazRazSazTazUazVayVazWazXazYazZaAaayYmtQakZaaaaxNaAbaAcaAdaAeaAfaxNaaaaaaaaaaaaaaaaaaaAgaAhajQaAiaAjaAkaicaAlaAmaAkaicaAnaAjaAkaicaAoaApaAqaicaAraAsaAtaAuaAvazraAwaAxaAyaAzaAAaABazvaACaADaAEaCHaAGaAHayraAIaAJaAKayraALaAMaANaswaAOaAPaAQaARaASaATaATaATayGaAWaxCaxCaxCaxCaxCaxCaxCaAXaAYaAZaBaaBbaBcaBdaBeazMaBfaBgaBhaBiaBjaBkackackaafaaaaaaaaaaaaaaaaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaoDaoDaoDaoDaoDaoDaoDaafaoDaafaafaoDaoDaafaafakZakZarMawQakZakZaaaaaaaaaaaaaaaaBlaBmaBnaBnaBoaBpaBqaBraBsaBtayVaBvaBwaBxaByaBzayYaBAakZaaaaxNaBBaBCaBDaBEaBFaxNaaaaaaaaaaaaaaaaBGaBHaBIajQaBJaAjaBKaicaBJaAjaBLaicaBJaAjaBMaicaBNaBOaBPaicaBQaBRaBSaBTaBUazraBVaBWaBXaBYaBZaCaazvaCbaCcapEapEaCdaCeayraCfaCgaChayraCiaCjaCjaCkaClaCmaCnaswaswaswaswaswalZaCoaxCaCpaCqaCraCsaCtaCuaCvaCwaCxaCyaCzaCAaCBaCCaCDazKaCEaCFaCFazKaCDaCGackaafaaaaaaaaaaaaaaaaaaaoEaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaoDaoDaoDaoDaoDaafaafaafaoDaoDaoDaaiaaaaafaafaafaaaakZamkamkawQaiVaaaaaaaaaaaaaaaaaaaaaayUaCIaCJaCKaBpaBnaCLaCMaCNayVaCOaCPaCQaCRaCSayYazaakZaafaxNaCTaCUaCVaCWaCXaxNaaaaaaaaaaaaaaaaaaaAgaCYajQaCZaDaaDbajQaCZaDaaDbajQaCZaDaaDbajQaDcaDdaDeajQajQaDfaDgaylaDhaDiaDjaDkaDlaDmaDnaDoazvaECayrayrayraDqayrayraDraDsayrgbLaDtaDuaDvaDwaDxaDyaDzawjaDAatUatVaswaDBaROaxCaDDaAZaDEaBbaDFaDGaDHaDIaDJaDKaDLaDLaDMaDNaDOaDPaDQaDRaDRaDPaDSaDTaDUaDUazMaxCaxCaxCaaaaaaaoEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaDVaDVaDVaDVaDVaDVaDVaDVaDVaDVaDVavKakZakZaaaaaaaaaaaaaaaaaaayVayUayUayVaDWaBnaDXaDYaDZayVaEaaEbaEcaEdaEeayYmtQakZaaaaxNaEfaEgaEhaEiaxNaxNaaaaaaaaaaaaaaaaaaaAhaEjaAhaEkaElaEkaEmaEkaElaEkaEnaEkaElaEkaEoaEpaEqaEraEsaEtaEuaEvajQawfazvaEwaExaEyaEzaEAaEBazvaECayraEDaEEaEFaEGaEGaEHaEIaEJaEKaELaEMaENaEOaEPaEQaveaERaESaETaEUaswaEVbcVaxCaEWaEXaEYaEZaFaaFbaFcaFdaFeaFfaFgaFhaFiaFiaFjaFkaFlaFiaFiaFmaFnaFoaFpaCEaFqaFraFsaxCaafaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaafaafaaaaoDaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVaFuaFvakZaaaaaaaaaaaaaaaaaaaafaafaafayUaFwaFxaFyaFzaFAayVaFBaFCaFDaFEaFFayYaBuakZaaaaafaaaaFGaFHaFIaaaaafaaaaAhaAgaAgaAgaAhaAhaFJaFKaEqaFLaFMaFNaFOaFPaFQaFRaFQaFSaFOaFTaFUaFVaFWaFXaFYaFZaGaajQawfazvazvaGbaGcazvaGdazvazvaDpayrayrayraGeaGfaGgaGhaGiaGjaGkaGlbyzaGnaGoaGoaGpaGqaswaswaswaswaswaGraGsaxCaGtaGuaGvaGwaGxaGyaGzaGAaGBaGCaGDaGEaGFaGGaGGaGHaGIaGIaGJaGKaGLaGMaGNaGOaGPaGPaGQaxCaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaafaaaaaaaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVavKaGSakZaaaaaaaaaaaaaaaaaaaaaaaaaafayUaGTaGUaGVaGWaGXayVaGYaGZayYayYayYayYaHaakZaHbaHiaHbaHeaHfaHgaHhaHiaHbaAhaHjaHkaHkaHlaHmaHnaHoaHpaHqaHraHsaHtaHuaHvaHwaHuaHxaHyaHzaHAaHBaHCaHDaHEaHFaHGajQawfaHHazvaHIaHJazvaHKaHLaHMaHNayraHOaHPaHQaHRayraHSaHTaHUayraHVaHWaHXaHYaHXaHZaIaaIbaIcaIdaIeaswaIfaIgaxCaIhaIiaIjaIkaIlaCuaImaInaIoaIpaFpaIqaIraIsaItaIuaIvakBaIvaIuaIwaIxaFpaFsaIyaIzaIAaxCaafaafaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVavKaIBakZaaaaaaaaaaaaaaaaaaaaaaaaaafayVayVaHdaICaIDayVayVaIEaIFaIGaIHaIIaIJaIKaILaIMaINaIOaIPaIQaLfaIRaISaITaAhaIUaIVaIWaIXaIXaIYaIXaIXaIXaIXaIXaIXaIXaIXaIYaIXaIZaJaaJbaJcaLpaLpaJeaJeaJeaJeaJeaLpaJfaLpaJgaJgaJgaJgaJhaJgaECayrayrayraJiaJjayraJkayraJlayraJmaJnaJoawjaJpaJqaJrawjaJsaJtaJuaswaJvaROaxCaxCaxCaxCaxCaxCaCuaJwaInaGBaJxaJyaIqaJzaIsaItaJAaJBaJBaJBaJAaJCaJDaxCaCEaCEaCEaFsaxCaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaoEaoEaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVawQaoNaiVaaaaaaaaaaaaaaaaaaaaaaaaaafaafaJEaJFaJGaJHaJIaJJaJKaJLaJMaJNaJOaJPaJQaJRaJSaJTaJUaJVaJWaJXaJYaJZaKaaKbaKcaKdaKeaKfaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaKgaKhaKiaKjaLpaKkaKlaKmaKnaKoaKpaKnaKraOtaLpaKtaKuaKvaKwaKxaJgaKyayraKzaKAaGfaJjayraKBayraKCayraKDaGmaKEacPacPacPacPacPacPacPacPacPalZaKGaxCaKHaKIaKJaKKaxCaKLaEXaInaGBaKMaxCaIqaKNaJAaJAaKOaKPaKPaKQaJAaIwaKRaxCaCEaCEaCEaFsaxCaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaaaKSaKSaKSaKSaKSaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaDVaFtaFtaFtaFtaKTaFtaFtaFtaFtaDVavKaoNakZaaaaaaaaaaaaaaaaaaaaaaaaaKUaJEaPtaKVaKWaKXaObaKYaKZaMwaLbaLcaLdakZaLeakZakZakZakZakZaLgaLhaLiaLjaLhaLgaLgaLgaLgaLkaaaaaaaLlaLlaLlaLlaLlaLlaLlaaaaaaaIXaQaaJaaJbaLpaLqaRwaLvaLsaLtaLuaLvaLwaLxaLpaLyaLzaLAaLBaLCaJgaLDayrayrayraLEaLEgbLayrayrayrayraLFaLGaLHacPaLIaLJpvilGsaLKaLNaLOacPaLPaROaxCaKIaKIaLQaFsaLRaAZaLSaLTaGBaGCaFpaIqaLUaLVaLWaLXaLYaLYaLYaLZaMaaMbaFpaCEaCEaCEaMcaxCaafaafaoEaGRarsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaoEaoEaoEaoEaoEaMdaMeaMfaMgaMfaMhaMiaoEaoEaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVawQaoNakZaaaaaaaaaaaaaaaaaaaaaaaaaMkaMlaMkaMmaTLaMoaMpaMqaMraMsaMtaMuaMvakZaMxaMyaMzaMAaMzaMBaLgaMCaMDaMEaMFaMGaMHaMIaMJaMKaMLaMMaMMaMNaMOaMPaMQaMRaMSaMSaMTaMUaMVaHyaKjaLpaMWaOyaKnaLuaMYaKmaKnaJdaMXaLpaNbaNcaLAaNdaNeaJgaNfaNgaNhaNialIalIalIaNmaNnaNoaNpaNqaNraNsacPaNtdqCaNvaKFaNvbUuaQqacPaNyaDCaxCaNzaNzaFsaNAaLRaGuaNBaNCaNDaNEaNFaNGaNHaNIaNJaNKaNJaNLaNJaNMaNNaNOaFpaNPaCEaNPaxCaxCaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaaaKSaKSaKSaKSaNQaNRaNSaNTaNUaNTaNVaNWaNQaKSaKSaKSaKSaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaNXaaaaafaafaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVavKavEakZaafaaaaaaaaaaaaaaaaaaaaaaNYaNZaOaaObaMnaOcaVfaOdaKZaVgaOeaOfaOgakZakZakZakZakZakZaWCaWEaOhgyxaOjaOkaOlaOlaOlaOmaLkaaaaLlaOnaOoaOoaOoaOoaOoaOpaLlaaaaIXaOqaOraJbaLpaOsaOtaOuaOvaOvaOvaOwaOxaKqaLpaOzaOAaOBaOCaODaJgaOEaOFyhMyhMyhMaOHuogaOIaOJaOJaOKaOLaOMaONacPaOQaOQaOQaOQaNvaNvoeCacPaOUaOVaxCaNzaOWaOXaOYaxCaOZaEXaPaaGBaGCaFpaIqaPbaPcaPdaPeaPfaPfaPfaPgaPhaPiaFpaPjaCEaCEaPkaxCaafaafarsaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaPlaPmaPnaPnaPnaPnaPnaPoaPoaPpaPoaPoaPqaPqaPqaPqaPqaPraPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVavKakUakZaafaaaaaaaaaaaaaaaaaaaaaaKUaJEaPtaPuvvVaPvaSjaPxaPyaPzaPAaPBaPCaPDaPEaPFaPGaPHakZaPIaLgaPJaOiaPKaPLaPMaPMaPNaPOaLkaaaaPPaPQaOoaPRaPSaPTaOoaPUaPPaaaaIXaIZaJaaJbaLpaKsaSHaPXaPYaPZaPYaPXaQbaQcaLpaQdaQeaQfaQgaQhaJgaQitfCaNxxKxghajqyaQnraBalHapDaQoaQsaQtaQuaQvaiwaQyaQyaQzaQBizPaQCacPapPaDCaxCaxCaxCaxCaxCaxCaCuaQDaQEaQFaQGaQHaIqaQIaJAaJAaQJaQKaQKaQLaJAaJCaQMaxCaCEaCEaCEaFsaxCaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaQOaQPaQPaQPaQPaQPaQPaQQaQPaQPaQPaQPaQPaQPaQRaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQSaaaaaaaaaaQSaafaDVaFtaFtaFtaFtaQTaFtaFtaFtaFtaDVavKasEakZaaaaaaaaaaaaaaaaaaaaaaQVaNYaQWaOaaObaMnaOcaOblVcaSlaMwdRAaQXaQYaQZaRaaRbaRcaRdakZaReaRfaRgaOiaRhaRiaRjaRhaRkaRlaLkaaaaRmaRnaRoaRpaRqaRpaRoaRraRsaaaaIXaIZaRtaRuaLpaOtaSHaSHaRvaPZaRvaSHaRxaKsaLpaJgaRyaRzaRAaJgaJgaRBtfCpSwaOPaOPhralCkkHkdcdaOStdjlUkaUkaRHaRIaRJaRLgLfaRKbVNaNvaRMacPaMjaROaxCaRPaRQaRRaRSaRTaRUaEXaRVaGBaRWaJyaIqaRXaRYaRZaJAaSaaJBaJBaJAaSbaScaxCaCEaCEaCEaFsaxCaafaafaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaaaaaaaaaaaaaaaaaaQQaaaaaaaaaaaaaaaaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSdaaaaaaaaaaSdaaaaDVaSeaSeaSeaSeaSfaSeaSeaSeaSeaDVawQamkakZaaaaaaaaaaaaaaaaaaaaaaaaaSgaShaSgaSiaMnaPvaSjaSkaSjaSmaSntFuaSoaSpaSqaSraSsaStakZavKaLgaSuaOiaOiaSvaSwaSxaRkaSyaLkaaaaLlaSzaSAaRoaSBaOoaSCaSDaLlaaaaIXaSEaLnaLoaSFaSGaMXaSHaLraPZaLraSHaPWaSJaLpaSKaSLaSMaSNaSOaSPaSNaSQbWOaSRaSSaSTaSUagsaQxaQxagsaSVaSZaTaaTbaNwlgCaTdaTebVNaTgaThacPaTiaTjaxCaTkaTlaTmaTnaToaTpaTqaaMaTraIpaFpaIqaTsaTtaRZaIuaIvaTuaIvaIuaTvaTwaFpaFsaTxaTyaTzaxCaaaaaaaoEaGRarsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaMdaQNaMiaaaaaaaaaaaaaTAaTAaTBaTAaTAaaaaaaaaaaaaaMdaQNaMiaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaSdahaabuahaaSdaafaDVaTCaTDaTDaTEaTFaTGaTHaTIaTJaDVavKaoNaiVaaaaaaaaaaaaaaaaaaaaaaaaaKUaJEaPtaZZaMnvfZaObfvYaKZqfhaWDaLaaTMufIaTNaTOaTPaTQakZaTRaLgaTSaTTaTTaTUaTVaOiaRkaTWaLkaafaLlaLlaLlaTXaTYaTZaLlaLlaLlaafaIXaLmaUaaJbaUbaUcaMZaMZaMZaUdaMZaNaaSIaMZaUbaNjaUeaUfaUgaQkaUhaQkaQjaREjUZaUijUZaUjiUmiUmiUmiUmrKvlDxaUlaTbaUmhfOaUoancaUqaNvaQqacPaUraROaxCaUsaUtaUuaUvaUwaUxaUyaUzaUAaGCaGDaUBaUCaUDaUEaUFaUGaUGaUHaUIaUJaUKaGNaGOaULaULaUMaxCaafaaaaoEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaaaNRaQNaMiaaaaaaaTAaTAaTAaTAaUNaUOaTAaTAaTAaaaaaaaMdaQNaUPaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaSdaUQaURaUSaSdaafaDVaUTaUUaUUaUVaUWaUXaUYaUZaVaaDVaVbaVcakZaafaaaaaaaaaaaaaaaaaaaaaaafaafaJEaTKaVdpNppMCaVeaOcaLaaVhaViaVjaVkaVlaVlaVlaVlakZaVmaVnaVoaVpaVpaVqaVraVsaVtaVuaVvaaaaaaaaaaLlaLlaVwaLlaLlaaaaaaaaaaKgaKhaVxaJbaVyaVzaPVaVAaVBaSHaVCaVDaVEaOtaVyaVFaVGaVHaVIaVJaVKaQlaVLaVMaVNaVOaQlaQlaQlaQlaQlaQlaVPaVQaVRacPacPacPacPaVSacPacPacPacPalZaDCaxCaVTaVUaVUaRSaaVaVVaVWaVXaVYaVZaFgaWaaWbaWbaWcaWbaWdaWeaWfaWgaWhaWiaFpaCEaWjaWkaCEaxCaafaafaoEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaPlaWlaWmaWnaWoaTAaTAaWpaWpaWpaWqaWraWpaWpaTAaTAaWoaWsaWtaWuaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaSdaWvaWwaSdaSdtmXaDVaDVaWxaWxaDVaWyaWzaDVaDVaDVaDVaWAakZakZaafaaaaaaaaaaaaaaaaaaaaaaafaafaPtaWBaMndRZaOceTYaObaLaaWDaLaaWFbbCaWGaWHaWIaWJakZavKaLgaWKaWLaWMaWNaWOaWPaWQaWRaLkaWSaWTaWSaWUaWVaWWaWXaWUaWSaWTaWSaWYaWZaXaaXbaXcaLpaLpaLpaLpaXdaXeaXfaKsaXgaLpaNjaXhaQmaXiaXjaXjaXjaXjaXjaXjaXjaXkadHaXlaXmaXnaXoaXjiKtaXpaXjaXqawyawyaXraXsawyawyawyawyawAaxCaxCaxCaxCaxCaXvaXwaXxaXyaXzaXAaXBaXBaXCaXBaXDaXBaXEaXBaXFaXGaXGaXFaXBaXBaXHaxCaxCaxCackaafaoEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaXIaaaaaaaTAaWpaXJaXKaXLaXMaXNaXOaXPaWpaTAaaaaaaaQRaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaXQaXRaXSaXTaXUaXVfaqaXWaXXaXXaXYaXZaYaaYbaYbaYcaYdaYeaYfakZaaaaaaaaaaaaaaaaaaaaaaaaaafaPtaYgaTKiOQaYhaOcaYiaSlaLaaYjaYkaYlaYmaYnaYoaYpaYqakZawQaLgaLgaLgaLhaLhaYraLkaYsaYtaLkaYuaYvaYwaWUaYxaYyaYzaWUaYAaYBaYCaYDaYEaYFaYGaYHaYIaYJaYKaLpaLpaVyaYLaVyaLpaLpaUhaYMaYNaUhaYOaYPaYQaYRaYSaYTaXjaXjaXjaXjanlaXjaXjaXjaXjaXjaXjaDCapPapQaYUaYUaYUaYUaYUaYUaYUaYVaYWaYXaYYaYVaYZaZaaYVaZbaZcaCuaxCaZdaZdaZdaZeaZfaZdaZgaZhaafaaaaZiaZjaZkaZlaZkaZmaZkackaafbBOaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaaaTAaTAaWpaZnaZoaZpaZqaZraZsaZtaWpaTAaTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaXQaZuaZvaZvaZwaZvaZvaZvaZxaZyaZyaZzaZAaZAaZAaZBaZCaZDaZEakZaaaaaaaafaafaaaaaaaafaafaafaPtaZFaZGdpPaZHbdaaZIaZJaZKaZLaZMaZNaZOaZPaZQaZRaZSakZaZTaZUaZVaZWaZXaZYbaAbaababbacbaxbaubafbaubagbahbaibajbakbaebalbatbatbZObapbZMbatbatbatbaubaubaubavbawbaubaubaxbaubaybazbaubaubaubaAbaBalZaIfbaHbaDbaHbaFbaGbaHbaIbaHbaJbaKawybaLbaMapQaYUbaNbaObaPbaQbaRbaSaYVbaTbaUbaUbaVbaUbaWaYVbaXbaYbaZbbabbabbabbabbabbbaZdbbcbbdbbebbebbfbbgbbgbbfbbgbbgbbhbbiaaawzpaafaaaaaaaaiaagaaiaafaaiaagaagaaiaaiaagaagaagaaiaoEaoEaoEaoEaoEaMdaQNaMiaaaaTAaWpaWpbbjaZoaWpbbkaWpbblbbmaWpaWpaTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaXQbbnaXQaSdaXQbboaXQaZuaZvaZvbbpaXQbboaXQaZubbqbbrbbsakZakZakZakZaiVaiVaiVakZakZakZaPtbbtbbubbvbbwbbxbbxbbxbbybbzbbAbbBaVlaVlaVlaVlbbCakZakZbbDakZakZbadbbFbbGbbHbbIbbJbbKbbLbbMbbNbbObbJbbPbbLbbHbbLbbQbbRbYubbTbbUbbVbYybYzbbLbbLbbLbbLbbYbbZbbHbbLbbKbcabcbbbLbbLbbLbbLbccbcdbcebcebceaVSbcebcebcealZbcfalZaROalZalZbcgbcgbcgbcgbchbcibcibcjbckbclaYVbcmbcnbcobcpbcqbcraYVbcsaaXbctbbabcubcvbcwbcxaZebcybczbczbcAaZjbbfbcBbcBbbfbcBbbgbcCbcDaaawzpaafaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaaaTAaWpbcEbcFbcGbcHbcIbcJbcKbcLbcMaWpaTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaafaaaaafaaaaXQbcNaXQbcObcObcPbcQaXQbcNaXQaXQaSdbcRbcSbcTasUbcUbcUasVbcUbcUbcUbcWbcUbcXbcYbcZbdabdbbdcbddbdebdfbdgbdhbdibdgbdjbdkbdgbdmbdnbdobdpbdqbdrbdsbdtbdubdvbdvbdwbdxbdybdzbdAbdBbdCbdDbdDbdDbdDbdDbaqbYtbdEbdFbZVbbXbZUbdGbdGbdGbdGbdGbdHbdIbdJbdKbdGbdLbdHbdGbdGbdMbdNbdObcebdPbdQbdRbdSbdTbcebdUbdValZaROalZaaabcgbdXbdYbcgbdZbeabebbecbedbeeaYVbefbegbehbeibejbekaYVbelbembenbbabeobepbeqbcxberaZdbesbbcbetbbdbbfbbgbbgbbfbbgbbgbbhbbiaafbBOaafaafaaiaaibeuaoEaoEaoEaaiaoEaoEaoEaoEaaibeuaoEaoEarsaoEaoEaoEaMdaQNaMiaaaaTAaWpaWpbevaZoaWpbewaWpbblbexaWpaWpaTAaaaaMdaQNaMiaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaaaaXQkhXaXQaXQaXQaXQaXQaXQkhXaXQaaaaSdbezbeAbeBbeBbeBbeBbeBbeBbeBbeBbeCatdbeEbeEbeEbeGbeFbeEbeEbeEbeHbeEbeIbeJbeKbeLbeMbeNbeObePbeQbgnbeSbdrbeTbdtbeUbeVbeVbeWbeVbeXbeVbeYbeZbeYbfabfabfabfabfabfabfabfabfabfabfabfabfabfabfabfabfabfbbfbbfcbfbbfbbfbbfbbfbbfbbfdbfebffbcebfgbfhbfibfjbfkbcebflbfmalZaROalYaaabfnbfobfpbfqbfrbfsbftbfubfvbfwaYVbfxbfybfzbfzbfAbfBaYVbfCbfDbfEbbabfFbfGbfHbcxbfIbfJbfKaZgbfLackbfMbcDbfMbcDbfMbcDbfMbcDaaarWfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaoEaaaaNRaQNaMiaaaaTAaTAaWpbfNaZoaWpaWpaWpbblaZtaWpaTAaTAaaaaMdaQNaNWaKSaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSdbezbfObfPbfQbfRbfSbfTbfUbfVbeBbfWbfXbfYbfZbdlbgbbgabhMbgcbgbbgdbeEbgebgfbggbghbgibgjbgkbglbgmbgnbgobgpbgqbgrbgsbeVbgtbgubgvbgwbeVbgxbgybgzaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbfbbgAbgBbgCbgDbgEbgFbgGbfbbgHbgIbgJbcebgKbgLbgMbgNbgObcealZalZalZbgPalZaaabcgbgQbgRbcgbgSbgTbgUbgVbgWbgXaYVbgYbgZbhabhbbhcbhdaYVaCubheaCubbabhfbhgbhhbcxbhiaZgaZgaZgbhjbhkbhlbhkbhmaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaKSaKSbhnaNRbhobhpaWnaWoaTAaTAaWpaXJaZobhqbhrbhsbhtaXPaWpaTAaTAaWoaWsbhubhvbhwaPsaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQbezbeAbhxbhybhzbhAbhBbhCbhDbhEbhFbhGbhHbhIblpbhJbhKbhLbeEbeEbeEbeEbhNbhObhPbhQbhRbdgbhTbhUboGbsRbhVbhWbhXbdtbhYbeVbhZbiabibbicbidbiebifbigaafaafbihbiibijbikbilbimbiibikbilbimbijbijbinaafaafbfbbiobipbiqbirbiqbisbitbfbbiubdtbivbiwbcebixbiybizbcebcebiAbiBalZbiCalZbiDbcgbcgbcgbcgaYUaYUaYUbiEbiFaYUaYVaYVaYVaYVaYVbiGbiHaYVbiIbiJbiIbbabiKbiLbiMbcxbiNbiOahaaaaaaarWfrWfbBObetbBObBObBObBObBOaafaafrWfaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaafaafaafackbiQbiRbiSbiTbiUaXIaaaaaaaTAaTAaWpbiVbiWaZpbiXbiYbiZbjaaWpaTAaTAaaaaaabjbbjcaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQbezbjdbeBbjebjfbjgbjhbjibjjbeBbjkbjlbjmbjnbjobjpbjqbjrbjsbjtbjubjvbjwbjxbjybjzbjAbjBbjCbjDbjEbjFbjGboNbsSbdtbhYbeVbjIbjJbjKbjLbeVbjMbjNbgzaafaafbjObjPbjQbjRbjSbjTbjUbjVbjWbjXbjYbjZbkaaafaafbfbbkbbkcbkdbkebkfbkgbkhbfbbkibkjbkkbklbkmbknbkmbkobkpbkqbkmbkmbkmbkrbkmbksbktbkubkvbkmbkwbmfbksbkobkrbkybkzbkxbkAbkBbkCbkDbkEbkFbkGbkHbkIbkJbkKbkLbkMbkNbiNbiNadFaaaaaaaaabkOaafbkPaaaaaaaaaaaaaafaaarWfrWfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaackbiQbiRbkQbiRbkRaMiaaaaaaaTAaTAaWpbkSbkTbkUbkVbkWbkXbkYaWpaTAaTAaaaaaaaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkZaXQblablbblcbldbleblfblgblfbfPbfPblhblibeHbeEbljblkbllblmblnblobeEmRPblqblrblslOJbltbdgblublvblwblxblybgpdvQbdtbhYbeVblzblAblBblCbeVblDblEbgzbilblFbilblGblHblIblJblIblKblIblJblIblLblMbilblFbilbfbblNblNblNblOblPblQblRbfbblSblTblUblVblWblXblWblYblWblZblWblWblWbmablWbmbbmcbmdbmeblWblWblWbmgbmhbmabmibmabmjbmkbmlbkCbmmbmnbmnbmobmpbmnbmnbmqbmrbmsbmtbiNbmuahaaaaaaaaaaaaaaafbkPaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaQPaQPbhnaQRbmvaMiaaaaTAaTAbmwbmwbmxbmybmybmzbmxbmxbmxbmAbmAaTAaTAaTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQbmBbmCbmDbmEbmFbmGbmGbmHbmIbmJbmKbmLbmMmDabmNbmObmPbmQbmRbmSbmTsMVbmUbmVbmWbmXbmYbdgbmZbnabnbbncbndbdrbnebgIbnfbngbngbngbngbngbeYbnhbnibeYbilbnjbnkbnlblJblJbnmblJbnnblJblJbnmblJbnobnpbnqbilbnrbnsbntbnubnvbnwbnwbnxbfbbnybnzbnAbnBbnCbnDbnCbnEbnCbnFbnCbnCbnGbnCbnCbnHbnIbnCbnJbnKbnLbnCbnHbnEbnCbnNbnObnPbnQbnRbnSbnTbnUbnVbnWbmsbnXbnXbnYbnZboabobbkCbkCbkCbkCbocaaaaafaafbetaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbodboebofaKSbogbohbmvaUPboiaTAbojbokbolbmxbombonboobopboqbmxborbosbotbouaTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQbmBbovbowboxboybozboAboBboCboxboDboEboFbeEbeEmQAboHboIbeEbeEbeEbdgbdgbhSboJboKbhSboLbdrboMboNjTgbgpboObbEbdtboPbngboQboRboSbngboTboUboVboWboXboYboZbpabpbbpcbpdbpebpfbpdbpdbpgbpbbphbpibpjbilbfbblNblNblNbpkblNblNblNbfbbplaYFbpmbpnbpobppbpobpqbprbprbprbprbprbprbpsbpsbptbpsbpsbprbprbprbprbprbpsbpwbpxbpybpzbpAbpBbpCbpDbpEbpFbnXbpGbpHbpIbnZbpJbkCbkCbpKbpLbpMaPsaafaafaaabkPaafaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaabpNaaaaafaMdbpObpPbpQbpRbpSbpTbpUbpVbpWbpXbpYbpZbqabqbbqcbqdbpYbqebqfbqgbqhaTAaKSaNRaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSdbqibqjbqkbdrbqlbqmbqnbqmbqopDlbqpbqqbqrbqsbqtnXNbqvbqwbqxbqubqybqznpxppvtTSbqAfltbqBbqCbqDbqEbqFncAbqGbqHbqIbhYbqJbqKbqLbqMbngbngbngbngbngbilbqNbqObqPbqQbqRbqSblJbqTbqUbqVbqWbqQbqXbqYbqZbrabfbbrbbrcbrdbrebrfblNbrgbfbbrhaYFbribrjbrkbrlbrmbpqbrnbrobrpbrqbrrbrsaQUaRNbrvaZdbrwbprbrxbrybrzbprbrBbrCbpsbrDbrEbrFbrGbrHbrHbrHbrIbrJbnXbnXbrKbrLbrMbrNbrObrPbrQbrRbrSbrTbrTbrTbrUbrVbrTbrTbrVbrTbrTbrTbrTbrTbrTbrVbrTbrTbrTbrTbrTbrTbrVbrWbrWbrXbrYbrYbrYbrZbsabsbbscbsdbsebsfbsgbshbsibsjbskbslbsmbsnbsobspbsqbsrbssbstbsubsvbswbsxbsyaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaXQflJaXQaXQaXQaXQaXQaXQflJaXQaaaaSdbszbsAbsBbdrafZbsCagQbsCbsDbdrbsEbsFbsGbsHbsIbsJbsKbsHbsHbsLbsMbsNbsObsPbsHbsQbsHxPCbsHbsHbsHiyqbsTbsUbsVbsWbsXfNdbsYbsZbtabngbtbbtcbtdbtebtfbqWbtgbqRbthbtibtjbtkbtlbtkbtmbtnbtobqWbtpbtqbtrbfbbtsbttbtubtvbtwbfbbfbbfbbtxbtybtzbpqbtAbtBbtCbpqbtDbtEbtFbtGbtHbtIbtJbtKbrAaZdbYUbprbtNbtObtPbprbYUbtUbpsbpybtVbtWbkCbtXbtYbtZbuabubbucbudbuebufbugbkCbkCbuhbuibujaPsaafaaaaaabkPaafaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaabukaaaaafaMdbulbumbunbuobupbuqburbusbutbuubuvbuwbuxbuybuzbuAbuvbuBbuCbuDbuEaTAbjbbuFaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaafaaaaafaaaaXQaURaXQbuGbuHbcObuIaXQaURaXQaXQaSdbezbqjbuJbdrbuKbsCbsCbsCbuLbdrbuMbuNbuObuPbuQbuRbuSbuTbuUbuVbuWbuXwQkbuYbuZbuRbvabvbbvcgfcbvdtXIbuQbvebvfbvgbsXbngbvhbvibvjbvkbvlbvmbvnbvobtfbvpbvqwnWbvrbvrbvsbvtbvubvvbvwbvrbvrwnWbvxbvybilbfbbvzbvAbvBbvCbvDbfbbvEbvFbvGbvHbtzbpobvIbvJbvKbpqbvLbvMbvNbvObprbprbprbprbvPbprbprbprbtRbtSbvQbprbaEbvTbpsbvUbtVbvVbkCbvWbvWbvWbvWbvXbvWbvWbvYbvZbwabkCbwbbwcbkCbwdbkCaafaafaaabkPaafaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbweboebwfbwgbogaQRbmvaQOaQPaTAaTAbwhbwibwibwibwjbwkbwibwibwibwiaTAaTAaTAaTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaXQbbnaXQaSdaXQbeyaXQaXRaXSbwlbwmaXQbeyaXQbrtbwnbwobqjbqkbdroUTbwpbqnbwpeglpDlbwqbwrbwsbdrbwtbwubwvbdrbwwbwxbwwbwybwybwybwzbwAbwybwybwybwybwybwybwybwBbwCbwDbwEbwFbwGbwHbwIbwJbwIbwKbwLbwMbwNbwObwPbwQbwRbwQbwQbwSbwTbwUbvrbvrbwVbvrbwWbwXbfbbwYbwZbxabxbbxcbxdbfbbxebeYbxfaYFbxgbpqbpqbpqbpqbpqbxhbxibprbprbprbxjbxkbprbxlbxmbxnbprbnMbtSbpubprbvRbxsbxtbxubxvbxwbxxbxybxzbxAbxBbxCbxDbvWbxEbxFbxGbxHbxIbxJbxKbxLbxMackaafaafbetaafaafaafaafaaaaafaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaoEaMdbmvaMiaaaaaaaTAbxNbwibxObxPbxQbxRbxSbxTbxUbwiaTAbxVaaaaaaaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaXRaXSbxWbxXbxYaXSaXSbxZaZybyabybbycbycbydbyebyfbygbyhbyiboxbyjbykbylbymbyncwibyjbyobypnOebyqbyrbyqbyqbysbytaXubwybyvbCobyxbyybOvbwybyAbyBbwybyCbyDbwybyEbfebhYbngbyFbyGbyHbyIbyJbyKbyLbyMbtfbyNbyObvrbyPbyQbyRblJbnmbwXbySbyTbyUbvrbyVbyWbfbbyXbyYbyZbzabzbbzcbzdbzebeYbgHbzfbzgbprbzhbzibzjbzkbzlbzmbznbprbxobxpbxqbxrbzsbztbzubprbprbzobprbprbprbvTbpsbzybzzbzAbzBbzBbzBbzBbzCbzBbzBbzBbzDbzEbzFbzGbzHbzIbzJbzKbzLbzBbzBbzBbetaaaaaaaaaaafaaaaafaaaaafaaaaaiaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaoEaMdbmvaNWaKSaaaaTAbwhbzMbzNbzObzPbzQbzNbzRbzSbwiaTAaaaaaaaKSaKSbohaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaZuaZvaZvbzTaZvbzUbzVbzWbzWbzXbzWbzYbzZbAabAbbAcbAdbAebAfbAgbAhbAibAjbAkbAlbAmbAnbAobApbAqbArbAsbrubyqbAubAvbBrbwybAxbCobyxbPVbywbwybAAbABbwybAAbABbwybACbgIbnfbngbngbADbngbngbngbADbAEbngbngbAFbAGbAHblJbtkbtkbAIbAJbAKbALbAMbANbAObAPbAQomFbiqbASbATbAUbAVbAWbfbbAXbeYbAYaYFbAZbBabBbbBcbBbbBbbBbbBebBbbBfbzpbzpbzrbzpbBibBkbBlbBjbBmbzpbBgbBobprbGFbpsbBsbBtbBubBvbBwbBxbBybBzbBAbBBbBCbBDbBEbBFbBGbBHbBIbBJbBKbBLbBMbBNbzBbetaafaafaafaafaafaafaaaaaiaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaoEaPlbBQbBRbBSaWnbBTaTAbwibBUbBVbBWbBXbBYbBZbCabwiaTAaWoaWsbCbbhvbhvbCcaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaXQaSdaXQbbnaXQaSdaXQaXQaXQaSdaXQtmXaSdaSdbCdbCebJmbCfbChbChbChbChbCgbCgbCibCgbCgbCgbyqbyqbCjbCkbyqbyqbyqbClbCmbwybOwbCobyxbCpbCqbwybCrbwybwybCsbwybwybCtbdtbCubCvabdbCwbCxbCybCzbCwbCAbCBbCCbwXbCDbwQbCEbtkbCFbCGbCHbCIbCJbtkbCKbvrbCLbCMbfbbCNbCObiqbCPbCQbCRbfbbCSbeYbfdbCTbAZbprbCUbCVbCWbCVbCXbCYbCZbDabBgbBpbtLbzpbtMbtQbBqbDbbDcbDdbDebDfbprbvTbpsbDjbDkbDlbDmbDnbDobDpbDqbDrbDsbDtbDubDvbDwbDxbDybDzbDAbDBbDCbDDbDEbDFbetbDGbDGbDGbDGbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaoEaaabDHbDIaQNaMiaaaaTAbwibDJbDKbzNbDLbDMbDNbDObwiaTAaaaaMdaQNaXIbjbbDPaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaXQbDQbezbDRrJHbDSbFBbFBbFBbDVsokqKobFEbDZbEabCgbEbbEbbEcbEdbEebEfbyqmqnbEgbwybEhbCobyxbCnbEibEkbCobElbEmbCoisxbEobwCbdtbhYbEpbEqbErbEsbEsbEsbEsbEtbCCbEubEvbEwbilbilbExbEybEzbEAbEBbECbExbilbilbEDbEvbEEbfbbARbfbbfbbfbbfcbfbbEFbEGbEHbEIbAZbEJbEKbEKbEKbELbEKbEMbEKbtTbBgbKkbzqbDgbKkbBdbDhbDibEObDgbzpbEPbprbEVbpsbEWbDkbEXbEYbEZbFabFbbFcbFdbFebFfbFgbFhbFibDxbFjbFkbFlbFmbFnbFobFpbFqbFrbFsbFtbFubFubDGaafaaabBPaaabBOaaaaaiaaiaafaaiaagaagaaiaaiaagaagaagaagaagaaiaagaagaoEaoEaMdaQNaMiaaaaTAbFvbFvbFvbFwbFxbFwbFvbFvbFvaTAaaaaMdaQNaMiaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFyaXQaXQbezbDRaSdbFzbFAbFBbFBbFCbCgbHqbFDbDWbOmbCgbFGbFHbFIbFJbyqbyqbyqbFKbFLbwybFMbCobyxbyybFNbFNbFNbFNbFNbFNbFNbFPbFQbFRbFSbFTbFUbFVbFUbFUbFUbFVbFWbFUbFXbFYbFZbGabGbbGcbGdbGdbGebGfbGdbGgbGhbGibGjbGkbGlbGcbGcbGmbGcbGnbGobGcbGpbGqbGrbGsbGtbGubBbbGvbBbbBbbBbbGwbBbbGxbzpbzpbzrbzpbzpbERbESbzpbEUbzpbzpbGybprbvTbpsbGGbGHbvVbGIbGJbGKbGLbGMbFabFabGNbGObDqbGPbGQbGRbGSbGTbGUbGVbGWbGXbGYbetbGZbHabFubHbbDGaafaaabBPaaabBOaaabBPaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaaaTAbHcbHdbHebFwbHfbFwbHgbHdbHhaTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHibHjbHkbHlbezbHmaSdbHnbHobHpbFBbDUbCgunZngggCybHrbCgbyqbHsbyqbEdbHtbHubyqshZbHwbwybHxbCobHybHzbHBbHBbHCbFNbFNbFNbFNbFPbwCbHDbHEbHFbHGbHHbHGbHIbHJbHKbHLbHMbHNbHObHPbHQbHRbHQbHSbHSbHTbHUbHSbHVbHWbHXbHYbHZbIabIbbIcbIdbIebIfbIgbHZbIhbIibIjbIkbIlbImbInbIobIpbIqbIrbIsbInbItbGzbGAbGBbzpbGCbzpbGDbGEbIubIvbIwbIxbprbvTbpsbIGbIHbIIbIJbIKbILbILbIMbILbINbIObIPbIQbIRbISbITbIUbIVbIWbIXbIYbIZbJabJbbJcbJdbFubJebDGaafaaabBPaaabBOaaabeubBObBObBObBOaairWfrWfbBObBOaaibBOrWfbBOaaiaoEaagaoEaMdaQNaMiaaaaTAbJfbJgbJhbFwbJibFwbJhbJgbJjaTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQaXQaXQbezbJkaSdbJlaSdaSdbCgbCgbCgbDWbDXhbubFFbCgbJnbJobyqbJpbyqbyqbyqbCmbClbJqbCobCobyxbJrbJsbCobJubCobJvbCobCobEobwCbdtbJwbJxbJybJzbJAbJBbJybJybJCbJCbJDbJEbJCbJFbCCbJGbJHbJIbJJbJKbJHbJLbCCbJFbJMbJNbJObJPbJMbJMbJQbJRbJSbJMbJTbJUbJVbJWbJXbJYbJZbKabJZbKbbKcbBbbBbbBhbENbBgbIybGAbKfbKebBnbIzbIAbGAbICbEQbprbvTbpsbKmbKnbKobzKbKpbKqbKqbKqbKqbKrbKsbKtbDCbKubGQbKvbKwbKxbKybKzbKAbKBbGYbetbDGbDGbDGbDGbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEbKCbKDaMiaaaaTAbKEbJgbJgbKFbKGbKHbJgbJgbKIaTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaXQbKJbezbKKbwwxmmbvSbKMbCgbKNbKOvFkbKPbDWbDWbCgbKQbKRbyqbKSbKTbKUbyqbKVbKWbwybOwbCobyxbyybCobEnbEjbKZbLabLbbwybwybLcbLdbJwbJybLebLfbLgbLhbLibLjbLkbLlbLmbLnbJCaafbEqbLobJHbJHbLpbJHbJHbLqbLraafbJMbLsbLtbLubLvbJMbJMbJMbJMbJMbLwbeYbJVbLxbLybprbLzbLAbEKbLBbLCbEKbEKbETbENbLDbIBbDgbIEbtMfqebIDbKdbKgbKhbKisKKbLJbpsbLKbLLbLMbzGbLNbLObLPbLQbFdbLRbLSbLTbLUbLVbLWbLXbLYbLZbMabMbbMcbMdbFqbMebMfbMgbMhbMhbDGaafaafbMiaafbMjaafbBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbKDaMiaaaaTAbMkbMlbMmbJgbMnbMobMpbMqbMraTAaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaXQaSdaXQbbnaXQaSdaXQaXQaXQaSdaXQaSdaSdaSdbMsbMtbMubMvbMwbMwbCgbMxbMybMzbMAbMBbMCbCgbyqbyqbyqbyqbyqbyqbyqmqnbAwbwybMDbCobyxbyybCobCobMFbCobMGbMHbwybMIbwCbdtbMJbJybMKbMLbMMbMNbMObLjbMPbMQbMRbMSbMTaafbEqbMUbMVbMWbMXbMVbMWbMYbLraafbMZbNabNbbNcbNdbNebNfbNgbNhbJMbQBbeYbNjbzfbNkbNlbNmbNmbNnbNobNpbNqbNrbNmbNsbNmbKjbNukRUbKkbLFbLEbzvbNybzwbzvbzvkiebNzbNzbNBbNzbzBaaObNCbNDbNEbzDbNFbNGbNHbNIbNJbNKbNLbNKbNKbNMbNNbNObNPbGYbetbGZbNQbNRbNSbDGaafaaabBPaaabBOaaabNTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbNUbNVaWoaTAaTAbNWbNXbJgbNYbMobNZbOaaTAaTAaWoaWsbObaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaXRbOcbxWbOdbxWaXSaXSbOeaXSbOcaXSbOfbOcaXSbOgbOhbwwxmmbCmbMwbCgbOibKPbOjbOkbOlbOmbCgbOnbOobOpbOqbOrbOsbwwmqnbOtbwybKXbCobyxbyybCobCobOxbOubCobOybwybOzbwCbdtbJwbJybOAbOBbOCbODbOEbLjbOFbOGbOHbOIbJCbOJbOKbOJbOKbOKbOLbOKbOKbOJbOKbOJbJMbOMbONbOObOPbOQbORbOSoDKbJMbOTbeYbOUaYFbLybNmbOVbOWbOXbOYbOZbPabPabPbbPcbNmbNmbNmbNmbNmbNmbNmbzvbPdbPebPfbPgbAtbPibPjbPkbPlbNzaZgaZgaZgaZgbzBbPmbPnbPobIUbPpbPqbPqbPqbPrbPsbMabPtbPubJabJbbJcbPvbMhbPwbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbKDaMiaaabxVaTAbPxbJgbJgbPybPzbPAbPBaTAbxVaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaZuaZvaZvaZvaZvaZvbPCbPDbzZbzWbzWbPEbPFbPGbPHbPIbwwycObPJbMwbCgbDYbPLbDWbPMbPLbPNbCgbPObPPbPQbPRbPSbOrbwwbClbPTbwybPUvpxbyxbPXbPWbPYbPZbQabQbbQcbwyaYwbwCbdtbQdbJybQebQfbQgbQhbLjbLjbQibQjbQkbQlbJCbQmbQnbQobQpbQqbQrbQsbQpbQtbQubQvbQwbQxbONbQybQzbJMkhdbQAwdcbJMbQBbeYbQCaYFbQDbQEbQFbQGbQHbQIbQJbQKbOXbQLbQMbNmbQNbQObQPbQObSrbNmbQRbQSbQTbQUbzwuXKbzxbQVbQWbQXbNzbQYbQZbRabRbbzBbPmbRcbRdbRebRfbIUbIUbIUbRgbRhbRhbRibRjbRkbRlbDGbDGbDGbDGbDGaafaaaaaiaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbKDaMiaaabxVaTAbRmbRnbRobRpbRqbRrbRsaTAbxVaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaXQbRtbRtaXQaXQaXQaSdaXQaSdaXQaSdaSdbwwbRubwwbwwbwwxmmbOtbMwbCgbPNbRvbRwbPMbRwbRxbCgbRybRzbMwbFLbRAbRBbwwmqnbwybwybwybwybRCbRDbwybwybwybwybwybREbwybwybACbgIbRFbJybRGbRHbRIbRJbRKbLjbRLbRMbQkbRNbRObRPbRQbRRbRSbRTbRRbRUbRVbRWbRXbRYbQwbRZbONbSabSbbScbSdbSebSfbJMbSgbeYbShaYFbLybSibSjbSkbSlbSmbSnbSobSpbQLbSqbNmbSrbSsbStbSubQQbNmbSvbSwbSxbSybSzbSAbNzbSBbSCbSDbNzbSEbSFbSGbSHbzBbSIbSJbSKbIUbIUbIUbIUbIUbIUbIUbIUbSLbSMbFqbSNbMfbSObSPbSQbDGaafaaabBPaaabBOaaabBPaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEbKCbKDaMiaaaaaaaTAaTAaTAaTAaTBaTAaTAaTAaTAaaaaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaXQbSRbcNaXQaaaaafaaaaaaaaaaafaaaaaabwwbSSbSTbvSbSVbSWbCmbSXbCgbCgbCgbCgbSYbCgbCgbCgbSZbPJbCmbMwbTabTbbwwmqnbwyaxubTebTfbTgbThbTibCobTjbwybTkbTlbTmbwybwCbdtbTnbJybMKbQfbTobTpbMKbLjbTqbTrbTsbTtbRObTubTvbTwbTxbTybTzbTAbTvbTBbTCbTDbQwbTEbTFbTGbTHbTIbTJbTKbTLbTMbTNbeYbTOaYFbLybSibTPbTQbTQbTRbTSbTTbTUbTVbTWbNmbTXbSsbTYbTZbUabNmbUbbUcbUdbUebzvbKlbNzbNzbNzbNzbNzbUfaZdaZdbUgbzBbSIbSJbSKbIUbIUbIUbIUbPsbIUbIUbIUbUhbUibGYaafbGZbUjbUkbUlbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbKDaMiaaaaaaaaaaaabxVbxVbUmbxVbxVaaaaaaaaaaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaXQbUnbUnaXQaafaafaafaafaafaafaafaafbwwbUojgnjgnjgnbUqfSSbMwbCmbKMbDTbBrbUrbUsbOtbwwbwwbwwbwwbwwbUtbwwbwwmqnbwynPGbJvbUvbUwbUwdQjbTibUybwybUzbUAbUBbwybyEbdtbUCbJybMKbUDbUEbUFbMKbLjbUGbUHbUIbUGbRObUJbUKbULbUMbUNbUObUPbUQbURbUSbUTbQwbUUbUVbUWbUXbOQbUYbUYbUZbJMbVabeYbVbbCTbLybNmbVcbVdbVebOXbVfbVgbQIbVhbVibVjbVkbVlbVmbVnbVobNmbzvbzvbzvbzvbzvbKlbpsbVqbVrbfIaZdbVsberbVtaZdbzBbzBbVubSKbIUbIUbIUbIUbIUbIUbIUbIUbVvbVwbJabVxbJcbVybSPbVzbDGaafaaabBPaaabBOaaabeuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaaaaaaaaaaaaaaaaaaQQaaaaaaaaaaaaaaaaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabVAaaaaaaaaaaaaaaaaaaaaaaaaaaabwwbwwbwwbwwbTbbVBbVHbVCbVHbVEbVHbVCbVFbVGbVHbVHbVHbVIawxawxbVLbHwbCmmqnbwynhTbOubVObVPbVQbVRbVSbVTbwybVUbVVbVWbwybVXbdtbJwbJybJybVYbVYbVZbJybJAbJCbWabWbbJCbJCbWcbWdbWebOKbWcbWcbWcbOKbWfbWdbWcbJMbJMbJMbJMbJMbJMbWgbWgbWgbJNbWhbeYbWiaYFbWjbWkbWlbWlbWlbWmbWnbWlbWobWpbWlbWlbWlbWlbNmbWqbWrbWsbWtbWubWvbxybWwbWxbpsbSGbWybWzaZdbWAaZdaZdbWBbzBbWCbWDbSKbIUbIUbIUbIUbIUbIUbIUbIUbWEbWFbGYaafbDGbDGbDGbDGbDGaafaafbNTaafbMjaafaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaNWaKSaKSaKSaKSaKSaKSbWGaKSaKSaKSaKSaKSaKSbohbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaabWHbWHbWIbWJbWHbwwbWKbwwbwwbwwbWLbWMbWMbWMbWMbWMbWMbWMbHvbWNbKWbwybCobWPbWQbWRbWSbVRbWTbWUbwybwybwybwybWVbwCbWWbWXbWYbWZbXabXabXabXbbXcbXdbXabXabXebXfbWYbWYbXgbXhbXibXibXjbXibXkbXlbXlbXmbXnbXobXpbXqbXrbXabXabXabXbbXsbXlbXtaYFbXubXvbXwbXxbXybXzbXAbXBbXCbXzbXDbXEbXFbXGbNmbXHbXIbXJbXKbXLbXMbXNbXObXPbpsbpsbpsbpsbpsbXQbXRbzBbzBbzBbXSbWDbSKbIUbIUbIUbIUbIUbIUbIUbIUbXTbXUbFqbSNbMfbXVbXWbXWbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaPlbXXaPnaPnaPnbhvbhvbXYbXYbXZbXYbXYbhvbhvbhvbhvbhvbYaaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaabWHbYbbYcbYdbWHbvSbYebPSbPhbwwbYgbWMbYhbYibYjbYkbYlbWMbCmbClbCmbwybwybwybwybwybwybwybwybYmbwybCmbDTbwwbYnbwCbYobYpbbHbbLbbLbbLbbLbbLbbKbbLbYqbYrbYsbbJbbLbbLbsVbbLbYvbYwbYxbbLbbLbbLbbLbbLbYAbYBbbHbbLbbKbbLbbLbbLbbLbYCbbLbYqbYDbYEbYFbYGbYHbYIbYHbYJbYJbYKbYLbYMbYJbYIbYNbNmbNmbNmbNmbYObYPbYQbYQbYRlWEbYTbYUbYVbYWbpsbYXbYYbzGbYZbZabZbbZcbSKbIUbIUbIUbIUbIUbIUbPsbIUbZdbWFbGYaafbGZbZebZfbZgbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaabDPbjbbjbbjbbDPbDIaNSbZhbZibZhaNVaXIbDPbjbbjbbjbbDPaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbWHbZjbZkbZlbWHbMwbZmbZnbwwbwwbZobWMbZpbZqbZrbZsbZtbZubZvbZwawxbVKbVKawxawxawxbZybZzbZAbZBawwawwbZCbZDbZEbZFbZGbZHbZIbZJbZKbZHbZHbZHbZLbZHbZMbatbZNbZObatbatbZPbanbZRbZSbZTbarbasbatbatbZWbZXbZYbZYbZZcaabZZbZZbZZcabcaccadcaecafcagcahcaicajcakcalcamcancaocapcaqcarcaocasbWlcatcaubWlcavcawcaxbYQbYUbYSbYTcaycaAcaAcaBcaCcaDcaEcaFcaGcaHcaIcaJbPsbIUbIUbIUbGKbIUbIUbIUcaKcaLbJabVxbJccaMbXWcaNbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaoEaoEaoEaoEaoEaMdcaOaPocaPaPobCcaMiaoEaoEaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaabWHcaQcaRcaSbWHbMwbMwcaUbwwbPKcaWbWMcaXbZscaYcaZcbabWMbWMbWMbWMbWMbWMcbbbWMbWMcbccbdcbebCmbPJcbfbOtcbgcbgcbgcbgcbgcbgcbgcbhcbhcbhcbhcbhcbicbjcbjcbkcblcbjcbmbaocbncbobbWcbpcbqbamcbscbrcbtcbucbrcbrcbvbWkaYuaYwaYwcbwbWkcbxbWkcbycbzcbybWlcbAcbBcbCcbDcbEcaocbCcbFcbGcbHcbIbWlcbJcbKbWlcbLcbMcbNcbOcbPcbQcaAcbRcbScbTcbUcbVcbWbzBcbXbDCbIUcbYbIUbIUbIUbIUbIUbIUbIUcbZbIUbWEccaccbaafbDGbDGbDGbDGbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaabjbbjbbjbbjbbjbaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaabWHcccccdcccbWHbwwbwwbwwbwwbWMccebWMccfabkccgcchccibWMccjcckcclbWMccmccnccobWMccpbWMbWMbWMbWMbWMbWMcbgccqccrccscctccuccvcbhccwccxccycbhcczccAcczccBccCcczccAcczccDccEccFccGccHccIccJccIccKccLccIccJccIccMccNccNccNccNccNccObWkccPaYFccQbXwccRbYIcapcarcarcaoccScarcarcaoccTbWlccUccVbWlbYOccWbYQbYQccXccYcbVcbVccZcdacdbcdccdcbzBcddbIUbIUcbYbIUcdecdfcdfcdfcdgcdfcdfcdhcdibWFccbaafaafaafaafaafaafaafaafbMiaafbMjaafbNTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaoEaoEaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaaaaaccccdjcccaaaaafaaaaaaaaabWMccebWMbWMbWMbWMcdkbWMbWMcdlcdmcdlbWMbWMbWMbWMbWMcdncdobWMcdpcdqcdrcdscdtcducdvcdwcdvcdxcdycdzcdAcdBcdCcdDcdEcdFcdGcdHcdIcdJcdKcdLccAcdMcdNcdOccJcdPcdQcdRcdScdTcdUcdVcdWcdXccNcdYcdZceaccNcebbWkceccedbbLceecefcegcehceicejcegcehceiceicegcekcelcemcenceocepceqgVZcercescdccdccdccdccetceucevcewbzBcexceycezceAceBceCceDceEceFceGceHceIceJceKbWFccbbzBbzBaNQaKSaNQaKSaNQaaabBPaaaaafaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaafaafcccceLcccaafaafaafaafaafbWMceMaXtceObWMcePceQceRbWMceSceTceUceVceWbZsceXbWMceYceZcfacfbcfccfdcfecffcfgcfhcficfjcfkcflcfmcbhcfncfocfpcfqcfrcfscftcfucfvcfwcfxcfycdMcdNcdOcfzcfAcfBcfCcfDcfEcfFcfFcfGcfGcfHcfIcfJcfKccNcQxbWkabtcfMcfNbXwcfOcfPcfQcfRcfScfRcfTcfRcfUcfVcfWbWlcfXcfYcfZcgaccZbpsbpsbpscdccgbcgccgdcgecgfcggcghcgicgjcgkcglcgmcgncgocgpcgqcgrcgscgtcgqcgucgqcgvcgwcgxcgycgzcgzcgzcgzcgAaafaaiaaaaafaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaacgBaaaaaaaafaaaaafaaabWMbWMbWMccebWMcgCcgDcgEcgFcgGcgHcgIbZsbZsbZqcgJbWMcgKcgLbWMcgMcgNcgOcgPcbgcgQcgRcgScgTcgUcgVcgWcgXcgXcgYcgXcgZchachbchcchdchechfchgchhchichjchkcfzcfAcfAchlchmchnchochpchqchrchschtchuchvccNchwbWkbWkbWkbWkbWlbWlchxbWlbWlbWlbWlbWlbWlbWlbWlbWlbWlbWlbWlbWlchychzbpschAchBcdcchCchDchEchFchGchHchIchJchKchLchMchNchOchPchQbIOchOchPbGYbIOchRchSchSchTbzBbzBbDPbjccgzaXIbDPaaabBPaaaaafaafaoDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaachUaaaaaaaafaaaackackchVchWbWMchXchYchZbWMbWMbWMciacibciccidciebWMbWMbWMcifcigbWMcihcihcihcihcihcihcihciicgTcijcikcilcgXcimcinciocipciqcirciscitciuciucivcczcdMciwcdOccIcixciycizciAciBciCciDciEciFccNciGciHciIccNciJciOciOciOciOciOciMciNciOciPciOciOciKciOciOciRciSciTciUciVciWciXciYciZcjabSFcdccjbchDcjccjdcjecjfcjgcjhcjiaafcjjaafcjkcjlcjjaafcjkcjlcjmaafcjmaafaafaafaafaafaafaPlcgzaPsaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaiaafcjnaafaafaafaaaaafaafbWMbZtchVcjobWMbWMbWMcjpbWMbWMbWMbWMbWMbWMbWMcgMcjqcgKcjrcjscihcjtcjucjvcjwcjxcihcjycjzcjAcjBcjCcgXcjDcjEcjFcjGcjHcjIcjJcjKcjLcjMcjKcjNcjOciwcjPcjQcjQcjQcjQcjRcjScjTcjUcjVcjWccNcjXcjYcjZccNckackcckcckcckcckcckdckcckeckeckeckeckeckeckeckeckeckfckgbfIaZdaZdaZdbpsaZdckhcdcckickjckkcklckmcknckockpaafbDGckqbGZckqbDGckqbGZckqbDGckrbGZcksbDGaafaaaaafaaaaaacktcgzckuaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaoEaaackvaaaaafaaaaaaaafaaabWMckwbWMceMaXtckxckxaXtaXtckzckAckBaAUckAckAaAUaAUckDckEckFckGckHckIckJckKckLcihcbgckMckNckOcbgcgXckPckQcgXckRckScjNckTckUckVckWckXcjKckYciwckZcjRclaclbclcclccldclecjQclfclgclhcliclhclhclhcljckcajuclkcllclmclnclockeclpclpclpclqclpclrclpckeckfckgclsbYTbVDclubpsclvclwcdcclxclyclzclAcjgcknclBckpaafbDGclCclDclEbDGclFclGclHbDGclIclJclKbDGaafaaaaafaafaafclLcgzclMaafaafaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaoEaaaclNaaaaafaaaaaaaafbWMbWMbWMbWMbWMbWMbWMbWMbWMbWMapzclPclPclQclRclRclRclRclSclRclRclRclTclUclVclWclXclYabHclZcmacmbcmccmdcmecmfcmgcmhcmicmjcmkcmlcmmcmncmocjNckYciwckZcjQcmpcmqcmrcmscmtcmucjQcmvcmwcmxcmybeDbyuckccmBckcnmKcmDcmDcmFcmGcmHckeclpclpcmIcmJcmKcmLcmMckecmNckgckgckgckgckgckgckgckgcdccdccdccmOcmPcmQcmRcmQckpaafbDGcmScmTcmUbDGcmVcmWcmXbDGcmYcmZcnabDGaafaafaafaaabzBcnbcnccndcneaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaiaaachUaafaafaafaafaafbWMcnfbYfcngcnhcnicnjcaTcaVbWMapzclPcnmcnncnocnpcnqclPcnrcnscntclPcnucnvcnwcnxcnycnzcnAcnBcnCcnDcnEcnFcnEcnDcnEcnGcnHcjLcnIcnJcnKcnLcnMcjKckYciwckZcjRcnNcnOcnPcnQcnRcnScnTcnUcnVbZxcnWcnXcnYckccoackcckccoccodcoecofcogckeclpclpcohclpclpcoicojckeckfckgcokcolckgcomconcoocopcoqcorckgcoscotcoucovcowcoxaafbDGcmScoycmSbDGcmVcozcmVbDGcoAcoBcoAbDGaafaaaaafaafcnecoCbFucoDcoEaafaaiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaafaaaaaaaafaafckvaafaafaafaafaafaafaafaaaaaaaaaaaaaaZabxabyabzaaxabAabBaaRabCaaRaaRaaRabFabGaccabIabJabKaaxabLabMabNabeabeabeaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahccLzcLzahccLzcLzjxRcLzcLzahccLzcLzbogcLzcLzbogcLzcLzahcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoczqchUaarabTabTabTabTcztaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaaackvaaaaaaaaaaafaaaaaaaafaafaafaafaafaaZabVabWabXaaxabYabeabZabCaaRaaRabDacaacbaccabCaaRaceaaxacfacgachaciacjahbackackaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAaaaaaacHAaaaaaacHAaaaaaaahqaaacHAaaaaaaaaacHAaaaaafaafaafaafaafaafaafaaiaagaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaclaclaclaclaclaafchUaafaclaclaclaclaclaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaackvaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaZacmacnacoaaxacpabeacqacraaIaaIacsactacuacvacwaaRacxaaxacyaaxaaxaaxaaxaaxaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAcHAcHAcHAcHAvPlcHAcHAcHAcHAcHAaafcHAaafcHAaafaafaafaafaafaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaaaaaaaaaaafaaaaaaaafaawaaaaaaaaaaafaaaaaaaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaackvaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaZacAacBacCaaxaaxaaxacDacEacFacGacHacIacJacKacLaaRacMabeabLabeacNacOacRaaxaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaafaaacHAaaaaaacHAaaaaaaaaacHAaJgbfnaJgaJgaJgaJgaJgaJgaJgaJgaaaaJgbfnaJgaJgahfaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafabvabvabvabvabvaafchUaafabvabvabvabvabvaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafacSacTacTacTacTacTacTacUaafaafaafaafaaZacVacWacXacYacZadaabeadbabeadcabeaddabeabeabeadeabeabeadfabeadgadhadiaaLaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaacHAaaaaaacHAaaaaaaaaacHAaJgwqSaJgahgahhahhahiahhahjaJgaaaaJgadjahaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaanaaoaaoaaoaaoczqchUaarabTabTabTabTcztaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaafaaaaaaaaackvaaaaaaaafaaaaaZadmadnadoadpadqadradsaaRadtadcaduadvadwabeadxaaRadyabeadzabeadAadBadCaaxaaaaafaaaaaaaaaadDaaaaaaaaaaafaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaafaafaafaafcHAcHAcHAcHAcHAaJgaonahkahlakFahnbpbbpbahpaJgahqbfnbiNadFaaaaaaaaaahraaiaagaaiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaagaafaclaclaclaclaclaafchUaafaclaclaclaclaclaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaafaaaaafaafckvaafaafaafaafaaZadJadKadLadMadNadradOaaRadPadQadRadSadTabeadUaaRadTabeacfabeadVadWadXaaxaafaafaafaeqaeqaeqaeqaeqaafaafaaaaafbilbilaeaaebaecbilbilaaaaafaaaaaaaafaaaaJgaJgaJgaJgaJgaJgmhiaJgahsahtahuahvtcAahwaJgaaaaJgaedahaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaafaaaaaaaaachUaaaaaaaaaaafaaaaaaaaaaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaafaaaaafaaaaafaeeaefaeeaafaaaaaaaaZaegaehaeiaaxaejaekaelaemabeadcabeaenadcabeaelaeoadcabeahxabeadcaepaelaaxaafaafaeqaeqaesaeraexaeqaeqaafaafbilbilaetakFaevaewafebilbilaafajpajpajpajpaeyaLIeONrqUaJgqsraiuaJgbhSahyahzaJgbhSahAaJgaJgaJgaeAaJgaeBaeCaeCaeCaeCaeCaeEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaagaaaabvabvabvabvabvaafaeFaafabvabvabvabvabvaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaafaafaafaeeaeGaeeaafaafaaaaaZaeHaeIaeJaaxaeKaeLaeMaeNaeOaePaeQaeRaeSaeTaeUaeVaeWaeXaeYaeZafaafbafdafcaafaeqaeqaffafhafgafgafXaeqaeqaafbilafiafjafkaflafmafnafobilaafajpafpafqafraeyyclqmcalJaJgaiyaSsaJgaftafuagXaJgafyafxafyaJgafzafAafBafCafDafDafDafDafDafCaafaafaafaafaafaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoczqchUaarabTabTabTabTcztaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaeeaeeafEaeeaeeaafaafaaZaaZaaZaaZaaxafFafGafHafIafJafKafLafGafMafNafOafPafKafRafGafSafTafUafVafWaafaeqaabafYagbagaagdagcaadaeqaafageagfaggaghagiagjagkaglagmaafaeyagnagoagpaeyaksbTCbTCastahIagraJgagtahBahCagvaguagwagxagyagzagzahPafCafDafDafDafDafDafCaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaagaafaclaclaclaclaclaafchUaafaclaclaclaclaclaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaafahDagBagCagDahDaafaaaaaaaaaaafaaaaaxaaxagEagFagGaaxagHagIagHabeabeabeabeagJagKagLagMagNagOagPaaxaafaeqagRafYagTagSagUahEahFaeqaafagVagWagXagYagZaaeagXaaUagVaafaeyagnahGagpaeyaxIqmcuOaaJgajtaSsaJgahJanhahQahQahQahNahQahQahQahRahSafCafDafDafDafDafDahTaJgaJgaJgaaaaafaaaaaaaaaaaaaaaaaiaaaaaaaaaaafaaaaaaaaachUaaaaaaaafaaaaaaaafaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafahUahUahVahVahVahVahVahDahWahXahYahDaafaafaafaafaafaaaaaaaaxaaxafWaaxaaxaaxafWaaxaaxahZaiaaibaicaidaieaifaigaigaigadYadYaeqaihaiiaijaikailagcaimaeqaafbilainaioaipaiqairaisaitbilaafaeyagnahGagpaeyaJgaJgaJgaJgaixaSsaJgaizakvahLaiAaiBaiBaiBaiAaiBaiFaiGaiHafDafDafDafDafDaiIaiJaiKbfnaaaaafaafaafaafaafaafaagaafaafaafaafaafaaaaaachUaaaaaaaaaaaaaaaaafaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiLaiMahVaiNaiOaiPaiQahDaiRaiSaiTagAaiUaiVaiUaiUaafaafaaaaaaaaaaafaaaaaaaaaaafaafaiWaiXaiYaiXaiZajaajbajcaigajdajeajfadYaeqajgajhajiaeqaeqaeqaeqaeqajjbilbilajkajlajmajnajobilbilajjajpajqajrajsaeyyclqmcwjOaJgajtaSsaJgajwakvaiBaiBaiBaiBaiBaiBaiBahKajCbfnafDafDafDafDafDbfnajDajEbfnaaaaafaaaaafaaabilbilbilbilbilbilbilaafaafaafchUaafaafaafaafaafaagaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafahUajGahUajHajIajJajKahDahDajLajMagAajNajOajPaiUaiUaafaafaafaafaafaafaafaafaafaafajQaicaicaicaicajRajSajTaigajUajVajWadYajXajYajZakaakbakcakdakeadYakfakgaJgakiakjcSHaklakmaJgaknakoajpakpakqakraeyaksbTCbTCaktahIaPKaeCakuvDtakwaiBaiBakzaiBaiBalOakCajybfnafDafDafDafDafDbfnakDakEbfnaafaafaafaafaafbilakFakGakHakIakFbilaafaaaakJakKakJaaaaaaaafaaaaaaaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaahVakLakMakNakOakPakQakRakSakTakUaiUakVakWakXakYaiUaafaaaaaaaafaaaaaaaaaakZakZakZajQalaalbalcaldalealfalgaigalhalialjadYalkajYallalmalnaloalpalqalralsaltalualvalwalxalyalzalAalBalCalDalEalFalGaeyaxIqmcalJaJgalLnjRtWwbnTakvaiBaiBaiBaiBaiBaiBaiBahKalTalUafDafDafDafDafDalValWalXaJgalYalZaaaaafaaabilamaambakFambamcbilaafaaaamdameamdaaaaaaaafaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaahUamfahUamgamhamiamjahUamkamlammamnamoampamqamraiUaafakZakZaiVakZakZaaaakZamsamsajQamtamuamvamwamxamyamzamAamBamCamBamDamEamFamGamHamIamJamKamKamLamMamNamOamPamQamRamSamTamUamVamWamXamYamZanaaeyafshqTaunaJgvQklQPbfnaByakvaiBaiBaiBanfaiBaiBaiBahKanianjafDafDafDafDafDbiEaJganlaJganmannackackaafbilanoanpanqanransbilaafakJamdantamdakJaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafahUanuanvanvanvanwanxahUanyanzanAaiUanBanCanDanEaiUakZakZjflaoLaoRakZakZakZanHanIajQanJanKanLanManNanOanPaiganQanRanSadYanTanUanVanWanXanYanZaoaaigaobaocaodaoeaofaogaohaoiaojaokaolajpajpaomaeyaeyaJgaJgaJgaJgaJgaJgaJgaooaopojjaoqaoqaoqaotaouaouaovaiDanjafDafDafDafDafDbiEaowaoxalZannalZalZalYalZbilaoycVXakFaoAaoBbilaafamdamdaoCamdamdaafaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaoEaaaaaaaoDaaaaoDaaaaaaaafaafaafaaaaaaaaaaaaaaaaafaaaaafaaaaafaaaahUaoFaoGaoHaoIaoJaoKahUaoSaoMaoNakZaoOaoNaoNmrAaoPakZaoQaoTarharJakZaoUaoVaoWaoXaoYaoZapaapbapcapdapeapfadYakbapgakbadYadYaphapiapjadYapkaplapmapjapnaocapoappamPapqaprapsaptaokapuapvapwapxapyapyapAapBapCapFapEapFapGapHapIeiGapJapKapLapMapNapNapNapOanjafDafDafDafDafDbiEapPapQalZaoxapRapSapTapUbilapVapWapXapYapZbilaafaqaaqbaqcaqdaqaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaoDaafaafaoDaoDaoDaafaaaaoDaoDaqeaoDaoDaaaaafakZakZaiVakZaafaaaaafaafaafaafaafakZaiVahUahUaqfaqgaqhahUahUahUamkaqiammaqjamoaqkaqlaoNaqmakZjFUtoCaqoakZakZaqpaqqaqraqsajQajQajQaqtaicaquaqvaqwaphaqxaqyaqzaqAaqBaqCanYaqDadYaqEaqFaqGaigaqHaqIaqJaqKaqLaqMaqNaqOaqPaokaqQbilbilaJgaJgaJgaJgaqSagqagqagqagqaJgaqTaqUaqVaqWaqXaqYaqZaraarbarcardarearfarfarfarfarfbwSautarialZapQapQapQapQarjbilarkarlarmarnarobilaafaqaarparqarraqaaaaaafaafaafackaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEarsaafaoDaafarsaafbogbogaafbogbogbogbogaoDaaaaaaaaaakZartaruakZarvarwarwarwarwarwarxakZaoQaryakZarzarAamkarBarCakZaoNausarFakZaoOaqnarGarHarIakZanGcCKarKakZarLaqqarMarNarOakZarPajQarQarRarSaqvaqwadYarTarUarVarWarXarYarZasaasbakdascasdaseasfasgashasiasjaskasjaslasjasmasnasoaspasqasrassaJgaqSagqcobasuasvaJgaJgaJgaJgaJgasxasyaszaJgaJgaJgaJgaJgasAalZasBasCauAalZalZapQalZavvasFasGapQasHasIasJasKasLasMasNbilalYaqaasOasPasQaqaaaaaafaaaaaaackaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaafaoDaafaoDaoDaoDaqeaafaafaafaoDaoDaafaaaaafaafaiVasRasSasTasUasVasVasVasVasVasWasXasYasZataatbatciizkZSkZSkZSateatfakZakZakZakZakZakZakZakZakZakZatgakZathakZakZakZakZakZakZajQatiatjanNaqvaqwaphatkatlatmatnatoatpatqatranXakdatsattatuatvatwatxatyatzatAatBatCatDatEatFbilatGatGatGatHaJgatIatJatKatLvVFaJgatMatNatOaPDatQkhfatSaJgatTatUatVaJgalZalZatWatXatYapPalZapQalZasDapQatZiZTaJgaubaucbilbilaudauebilaufaqaaqaaugauhaqaalZalYalZalZauialZaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaoDaoDaoDaoDaafaoDaoDaafarsaoDaoDaafaafaafaafakZakZaujakZakZaukaulaulaulaulaulaumakZakZakZakZakZakZaupakZakZakZakZhHnakZayHauuauvauwauxakSauyauzauzauBauCauDakZaaaaaaaaaaaaaaaajSauEauFanNauGauHauIanXauJanXadYadYauKauLanXadYauMauNaigaigaJgauOauPauQauOaJgauRbMTaJgauTbilbilbfnbfnbfnaJgaJgauVagqqORauWbTdaJgauYauZavaavbavcavdaveavfavgavhbFNaJgavjalZavkavlavmavnalZavoalZalZalZavpalZaJgavqavravsbilbilbilbilavtapPapQavuaAFalZavwavxavyalZavzalZaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafaoDaoDaoDaoDaoDaoDaoDaoDaoDaoDaoDavAaoDaafarsakZakZakZaAVavCakZaafaafaafaafaafaafaafaafaafaafaafakZanFmSravJxkEdLGarDakZavGavHavIavJavKakZakZakZavLavMavMavMavNakZakZaaaaaaaaaaaaaaaajSajSaicavOavPavQavRavRavSavTavRavRavUavVavRavWavRavXavYavZawaavTawbawcavRavRavRavTavRawdajQaweawfawfawfawfaicaqSagqauXkjxbVMaJgaJgaJgaJgaJgawgawhawiarfbwSaJgaJgaJgawlalZapPawmatZapQalZapQalZawnalZawoawpawqawrawsawtawuawvawyawyawyawydFyawAapQapQawmapQawBawCawBawDackackaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarsaafaoDaqeaoDaoDaoDaoDawEaafaoDaoDaoDaoDaoDaoDawFawGawHawIavKakZakZaafaaaaaaaaaaaaaaaaaaaaaaaaaafakZbSUavFaurujnawKujnawLawMawNawOawPavKakZaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaawRawfawSawTawUawVawWawWawXawVawWawWawYawZaxaaxbaxcaxdaxeaxfawWaxgaxhaxiaxjaxjaxkaxlaxmaxnaxoaxpaxqaxraxsaxtaicaqSagqadlahHanbaJgaxvatUaxwaPDatQkhfaxxaJgaxyatNaxzaJgaxAalZalZalZavpalZalZapQalZarialZaxBbilbilaubaxDbilbilbilbilbilbilbilbilaxEaxEaowaxEaxEaxEaxEaxEaxEaxEaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoDaoDaoDaoDaoDaoDaoDaoDaoDaoDaoDaafaoDaoDaoDaafakZakZakZaxFavKasEakZaaaaaaaaaaaaaaaaaaaafaafaafaafakZaxGkyeaxHpWEarEmjIakZaxJakZaxKaxLaxMakZaaabilbilbilbilbilbilbilaaaaaaaaaaaaaaaaaaajSajSaicaxOaxPaxQaxRaxSaxTaxQaxUaxSaxPaxVaxWaxXaxYaxZayaaybaycaydayeayfaygayhayfayiayjaykaylaymaynayoaypayqaicaqSaJgaJgaJgaJgaJgbFNcTzaytayuayvavdaveaywayxayyauYaJgaoxayAayFayCayDayEayFayFayGgXTayGayIayJayKayLayMayNbilayOayPayQayPayRbilaxEaxEaxEaxEaaaaaaaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaoDaoDaoDaoDaoDaoDaoDaySaoDaafaafaafaafakZayTavKaoOaiVaaaaaaaaaaaaaaaaaaaJgbfnbfnaJgayWaJgaJgayXaJgaJgaJgaJgaJgaJgayZaJgmtQakZaafbilazbazcazdazeazfbilaaaaaaaaaaaaaaaaaaaaaaaaaicazgazhaziaicazgazjaziaicazgazkaziaicazlaiWazmaicaiWaznazoazpazqazrazrazsaztazuazrazrazvaicaicaicaicaicaqSaJgazwazxazyaJgaJgaJgaJgaJgazzazAazBarfbwSaJgaJgaJgalZazCapPaowapQapQazDapQbilbilbilbilbilazEazFazGazHazIazJazKazKazKazLazMaafaafaafaaaaaaaaaaaaaaaaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafaafaafaoDaoDaoDaoDaqeaoDaoDaoDazNaoDaoDaoDaoDaafaaaaafaiVavDavKazOakZaaaaaaaaaaaaaaaaaabfnazPazQaJgazRazSazTazUazVaJgazWazXbILazZaAaaJgmtQakZaaabilaAbaAcaAdaAeaAfbilaaaaaaaaaaaaaaaaaaaAgaAhajQaAiaAjaAkaicaAlaAmaAkaicaAnaAjaAkaicaAoaApaAqaicaAraAsaAtaAuaAvazraAwaAxaAyaAzaAAaABazvaACaADaAEaCHaAGaAHaJgaAIaAJaAKaJgaALaAMaANaJgaAOaAPaAQaARaASaATaATaATayGaAWbilbilbilbilbilbilbilaAXaAYaAZaBaaBbaBcaBdaBeazMaBfaBgaBhaBiaBjaubackackaafaaaaaaaaaaaaaaaaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaoDaoDaoDaoDaoDaoDaoDaafaoDaafaafaoDaoDaafaafakZakZarMawQakZakZaaaaaaaaaaaaaaaaBlaBmaSsaSsaBoaBpbDobDpaBsaBtaJgaLaaSsaBxaByaBzaJgaBAakZaaabilaBBaBCaBDaBEaBFbilaaaaaaaaaaaaaaaaBGaBHaBIajQaBJaAjaBKaicaBJaAjaBLaicaBJaAjaBMaicaBNaBOaBPaicaBQaBRaBSaBTaBUazraBVaBWaBXaBYaBZaCaazvaCbaCcapEapEaCdaCeaJgaCfaCgaChaJgaCiaCjaCjaCkaClaCmaCnaJgaJgaJgaJgaJgalZaCobilaCpaCqaCraCsaCtaJgaCvaCwaCxaCyaCzaCAaCBaCCaCDazKakFaCFaCFazKaCDaCGackaafaaaaaaaaaaaaaaaaaaaoEaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaoDaoDaoDaoDaoDaafaafaafaoDaoDaoDaaiaaaaafaafaafaaaakZamkamkawQaiVaaaaaaaaaaaaaaaaaaaaabfnaCIaCJaCKaBpaSslDxaByaCNaJgaCOaCPaCQaCRaCSaJgazaakZaafbilaCTaCUaCVaCWaCXbilaaaaaaaaaaaaaaaaaaaAgaCYajQaCZaDaaDbajQaCZaDaaDbajQaCZaDaaDbajQaDcaDdaDeajQajQaDfaDgaylaDhaDiaDjaDkaDlaDmaDnaDoazvaECaJgaJgaJgaDqaJgaJgbiEaDsaJggbLaDtaDuaDvaDwaDxaDyaDzarfaDAatUatVaJgaDBaRObilaDDaAZaDEaBbaDFbMTaDHbjqaDJaDKaDLaDLaDMaDNaDOaDPaDQaDRaDRaDPaDSaDTbzGbzGazMbilbilbilaaaaaaaoEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaDVaDVaDVaDVaDVaDVaDVaDVaDVaDVaDVavKakZakZaaaaaaaaaaaaaaaaaaaJgbfnbfnaJgaDWaSsaDXaDYaDZaJgaEaaEbaEcaEdaEeaJgmtQakZaaabilaUNaEgaEhbExbilbilaaaaaaaaaaaaaaaaaaaAhaEjaAhaEkaElaEkaEmaEkaElaEkaEnaEkaElaEkaEoaEpaEqaEraEsaEtaEuaEvajQawfazvaEwaExaEyaEzaEAaEBazvaECaJgaEDaEEaEFaEGaEGaEHaEIaEJarfaELaEMaENaEOaEPaEQaveaERaESbkfaEUaJgaEVbcVbilaEWaMnaEYaEZaFaaFbaFcaFdaFeaFfaFgaFhaFiaFiaFjaFkaFlaFiaFiaFmaFnaFoaNMakFaFqaFrbiNbilaafaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaafaafaaaaoDaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVaFuaFvakZaaaaaaaaaaaaaaaaaaaafaafaafbfnaFwaFxaFyaFzaFAaJgaFBaFCaFDaFEaFFaJgaBuakZaaaaafaaaaFGaFHaFIaaaaafaaaaAhaAgaAgaAgaAhaAhaFJaFKaEqaFLaFMaFNaFOaFPaFQaFRaFQaFSaFOaFTaFUaFVaFWaFXaFYaFZaGaajQawfazvazvaGbaGcazvaGdazvazvaDpaJgaJgaJgaGeaGfaGgaGhaGiaGjaGkaGlbyzaOPaGoaGoaGpaGqaJgaJgaJgaJgaJgaGraGsbilaGtdpPbXzaGwaGxaGyaGzaGAaGBaGCaGDaGEaGFaGGaGGaGHaGIaGIaGJaGKaGLaGMaGNaGOaGPaGPaGQbilaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaafaaaaaaaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVavKaGSakZaaaaaaaaaaaaaaaaaaaaaaaaaafbfnaGTaGUaGVaGWaGXaJgaGYbiEaJgaJgaJgaJgaHaakZaJgaHiaJgaHeaHfaPDbKsaHiaJgaAhaHjaHkaHkaHlaHmaHnaHoaHpaHqaHraHsaHtaHuaHvaHwaHuaHxaHyaHzaHAaHBaHCaHDaHEaHFaHGajQawfaHHazvaHIaHJazvaHKaHLaHMaHNaJgaHOaHPaHQaHRaJgaHSaHTaHUaJgaHVaHWaHXaHYaHXaHZaIaaIbaIcaIdaIeaJgaIfaIgbilaIhaIiaIjaIkaIlaJgaImaUkaIoaIpaNMaIqaIraIsaItaIuaIvakBaIvaIuaIwaIxaNMbiNaIyaIzaIAbilaafaafaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVavKaIBakZaaaaaaaaaaaaaaaaaaaaaaaaaafaJgaJgaLhbiEaIDaJgaJgaIEaIFaIGaIHaIIaIJaIKaILaIMaINaIOaIPaIQaLfaIRaISaITaAhaIUaIVaIWaIXaIXaIYaIXaIXaIXaIXaIXaIXaIXaIXaIYaIXaIZaJaaJbaJcaLpaLpaJeaJeaJeaJeaJeaLpaJfaLpaJgaJgaJgaJgaJhaJgaECaJgaJgaJgaJiaJjaJgaJkaJgaJlaJgaJmaJnaJoarfaJpaJqaJrarfaJsaJtaJuaJgaJvaRObilbilbilbilbilbilaJgaJwaUkaGBaJxbExaIqaJzaIsaItbilaJBaJBaJBbilaJCaJDbilakFakFakFbiNbilaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaoEaoEaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVawQaoNaiVaaaaaaaaaaaaaaaaaaaaaaaaaafaafbfnaJFaJGaJHaJIaJJaJKaJLaJMaJNaJOaJPaJQaJRaJSaJTaJUaJVaJWaJXaJYaJZaVsaKbaKcaKdaKeaKfaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaKgaKhaKiaKjaLpaKkaKlaKmaKnaKoaKpaKnaKraOtaLpaKtaKuaKvaKwbQraJgaKyaJgaKzaKAaGfaJjaJgaKBaJgaKCaJgaKDaLaaKEaJgaJgaJgaJgaJgaJgaJgaJgaJgalZaKGbilaKHaKIaKJaKKbilaKLaMnaUkaGBaKMbilaIqaKNbilbilaKOaKPaKPaKQbilaIwaKRbilakFakFakFbiNbilaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaaaKSaKSaKSaKSaKSaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaDVaFtaFtaFtaFtaKTaFtaFtaFtaFtaDVavKaoNakZaaaaaaaaaaaaaaaaaaaaaaaaaCKbfnaJgaKVaKWbDCaObaKYaKZaMwaLbaLcaLdakZaLeakZakZakZakZakZaJgaLhaLiaLjaLhaJgaJgaJgaJgbilaaaaaaaLlaLlaLlaLlaLlaLlaLlaaaaaaaIXaQaaJaaJbaLpaLqaRwaLvaLsaLtaLuaLvaLwaLxaLpaLyaLzaLAaLBaLCaJgaLDaJgaJgaJgaLEaLEgbLaJgaJgaJgaJgaLFaLGaLHaJgaLIaLJpvilGsaLKaLNaLOaJgaLPaRObilaKIaKIaLQbiNaLRaAZaLSaLTaGBaGCaNMaIqaLUaLVaLWaLXaLYaLYaLYaLZaMaaMbaNMakFakFakFaMcbilaafaafaoEaGRarsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaoEaoEaoEaoEaoEaMdaMeaMfaMgaMfaMhaMiaoEaoEaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVawQaoNakZaaaaaaaaaaaaaaaaaaaaaaaaaMkaMlaMkaMmaTLaMoaMpaMqaMraMsaMtaMuaMvakZaMxaMyaMzaMAaMzaMBaJgaMCaMDaMEaMFaMGaMHaMIaMJbzGaMLaMMaMMaMNaMOaMPaMQaMRaMSaMSaMTaMUaMVaHyaKjaLpaMWaOyaKnaLuaMYaKmaKnaJdaMXaLpaNbaNcaLAaNdaNeaJgaNfaNgaNhaNialIalIalIaNmaNnaNoaNpaNqaNraNsaJgaNtdqCbTCaKFbTCbUuaQqaJgaNyaDCbilaNzaNzbiNaNAaLRdpPaNBaNCaNDaNEaNFaNGaNHaNIaNJaNKaNJaNLaNJaNMaNNaNOaNMaNPakFaNPbilbilaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaaaKSaKSaKSaKSaNQaNRaNSaNTaNUaNTaNVaNWaNQaKSaKSaKSaKSaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaNXaaaaafaafaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVavKavEakZaafaaaaaaaaaaaaaaaaaaaaaaNYaNZaOaaObaMnaSsaVfaOdaKZaVgaOeaOfaOgakZakZakZakZakZakZaWCaWEaOhgyxaOjaOknjRnjRnjRaOmbilaaaaLlaOnaOoaOoaOoaOoaOoaOpaLlaaaaIXaOqaOraJbaLpaOsaOtaOuaOvaOvaOvaOwaOxaKqaLpbQSaOAaOBaOCaODaJgaOEaOFyhMyhMyhMaOHuogaOIaOJaOJaOKaOLaOMaONaJgaOQaOQaOQaOQbTCbTCoeCaJgaOUaOVbilaNzaOWaOXaOYbilaOZaMnaPaaGBaGCaNMaIqaPbaPcaPdaPeaPfaPfaPfaPgaPhaPiaNMaPjakFakFaPkbilaafaafarsaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaPlaPmaPnaPnaPnaPnaPnaPoaPoaPpaPoaPoaPqaPqaPqaPqaPqaPraPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaDVaFtaFtaFtaFtaFtaFtaFtaFtaFtaDVavKakUakZaafaaaaaaaaaaaaaaaaaaaaaaCKbfnaJgaPuvvVaPvaSjaPxaPyaPzaPAaPBaPCaPDaPEaPFaPGaPHakZaPIaJgaPJaSsaPKaPLaPMaPMbpFaPObilaaaaPPaPQaOoaPRaPSaPTaOoaPUaPPaaaaIXaIZaJaaJbaLpaKsaSHaPXaPYaPZaPYaPXaQbaQcaLpaQdaQeaQfaQgaQhaJgaQitfCaNxxKxghajqyaQnraBalHapDaQoaQsaQtaQuaQvaiwaQyaQyaQzaQBizPaQCaJgapPaDCbilbilbilbilbilbilaJgaQDaQEaQFaQGaQHaIqaQIbilbilaQJaQKaQKaQLbilaJCaQMbilakFakFakFbiNbilaaaaaaaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaQOaQPaQPaQPaQPaQPaQPaQQaQPaQPaQPaQPaQPaQPaQRaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQSaaaaaaaaaaQSaafaDVaFtaFtaFtaFtaQTaFtaFtaFtaFtaDVavKasEakZaaaaaaaaaaaaaaaaaaaaaaQVaNYbiOaOaaObaMnaSsaOblVcaSlaMwdRAaQXaQYaQZaRaaRbaRcaRdakZaReaRfaObaSsbGKaRiaRjbGKaQmaRlbilaaaaRmaRnaRoaRpaRqaRpaRoaRraRsaaaaIXaIZaRtaRuaLpaOtaSHaSHaRvaPZaRvaSHaRxaKsaLpaJgaRyaRzaRAaJgaJgaRBtfCpSwaOPaOPhralCkkHkdcdaOStdjaBpaUkaRHaRIaRJaRLgLfaRKbVNbTCaRMaJgaMjaRObilaRPaRQaRRaRSaRTaRUaMnaRVaGBaRWbExaIqaRXaRYaRZbilaSaaJBaJBbilaSbaScbilakFakFakFbiNbilaafaafaoEaGRaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaaaaaaaaaaaaaaaaaaQQaaaaaaaaaaaaaaaaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSdaaaaaaaaaaSdaaaaDVaSeaSeaSeaSeaSfaSeaSeaSeaSeaDVawQamkakZaaaaaaaaaaaaaaaaaaaaaaaaaSgaShaSgaSiaMnaPvaSjaSkaSjaSmaSntFuaSoaSpaSqaSraSsaStakZavKaJgaSuaSsaSsaSvaSwbfiaQmaSybilaaaaLlaSzaSAaRoaSBaOoaSCaSDaLlaaaaIXaSEaLnaLoaSFaSGaMXaSHaLraPZaLraSHaPWaSJaLpaSKaSLaSMaSNaSOaSPaSNaSQbWOaSRaSSaSTaSUagsaQxaQxagsaSVaSZaTaaLhaNwlgCaTdaTebVNaTgaThaJgaTiaTjbilaTkaTlaTmaTnaToaTpaTqaaMaTraIpaNMaIqaTsaTtaRZaIuaIvaTuaIvaIuaTvaTwaNMbiNaTxaTyaTzbilaaaaaaaoEaGRarsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaMdaQNaMiaaaaaaaaaaaabilbilbwdbilbilaaaaaaaaaaaaaMdaQNaMiaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaSdahaabuahaaSdaafaDVaTCaTDaTDaTEaTFaTGaTHaTIaTJaDVavKaoNaiVaaaaaaaaaaaaaaaaaaaaaaaaaCKbfnaJgaZZaMnvfZaObfvYaKZqfhaUkaLaaTMufIaTNaTOaTPaTQakZaTRaJgaTSbILbILaTUaTVaSsaQmaTWbilaafaLlaLlaLlaTXaTYaTZaLlaLlaLlaafaIXaLmaUaaJbaUbaUcaMZaMZaMZaUdaMZaNaaSIaMZaUbaNjaUeaUfbDpaSsaLhaSsaQjaREjUZaUijUZaUjiUmiUmiUmiUmrKvlDxaUlaLhaUmhfOaUoancaUqbTCaQqaJgaUraRObilaUsaUtaUuaUvaUwaUxaUyaUzaUAaGCaGDaUBaUCaUDaUEaUFaUGaUGaUHaUIaUJaUKaGNaGOaULaULaUMbilaafaaaaoEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaaaNRaQNaMiaaaaaabilbilbilbilaUNaUObilbilbilaaaaaaaMdaQNaUPaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaSdaUQaURaUSaSdaafaDVaUTaUUaUUaUVaUWaUXaUYaUZaVaaDVaVbaVcakZaafaaaaaaaaaaaaaaaaaaaaaaafaafbfnaTKaVdpNppMCaVHaSsaLaaVhaViaVjaVkaVlaVlaVlaVlakZaVmaVnaVoaVpaVpaVqaVraVsaVtaVubMTaaaaaaaaaaLlaLlaVwaLlaLlaaaaaaaaaaKgaKhaVxaJbaVyaVzaPVaVAaVBaSHaVCaVDaVEaOtaVyaVFaVGaVHaVIapNaVKaQlaVLaVMaVNaVOaQlaQlaQlaQlaQlaQlaVPaVQaVRaJgaJgaJgaJgaVSaJgaJgaJgaJgalZaDCbilaVTaVUaVUaRSaaVaVVaVWaVXaVYaVZaFgaWaaWbaWbaWcaWbaWdaWeaWfaWgaWhaWiaNMakFaWjaWkakFbilaafaafaoEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaPlaWlaWmaWnaWobilbilaWpaWpaWpaWqaWraWpaWpbilbilaWoaWsaWtaWuaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaSdaWvaWwaSdaSdtmXaDVaDVaWxaWxaDVaWyaWzaDVaDVaDVaDVaWAakZakZaafaaaaaaaaaaaaaaaaaaaaaaafaafaJgaWBaMndRZaSseTYaObaLaaUkaLaaWFbbCaWGaWHaWIaWJakZavKaJgaWKaWLaWMaWNaWOaWPaWQaWRbilaWSaWTaWSaWUaWVaWWaWXaWUaWSaWTaWSaWYaWZaXaaXbaXcaLpaLpaLpaLpaXdaXeaXfaKsaXgaLpaNjbEcaQmaXiaJgaJgaJgaJgaJgaJgaJgaXkadHaXlafAaXnaXoaJgiKtaXpaJgaXqawyawyaXraXsawyawyawyawyawAbilbilbilbilbilaXvaXwaXxaXyaXzaXAburburaXCburaXDburaXEburaXFaXGaXGaXFburburaXHbilbilbilackaafaoEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaXIaaaaaabilaWpaXJaXKaXLaXMaXNaXOaXPaWpbilaaaaaaaQRaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaXQaXRaXSaXTaXUaXVfaqaXWaXXaXXaXYaXZaYaaYbaYbaYcaYdaYeaYfakZaaaaaaaaaaaaaaaaaaaaaaaaaafaJgayWaTKiOQaYhaSsaYiaSlaLaaYjaYkaYlaYmaYnaYoaYpaYqakZawQaJgaJgaJgaLhaLhaYrbilaYsaYtbilaYuaYvaYwaWUaYxaYyaYzaWUaYAaYBaYCaYDaYEaYFaYGaYHaYIaYJaYKaLpaLpaVyaYLaVyaLpaLpaLhaYMaYNaLhaYOaYPaYQaYRaYSaYTaJgaJgaJgaJganlaJgaJgaJgaJgaJgaJgaDCapPapQaJgaJgaJgaJgaJgaJgaJgbilaYWaYXaYYbilbfnaZabilbiEaZcaJgbilaZdaZdaZdaZeaZfaZdaZgaZhaafaaaaZiaZjaZkaZlaZkaZmaZkackaafbBOaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaabilbilaWpaZnaZoaZpaZqaZraZsaZtaWpbilbilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaXQaZuaZvaZvaZwaZvaZvaZvaZxaZyaZyaZzaZAaZAaZAaZBaZCaZDaZEakZaaaaaaaafaafaaaaaaaafaafaafaJgaZFaZGdpPaZHbXzbrIaZJaZKaZLaZMaZNaZOaZPaZQaZRaZSakZaZTaZUaZVaZWaZXaZYbaAbaababbacbaxbaubafbaubagbahbaibajbakbaebalbatbatbZObapbZMbatbatbatbaubaubaubavbawbaubaubaxbaubaybazbaubaubaubaAbaBalZaIfbaHbaDbaHbaFbaGbaHbaIbaHbaJbaKawybaLbaMapQaJgbaNbaObaPbaQbaRbaSbilbaTafAafAbaVafAbaWbilbaXbaYbaZbbabbabbabbabbabbbaZdbbcbbdbbebbebbfbbgbbgbbfbbgbbgbbhbbiaaawzpaafaaaaaaaaiaagaaiaafaaiaagaagaaiaaiaagaagaagaaiaoEaoEaoEaoEaoEaMdaQNaMiaaabilaWpaWpbbjaZoaWpbbkaWpbblbbmaWpaWpbilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaXQbbnaXQaSdaXQbboaXQaZuaZvaZvbbpaXQbboaXQaZubbqbbrbbsakZakZakZakZaiVaiVaiVakZakZakZaJgbbtbbubbvaVpbbxbbxbbxbbybbzbbAbbBaVlaVlaVlaVlbbCakZakZbbDakZakZbadbbFbbGbbHbbIbbJbbKbbLbbMbbNbbObbJbbPbbLbbHbbLbbQbbRbYubbTbbUbbVbYybYzbbLbbLbbLbbLbbYbbZbbHbbLbbKbcabcbbbLbbLbbLbbLbccbcdaJgaJgaJgaVSaJgaJgaJgalZbcfalZaROalZalZbilbilbilbilbchbcibcibcjbckbclbilbcmbcnbcobcpbcqcSHbilbcsaaXbctbbabcubcvbcwbcxaZebcybczbczbcAaZjbbfbcBbcBbbfbcBbbgbcCbcDaaawzpaafaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaabilaWpbcEbcFbcGbcHbcIbcJbcKbcLbcMaWpbilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaafaaaaafaaaaXQbcNaXQbcObcObcPbcQaXQbcNaXQaXQaSdbcRbcSbcTasUbcUbcUasVbcUbcUbcUbcWbcUbcXbcYbcZbXzbdbbdcbddbdebdfaJgbdhbdiaJgbdjbdkaJgbdmbdnbdobdpbdqbdrbdsbdtbdubdvbdvbdwbdxbdybdzbdAbdBbdCbdDbdDbdDbdDbdDbaqbYtbdEbdFbZVbbXbZUbdGbdGbdGbdGbdGbdHbdIbdJbdKbdGbdLbdHbdGbdGbdMbdNbdOaJgbdPbdQbdRbdSbdTaJgbdUbdValZaROalZaaabilbdXbdYbilbdZbeabebbecbedbeebilbefbegbehbeibejbekbilbelbembenbbabeobepbeqbcxberaZdbesbbcbetbbdbbfbbgbbgbbfbbgbbgbbhbbiaafbBOaafaafaaiaaibeuaoEaoEaoEaaiaoEaoEaoEaoEaaibeuaoEaoEarsaoEaoEaoEaMdaQNaMiaaabilaWpaWpbevaZoaWpbewaWpbblbexaWpaWpbilaaaaMdaQNaMiaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaaaaXQkhXaXQaXQaXQaXQaXQaXQkhXaXQaaaaSdbezbeAbeBbeBbeBbeBbeBbeBbeBbeBbeCatdaJgaJgaJgbeGbfnaJgaJgaJgbeHaJgbeIbeJbeKbeLbeMbeNbeObePbeQbgnbeSbdrbeTbdtbeUaJgaJgbeWaJgbiEaJgbeYbeZbeYbfabfabfabfabfabfabfabfabfabfabfabfabfabfabfabfabfabilbilaubbilbilbilbilbilbilbfdbfebffaJgbfgbnUbfibjqbfkaJgbflbfmalZaROalYaaabfnbfoafAbfqbfrbfsbiTbfubfvbfwbilbfxbfybfzbfzbfAbfBbilbfCbfDbfEbbabfFbfGbfHbcxbfIbfJbfKaZgbfLackbfMbcDbfMbcDbfMbcDbfMbcDaaarWfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaoEaaaaNRaQNaMiaaabilbilaWpbfNaZoaWpaWpaWpbblaZtaWpbilbilaaaaMdaQNaNWaKSaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSdbezbfObfPbfQbfRbfSbfTbfUbfVbeBbfWbfXbfYbfZbdlbgbbgabhMbgcbgbbgdaJgbgebgfbggbghbgibgjbgkbglbgmbgnbgobgpbgqbgrbgsaJgbgtaSsbgvbgwaJgbgxbgybgzaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbilbgAbgBbgCbgDbgEbgFbgGbilbgHbgIbgJaJgbgKbgLbgMbgNbgOaJgalZalZalZbgPalZaaabilbgQbgRbilbgSbgTbgUbgVbgWbgXbilbgYbgZbhabhbbhcbhdbilaJgbheaJgbbabhfbhgbhhbcxbhiaZgaZgaZgbhjbhkbhlbhkbhmaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaKSaKSbhnaNRbhobhpaWnaWobilbilaWpaXJaZobhqbhrbhsbhtaXPaWpbilbilaWoaWsbhubhvbhwaPsaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQbezbeAbhxbhybhzbhAbhBbhCbhDbhEbhFbhGbhHbhIblpbhJbhKbhLaJgaJgaJgaJgbhNbhOaSsbhQbhRaJgbhTbhUboGbsRbhVbhWbhXbdtbhYaJgbhZbiabibbicbidbiebifbigaafaafbihbiibijbikbilbimbiibikbilbimbijbijbinaafaafbilbiobipbFNbirbFNbisbitbilbiubdtbivbiwaJgafCbiyanjaJgaJgbiAbiBalZbiCalZbiDbilbilbilbilaJgaJgaJgbiEbiFaJgbilbilbilbilbilbiGbiHbilbiIbiJbiIbbabiKbiLbiMbcxbiNbiOahaaaaaaarWfrWfbBObetbBObBObBObBObBOaafaafrWfaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaafaafaafackbiQafAbiSbiTbiUaXIaaaaaabilbilaWpbiVbiWaZpbiXbiYbiZbjaaWpbilbilaaaaaabjbbjcaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQbezbjdbeBbjebjfbjgbjhbjibjjbeBbjkbjlbjmbjnbjobjpbjqbjrbjsbjtbjubjvbjwbjxbjybjzbjAbjBbjCbjDbjEbjFbjGboNbsSbdtbhYaJgbjIbjJbjKbjLaJgbjMbjNbgzaafaafbjObjPbjQbjRbjSbjTbjUbjVbjWbjXbjYbjZbkaaafaafbilbkbbkcbkdbkebkfbkgbkhbilbkibkjbkkbklbkmbknbkmbkobkpbkqbkmbkmbkmbkrbkmbksbktbkubkvbkmbkwbmfbksbkobkrbkybkzbkxbkAbkBbilbkDbkEbkFbkGbkHbkIbkJbkKbkLbkMbfnbiNbiNadFaaaaaaaaabkOaafbkPaaaaaaaaaaaaaafaaarWfrWfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaackbiQafAbkQafAbkRaMiaaaaaabilbilaWpbkSbkTbkUbkVbkWbkXbkYaWpbilbilaaaaaaaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkZaXQblablbblcbldbleblfblgblfbfPbfPblhblibeHaJgbljblkaUkaQmblnbloaJgmRPblqblrblslOJbltaJgblublvblwblxblybgpdvQbdtbhYaJgblzblAblBblCaJgblDblEbgzbilblFbilblGblHblIakFblIblKblIakFblIblLblMbilblFbilbilaJgaJgaJgblOblPblQblRbilblSblTblUblVblWblXblWblYblWblZblWblWblWbmablWbmbbmcbmdbmeblWblWblWbmgbmhbmabmibmabmjbmkbmlbilbmmaVsaVsbmobmpaVsaVsbmqbmraSsbmtbiNbmuahaaaaaaaaaaaaaaafbkPaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaQPaQPbhnaQRbmvaMiaaabilbilbmwbmwbmxbmybmybmzbmxbmxbmxbilbilbilbilbilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQbmBbmCbmDbmEbmFbmGbmGbmHbmIbmJbmKbmLbmMmDabmNbmObmPbmQbmRbmSbmTsMVbmUbmVaObbmXbmYaJgbmZbnabnbbncbndbdrbnebgIbnfbilbilbilbilbilbeYbnhbnibeYbilbnjbnkbnlakFakFbnmakFbnnakFakFbnmakFbnobnpbnqbilbnrbnsbntbnubnvbTCbTCbnxbilbnybnzbnAbnBbnCbnDbnCbnEbnCbnFbnCbnCbnGbnCbnCbnHbnIbnCbnJbnKbnLbnCbnHbnEbnCbnNbnObnPbnQbnRbnSbnTbnUbnVbnWaSsbnXbnXbnYaUkboabobbilbilbilbilahfaaaaafaafbetaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbodboebofaKSbogbohbmvaUPboibilbojbokbolbmxbombonboobopboqbmxborbosbotboubilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQbmBbovbowboxboybozboAboBboCboxboDboEboFaJgaJgmQAboHboIaJgaJgaJgaJgaJgbhSboJboKbhSboLbdrboMboNjTgbgpboObbEbdtboPbilboQboRboSbilboTboUboVboWboXboYboZbpabpbbpcbpdbpebpfbpdbpdbpgbpbbphbpibpjbilbilaJgaJgaJgbpkaJgaJgaJgbilbplaYFbpmbpnaLhbppaLhaJgaJgaJgaJgaJgaJgaJgbpsbpsbptbpsbpsaJgaJgaJgaJgaJgbpsbpwbpxbpybpzbpAbpBbpCbpDbpEbpFbnXbpGbpHbpIaUkbpJbilbilbpKbpLbpMaPsaafaafaaabkPaafaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaabpNaaaaafaMdbpObpPbpQbpRbpSbpTbzGbpVbpWbpXbpYbpZbqabqbbqcbqdbpYbqebqfbqgbqhbilaKSaNRaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaSdbqibqjbqkbdrbqlbqmbqnbqmbqopDlbqpbqqbqrbqsbqtnXNbqvbqwbqxbqubqybqznpxppvtTSbqAfltbqBbqCbqDbqEbqFncAbqGbqHbqIbhYbqJbqKbqLbqMbilbilbilbilbilbilbqNaoAbqPbqQbqRbqSakFbqTbqUbqVbqWbqQbqXbqYbqZbrabilbrbbrcbrdbrebrfaJgbrgbilbrhaYFbribrjbrkbrlbrmaJgbrnbrobrpbrqbrrbrsaQUaRNbrvaZdbrwaJgbrxbrybrzaJgbrBbrCbpsbrDbrEbrFauObXzbXzbXzbrIbrJbnXbnXbrKbrLbrMbrNbrObrPbrQbrRbrSbrTbrTbrTbrUbrVbrTbrTbrVbrTbrTbrTbrTbrTbrTbrVbrTbrTbrTbrTbrTbrTbrVbrWbrWbrXbrYbrYbrYbrZbsabsbbscbsdbsebsfbsgbshbsibsjbskbslbsmbsnbsobspbsqbsrbssbstbsubsvbswbsxbsyaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaXQflJaXQaXQaXQaXQaXQaXQflJaXQaaaaSdbszbsAbsBbdrafZbsCagQbsCbsDbdrbsEbsFbsGbsHbsIbsJbsKbsHbsHbsLbsMbsNbsObsPbsHbsQbsHxPCbsHbsHbsHiyqbsTbsUbsVbsWbsXfNdbsYbsZbtabilbtbbtcbtdbteaJgbqWbtgbqRbthbtibtjbtkbtlbtkbtmbtnbtobqWbtpbtqbtrbilbtsbttbtubtvbtwbilbilbilbtxbtybtzaJgbtAbtBbtCaJgbtDbtEbtFbtGbtHbtIbtJbtKbrAaZdbYUaJgbtNbSsbtPaJgbYUbtUbpsbpybtVbtWbilbtXbtYbtZbuabubbucbudbuebufbugbilbilbuhbuibujaPsaafaaaaaabkPaafaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaabukaaaaafaMdbulbumbunbuobupbuqburbusbutbuubuvbuwbuxbuybuzbuAbuvbuBbuCbuDbuEbilbjbbuFaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaafaaaaafaaaaXQaURaXQbuGbuHbcObuIaXQaURaXQaXQaSdbezbqjbuJbdrbuKbsCbsCbsCbuLbdrbuMbuNbuObuPbuQbuRbuSbuTbuUbuVbuWbuXwQkbuYbuZbuRbvabvbbvcgfcbvdtXIbuQbvebvfbvgbsXbilbvhbvibvjbvkbxbbvmbFNbvoaJgbvpbvqwnWaJgaJgbvsbvtbvubvvbvwaJgaJgwnWbvxbvybilbilbvzbvAbvBbvCbvDbilbvEbvFbvGbvHbtzaLhbvIbvJbvKaJgbvLbvMbvNbvOaJgaJgaJgaJgbvPaJgaJgaJgbtRbtSbvQaJgbaEbvTbpsbvUbtVbvVbilaJgaJgaJgaJgbvXaJgaJgbvYbvZbwabilbwbbwcbilbwdbilaafaafaaabkPaafaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbweboebwfbwgbogaQRbmvaQOaQPbilbilbwhbwibwibwibwjbwkbwibwibwibwibilbilbilbilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaXQbbnaXQaSdaXQbeyaXQaXRaXSbwlbwmaXQbeyaXQbrtbwnbwobqjbqkbdroUTbwpbqnbwpeglpDlbwqbwrbwsbdrbwtbwubwvbdrbwwbwxbwwaJgaJgaJgbwzbwAaJgaJgaJgaJgaJgaJgaJgbpnbwCbwDbwEbwFbwGbwHcUubwJcUubwKbwLbwMbwNbwObwParfbwRarfarfbwSbwTahTaJgaJgbQpaJgbwWcVXbilbwYbwZbxabxbbxcbxdbilbxebeYbxfaYFbxgaJgaJgaJgaJgaJgbxhbxiaJgaJgaJgbxjbxkaJgbxlbxmbxnaJgbnMbtSbpuaJgbvRbxsbxtbxubxvbxwbxxbxybxzbxAbxBbxCbxDaJgbxEbxFbxGburbxIbxJbxKbxLbxMackaafaafbetaafaafaafaafaaaaafaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaoEaMdbmvaMiaaaaaabilbxNbwibxObxPbxQbxRbxSbxTbxUbwibilaJgaaaaaaaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaXRaXSbxWbxXbxYaXSaXSbxZaZybyabybbycbycbydbyebyfbygbyhbyiboxbyjbykbylbymbyncwibyjbyobypgbLaJgahTaJgaJgbysbytaXuaJgbyvbTCbyxagYbOvaJgbyAbyBaJgbyCbyDaJgbyEbfebhYbilbyFbyGbyHbyIbyJbyKbyLbyMaJgbyNbyOaJgbyPbyQbyRakFbnmcVXbySbyTbyUaJgbyVbyWbilbyXbyYbyZbzabzbbzcbzdbzebeYbgHbzfbzgaJgbzhbzibzjbzkbzlbzmbznaJgbxobxpbxqbxrbzsbztbzuaJgaJgbzoaJgaJgaJgbvTbpsbzybzzbzAbilbilbilbilbwdbilbilbilaJgbzEbzFbzGbzHbzIbzJburaUObilbilbilbetaaaaaaaaaaafaaaaafaaaaafaaaaaiaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaoEaMdbmvaNWaKSaaabilbwhbzMbzNbzObzPbzQbzNbzRbzSbwibilaaaaaaaKSaKSbohaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaZuaZvaZvbzTaZvbzUbzVbzWbzWbzXbzWbzYbzZbAabAbbAcbAdbAebAfbAgbAhbAibAjbAkbAlbAmbAnbAobApbAqbArbAsbruaJgbAubAvbBraJgbAxbTCbyxbPVbywaJgbAAbABaJgbAAbABaJgbACbgIbnfbilbilbADbilbilbilbADbAEbilbilbAFbAGbAHakFbtkbtkbAIbAJbAKbALbAMcWpbAObAPbAQomFbFNagYbATbAUbAVbAWbilbAXbeYbAYaYFbAZbBabBbbBcbBbbBbbBbbBebBbbBfbFNbFNbxabFNbBibBkbBlbBjbBmbFNbTCbBoaJgbGFbpsbBsbBtbBubBvbBwbBxbBybBzbBAbBBbBCbBDbBEbBFbBGbBHbBIbBJbBKbBLbBMbBNbilbetaafaafaafaafaafaafaaaaaiaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaoEaPlbBQbBRbBSaWnbBTbilbwibBUbBVbBWbBXbBYbBZbCabwibilaWoaWsbCbbhvbhvbCcaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaXQaSdaXQbbnaXQaSdaXQaXQaXQaSdaXQtmXaSdaSdbCdbCebJmbCfbChbChbChbChaJgaJgbCiaJgaJgaJgaJgaJgbCjbCkaJgaJgaJgbClbCmaJgbOwbTCbyxbCpbCqaJgbCraJgaJgbCsaJgaJgbCtbdtbCubCvabdbCwbCxbCybCzbCwbCAbCBbCCcVXbCDarfbCEbtkbCFbCGbCHbCIbCJbtkbCKaJgbCLbCMbilbCNbCObFNbCPbCQbCRbilbCSbeYbfdbCTbAZaJgbCUbCVbCWbCVbCXbCYbCZbDabTCbBpbtLbFNbtMbtQbBqbDbbDcbHBbkdbDfaJgbvTbpsbDjbDkbDlbDmbDnbDobDpaQmbDrbDsbDtbDubDvbDwbDxbDybDzbDAbDBbDCbDDbDEbDFbetbDGbDGbDGbDGbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaoEaaabDHbDIaQNaMiaaabilbwibDJbDKbzNbDLbDMbDNbDObwibilaaaaMdaQNaXIbjbbDPaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaXQbDQbezbDRrJHbDSbFBbFBbFBbDVsokqKobFEbDZbEaaJgbEbbEbbEcaSsbEebEfaJgmqnbEgaJgbEhbTCbyxbCnbEibEkbTCbElbEmbTCisxbEobwCbdtbhYbEpbEqbErbEsbEsbEsbEsbEtbCCbEubEvbEwbilbilbExbEybEzbEAbEBbECbExbilbilbEDbEvbEEbilbARbilbilbilaubbilbEFbEGbEHbEIbAZbfnbEKbEKbEKbELbEKbEMbEKbtTbTCbKkbzqbxbbKkbBdbDhbDibEObxbbFNbEPaJgbEVbpsbEWbDkbEXbEYbEZaVpbFbbFcnjRbFearfbFgbFhbFibDxbFjbFkbFlbFmbFnbFobFpbFqbFrbFsbFtbFubFubDGaafaaabBPaaabBOaaaaaiaaiaafaaiaagaagaaiaaiaagaagaagaagaagaaiaagaagaoEaoEaMdaQNaMiaaabilbFvbFvbFvbFwbFxbFwbFvbFvbFvbilaaaaMdaQNaMiaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFyaXQaXQbezbDRaSdbFzbFAbFBbFBbFCaJgbHqbFDbTCbOmaJgbFGbFHbFIbFJaJgaJgaJgbFKbFLaJgbFMbTCbyxagYbFNbFNbFNbFNbFNbFNbFNbFPbFQbFRbFSbFTbFUbFVbFUbFUbFUbFVbFWbFUbFXbFYbFZbGabGbbGcbGdbGdbGebGfbGdbGgbGhbGibGjbGkbGlbGcbGcbGmbGcbGnbGobGcbGpbGqbGrbGsbGtbGubBbbGvbBbbBbbBbbGwbBbbGxbFNbFNbxabFNbFNbERbirbFNbEUbFNbFNbGyaJgbvTbpsbGGbGHbvVbGIbGJbGKbGLbGMaVpaVpbGNbGOaQmbGPbGQbGRbGSbGTbGUbGVbGWbGXbGYbetaNMbHabFubHbbDGaafaaabBPaaabBOaaabBPaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaabilbHcbHdbHebFwbHfbFwbHgbHdbHhbilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHibHjbHkbHlbezbHmaSdbHnbHobHpbFBbDUaJgunZngggCybHraJgaJgbHsaJgaSsbHtbHuaJgshZbHwaJgbHxbTCbHybHzbHBbHBbHCbFNbFNbFNbFNbFPbwCbHDbHEbHFbHGbHHbHGbHIbHJbHKbHLbHMbHNbHObHPbHQbHRbHQbHSbHSbHTbHUbHSbHVbHWbHXbHYbHZbIabIbbIcbIdbIebIfbIgbHZbIhbIibIjbIkbIlbImbInbIobIpbIqbIrbIsbInbItbGzbGAbGBbFNbvmbFNbGDbGEbIubIvbIwbIxaJgbvTbpsbIGbIHbIIbIJbIKbILbILbIMbILbINbfnbIPbIQbIRbISbITaSsbIVbIWbIXbIYbIZbJabJbbJcbJdbFubJebDGaafaaabBPaaabBOaaabeubBObBObBObBOaairWfrWfbBObBOaaibBOrWfbBOaaiaoEaagaoEaMdaQNaMiaaabilbJfbJgbJhbFwbJibFwbJhbJgbJjbilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXQaXQaXQbezbJkaSdbJlaSdaSdaJgaJgaJgbTCbQrhbubFFaJgbJnbJoaJgbJpaJgaJgaJgbCmbClbJqbTCbTCbyxbJrbJsbTCbJubTCaQgbTCbTCbEobwCbdtbJwbJxbilbJzbExbJBbilbilbilbilbJDbJEbilbJFbCCbJGbJHbJIbJJbJKbJHbJLbCCbJFbilbExbJOaubbilbilbJQbJRbJSbilbJTbJUbJVbJWbJXbJYbJZbKabJZbKbbKcbBbbBbbBhbQrbTCbIybGAbKfbKebBnbIzbIAbGAbICbEQaJgbvTbpsbKmbKnbKoburbKpaPMaPMaPMaPMbKrbKsbKtbDCaUkbGQbKvbKwbKxbKybKzbKAbKBbGYbetbDGbDGbDGbDGbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEbKCbKDaMiaaabilbKEbJgbJgbKFbKGbKHbJgbJgbKIbilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaXQbKJbezbKKbwwxmmbvSbKMaJgbKNbKObRTbKPbTCbTCaJgbKQbKRaJgbKSbKTbKUaJgbKVbKWaJgbOwbTCbyxagYbTCbEnbEjbKZbLabLbaJgaJgbLcbLdbJwbilbLebLfaDEbLhbLiaJgbLkbLlbLmbLnbilaafbEqbLobJHbJHbLpbJHbJHbLqbLraafbilbLsbLtbLubLvbilbilbilbilbilbLwbeYbJVbLxbLyaJgbLzbLAbEKbLBbLCbEKbEKbETbQrbLDbIBbxbbIEbtMfqebIDbKdbHCbKhbKisKKbLJbpsbLKbLLbLMbzGbLNbLObLPbLQnjRbLRbLSbLTbLUbLVbLWbLXbLYbLZbMabMbbMcbMdbFqbMebMfbMgbMhbMhbDGaafaafbMiaafbMjaafbBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbKDaMiaaabilbMkbMlbMmbJgbMnbMobMpbMqbMrbilaaaaMdaQNaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaXQaSdaXQbbnaXQaSdaXQaXQaXQaSdaXQaSdaSdaSdbMsbMtbMubMvbMwbMwaJgbMxbMybMzbMAbMBbMCaJgaJgaJgaJgaJgaJgaJgaJgmqnbAwaJgbMDbTCbyxagYbTCbTCbMFbTCbMGbMHaJgbMIbwCbdtbMJbilbMKbMLbMMbMNbMOaJgbMPbMQbMRbMSbMTaafbEqbMUbMVbMWbMXbMVbMWbMYbLraafbMZbNabNbbNcbNdbNebNfbNgbNhbilbQBbeYbNjbzfbNkbWnaJgaJgbNnbNobNpbNqbNraJgbNsaJgbKjbNukRUbKkbLFbLEaJgbNybzwaJgaJgkiebilbilbNBbilbilaaObNCbNDbNEaJgarebNGbNHbNIbNJbNKbNLbNKbNKbNMbNNbNObNPbGYbetaNMbNQbNRbNSbDGaafaaabBPaaabBOaaabNTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbNUbNVaWobilbilbNWbNXbJgbNYbMobNZbOabilbilaWoaWsbObaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaXRbOcbxWbOdbxWaXSaXSbOeaXSbOcaXSbOfbOcaXSbOgbOhbwwxmmbCmbMwaJgbOibKPbOjbOkbOlbOmaJgbOnbOobOpbOqbOrbOsbwwmqnbOtaJgbKXbTCbyxagYbTCbTCbOxbOubTCbOyaJgbOzbwCbdtbJwbilbOAbOBaVpbODbOEaJgbOFbOGbOHbOIbilbOJbilbOJbilbilbOLbilbilbOJbilbOJbilbOMbONbOObOPauObORbOSoDKbilbOTbeYbOUaYFbLyaJgbOVbOWczebOYbOZbPabPabPbbPcaJgaJgaJgaJgaJgaJgaJgaJgbPdbPebPfbPgbAtbzGbPjbPkbPlbilaZgaZgaZgaZgbilbPmbPnbPoaSsbPpbPqbPqbPqbPrbPsbMabPtbPubJabJbbJcbPvbMhbPwbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbKDaMiaaaaJgbilbPxbJgbJgbPybPzbPAbPBbilaJgaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaXQaZuaZvaZvaZvaZvaZvbPCbPDbzZbzWbzWbPEbPFbPGbPHbPIbwwycObPJbMwaJgbDYbPLbTCbULbPLbPNaJgbPObPPbPQbPRbPSbOrbwwbClbPTaJgbPUvpxbyxbPXbPWbPYbPZbQabQbbMCaJgaYwbwCbdtbQdbilbQeaMnbQgbQhaJgaJgbQibQjbQkbQlbilbQmbQnbQobQpbQqbQrbQsbQpbQtbQubQvaJgbQxbONbQybQzbilkhdbQAwdcbilbQBbeYbQCaYFbQDbQEbQFbQGbQHbQIbQJbQKczebQLbQMaJgbQNbQObQPbQObSraJgbQRbQSbQTbQUbzwuXKburbQVbQWbQXbilbQYbQZbRabRbbilbPmbRcbRdbRebRfaSsaSsaSsbRgbRhbRhbRibRjbRkbRlbDGbDGbDGbDGbDGaafaaaaaiaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbKDaMiaaaaJgbilbRmbRnbRobRpbRqbRrbRsbilaJgaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaXQaXQbRtbRtaXQaXQaXQaSdaXQaSdaXQaSdaSdbwwbRubwwbwwbwwxmmbOtbMwaJgbPNbRvbRwbULbRwbRxaJgbRybRzbMwbFLbRAbRBbwwmqnaJgaJgaJgaJgbRCbRDaJgaJgaJgaJgaJgbREaJgaJgbACbgIbRFbilbRGbRHbGKbQybRKaJgbRLbRMbQkbRNaJgbRPbRQbRRbRSbRTbRRbRUbRVbRWbRXbRYaJgbRZbONbSabSbajjafAbSebSfbilbSgbeYbShaYFbLybSibSjbSkbSlbSmbSnbSobSpbQLbSqaJgbSrbSsbStbSubQQaJgbSvbSwbSxbSybSzbSAbilbSBbSCbSDbilbSEbSFbSGbSHbilbSIbSJbSKaSsaSsaSsaSsaSsaSsaSsaSsbSLbSMbFqbSNbMfbSObSPbSQbDGaafaaabBPaaabBOaaabBPaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEbKCbKDaMiaaaaaabilbilbilbilbwdbilbilbilbilaaaaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaXQbSRbcNaXQaaaaafaaaaaaaaaaafaaaaaabwwbSSbSTbvSbSVbSWbCmbSXaJgaJgaJgaJgbSYaJgaJgaJgbSZbPJbCmbMwbTabTbbwwmqnaJgaxubTebTfbTgbThbTibTCbTjaJgbTkbTlbTmaJgbwCbdtbTnbilbMKaMnbTobTpbMKaJgbTqbTrbTsbTtaJgbTubTvbTwbTxbTybTzbTAbTvbTBbTCbTDaJgbTEbTFbTGbTHbTIbTJbTKbTLbTMbTNbeYbTOaYFbLybSibTPbTQbTQbTRbTSbTTbTUbTVbTWaJgbTXbSsbTYbTZbUaaJgbUbbUcbUdbUeaJgbKlbilbilbilbilbilbUfaZdaZdbUgbilbSIbSJbSKaSsaSsaSsaSsbPsaSsaSsaSsbUhbUibGYaafaNMbUjbUkbUlbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdbKDaMiaaaaaaaaaaaaaJgaJgahTaJgaJgaaaaaaaaaaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaXQbUnbUnaXQaafaafaafaafaafaafaafaafbwwbUojgnjgnjgnbUqfSSbMwbCmbKMbDTbBrbUrbUsbOtbwwbwwbwwbwwbwwbUtbwwbwwmqnaJgnPGaQgbUvbUwbUwdQjbTibUyaJgbUzbUAbUBaJgbyEbdtbUCbilbMKdpPbXzbUIbMKaJgbUGdpPbUIbUGaJgbUJbUKbULbUMbUNbUObUPbUQbURbUSbUTaJgbUUbUVbUWbUXauObXzbXzbUZbilbVabeYbVbbCTbLyaJgbVcbVdbVeczebVfbVgbQIbVhbVibVjbVkbVlbVmbVnbVoaJgaJgaJgaJgaJgaJgbKlbpsbVqbVrbfIaZdbVsberbVtaZdbilbilbVubSKaSsaSsaSsaSsaSsaSsaSsaSsbVvbVwbJabVxbJcbVybSPbVzbDGaafaaabBPaaabBOaaabeuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaMiaaaaaaaaaaaaaaaaaaaQQaaaaaaaaaaaaaaaaaaaMdbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabVAaaaaaaaaaaaaaaaaaaaaaaaaaaabwwbwwbwwbwwbTbbVBbVHbVCbVHbVEbVHbVCbVFbVGbVHbVHbVHbVIawxawxbVLbHwbCmmqnaJgnhTbOubVObVPbVQbVRbVSbVTaJgbVUbVVbVWaJgbVXbdtbJwbilbilbVYbVYbVZbilbExbilbWabWbbilbilbWcbExbWebilbWcbWcbWcbilbWfbExbWcbilbilbilbilbilbilbWgbWgbWgbExbWhbeYbWiaYFbWjbWkaJgaJgaJgbWmbWnaJgbWobWpaJgaJgaJgaJgaJgbWqbWrbWsbWtbWubWvbxybWwbWxbpsbSGbWybWzaZdbWAaZdaZdbWBbilbWCbWDbSKaSsaSsaSsaSsaSsaSsaSsaSsbWEbWFbGYaafbDGbDGbDGbDGbDGaafaafbNTaafbMjaafaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaMdaQNaNWaKSaKSaKSaKSaKSaKSbWGaKSaKSaKSaKSaKSaKSbohbKDaMiaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaabWHbWHbWIbWJbWHbwwbWKbwwbwwbwwbWLbWMbWMbWMbWMbWMbWMbWMbHvbWNbKWaJgbTCauZbWQbWRbWSbVRbWTbWUaJgaJgaJgaJgbWVbwCbWWbWXbWYbWZbXabXabXabXbbXcbXdbXabXabXebXfbWYbWYbXgbXhbXibXibXjbXibXkbXlbXlbXmbXnbXobXpbXqbXrbXabXabXabXbbXsbXlbXtaYFbXubXvaLhbXxbXybXzbXAbXBbXCbXzbXDbXEbXFbXGaJgbXHbXIbXJbXKbXLbXMbXNbXObXPbpsbpsbpsbpsbpsbXQbXRbilbilbilbXSbWDbSKaSsaSsaSsaSsaSsaSsaSsaSsbXTbXUbFqbSNbMfbXVbXWbXWbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaPlbXXaPnaPnaPnbhvbhvbXYbXYbXZbXYbXYbhvbhvbhvbhvbhvbYaaPsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaabWHbYbbYcbYdbWHbvSbYebPSbPhbwwbYgbWMbYhbYibYjbYkbYlbWMbCmbClbCmaJgaJgaJgaJgaJgaJgaJgaJgbYmaJgbCmbDTbwwbYnbwCbYobYpbbHbbLbbLbbLbbLbbLbbKbbLbYqbYrbYsbbJbbLbbLbsVbbLbYvbYwbYxbbLbbLbbLbbLbbLbYAbYBbbHbbLbbKbbLbbLbbLbbLbYCbbLbYqbYDbYEbYFbYGbYHbYIbYHbYJbYJbYKbYLbYMbYJbYIbYNaJgaJgaJgaJgbYObYPbYQbYQbYRlWEbYTbYUbYVbYWbpsbYXbYYbzGbYZbZabZbbZcbSKaSsaSsaSsaSsaSsaSsbPsaSsbZdbWFbGYaafaNMbZebZfbZgbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaabDPbjbbjbbjbbDPbDIaNSbZhaoybZhaNVaXIbDPbjbbjbbjbbDPaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafbWHbZjbZkbZlbWHbMwbZmbZnbwwbwwbZobWMbZpbZqbZrbZsbZtbZubZvbZwawxbVKbVKawxawxawxbZybZzbZAbZBawwawwbZCbZDbZEbZFbZGbZHbZIbZJbZKbZHbZHbZHbZLbZHbZMbatbZNbZObatbatbZPbanbZRbZSbZTbarbasbatbatbZWbZXbZYbZYbZZcaabZZbZZbZZcabcaccadcaecafcagcahcaicajcakcalcamcancaocapcaqcarcaocasaJgcatcauaJgcavcawcaxbYQbYUbYSbYTcaycaAcaAcaBcaCcaDcaEcaFcaGcaHcaIcaJbPsaSsaSsaSsbGKaSsaSsaSscaKcaLbJabVxbJccaMbXWcaNbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaoEaoEaoEaoEaoEaMdcaOaPocaPaPobCcaMiaoEaoEaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaabWHcaQcaRcaSbWHbMwbMwcaUbwwbPKcaWbWMcaXbZscaYcaZcbabWMbWMbWMbWMbWMbWMcbbbWMbWMcbccbdcbebCmbPJcbfbOtcbgcbgcbgcbgcbgcbgcbgcbhcbhcbhcbhcbhcbicbjcbjcbkcblcbjcbmbaocbncbobbWcbpcbqbamcbscbrcbtcbucbrcbrcbvbWkaYuaYwaYwcbwbWkcbxbWkcbycbzcbyaJgcbAcbBcbCcbDbDCcaocbCcbFaSscbHcbIaJgcbJcbKaJgcbLcbMcbNcbOcbPcbQcaAcbRcbScbTcbUcbVcbWbilcbXbDCaSscbYaSsaSsaSsaSsaSsaSsaSsbfiaSsbWEccaccbaafbDGbDGbDGbDGbDGaafaaabBPaaabBOaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaabjbbjbbjbbjbbjbaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaabWHcccccdcccbWHbwwbwwbwwbwwbWMccebWMccfabkccgcchccibWMccjcckcclbWMccmccnccobWMccpbWMbWMbWMbWMbWMbWMcbgccqccrccscctccuccvcbhccwccxccycbhcczccAcczccBccCcczccAcczccDccEccFccGccHccIccJccIccKccLccIccJccIccMccNccNccNccNccNccObWkccPaYFccQaLhccRbYIcapcarcarcaoccScarcarcaoccTaJgccUccVaJgbYOccWbYQbYQccXccYcbVcbVccZcdacdbcdccdcbilcddaSsaSscbYaSscdecdfcdfcdfcdgcdfcdfcdhcdibWFccbaafaafaafaafaafaafaafaafbMiaafbMjaafbNTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaoEaoEaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaaaaaccccdjcccaaaaafaaaaaaaaabWMccebWMbWMbWMbWMcdkbWMbWMcdlcdmcdlbWMbWMbWMbWMbWMcdncdobWMcdpcdqcdrcdscdtcducdvcdwcdvcdxcdycdzcdAcdBcdCcdDcdEcdFcdGcdHcdIcdJcdKcdLccAcdMcdNcdOccJcdPcdQcdRcdScdTcdUcdVcdWcdXccNcdYcdZceaccNcebbWkceccedbbLceecefcegcehceicejcegcehceiceicegcekcelcemcenceocepceqgVZcercescdccdccdccdccetceucevcewbilcexceycezceAceBceCceDceEceFceGceHceIceJceKbWFccbbilbilaNQaKSaNQaKSaNQaaabBPaaaaafaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaafaafcccceLcccaafaafaafaafaafbWMceMaXtceObWMcePceQceRbWMceSceTceUceVceWbZsceXbWMceYceZcfacfbcfccfdcfecffcfgcfhcficfjcfkcflcfmcbhcfncfocfpcfqcfrcfscftcfucfvcfwcfxcfycdMcdNcdOcfzcfAcfBcfCcfDcfEcfFcfFcfGcfGcfHcfIcfJcfKccNcQxbWkabtcfMcfNaLhcfObSbcfQcfRcfScfRcfTcfRcfUcfVcfWaJgcfXcfYcfZcgaccZbpsbpsbpscdccgbcgccgdcgecgfcggcghcgicgjcgkcglcgmcgncgocgpcgqcgrcgscgtcgqcgucgqcgvcgwcgxcgybiNbiNbiNbiNcgAaafaaiaaaaafaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaacToaaaaaaaafaaaaafaaabWMbWMbWMccebWMcgCcgDcgEcgFcgGcgHcgIbZsbZsbZqcgJbWMcgKcgLbWMcgMcgNcgOcgPcbgcgQcgRcgScgTcgUcgVcgWcgXcgXcgYcgXcgZchachbchcchdchechfchgchhchichjchkcfzcfAcfAchlchmchnchochpchqchrchschtchuchvccNchwbWkbWkbWkbWkaJgaJgchxaJgaJgaJgaJgaJgaJgaJgaJgaJgaJgaJgaJgaJgchychzbpschAchBcdcchCchDchEchFchGchHchIchJchKchLchMchNchOchPchQbfnchOchPbGYbfnchRaLVaLVchTbilbilbDPbjcbiNaXIbDPaaabBPaaaaafaafaoDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaachUaaaaaaaafaaaackackchVchWbWMchXchYchZbWMbWMbWMciacibciccidciebWMbWMbWMcifcigbWMaJgaJgaJgaJgaJgaJgaJgciicgTcijcikcilcgXcimcinciocipciqcirciscitciuciucivcczcdMciwcdOccIcixciycizciAciBciCciDciEciFccNciGciHciIccNciJciOciOciOciOciOciMciNciOciPciOciOciKciOciOciRciSciTciUciVciWciXciYciZcjabSFcdccjbchDcjccjdcjecjfcjgcjhcjiaafcjjaafcjkcjlcjjaafcjkcjlcjmaafcjmaafaafaafaafaafaafaPlbiNaPsaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaiaafcUVaafaafaafaaaaafaafbWMbZtchVcjobWMbWMbWMcjpbWMbWMbWMbWMbWMbWMbWMcgMcjqcgKcjrcjsaJgcjtcjucjvcjwcjxaJgcjycjzcjAcjBcjCcgXcjDcjEcjFcjGcjHcjIcjJcjKcjLcjMcjKcjNcjOciwcjPcjQcjQcjQcjQcjRcjScjTcjUcjVcjWccNcjXcjYcjZccNckackcckcckcckcckcckdckcckeckeckeckeckeckeckeckeckeckfckgbfIaZdaZdaZdbpsaZdckhcdcckickjckkcklckmcknckockpaafbDGckqaNMckqbDGckqaNMckqbDGckraNMcksbDGaafaaaaafaaaaaacktbiNckuaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaoEaaackvaaaaafaaaaaaaafaaabWMckwbWMceMaXtckxckxaXtaXtckzckAckBaAUckAckAaAUaAUckDckEckFckGckHckIckJckKckLaJgcbgckMckNckOcbgcgXckPckQcgXckRckScjNckTckUckVckWckXcjKckYciwckZcjRclaclbclcclccldclecjQclfclgclhcliclhclhclhcljckcajuclkcllclmclnclockeclpclpclpclqclpclrclpckeckfckgclsbYTbVDclubpsclvclwcdcclxclyclzclAcjgcknclBckpaafbDGclCclDclEbDGclFclGclHbDGclIclJclKbDGaafaaaaafaafaafclLbiNclMaafaafaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaoEaaaabwaaaaafaaaaaaaafbWMbWMbWMbWMbWMbWMbWMbWMbWMbWMapzclPclPclQclRclRclRclRclSclRclRclRclTclUclVclWclXclYabHclZcmacmbcmccmdcmecmfcmgcmhcmicmjcmkcmlcmmcmncmocjNckYciwckZcjQcmpcmqcmrcmscmtcmucjQcmvcmwcmxcmybeDbyuckccmBckcnmKcmDcmDcmFcmGcmHckeclpclpcmIcmJcmKcmLcmMckecmNckgckgckgckgckgckgckgckgcdccdccdccmOcmPcmQcmRcmQckpaafbDGcmScmTcmUbDGcmVcmWcmXbDGcmYcmZcnabDGaafaafaafaaabilcnbcnccndcneaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaiaaachUaafaafaafaafaafbWMcnfcoHcngcnhcnicnjcaTcaVbWMapzclPcnmcnncnocnpcnqclPcnrcnscntclPcnucnvcnwcnxcnycnzcnAcnBcnCcnDcnEcnFcnEcnDcnEcnGcnHcjLcnIcnJcnKcnLcnMcjKckYciwckZcjRcnNcnOcnPcnQcnRcnScnTcnUcnVbZxcnWcnXcnYckccoackcckccoccodcoecofcogckeclpclpcohclpclpcoicojckeckfckgcokcolckgcomconcoocopcoqcorckgcoscotcoucovcowcoxaafbDGcmScoycmSbDGcmVcozcmVbDGcoAcoBcoAbDGaafaaaaafaafcnecoCbFucoDcoEaafaaiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaoEaaachUaafaaaaaaaaaaafcoFcoGcoHcoHcoIcoJcoKcoLcfLbWMapzclPcoNcoOcoPcoQcoRcoScoTcoUcoVclPcoWcoXcoYcoZcpacpbcpccpdcpecpfcpgcphcphcphcpicpjcpkcplcpmcnJcpncpocppcjNcpqciwcprcjQcpscptcpucpvcpwcpxcjQcpycpzcpAcnZcpBcpFckccpEcpCckccpGcpHcpIcpJcpKaivckecpLcpMcpNcpNckecpOckecpPcpQcpRcpSckgcpTwMmcmAcmAcpUcpVckgcpWcpXcmQcpYcmQcpXaafbDGbDGbDGbDGbDGbDGbDGbDGbDGbDGbDGbDGbDGaafaafaafaaacoEbFucpZbFucqaaaabBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaiaafchUaafaaaaaaaaaaafcoFcqbcoHewNcoHcqccoKcqdbWMbWMapzclPcqfcqgcqfcqhcqfclPcqfcqicqfclPcihcqjcqkcihcihcihcqlcqmcqncqocqocqpcqqcqrcqocqocqscjNcqtcqucqvcqwcjNcjNcqxciwcqycjQcjQcqzcqAcqBcqCcqDcjQcqEcqFccMccMckcckcckccqHcqGckcccIcqIcqJmQsccMcqKcqLcqMcqNcqOcqPcqQcqRckecmNckgciQccOckgcqUcpUcqVcqWcqXcqYckgcpWcpXcqZcracrbcrcaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaafaafcqabFubFubFucoEaafbBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaoEaaacjnaaaaaaaaaaaaaafcoFcrdcoHcoHcrecrfcoKcrgcrhcbbapzclPcricrjcrkcrlcrmclPcrncrocrpclPcrqcrrcrscrtcrucrvcrwcdHcrxcqocrycrzcrAcrBcrCcqocrDcjNcrEcrFcrGcrHcrIcrJcrKcrLcrMcrNcrOcrPcrQcrRcrScrTcrUcrVcrWcrXcrYcrZcfAcsacsbcscnmbcsdcsecsfcfAcsgcqKcshcsicsjcskcslcsmcsnckecmNckgckgcsockgcspcsqcmAcmAcsrcmAckgcpWcpXcpXcstcpXcpXaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaaaaafaaacqacoEcnebzBcneaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaafaaaaaaaaiaaackvaafaaaaaaaaaaafcoFcoFckbcoHcoKcoKcoHcoHcsucbbapzclPcsvcswcsxcsycszclPcsAcsBcsCcsDcsEcsFcsGcsHcsIcsJcsKcdHcdIcqpcsLcsMcsNcsOcsPcqocsQcjNcsRcsScsTcsUcsVcsWcsXciwcsYcsZctactbctcctdctectfctgcthctictjctkctlctmctnctoctpctpctpctqctrctscttctuctvctwctxctyctzctActBctCctDckgctEctFctGctHcqXcmAcmActIctJctKctLctMcpXctNcpXctOaafaaibBObBObBObBObBObBOaaibBObBPbBObMjaafbBPaaaaafaaaaaaaafaaaaafaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaafaaaaaaaoEaaacgBaaaaaaaaaaaaaafcoFctPcoHcoHctQcoHcoHcqdbWMbWMctRctSctTcswctUcsyctVctWctXctYctZcuacubcuccudcuecufcugcuhcuichacujcukculcumcuncuocupcuqcjNcurcuscutcuucrIcsWcsXciwcsYcuvcuwcuxcuycuzcuAcuBcrUcuCcuDcuEcuFcuGcuHcuIcuJcfFcfFcuKcuLcuMcuNcuOcuPcuQcuRcuScuTcuUcuVcuWckecuXckgcuYcuZcvacpRcvbcsrcvccmAcvdckgcvecvfcvgcvhcvgackaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaabBPaafaafaaibNTbNTbNTaaiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaoEaaachUaaaaaaaafaafaafcoFcvicoKcoHcoIcoKcvjcoIckybWMclOclPcvlcvmcvncvocvpclPcvqcsycvrclPcvscvtcvucvvcvwcrvcvxcdHcvycqocvzcvAcvBcvCcvDcqocvEcjNcjNcvFcjNcjNcjNcjNcvGcvHcvIcjQcjQcjQcjQcjQcvJcvKcjQckcckccvLcvMcvNcvOcvPcvQcvRcvRcvRcvRcvScvTcvUcvSckeckeckecvVcvWcvXcvYckecvZcwacwacwacwacwbcwcadIcwdcwdcweckgaafackaaaaaaaaaackaafaafaaibBPbBPbBPaaibBPbBPbBPaaibBPbNTbBPbBPaaaaaaaafaaaaaaaafaaaaafaafaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaafaaiaoEaaaaaiaoEaoEaafaafaafchUaafaafaafaaaaafcoFcoKcoHcvjcoKcwfcoHckCcltcwjcwkclPcwlcwmcwncwocwpclPcwqcwrcwsclPcwtcwucwucwucwucwucwvcwwcwxcwycwzcwAcwBcwCcwDcqocwEcwFcwGcwHcwIcwJcwKcwLcwMcwNcwOcwPcwQcwRcwScwTcwUcwVcwWcwXcwYcwZcxacxbcxccxdcxecxfcxgcxhcxicvScxjcxkcxlcxmcxncpDcpDcpDcpDcpDcpDcxocxpcxqcxrcwacwacwackgckgckgckgckgcxsackackackackackaaaaaaaaaaafaaaaafaaaaaaaafaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxtaaaaaaaaaaafaaaaaaaaaaafaaaaaaaafaaacjnaaaaaaaafaaaaafcoFcoFcoFcoFcoFbWMcnkcnlbWMbWMclOclPclPclPclPclPclPclPclPcwtclPclPcxwcBQcxxcxycATcxAcsKcdHcxCcqocxDcxEcxFcxGcxGcxGcxGcxGcxGcxGcxHcxIcxHcxJcxKcxLcxMcxNcxOcxPcxQcxRcxScxScxTcxScxScxUcxVcxWcxccxXcxYcxZcyacybcyccvScydcyecyfcygcyhcpDcyicRvcRvcyjcRvcykcwacylcymcyncyocypcyqcyrcyscysaafaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaacytcytcytcytcytaafaafaafcytcytcytckvcytaaaaoEaaaaafaaaaaaaaaaaaaafbWMbWMbWMbWMcoMclOcigcyvcywcigcyxcgMcigcjqlPSiBJcyybZscBQcyzcyAcyBqrVcyDcyEcyFcqocqocqocqocxGcyGcyHcyIcyJcyKcxGcyLcyMcyNcyOcyPcdNcjPcxRcyQcyRcyScyTcxScyUcyVcyWcxScyXcyYcyZczaczbcxeczcczdczeczfcvSczgczhcziczjczkcpDckfczlcwacwacwacwacwaczmcymcznczncznczncznczncznaafaafaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaafczoczpczpczpczpczqchUczrczsczsczsczscztaafaafaafaafaafaafaafaafaafackbWMczubWMczvczwczBczBczycigczzczAczBczBeuYcBQcBQcBQcBQcAQcAVczCxIxczGczHczIczJczKczLczMcxGczNczOczPczQczRcxGczSczTczUczVczWcdNczXczYczZczYczYczYcxScAacAbcyVcAccAdcAecAfcAgcAhcAicAjcAjcAkcAlcvScAmczhcAncAocApcpDcmNcAqcwacArcAscAtcAucAvcAwcAxcAycAzcAAcABcACcznaafaafaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafcADcADcADcADcADaaachUaaacADcADcADcADcADaaaaoEaaaaaaaaaaaaaafaafcAEcAFcAGcAHcAIcAHceUbZqcAJfSFczBczxcALbZsbZscyCcBQczDcqegMZcAQcARcAScBQcAUcBXcAWczJcAXcAYcAZcxGcBacBbcBccBdcBecxGcBfcBgcxHcxHcBhcdNckZczYcBicBjcBkcBlcxScBmcyVcBncxScBocBpcBqcvRcBrcBscBtcBucBvcBwcvScBxcBycBzcBAcAocpDcmNcBBcwacBCcBDcBDcBEcAvcBFcBGcBHcBIcBJcBKcBLcBMaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaafaaaaafaafaafaaacBNaaaaafaaaaafaaaaafaaaaoEaaaaaaaaaaafaafaaaackackbWMcBObWMbZsciggiYbZscBPbWMbWMbWMbWMbWMxlecBQcAQcBRcxBcAQcBTcxzcBVcBWcBUcBYcBZcCacCbcCccCdcCecCfcCgcChcCicCjcCkcClcCmcxHcCncCocCpcCqcCrcCscCtcCucxScCvcCvcCwcxScdScCxcCycvRcvRcvRcvRcvRcvRcvRcvScvScvScCzcvScvScpDcCAcpDcwacCBcBDcBDcBEcAvcCCcCDcCEcCEcCEcCFcCGcznaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaacytcytcytcytcytaafchUaafcytcytcytcytcytaafaoEaaaaaaaaaaaiaaaaaaaafackbWMbWMbWMcdpbWMcgNcqScqTjBKcoLcoHcCJbWMcANcBQcAPcAPcAPcAPcAPcAPcAPcCLcCMcCNcCOcCPcCQcCRcCScCTcCUcCVcCWcCXcCYcCZcDacDbcDccDdcdNcDecDfcDgcDhcDicDjcxScDkcDlcDlcxScDmcDncDocDpcDqcDrcDscDtcDucDvcDwcDxcDycDzcDAcDBcDCcDDcDEcwacDFcDGcDGcDHcDIcAvcAvcDIcAvcAvcAvcAvcBMaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafczoczpczpczpczpczqchUczrczsczsczsczscztaafarsaafaafaafaoEaafaafaafaafaafaaabWMbWMbWMbWMbWMbWMbWMalMnbXcmEbWMcANcdpcAPcDJcDKcDLcDMcDNajvcDOcDPcDQczJcDRcDScDTcxGcDUcDVcDVcDVcDWcxGcDXcDYcDZcEacEbcEccEdczYcEecBjcEfcEgcxScEhcEicEjcAccEkcElcEmcEncEocEpcEqcErcEscEtcEqcEucEtcEvcEwcDBcExcDDcEycEzcEAcEBcECcAvcEDcEEcEFcEGcEHcAvcAvcAvcznaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafcADcADcADcADcADaaacEIaafcADcADcADcADcADaaaaoEaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaafaafaaaaaabWMdxGbWMbWMbWMcAKcEJcEKcELcEMcENcEOcEPcEQcERcEScETczJcEUcEVcEWcxGcEXcEYcEZcFacFbcxGcFccFdcFdcxHcFecFfcFgcFhcFicFjcFkcFlcxScFmcFncFocFpcFqcFrcFscFtcFucFvcFwcFxcFycFzcFAcFBcFCcFDcEwcFEcFFcDDcFGczncFHczncznczncznczncznczncznczncznczncznaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaiaafchUaafaaaaaaaaaaafcoFcqbcoHewNcoHcqccoKcqdbWMbWMapzclPcqfcqgcqfcqhcqfclPcqfcqicqfclPaJgcqjcqkaJgaJgaJgcqlcqmcqnaJgaJgcqpcqqcqraJgaJgcqscjNcqtcqucqvcqwcjNcjNcqxciwcqycjQcjQcqzcqAcqBcqCcqDcjQcqEcqFccMccMckcckcckccqHcqGckcccIcqIcqJmQsccMcqKcqLcqMcqNcqOcqPcqQcqRckecmNckgciQccOckgcqUcpUcqVcqWcqXcqYckgcpWcpXcqZcracrbcrcaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaafaafcqabFubFubFucoEaafbBPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaaoEaaacUVaaaaaaaaaaaaaafcoFcrdcoHcoHcrecrfcoKcrgcrhcbbapzclPcricrjcrkcrlcrmclPcrncrocrpclPcrqcrrcrscrtcrucrvcrwcdHcrxaJgcrycrzcrAcrBcrCaJgcrDcjNcrEcrFcrGcrHcrIcrJcrKcrLcrMcrNcrOcrPcrQcrRcrScrTcrUcrVcrWcrXcrYcrZcfAcsacsbcscnmbcsdcsecsfcfAcsgcqKcshcsicsjcskcslcsmcsnckecmNckgckgcsockgcspcsqcmAcmAcsrcmAckgcpWcpXcpXcstcpXcpXaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaaaaafaaacqacoEcnebilcneaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaafaaaaaaaaiaaackvaafaaaaaaaaaaafcoFcoFckbcoHcoKcoKcoHcoHcsucbbapzclPcsvcswcsxcsycszclPcsAcsBcsCcsDcsEcsFcsGcsHcsIcsJcsKcdHcdIcqpcsLcsMcsNcsOcsPaJgcsQcjNcsRcsScsTcsUcsVcsWcsXciwcsYcsZctactbctcctdctectfctgcthctictjctkctlctmctnctoctpctpctpctqctrctscttctuctvctwctxctyctzctActBctCctDckgctEctFctGctHcqXcmAcmActIctJctKctLctMcpXctNcpXctOaafaaibBObBObBObBObBObBOaaibBObBPbBObMjaafbBPaaaaafaaaaaaaafaaaaafaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaafaaaaaaaoEaaacToaaaaaaaaaaaaaafcoFctPcoHcoHctQcoHcoHcqdbWMbWMctRctSctTcswctUcsyctVctWctXctYctZcuacubcuccudcuecufcugcuhcuichacujcukculcumcuncuocupcuqcjNcurcuscutcuucrIcsWcsXciwcsYcuvcuwcuxcuycuzcuAcuBcrUcuCcuDcuEcuFcuGcuHcuIcuJcfFcfFcuKcuLcuMcuNcuOcuPcuQcuRcuScuTcuUcuVcuWckecuXckgcuYcuZcvacpRcvbcsrcvccmAcvdckgcvecvfcvgcvhcvgackaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaabBPaafaafaaibNTbNTbNTaaiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaoEaaachUaaaaaaaafaafaafcoFcvicoKcoHcoIcoKcvjcoIckybWMclOclPcvlcvmcvncvocvpclPcvqcsycvrclPcvscvtcvucvvcvwcrvcvxcdHcvyaJgcvzcvAcvBcvCcvDaJgcvEcjNcjNcvFcjNcjNcjNcjNcvGcvHcvIcjQcjQcjQcjQcjQcvJcvKcjQckcckccvLcvMcvNcvOcvPcvQaJgaJgaJgaJgcvScvTcvUcvSckeckeckecvVcvWcvXcvYckecvZcwacwacwacwacwbcwcadIcwdcwdcweckgaafackaaaaaaaaaackaafaafaaibBPbBPbBPaaibBPbBPbBPaaibBPbNTbBPbBPaaaaaaaafaaaaaaaafaaaaafaafaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaafaaiaoEaaaaaiaoEaoEaafaafaafchUaafaafaafaaaaafcoFcoKcoHcvjcoKcwfcoHckCcltcwjcwkclPcwlcwmcwncwocwpclPcwqcwrcwsclPcwtcwucwucwucwucwucwvcwwcwxcwycwzcwAcwBcwCcwDaJgcwEcwFcwGcwHcwIcwJcwKcwLcwMcwNcwOcwPcwQcwRcwScwTcwUcwVcwWcwXcwYcwZcxacxbcxccxdcxecxfcxgcxhcxicvScxjcxkcxlcxmcxncpDcpDcpDcpDcpDcpDcxocxpcxqcxrcwacwacwackgckgckgckgckgcxsackackackackackaaaaaaaaaaafaaaaafaaaaaaaafaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxtaaaaaaaaaaafaaaaaaaaaaafaaaaaaaafaaacUVaaaaaaaafaaaaafcoFcoFcoFcoFcoFbWMcnkcnlbWMbWMclOclPclPclPclPclPclPclPclPcwtclPclPcxwaJgcxxcxycATcxAcsKcdHcxCaJgcxDcxEcxFcxGcxGcxGcxGcxGcxGcxGcxHcxIcxHcxJcxKcxLcxMcxNcxOcxPcxQcxRcxScxScxTcxScxScxUcxVcxWcxccxXcxYcxZcyacybcyccvScydcyecyfcygcyhcpDcyicRvcRvcyjcRvcykcwacylcymcyncyocypcyqcyrcyscysaafaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaacytcytcytcytcytaafaafaafcytcytcytckvcytaaaaoEaaaaafaaaaaaaaaaaaaafbWMbWMbWMbWMcoMclOcigcyvcywcigcyxcgMcigcjqlPSiBJcyybZsaJgcyzcyAcyBqrVcyDcyEcyFaJgaJgaJgaJgcxGcyGcyHcyIcyJcyKcxGcyLcyMcyNcyOcyPcdNcjPcxRcyQcyRcyScyTcxScyUcyVcyWcxScyXcyYcyZczaczbcxeczcczdczeczfcvSczgczhcziczjczkcpDckfczlcwacwacwacwacwaczmcymcznczncznczncznczncznaafaafaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaafczoczpczpczpczpczqchUaarczsczsczsczscztaafaafaafaafaafaafaafaafaafackbWMczubWMczvczwczBczBczycigczzczAczBczBeuYaJgaJgaJgaJgcxBcAVczCxIxczGczHczIczJczKczLczMcxGczNczOczPczQczRcxGczSczTczUczVczWcdNczXczYczZczYczYczYcxScAacAbcyVcAccAdcAecAfcAgcAhcAicAjcAjcAkcAlcvScAmczhcAncAocApcpDcmNcAqcwacArcAscAtcAucAvcAwcAxcAycAzcAAcABcACcznaafaafaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafcADcADcADcADcADaaachUaaacADcADcADcADcADaaaaoEaaaaaaaaaaaaaafaafcAEcAFcAGcAHcAIcAHceUbZqcAJfSFczBczxcALbZsbZscyCaJgczDcqegMZcxBcARcASaJgcAUcBXcAWczJcAXcAYcAZcxGcBacBbcBccBdcBecxGcBfcBgcxHcxHcBhcdNckZczYcBicBjcBkcBlcxScBmcyVcBncxScBocBpcBqaJgcBrcBscBtcBucBvcBwcvScBxcBycBzcBAcAocpDcmNcBBcwacBCcBDcBDcBEcAvcBFcBGcBHcBIcBJcBKcBLcBMaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaafaaaaafaafaafaaaaawaaaaafaaaaafaaaaafaaaaoEaaaaaaaaaaafaafaaaackackbWMcBObWMbZsciggiYbZscBPbWMbWMbWMbWMbWMxleaJgcxBcBRcxBcxBcBTcxzcBVcBWcBUcBYcBZcCacCbcCccCdcCecCfcCgcChcCicCjcCkcClcCmcxHcCncCocCpcCqcCrcCscCtcCucxScCvcCvcCwcxScdScCxcCyaJgaJgaJgaJgaJgaJgaJgcvScvScvScCzcvScvScpDcCAcpDcwacCBcBDcBDcBEcAvcCCcCDcCEcCEcCEcCFcCGcznaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaacytcytcytcytcytaafchUaafcytcytcytcytcytaafaoEaaaaaaaaaaaiaaaaaaaafackbWMbWMbWMcdpbWMcgNcqScqTjBKcoLcoHcCJbWMcANaJgcAPcAPcAPcAPcAPcAPcAPcCLcCMcCNcCOcCPcCQcCRcCScCTcCUcCVcCWcCXcCYcCZcDacDbcDccDdcdNcDecDfcDgcDhcDicDjcxScDkcDlcDlcxScDmcDncDocDpcDqcDrcDscDtcDucDvcDwcDxcDycDzcDAcDBcDCcDDcDEcwacDFcDGcDGcDHcDIcAvcAvcDIcAvcAvcAvcAvcBMaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafczoczpczpczpczpczqchUaarczsczsczsczscztaafarsaafaafaafaoEaafaafaafaafaafaaabWMbWMbWMbWMbWMbWMbWMalMnbXcmEbWMcANcdpcAPcDJcDKcDLcDMcDNajvcDOcDPcDQczJcDRcDScDTcxGcDUcDVcDVcDVcDWcxGcDXcDYcDZcEacEbcEccEdczYcEecBjcEfcEgcxScEhcEicEjcAccEkcElcEmcEncEocEpcEqcErcEscEtcEqcEucEtcEvcEwcDBcExcDDcEycEzcEAcEBcECcAvcEDcEEcEFcEGcEHcAvcAvcAvcznaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafcADcADcADcADcADaaaabfaafcADcADcADcADcADaaaaoEaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaafaafaaaaaabWMdxGbWMbWMbWMcAKcEJcEKcELcEMcENcEOcEPcEQcERcEScETczJcEUcEVcEWcxGcEXcEYcEZcFacFbcxGcFccFdcFdcxHcFecFfcFgcFhcFicFjcFkcFlcxScFmcFncFocFpcFqcFrcFscFtcFucFvcFwcFxcFycFzcFAcFBcFCcFDcEwcFEcFFcDDcFGczncFHczncznczncznczncznczncznczncznczncznaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarsaaaaafaaaaafaaaaafaaackvaaaaafaaaaafaafaafaafarsaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaabWMcgNcANcAPcFJcFKcFLcFMcFNcFOcFPcFQcFRczJczJcFSczJcxGcxGcxGcxGcxGcxGcxGcFTcxHcxHcFUcFVcxLcxMcFWcFXcFXcFYcFZcxScGacGbcGccGdcGecGfcGgcGhcGicEwcGjcGkcGlcGmcGncGocGpcGqcGrcGscGtcGucGvcGwcGwcGxcGycGzcGAcGBaafaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcGCcGDcGCaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaacytcytcytcytcytaafcGEaafcytcytcytcytcytaafaoEaaaaaaaaaaaiaafcGFcGFcGFcGGcGFcGFcGFaaaaafaaaaaaaaaaafaaaaaabWMczzcANcAPcGIcGJcGKcGLcGMajvcGNcGOcGPcAPcGQcGRcGScGTcGUcGVcGWcGXcGUcGYcGWcGZcGTcHackYcdNcHbczYcHccHdcHecHccHfcHfcHfcHfcHfcHgcvMcHhcDpcHicHicHjcHkcHlcHmcHncHocHpcHqcHrcDBcHscHtcHucHvcHwcHxcHxcHxcHycHzaafaaaaaaaaaaaaaaaaaaaaacHAaaaaaaaaaaaaaaaaaaaaaaaacHAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcGDcGCcHBcGCcGDaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafczoczpczpczpczpczqchUczrczsczsczsczscztaafaoEaaaaafaafaoEaaacGFcHCcHDcHEcHFcHCcGFcGFcGGcGFcGGcGFcGFaafaafbWMcjscANcAPcAPcAPcAPcAPcAPcAPcHGcHHcHIcHJcHKcHLcHMcGTcHNcHOcGWcHPcGUcHQcHRcHScGTcHTckYcdNcsYcuvcHUcHVcHWcHXcHYcHZcIacIbcIccIdcCxcxWcDBcDBcDBcDBcDBcDBcIecIfcIgcIhcIicIjcDBcIkcIlcImcIncIocIpcIqcIrcIscHzaafaafaaaaaaaaaaaaaaaaaacHAaaaaaaaaaaaaaaaaaaaaaaaacHAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcItcGDcIucIvcIwcGDcItaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafcADcADcADcADcADaaacEIaaacADcADcADcADcADaaaarsaafaafaaaaoEaafcGFcIxcIycIzcIAcIxcIBcICcIDcIEcIFcIGcGFaaaaaabWMbWMcAKcIHcIIhqVhqVcIKcILcIMcINcIOcIPcIQcIRcIScITcIUcIVcIWcIVcIXcIYcIZcJacJbcJccJdcJecEccJfcJgcJhcJicJjcJkcJlcJkcJmcJncIccdScBpcJocDBcJpcJqcJrcJscJtcJucJtcJvcJwcJxcJycDBcJzcIlcJAcGwcJBcHzcHzcGwcHzcGwaoDaafaaaaaaaafaaaaaaaafaafaafaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaafcGDcGDcJCcJDcJDcJDcJEcGDcGDaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafczoczpczpczpczpczqchUaarczsczsczsczscztaafaoEaaaaafaafaoEaaacGFcHCcHDcHEcHFcHCcGFcGFcGGcGFcGGcGFcGFaafaafbWMcjscANcAPcAPcAPcAPcAPcAPcAPcHGcHHcHIcHJcHKcHLcHMcGTcHNcHOcGWcHPcGUcHQcHRcHScGTcHTckYcdNcsYcuvcHUcHVcHWcHXcHYcHZcIacIbcIccIdcCxcxWcDBcDBcDBcDBcDBcDBcIecIfcIgcIhcIicIjcDBcIkcIlcImcIncIocIpcIqcIrcIscHzaafaafaaaaaaaaaaaaaaaaaacHAaaaaaaaaaaaaaaaaaaaaaaaacHAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcItcGDcIucIvcIwcGDcItaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafcADcADcADcADcADaaaabfaaacADcADcADcADcADaaaarsaafaafaaaaoEaafcGFcIxcIycIzcIAcIxcIBcICcIDcIEcIFcIGcGFaaaaaabWMbWMcAKcIHcIIhqVhqVcIKcILcIMcINcIOcIPcIQcIRcIScITcIUcIVcIWcIVcIXcIYcIZcJacJbcJccJdcJecEccJfcJgcJhcJicJjcJkcJlcJkcJmcJncIccdScBpcJocDBcJpcJqcJrcJscJtcJucJtcJvcJwcJxcJycDBcJzcIlcJAcGwcJBcHzcHzcGwcHzcGwaoDaafaaaaaaaafaaaaaaaafaafaafaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaafcGDcGDcJCcJDcJDcJDcJEcGDcGDaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaaaaaaafaafaafaaaaaackvaafaaaaaaaafaafaaaaaaaoEaaaaaaaaaaaiaaacGFcJFcJGcJHcJIcJFcJFcJJcJKcJLcJMcJNcGFaaaaaaaaacJOcJOcJOcJOcJObWMcJPcAPcAPcJQcJRcJScAPcJTcJUcJVcGTcJWcGWcGWcHPcGUcJXcJYcJZcKacKbcKccKdcKecHfcHfcKfcKgcKhcKicKhcKjcKkcIccKlcKmcKncHzcJpcJqcKocKpcKqcKrcKscGicIhcKtcKucDBckgcKvckgcGwcKwcKxcKycKzcKAaoDaoDaafaafaafaafaafaafaafaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcKBcKCcKBcJDcKDcJDcKEcKFcGCaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarsaaaaaaaaaaaaaaaaaaaaackvaaaaaaaaaaaaaafaaaaaaarsaaaaaaaaaaoEaafcGFcKGcKHcKIcKJcKKcKLcKMcKNcKOcKPcKQcKRcKScKScKScKRcKTcKUcKVcGFcKWcKXcAPcKYcKZcLacLbczFcBScBScBScGTcGUcGWcGWcLccGUcLdcLecLfcGTcLgcLhcdNckZcHfcLicLjcLkcKicKicLlcLmcLncIccLocLpcLqcDBcJpcJqcKocLrcJtcLscJtcLtcLucLvcLwcDBcLxcLycmCcGwcGwcGwcGwcGwcLzbogaoDaafaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaafcGDcGDcLAcJDcJDcJDcLBcGDcGDaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaaiaoEaoEaoEaaaaaaaaackvaaaaaaaaaaoEaoEaoEarsaoEaafaafaaaaoEaaacIBcLCcLDcLEcLFcLGcLHcLIcLJcLKcLLcLMcLNcLOcLPcLQcLRcLScLTcLUcLVcLWcLXcLYcLWcLZcMacMbcMccMdcMecMfcGTcGTcGTcGTcGTcGTcGTcMgcGTcGTcxRcMhcdNckZcHfcMicLjcKicKhcMjcMkcMlcMmcMncMocMpcMqcMrcMscMscMscMscMscMtcMscMucMvcMwcDBcDBcvkcMycMzcMAckgaafaafaafaafaaaaaaaafaafaoEaoEaoEarsaoEaoEaoEarsaoEaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcItcGDcMBcMCcMDcGDcItaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -8440,19 +8140,19 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaoEaaaaafaaaaoEaaaaaaaafaafaafaafaaabiPaaaaafaafcGFcNPcNQcJFcNRcNScNTcNUcNVcNWcNXcNYcGFcNZaaaaaacOacOacOacOacOacxRcObcAPcAPcAPcAPcAPczFcOccOdcOeczFrWvcxRcxRcxRcxRcxRcxRcxRcxRcxNcOgcOhcOicOjcOkcOlcOmcOncOocOpcOqcOrcOscOtcOucOvcOwcOxcOycOzcOAcOBcOCcNGcODckfckgckgckgckgckgcmNcOEckgckgaafaafaaaaaaarsaafcOFcOGcOHaafcOFcOGcOHaaacOFcOGcOHaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcGCcGDcGCaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaoEaoEaoEaoEaaaaaaaaaaaaaaaaaaaaacHAcHAaafaaacGFcOKcOJcJFcOJcOKcOLcJFcJFcOMcJFcJFcGFaafaafaafcxRcONcOOcwgcOQcORcOScOTcOUcOVcOWcOXczFcOYcOZcPacPbcPccxRcPdcPecPfcPgcPhcPicPjcPgcPkcPlcPmcHfcPncPocPpcPqcPrcPscOqcPtcHfcPucPvcPwcOwcPxcPycPzcPAcNEcPBcNGcPCcPDckgcwhcPFcPGckgcPHcPIcPJckgckgckgackaaaaoEaafcOFcPKcOHaafcOFcPKcOHaafcOFcPKcOHaafaoEaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaaiaaacGFcPLcPMcJFcPNcPOcOLcPPcPQcPRcPScPTcGFaaaaafaaacxRcPUcPVcPWcPXcPYcPZcQacPZcPZcQbcQcczFczFczFczFczFcOfcxRcQdcQecQfcQgcQhcQicQjcQkcQlcQmcQncHfcHfcHfcHfcHfcQocHfcQpcHfcHfcQqcQrckccNGcNGcNGcNGcNGcNGcNGcNGcLxcQscQtcQucQvcQwckgcQxcQycQzcQAcQBcQCcQDaafaoEaaacOFcPKcOHaafcOFcPKcOHaafcOFcPKcOHaafaoEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaoEaaacGFcQEcQFcJFcQFcQEcQGcQHcQIcQJcQKcQLcQMaaaaaacQNcQNcQOcQNcQNcQNcQPcQNcQNcQNcQNcQQcQRsBJcQTsBJcQScQVcQWcQXcQYcQZcRacRbcRccRdcRecRecRfcRgcRhcRicRjcRkcNkcRlcRmcRlcRncNlcRocRpcRqcRrcRscRtcRvcRucRvcyjcRxcyjcyjcRyckgcRzcRAcRBckgcRCcRDcREckgckgckgackaaaaoEaaacOFcPKcOHaaacOFcPKcOHaafcOFcPKcOHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAcHAaafaafcGFcGFcRFcGFcRFcGFcRGcRHcRIcRJcRKcRLcGFaafaafcQNcRMcRNcQNcROcRPcRQcRRcRScRTcQNcQNcQNcQNcRUcQNcQNcQNcQNcPgcRVcQZcRWcQZcRXcRYcRZcQZcSacSbcSccPgcPgcPgcPgcPgcPgcSdcSecSfcxRcSgcShcSickgcmzcSjcSkckgckgckgckgckgckgckgckgckgcsocSlcSmcSncSlcSlaaaaaaaaaaaaaafaaacOFcPKcOHaaacOFcPKcOHaaacOFcPKcOHaaaaafaoEarsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaaiaaaaafaafaafcSocSpcSqcSrcSscStcSucSvcSwcGFaaaaaacQNcSxcSycQNcSzcSAcSBcSCcQNcQNcSDcSEcSFcSGcSHcSIcSJcSKcSDcSLcSMcQZcRWcQZcSNcSOcSPcQZcSQcSRcSScSTcSUcSVcSWcSXcPgcSYcSZcwgcxRcTbcTccTdckgckgckgctKckgcTecTfcTgckgcThcTicTjckgccOcSlcTkcTlcTmcTncTncTnaafaafaafaaaaafcToaafaaaaafcToaafaaaaafcToaafaaaaaaaafaaaaoEaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaoEaaaaafaaaaaacTpaafcTqcGFcGFcGFcGFcGFcGFcGFaaaaaacQNcTrcTscQNcTtcTucTvcTwcQNcTxcTycTzcTAcTBcTCcTDcTEcTEcTFcTGcTHcTIcTJcQZcSNcTKcSPcQZcSacTLcSNcTMcTNcQZcTOcTPcPgcTQcxRcxRcxRcTRcTScTTaaaaaaaafaaackgcvccmAcmAcTUcTVcTWcTVcTXcTYcSlcTZcUacUbcUccUdcUecUfcUfcUfcUgcUhcUhcUicUhcUhcUhcUhcUhcUhcUhcUjcUfcUfcUkaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAcHAaaiaafaafaafaaaaaaaaaaafaafaafaaaaaaaaaaafaaaaaaaaacQNcUlcUmcUncUocUpcUqcUrcQNcUscQNcUtcUucUvcUwcUxcTAcTAcUycUzcUAcUBbZQcUCcSNcUDcSPcQZbbScUEcUFcUGcUHcUIcUJcUKcPgcULcxRaafaafcTTcUMcTTaafaafaafaaackgcUNeJqcmAcUOcUPcUQcURckgctKcSlcUScUTcUUcTncTncTnaaaaaaarsaaaaaacUVaafaaaaaacUVaafaaaaaacUVaafaaaaaaaafaaaaoEaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaaaaaaaaiaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaacQNcUWcUXcQNcUYcUZcVacVbcVccVdcQNcVecVfcVgcVhcVicVjcVkcSDcSLcSPcQZcVlcVmcVncVocVpcUBcVqcVrcVscPgcPgcVtcVucPgcPgcVvcxRaafaaacTTcVwcTTaaaaaaaafaafckgcVxcVycVzckgcVAcVBcVzckgaaacSlcSlcSlcSlcSlaaaaafaaaaafaoEaaacOFcVCcOHaafcOFcVCcOHaaacOFcVCcOHaafaaaarsaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaaaaaaaagaaicHAcHAaafaaiaagaaiaafaaiaaiaaiaafcSDcSDcSDcQNcQNcQNcQNcVDcVEcQNcQNcQNcVFcVGcVHcVhcVIcVJcVKcSDcSDcSPcQZcQZcVLcSNcSOcSPcQZcVMcVNcVOcVPaafaafaaaaaaaaaackaaaaafaaacTTcUMcTTaaaaaaaaaaafckgckgckgckgckgckgckgckgckgaaaaaaaaaaafaaaaafaaaaafaaaaaaarsaafcOFcVCcOHaaacOFcVCcOHaafcOFcVCcOHaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPbiPbiPcHAcHAaaacHAaaaaaacHAaaaaaacHAaaaaagaaaaaacVQcVRcVScSDcVTcVUcVVcVWcVXcVYcSDcVZcWacWbcWccVhcVicVjcVkcWdcSDcWecQZcWfcWgcWhcWicWjcWgcWkcQZcWlcPgaaaaafaaaaaaaaaackaaaaaaaaacTTcUMcTTcTTcTTcTTcTTcTTcTTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaafaaaaaaaoEaaacOFcVCcOHaaacOFcVCcOHaafcOFcVCcOHaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPbiPcHAbiPbiPcHAbiPbiPcHAbiPbiPaaaaaacVQcWmcWncWocWpcWpcWpcWqcWrcWpcWscWtcWucWtcWvcWpcWwcWvcWxcWycSDcWzcRYcWAcRYcRYcRYcRYcRYcWBcRYcWCcVPaaaaafaafaaaaaaaafaaaaaaaaacTTcWDcWEcWEcWEcWEcWEcWFcTTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaoEaaacOFcVCcOHaafcOFcVCcOHaafcOFcVCcOHaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaacVQcWGcVScVXcWHcWIcWJcWKcWLcWLcWLcWMcWNcWOcWOcWPcWOcWOcWQcWRcSDcWScWTcWUcWTcWTcWVcWTcWTcWWcWXcWYcPgaafaafaaaaaaaafaafaaaaaaaaacTTcTTcTTcTTcTTcTTcTTcUMcTTaaaaafaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafcOFcWZcOHaaacOFcWZcOHaafcOFcWZcOHaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaaacSDcSDcSDcXacWpcWpcWpcXbcXccSDcSDcXdcWycXecVhcXfcVhcXecXgcXhcSDcXicVPcXicVPcVPcVPcVPcVPcXicVPcXicVPaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafcXjcXkcXlcXkcXmcXkcXkcTTcTTcTTcXkcXkcXkcXkcXkcXkaaaaaaaaaaaaaafaafaaaaaaaafaaaaaaaafaafaaaaaaaafaaaaaaaafaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcVQcXncXocXpcXqcXrcXscXtcXucSDcXvcVkcXwcXxcXxcXscXxcXxcXycXzcSDcXAcVPcWTcVPaaaaaaaaacVPcWTcVPcXBcVPaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaacXkcXCcXDcXEcXkcXFcXGcXHcXHcXHcXIcXJcXKcXLcXMcTTaafcysaafarsaoEaoEaoEarsaoEaoEaoEaoEaoEaoEarsaoEaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacSDcVQcSDcSDcVQcVQcVQcSDcXNcSDcSDcSDcSDcXOcXOcXOcXOcXOcSDcSDcSDcXPcVPcXPcVPaafaafaafcVPcXPcVPcXPcVPaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacXkcXQcXRcXScXTcXUcXVcXWcXXcXYcWEcXZcYacYbcYccTTaafaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaoEaaacGFcQEcQFcJFcQFcQEcQGcQHcQIcQJcQKcQLcQMaaaaaaaJgaJgcQOaJgaJgaJgcQPaJgaJgaJgaJgcQQcQRsBJcQTsBJcQScQVcQWcQXcQYcQZcRacRbcRccRdcRecRecRfcRgcRhcRicRjcRkcNkcRlcRmcRlcRncNlcRocRpcRqcRrcRscRtcRvcRucRvcyjcRxcyjcyjcRyckgcRzcRAcRBckgcRCcRDcREckgckgckgackaaaaoEaaacOFcPKcOHaaacOFcPKcOHaafcOFcPKcOHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAcHAaafaafcGFcGFcRFcGFcRFcGFcRGcRHcRIcRJcRKcRLcGFaafaafaJgcRMcRNaJgcROcRPcRQcRRcRScRTaJgaJgaJgaJgcRUaJgaJgaJgaJgcPgcRVcQZcRWcQZcRXcRYcRZcQZcSacSbcSccPgcPgcPgcPgcPgcPgcSdcSecSfcxRcSgcShcSickgcmzcSjcSkckgckgckgckgckgckgckgckgckgcsocSlcSmcSncSlcSlaaaaaaaaaaaaaafaaacOFcPKcOHaaacOFcPKcOHaaacOFcPKcOHaaaaafaoEarsaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaaiaaaaafaafaafcSocSpcSqcSrcSscStcSucSvcSwcGFaaaaaaaJgcSxcSyaJgcSzcSAcSBcSCaJgaJgaJgcSEcSFcSGcSHcSIcSJcSKaJgcSLcSMcQZcRWcQZcSNcSOcSPcQZcSQcSRcSScSTcSUcSVcSWcSXcPgcSYcSZcwgcxRcTbcTccTdckgckgckgctKckgcTecTfcTgckgcThcTicTjckgccOcSlcTkcTlcTmcTncTncTnaafaafaafaaaaafcToaafaaaaafcToaafaaaaafcToaafaaaaaaaafaaaaoEaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaoEaaaaafaaaaaacTpaafcTqcGFcGFcGFcGFcGFcGFcGFaaaaaaaJgcTrcTsaJgcTtcTucTvaspaJgcTxcTycTzbHBbHCcTCcTDcTEcTEcTFcTGcTHcTIcTJcQZcSNcTKcSPcQZcSacTLcSNcTMcTNcQZcTOcTPcPgcTQcxRcxRcxRcTRcTScTTaaaaaaaafaaackgcvccmAcmAcTUcTVcTWcTVcTXcTYcSlcTZcUacUbcUccUdcUecUfcUfcUfcUgchUchUcUichUchUchUchUchUchUchUcUjcUfcUfcUkaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacHAcHAaaiaafaafaafaaaaaaaaaaafaafaafaaaaaaaaaaafaaaaaaaaaaJgcUlcUmcUncUocUpcUqcUraJgcUsaJgcUtcUucUvcUwbHzbHBbHBcUycUzcUAcUBbZQcUCcSNcUDcSPcQZbbScUEcUFcUGcUHcUIcUJcUKcPgcULcxRaafaafcTTcUMcTTaafaafaafaaackgcUNeJqcmAcUOcUPcUQcURckgctKcSlcUScUTcUUcTncTncTnaaaaaaarsaaaaaacUVaafaaaaaacUVaafaaaaaacUVaafaaaaaaaafaaaaoEaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaaaaaaaaiaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaJgcUWcUXaJgcUYcUZcVacVbcVccVdaJgcVecVfcVgakFcVicVjcVkaJgcSLcSPcQZcVlcVmcVncVocVpcUBcVqcVrcVscPgcPgcVtcVucPgcPgcVvcxRaafaaacTTcVwcTTaaaaaaaafaafckgcVxcVycVzckgcVAcVBcVzckgaaacSlcSlcSlcSlcSlaaaaafaaaaafaoEaaacOFcVCcOHaafcOFcVCcOHaaacOFcVCcOHaafaaaarsaoEaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPaaaaaaaaaaagaaicHAcHAaafaaiaagaaiaafaaiaaiaaiaafaJgaJgaJgaJgaJgaJgaJgbiEcVEaJgaJgaJgcVFcVGcVHakFcVIcVJcVKaJgaJgcSPcQZcQZcVLcSNcSOcSPcQZcVMcVNcVOcVPaafaafaaaaaaaaaackaaaaafaaacTTcUMcTTaaaaaaaaaaafckgckgckgckgckgckgckgckgckgaaaaaaaaaaafaaaaafaaaaafaaaaaaarsaafcOFcVCcOHaaacOFcVCcOHaafcOFcVCcOHaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPbiPbiPcHAcHAaaacHAaaaaaacHAaaaaaacHAaaaaagaaaaaacVQcVRcVSaJgcVTcVUcVVbiEcVXcVYaJgcVZcWacWbcWcakFcVicVjcVkcWdaJgcWecQZcWfcWgcWhcWicWjcWgcWkcQZcWlcPgaaaaafaaaaaaaaaackaaaaaaaaacTTcUMcTTcTTcTTcTTcTTcTTcTTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaafaaaaaaaoEaaacOFcVCcOHaaacOFcVCcOHaafcOFcVCcOHaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiPbiPcHAbiPbiPcHAbiPbiPcHAbiPbiPaaaaaacVQcWmcWncWocWpcWpcWpcWqcWrcWpcWscWtcWucWtcWvcWpcWwcWvcWxcWyaJgcWzcRYcWAcRYcRYcRYcRYcRYcWBcRYcWCcVPaaaaafaafaaaaaaaafaaaaaaaaacTTcWDcWEcWEcWEcWEcWEcWFcTTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaoEaaacOFcVCcOHaafcOFcVCcOHaafcOFcVCcOHaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaacVQcWGcVScVXcWHcWIcWJcWKarfarfarfcWMcWNcWOcWOcWPcWOcWOcWQcWRaJgcWScWTcWUcWTcWTcWVcWTcWTcWWcWXcWYcPgaafaafaaaaaaaafaafaaaaaaaaacTTcTTcTTcTTcTTcTTcTTcUMcTTaaaaafaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoEaafcOFcWZcOHaaacOFcWZcOHaafcOFcWZcOHaaaaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaaaaJgaJgaJgbsucWpcWpcWpcXbcXcaJgaJgcXdcWycXeakFcXfakFcXecXgcXhaJgcXicVPcXicVPcVPcVPcVPcVPcXicVPcXicVPaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafcXjcXkcXlcXkcXmcXkcXkcTTcTTcTTcXkcXkcXkcXkcXkcXkaaaaaaaaaaaaaafaafaaaaaaaafaaaaaaaafaafaaaaaaaafaaaaaaaafaoEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcVQcXncXocXpcXqcXrbfrcXtcXuaJgcXvcVkcXwafAafAbfrafAafAcXycXzaJgcXAcVPcWTcVPaaaaaaaaacVPcWTcVPcXBcVPaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaacXkcXCcXDcXEcXkcXFcXGcXHcXHcXHcXIcXJcXKcXLcXMcTTaafcysaafarsaoEaoEaoEarsaoEaoEaoEaoEaoEaoEarsaoEaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJgcVQaJgaJgcVQcVQcVQaJgcXNaJgaJgaJgaJgcXOcXOcXOcXOcXOaJgaJgaJgcXPcVPcXPcVPaafaafaafcVPcXPcVPcXPcVPaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacXkcXQcXRcXScXTcXUcXVcXWcXXcXYcWEcXZcYacYbcYccTTaafaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacYdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcXkcYecYfcYgcYhcYicYjcYkcYlcYmcYncYbcYocYbcYccTTaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcXkcXkcYpcXkcXkcYqcYrcYscYtcYucYvcYbcYbcYwcYxcXkaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcYycYzcTTcYAcYBcYCcYDcYEcYFcYGcYHcYIcYJcYKcXkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/_maps/metis_maps/Mining/Lavaland.dmm b/_maps/metis_maps/Mining/Lavaland.dmm index 41f7e99c2d..86b1defba6 100644 --- a/_maps/metis_maps/Mining/Lavaland.dmm +++ b/_maps/metis_maps/Mining/Lavaland.dmm @@ -595,7 +595,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/brown, -/obj/item/twohanded/required/kirbyplants/photosynthetic, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/mine/eva) "bg" = ( @@ -1141,7 +1141,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{ dir = 5 }, -/obj/item/twohanded/required/kirbyplants/photosynthetic, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel/white, /area/mine/living_quarters) "cf" = ( @@ -4994,7 +4994,7 @@ /turf/open/floor/circuit, /area/mine/maintenance) "Ys" = ( -/obj/item/twohanded/required/kirbyplants/photosynthetic, +/obj/item/kirbyplants/photosynthetic, /obj/effect/turf_decal/loading_area{ icon_state = "drain"; name = "drain"; diff --git a/_maps/metis_maps/Mining/Lavaland_Demone.dmm b/_maps/metis_maps/Mining/Lavaland_Demone.dmm index 3ccdcf242f..602e399b12 100644 --- a/_maps/metis_maps/Mining/Lavaland_Demone.dmm +++ b/_maps/metis_maps/Mining/Lavaland_Demone.dmm @@ -1,7 +1,7 @@ "ac" = (/obj/machinery/mineral/ore_redemption,/turf/open/floor/plating,/area/lavaland/demone/villagesilo) "ae" = (/obj/structure/table/wood,/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -8; pixel_y = 18},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 8; pixel_y = 18},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 8; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_y = 6},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_y = 2; pixel_x = -7},/turf/open/floor/plaswood,/area/lavaland/demone/factoryoffice) "af" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/lavaland/demone/living) -"ah" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) +"ah" = (/obj/item/kirbyplants/random,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) "ai" = (/mob/living/simple_animal/hostile/feed/chocolate_slime/creambeast,/turf/open/indestructible/bubblegum,/area/ruin/powered/candyland) "al" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/drinks/bottle/strawberryjuice,/obj/item/reagent_containers/food/drinks/bottle/strawberryjuice,/obj/item/reagent_containers/food/drinks/bottle/strawberryjuice,/obj/item/reagent_containers/food/drinks/bottle/strawberryjuice,/obj/item/reagent_containers/food/drinks/bottle/strawberryjuice,/obj/item/reagent_containers/food/drinks/bottle/strawberryjuice,/turf/open/floor/plasteel/freezer,/area/lavaland/demone/factory) "an" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/lavaland/demone/factory) @@ -44,7 +44,7 @@ "bL" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/mineral/titanium,/area/lavaland/surface/outdoors) "bM" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/condiment/flour,/obj/item/reagent_containers/food/condiment/flour,/obj/item/reagent_containers/food/condiment/flour,/obj/item/reagent_containers/food/condiment/flour,/obj/item/reagent_containers/food/condiment/flour,/obj/item/reagent_containers/food/condiment/flour,/obj/item/reagent_containers/food/condiment/flour,/obj/item/reagent_containers/food/condiment/flour,/obj/item/reagent_containers/food/condiment/enzyme,/obj/item/reagent_containers/food/condiment/enzyme,/obj/item/reagent_containers/food/condiment/enzyme,/turf/open/floor/plasteel/cafeteria,/area/lavaland/demone/factory) "bN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 1},/turf/open/floor/plating,/area/lavaland/surface/outdoors) -"bP" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) +"bP" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) "ci" = (/obj/structure/closet/crate,/obj/item/flashlight/flare,/obj/item/flashlight/flare,/obj/item/flashlight/flare,/obj/item/flashlight/flare,/obj/item/flashlight/flare,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors) "ck" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1,/turf/open/floor/wood,/area/lavaland/demone/demonevillage) "cl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm/directional/north,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/lavaland/demone/living) @@ -96,7 +96,7 @@ "ep" = (/obj/item/bedsheet/red,/obj/structure/bed,/turf/open/indestructible/bubblegum,/area/ruin/powered/candyland) "er" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/lavaland/demone/factory) "et" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) -"eu" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) +"eu" = (/obj/item/kirbyplants/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) "ew" = (/obj/effect/turf_decal/stripes/line{dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 5},/turf/open/floor/vault,/area/lavaland/demone/factorystorage) "eC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 10},/turf/open/floor/plasteel/freezer,/area/lavaland/demone/demonevillage) "eD" = (/turf/open/chocolateriver,/area/ruin/powered/candyland) @@ -215,7 +215,7 @@ "ks" = (/obj/structure/closet/crate/radiation,/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/machinery/airalarm/unlocked{pixel_y = -24; dir = 1},/turf/open/floor/plasteel/dark,/area/lavaland/demone/villagepsu) "ku" = (/obj/structure/chair/wood{dir = 1},/turf/open/floor/carpet/black,/area/lavaland/demone/factoryoffice) "kw" = (/obj/structure/chair/sofachair{dir = 1},/turf/open/floor/carpet,/area/lavaland/demone/reception) -"kz" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) +"kz" = (/obj/item/kirbyplants/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) "kE" = (/obj/structure/table,/turf/open/floor/wood,/area/lavaland/demone/demonevillage) "kG" = (/obj/structure/stone_tile/surrounding_tile/cracked{dir = 1},/turf/open/chasm/lavaland,/area/lavaland/surface/outdoors) "kJ" = (/obj/structure/closet/crate/miningcar,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors) @@ -297,7 +297,7 @@ "oh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/lavaland/demone/living) "oi" = (/obj/machinery/light{dir = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/demone/factory) "ol" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/lavaland/demone/villagesilo) -"on" = (/obj/effect/decal/cleanable/cobweb,/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/lavaland/demone/living) +"on" = (/obj/effect/decal/cleanable/cobweb,/obj/item/kirbyplants,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/lavaland/demone/living) "op" = (/obj/structure/stone_tile/slab/cracked,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/demone/tele) "oq" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"; on = 1; pixel_x = 8},/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors) "ot" = (/obj/effect/light_emitter{set_cap = 3; set_luminosity = 6},/turf/open/chocolateriver,/area/ruin/powered/candyland) @@ -377,7 +377,7 @@ "rT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/lavaland/demone/factory) "rU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/turf/open/floor/plaswood,/area/lavaland/demone/factoryoffice) "rV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1,/turf/closed/wall/mineral/iron,/area/lavaland/demone/demonevillage) -"rX" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plaswood,/area/lavaland/demone/factoryoffice) +"rX" = (/obj/item/kirbyplants/random,/turf/open/floor/plaswood,/area/lavaland/demone/factoryoffice) "rY" = (/obj/machinery/door/airlock/mining/glass,/turf/open/floor/plating,/area/lavaland/demone/living) "sa" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"; on = 1; pixel_x = 12},/turf/open/indestructible/chocolate,/area/ruin/powered/candyland) "sd" = (/obj/item/reagent_containers/food/snacks/donut/choco,/obj/item/reagent_containers/food/snacks/donut/choco{pixel_y = 8; pixel_x = -12},/turf/open/indestructible/chocolate{icon_state = "choclit_1"},/area/ruin/powered/candyland) @@ -412,9 +412,9 @@ "tp" = (/obj/machinery/light{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/wood,/area/lavaland/demone/demonevillage) "tq" = (/obj/structure/closet/crate,/obj/machinery/light,/obj/item/reagent_containers/food/snacks/donut/berry{desc = "Straight from lavaland!"; name = "Hella Donut"},/obj/item/reagent_containers/food/snacks/donut/berry{desc = "Straight from lavaland!"; name = "Hella Donut"},/turf/open/floor/mineral/basaltstone_floor,/area/lavaland/demone/factorystorage) "tr" = (/obj/structure/stone_tile/surrounding_tile,/obj/item/flashlight/lantern{icon_state = "lantern-on"; on = 1},/turf/open/indestructible/necropolis,/area/lavaland/surface/outdoors) -"ts" = (/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel/dark/side{dir = 1},/area/lavaland/demone/living) +"ts" = (/obj/item/kirbyplants,/turf/open/floor/plasteel/dark/side{dir = 1},/area/lavaland/demone/living) "tv" = (/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/lavaland/demone/villagesilo) -"tA" = (/obj/machinery/light{dir = 8},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plaswood,/area/lavaland/demone/factoryoffice) +"tA" = (/obj/machinery/light{dir = 8},/obj/item/kirbyplants/random,/turf/open/floor/plaswood,/area/lavaland/demone/factoryoffice) "tB" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/wood,/area/lavaland/demone/demonevillage) "tE" = (/obj/structure/flora/ausbushes/sunnybush,/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/lavaland/demone/living) "tF" = (/obj/item/gun/magic/wand/food,/turf/open/chocolateriver,/area/ruin/powered/candyland) @@ -662,7 +662,7 @@ "Ff" = (/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game{pixel_y = 8},/turf/open/floor/carpet/gato,/area/ruin/powered/candyland) "Fk" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/airalarm/unlocked{dir = 8; pixel_x = 24},/turf/open/floor/wood,/area/lavaland/demone/demonevillage) "Fr" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/power/apc/auto_name/north{name = "Lobby Donut Factory APC"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/mineral/sandstone_floor,/area/lavaland/demone/lobby) -"Fu" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/lavaland/demone/demonevillage) +"Fu" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/lavaland/demone/demonevillage) "Fv" = (/obj/item/toy/plush/lizardplushie/kobold,/turf/open/floor/wood,/area/lavaland/demone/demonevillage) "Fw" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/lavaland/demone/living) "Fy" = (/obj/structure/mineral_door/iron,/turf/open/floor/plasteel/freezer,/area/lavaland/demone/demonevillage) @@ -730,7 +730,7 @@ "IX" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/lavaland/demone/factory) "IY" = (/obj/machinery/airalarm/unlocked{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/lavaland/demone/factory) "IZ" = (/obj/structure/closet/crate,/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/obj/item/stack/sheet/mineral/uranium{amount = 50},/turf/open/floor/plating,/area/lavaland/demone/living) -"Ja" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/carpet/cyan,/area/lavaland/demone/demonevillage) +"Ja" = (/obj/item/kirbyplants/random,/turf/open/floor/carpet/cyan,/area/lavaland/demone/demonevillage) "Jd" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/blue{icon_state = "0-2"},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/dark,/area/lavaland/demone/villagepsu) "Jg" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/obj/item/storage/crayons{pixel_x = -5; pixel_y = -11},/turf/open/floor/plaswood,/area/lavaland/demone/factoryoffice) "Jh" = (/turf/open/indestructible/chocolate{icon_state = "choclit_1"},/area/ruin/powered/candyland) @@ -919,7 +919,7 @@ "RE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/wood,/area/lavaland/demone/demonevillage) "RF" = (/obj/machinery/airalarm/directional/north,/turf/open/floor/plasteel/dark/side{dir = 1},/area/lavaland/demone/minestorage) "RJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/plating,/area/lavaland/surface/outdoors) -"RK" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/power/apc/auto_name/east{cell = 1500; name = "Abandoned Village Kitchen APC"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/turf/open/floor/plasteel/freezer,/area/lavaland/demone/demonevillage) +"RK" = (/obj/item/kirbyplants/random,/obj/machinery/power/apc/auto_name/east{cell = 1500; name = "Abandoned Village Kitchen APC"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/turf/open/floor/plasteel/freezer,/area/lavaland/demone/demonevillage) "RM" = (/turf/open/floor/plasteel/dark/side{dir = 4},/area/lavaland/demone/tele) "RN" = (/obj/effect/turf_decal/bot,/obj/machinery/light/small{dir = 4},/obj/structure/chair/comfy/shuttle{dir = 1},/turf/open/floor/mineral/titanium/yellow,/area/lavaland/surface/outdoors) "RO" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/flashlight/lantern{icon_state = "lantern-on"; on = 1; pixel_y = 8},/turf/open/candyfloor,/area/ruin/powered/candyland) @@ -999,7 +999,7 @@ "UX" = (/obj/machinery/light,/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/demone/demonevillage) "UY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 4},/turf/open/floor/plasteel/freezer,/area/lavaland/demone/demonevillage) "Vg" = (/turf/closed/indestructible/riveted/boss,/area/lavaland/surface/outdoors) -"Vj" = (/obj/item/twohanded/required/kirbyplants/random,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) +"Vj" = (/obj/item/kirbyplants/random,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/turf/open/floor/plasteel/grimy,/area/lavaland/demone/reception) "Vk" = (/obj/machinery/light{dir = 4},/obj/structure/closet/crate/wooden,/turf/open/floor/wood,/area/lavaland/demone/demonevillage) "Vn" = (/turf/open/floor/circuit,/area/lavaland/demone/living) "Vp" = (/obj/machinery/door/airlock/mining/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/turf/open/floor/plasteel,/area/lavaland/demone/living) diff --git a/_maps/metis_maps/Mining/Lavaland_Lower.dmm b/_maps/metis_maps/Mining/Lavaland_Lower.dmm index a88d25f995..09e2c86198 100644 --- a/_maps/metis_maps/Mining/Lavaland_Lower.dmm +++ b/_maps/metis_maps/Mining/Lavaland_Lower.dmm @@ -3087,7 +3087,7 @@ /turf/open/floor/plasteel/cafeteria, /area/xenoarch/gen) "gZ" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark/side{ dir = 1 }, @@ -3287,7 +3287,7 @@ /turf/open/floor/plasteel/checker, /area/xenoarch/gen) "hy" = ( -/obj/structure/double_bed, +/obj/structure/bed/double, /obj/item/bedsheet/double_gato, /turf/open/floor/carpet/gato, /area/xenoarch/gen) @@ -3897,7 +3897,7 @@ /area/xenoarch/gen) "iZ" = ( /obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/xenoarch/gen) "ja" = ( @@ -3989,7 +3989,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/xenoarch/gen) "jl" = ( @@ -4459,7 +4459,7 @@ }, /area/lavaland/surface/outdoors) "ko" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/carpet, /area/xenoarch/gen) "kp" = ( @@ -5860,7 +5860,7 @@ /area/xenoarch/gen) "nq" = ( /obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /turf/open/floor/carpet/royalblue, /area/xenoarch/gen) "nr" = ( @@ -6241,7 +6241,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark/corner, /area/xenoarch/gen) "oj" = ( @@ -7394,7 +7394,7 @@ /turf/open/floor/plasteel/dark, /area/xenoarch/caloriteresearch_powered) "rT" = ( -/obj/structure/double_bed, +/obj/structure/bed/double, /turf/open/floor/plasteel/dark, /area/xenoarch/caloriteresearch_powered) "rU" = ( @@ -7724,7 +7724,7 @@ /turf/open/floor/plating/airless, /area/xenoarch/caloriteresearch_unpowered) "tv" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/bar{ dir = 1 }, @@ -8728,7 +8728,7 @@ /area/xenoarch/caloriteresearch_powered) "yp" = ( /obj/machinery/light/broken, -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/xenoarch/caloriteresearch_powered) @@ -11261,7 +11261,7 @@ dir = 1 }, /obj/structure/table/reinforced, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-18" }, /obj/machinery/computer/security/telescreen/entertainment{ @@ -11385,7 +11385,7 @@ /turf/open/floor/plasteel, /area/xenoarch/caloriteresearch_powered) "Lh" = ( -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, /area/xenoarch/caloriteresearch_powered) @@ -11548,7 +11548,7 @@ /turf/open/floor/plating, /area/xenoarch/gen) "LW" = ( -/obj/structure/double_bed, +/obj/structure/bed/double, /obj/item/bedsheet/double_blue, /turf/open/floor/carpet/royalblue, /area/xenoarch/caloriteresearch_powered) @@ -12765,7 +12765,7 @@ /turf/open/floor/plating/airless, /area/xenoarch/caloriteresearch_powered) "Sd" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_x = -3; pixel_y = 3 @@ -12867,7 +12867,7 @@ /turf/closed/wall, /area/xenoarch/gen) "Sz" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/rockvault, /area/xenoarch/nothinghere) "SA" = ( @@ -13533,7 +13533,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/photosynthetic, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel/white, /area/xenoarch/gen) "Vw" = ( diff --git a/_maps/metis_maps/OmegaStation/OmegaStation.dmm b/_maps/metis_maps/OmegaStation/OmegaStation.dmm index 72dfcd9470..a7b5229a0c 100644 --- a/_maps/metis_maps/OmegaStation/OmegaStation.dmm +++ b/_maps/metis_maps/OmegaStation/OmegaStation.dmm @@ -39,10 +39,10 @@ "aaM" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/restraints/handcuffs,/obj/item/assembly/flash/handheld,/obj/item/radio/intercom{name = "Station Intercom"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/camera{c_tag = "Bridge - Fore Port"; dir = 4; name = "command camera"},/obj/structure/cable/white{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/bridge) "aaN" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{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},/turf/open/floor/plasteel/dark,/area/bridge) "aaO" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{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},/turf/open/floor/plasteel/dark,/area/bridge) -"aaP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/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},/turf/open/floor/plasteel/dark,/area/bridge) +"aaP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/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},/turf/open/floor/plasteel/dark,/area/bridge) "aaQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{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},/turf/open/floor/plasteel/dark,/area/bridge) "aaR" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{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},/turf/open/floor/plasteel/dark,/area/bridge) -"aaS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/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},/turf/open/floor/plasteel/dark,/area/bridge) +"aaS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/item/kirbyplants{icon_state = "plant-22"},/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},/turf/open/floor/plasteel/dark,/area/bridge) "aaT" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/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},/turf/open/floor/plasteel/dark,/area/bridge) "aaU" = (/obj/structure/table/reinforced,/obj/item/aicard,/obj/item/storage/secure/briefcase,/obj/item/radio/intercom{name = "Station Intercom"; pixel_x = 28},/obj/machinery/camera{c_tag = "Bridge - Fore Starboard"; dir = 8; name = "command camera"},/obj/structure/cable/white{icon_state = "1-2"},/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},/turf/open/floor/plasteel/dark,/area/bridge) "aaV" = (/obj/structure/barricade/wooden,/turf/open/floor/plating/asteroid,/area/asteroid/nearstation) @@ -189,7 +189,7 @@ "adG" = (/obj/structure/toilet{dir = 4},/obj/machinery/light,/obj/machinery/newscaster{pixel_x = 32},/obj/machinery/vending/wallmed{name = "Emergency NanoMed"; pixel_x = -26; use_power = 0},/obj/effect/landmark/start/captain,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/captain/private) "adH" = (/turf/closed/wall,/area/crew_quarters/heads/captain/private) "adI" = (/obj/structure/filingcabinet,/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/camera{c_tag = "Bridge - Captain's Quarters"; dir = 4; name = "command camera"},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"adJ" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "4-8"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 1},/turf/open/floor/wood{icon_state = "wood-broken"},/area/crew_quarters/heads/captain/private) +"adJ" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "4-8"},/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 1},/turf/open/floor/wood{icon_state = "wood-broken"},/area/crew_quarters/heads/captain/private) "adK" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) "adL" = (/obj/machinery/light{dir = 4},/obj/structure/cable/white{icon_state = "2-8"},/obj/structure/sign/plaques/golden/captain{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 2},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) "adM" = (/obj/machinery/door/airlock{dir = 1; id_tag = "Dorm1"; name = "Dorm 1"},/turf/open/floor/plasteel,/area/crew_quarters/dorms) @@ -237,7 +237,7 @@ "aeC" = (/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/nuclearbomb/selfdestruct,/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "4-8"},/turf/open/floor/circuit/green,/area/ai_monitored/nuke_storage) "aeD" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) "aeE" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/ai_slipper{uses = 10},/obj/effect/turf_decal/bot,/obj/structure/cable/white{icon_state = "2-8"},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aeF" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/westright{name = "Core Modules"; req_access_txt = "20"},/obj/effect/spawner/lootdrop/aimodule_harmful{fan_out_items = 1; lootcount = 2; lootdoubles = 0},/obj/item/aiModule/supplied/oxygen{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aeF" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/westright{name = "Core Modules"; req_access_txt = "20"},/obj/effect/spawner/lootdrop/aimodule_harmful{fan_out_items = 1; lootcount = 2; lootdoubles = 0},/obj/item/ai_module/supplied/oxygen{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) "aeG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) "aeH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) "aeI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/white{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) @@ -269,14 +269,14 @@ "afi" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Detective's Office Maintenance"; req_access_txt = "4"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) "afj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) "afk" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/suit_storage_unit/captain,/obj/effect/turf_decal/stripes/end,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain/private) -"afl" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) +"afl" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) "afm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) "afn" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/captain/private) -"afo" = (/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Captain's Intercom"; pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/structure/table/wood,/obj/machinery/recharger{pixel_x = 5},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-15"; pixel_x = -6; pixel_y = 12},/obj/structure/disposalpipe/segment,/turf/open/floor/wood{icon_state = "wood-broken2"},/area/crew_quarters/heads/captain/private) +"afo" = (/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Captain's Intercom"; pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/structure/table/wood,/obj/machinery/recharger{pixel_x = 5},/obj/item/kirbyplants{icon_state = "plant-15"; pixel_x = -6; pixel_y = 12},/obj/structure/disposalpipe/segment,/turf/open/floor/wood{icon_state = "wood-broken2"},/area/crew_quarters/heads/captain/private) "afp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera{c_tag = "Bridge - Port Access"; dir = 8; name = "command camera"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"afq" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/aiModule/core/freeformcore{pixel_x = 3; pixel_y = 3},/obj/item/aiModule/core/full/custom,/obj/item/aiModule/core/full/asimov{pixel_x = -3; pixel_y = -3},/obj/machinery/camera{c_tag = "AI Vault - Port"; dir = 4; name = "ai camera"; network = list("minisat"); start_active = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"afq" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/ai_module/core/freeformcore{pixel_x = 3; pixel_y = 3},/obj/item/ai_module/core/full/custom,/obj/item/ai_module/core/full/asimov{pixel_x = -3; pixel_y = -3},/obj/machinery/camera{c_tag = "AI Vault - Port"; dir = 4; name = "ai camera"; network = list("minisat"); start_active = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) "afr" = (/obj/structure/cable/white{icon_state = "1-2"},/turf/open/floor/circuit/green,/area/ai_monitored/nuke_storage) -"afs" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{dir = 8; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/aiModule/supplied/protectStation{pixel_x = 3; pixel_y = 3},/obj/item/aiModule/zeroth/oneHuman,/obj/item/aiModule/reset/purge{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"afs" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{dir = 8; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/ai_module/supplied/protectStation{pixel_x = 3; pixel_y = 3},/obj/item/ai_module/zeroth/oneHuman,/obj/item/ai_module/reset/purge{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) "aft" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/camera{c_tag = "Bridge - Starboard Access"; dir = 4; name = "command camera"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) "afu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) "afv" = (/obj/machinery/door/firedoor,/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/door/airlock/command{name = "Head of Personnel's Office"; req_access_txt = "57"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) @@ -359,13 +359,13 @@ "agU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{dir = 4; name = "Medbay Storage"; req_access_txt = "5"},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/zone3) "agV" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) "agW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"agX" = (/obj/structure/table/reinforced,/obj/item/aiModule/reset{pixel_x = 3; pixel_y = 3},/obj/item/radio/intercom{name = "Station Intercom"; pixel_x = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/aiModule/supplied/freeform,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"agX" = (/obj/structure/table/reinforced,/obj/item/ai_module/reset{pixel_x = 3; pixel_y = 3},/obj/item/radio/intercom{name = "Station Intercom"; pixel_x = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/ai_module/supplied/freeform,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) "agY" = (/obj/structure/cable/white{icon_state = "1-4"},/turf/open/floor/circuit/green,/area/ai_monitored/nuke_storage) "agZ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/stripes/line{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) "aha" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/ai_slipper{uses = 10},/obj/structure/cable/white{icon_state = "2-4"},/obj/effect/landmark/start/cyborg,/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/line{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) "ahb" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) "ahc" = (/obj/structure/cable/white{icon_state = "1-8"},/turf/open/floor/circuit/green,/area/ai_monitored/nuke_storage) -"ahd" = (/obj/structure/table/reinforced,/obj/item/aiModule/supplied/quarantine,/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "AI Intercom"; pixel_x = 28},/obj/machinery/camera{c_tag = "AI Vault - Starboard"; dir = 8; name = "ai camera"; network = list("minisat"); start_active = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"ahd" = (/obj/structure/table/reinforced,/obj/item/ai_module/supplied/quarantine,/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "AI Intercom"; pixel_x = 28},/obj/machinery/camera{c_tag = "AI Vault - Starboard"; dir = 8; name = "ai camera"; network = list("minisat"); start_active = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) "ahe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) "ahf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) "ahg" = (/obj/structure/cable/white,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "hopblast"; name = "HoP Blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) @@ -469,7 +469,7 @@ "aja" = (/obj/structure/closet/secure_closet/brig{id = "brig1"; name = "Cell 1 Locker"},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) "ajb" = (/obj/machinery/flasher{id = "brig1"; pixel_y = 26},/obj/structure/chair,/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera{c_tag = "Security - Cell 1"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) "ajc" = (/obj/structure/cable/white{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "brigfront"; name = "Brig Blast door"},/turf/open/floor/plating,/area/security/brig) -"ajd" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/camera{c_tag = "Fore Primary Hallway"; dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"ajd" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/camera{c_tag = "Fore Primary Hallway"; dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) "aje" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) "ajf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) "ajg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) @@ -497,7 +497,7 @@ "ajC" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard/fore) "ajD" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard/fore) "ajE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard/fore) -"ajF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/camera{c_tag = "Central Hallway North-East"; dir = 2},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard/fore) +"ajF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/camera{c_tag = "Central Hallway North-East"; dir = 2},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard/fore) "ajG" = (/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior{dir = 4},/turf/open/floor/engine,/area/science/mixing) "ajH" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/storage) "ajI" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/storage) @@ -582,13 +582,13 @@ "alj" = (/obj/machinery/power/apc{areastring = "/area/quartermaster/miningdock"; dir = 4; name = "Mining Dock APC"; pixel_x = 26},/obj/structure/extinguisher_cabinet{pixel_y = 26},/obj/structure/closet/secure_closet/miner,/obj/structure/cable/white{icon_state = "0-2"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) "alk" = (/obj/structure/cable/white,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/fore) "all" = (/obj/structure/sign/directions/engineering{dir = 8; pixel_y = 8},/obj/structure/sign/directions/security{dir = 8},/obj/structure/sign/directions/medical{pixel_y = -8},/turf/closed/wall,/area/hallway/primary/central) -"alm" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/light{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"alm" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/light{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) "aln" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/plaque{icon_state = "L4"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) "alo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/plaque{icon_state = "L6"},/turf/open/floor/plasteel,/area/hallway/primary/fore) "alp" = (/obj/effect/turf_decal/plaque{icon_state = "L8"},/turf/open/floor/plasteel,/area/hallway/primary/fore) "alq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/plaque{icon_state = "L10"},/turf/open/floor/plasteel,/area/hallway/primary/fore) "alr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/plaque{icon_state = "L12"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"als" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/light{dir = 4},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"als" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/light{dir = 4},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/fore) "alt" = (/obj/structure/sign/directions/supply{dir = 4},/obj/structure/sign/directions/command{dir = 1; pixel_y = 8},/obj/structure/sign/directions/science{pixel_y = -8},/turf/closed/wall,/area/hallway/primary/fore) "alu" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) "alv" = (/obj/structure/cable/white,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/storage/eva) @@ -646,7 +646,7 @@ "amv" = (/obj/machinery/computer/bounty{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) "amw" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/cargo_technician,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) "amx" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"amy" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"amy" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) "amz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) "amA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) "amB" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = 24; pixel_y = -24},/obj/item/radio/intercom{name = "Station Intercom"; pixel_x = 28},/obj/item/stack/packageWrap,/obj/item/stack/cable_coil/white,/obj/item/hand_labeler,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) @@ -705,7 +705,7 @@ "anC" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) "anD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/security/brig) "anE" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"anF" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/door_timer{id = "brig2"; name = "Cell 2"; pixel_x = 32},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) +"anF" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/door_timer{id = "brig2"; name = "Cell 2"; pixel_x = 32},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) "anG" = (/obj/structure/sign/directions/engineering{dir = 2; pixel_y = -8},/obj/structure/sign/directions/security{dir = 8},/obj/structure/sign/directions/command{dir = 1; pixel_y = 8},/turf/closed/wall,/area/security/brig) "anH" = (/turf/open/floor/plasteel,/area/maintenance/port/central) "anI" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 30},/obj/item/stack/sheet/glass{amount = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/maintenance/port/central) @@ -866,7 +866,7 @@ "aqH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) "aqI" = (/obj/structure/closet/secure_closet/security/sec,/obj/item/radio/intercom{name = "Station Intercom"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) "aqJ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/security/brig) -"aqK" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Security - Brig Aft"; dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/stripes/corner,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) +"aqK" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Security - Brig Aft"; dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/stripes/corner,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) "aqL" = (/obj/structure/cable/white{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/brig) "aqM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/hallway/primary/port) "aqN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/security/brig) @@ -938,8 +938,8 @@ "asb" = (/obj/structure/cable/white{icon_state = "2-8"},/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/port/central) "asc" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/maintenance/port/central) "asd" = (/obj/machinery/computer/slot_machine,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera{c_tag = "Central Diner 3"; dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) -"ase" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) -"asi" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) +"ase" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) +"asi" = (/obj/item/kirbyplants{icon_state = "plant-22"},/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "asj" = (/obj/machinery/vending/cola/random,/obj/machinery/newscaster{pixel_x = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "ask" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/white{icon_state = "1-4"},/turf/open/floor/plasteel,/area/maintenance/starboard/central) "asl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/white{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/starboard/central) @@ -950,7 +950,7 @@ "asq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Maintenance Hatch"; req_access_txt = "12"},/obj/structure/cable/white{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/starboard) "asr" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "ass" = (/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"ast" = (/obj/machinery/light{dir = 4},/obj/machinery/newscaster{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"ast" = (/obj/machinery/light{dir = 4},/obj/machinery/newscaster{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/crew_quarters/dorms) "asu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard) "asv" = (/turf/open/floor/engine/n2,/area/engine/atmos) "asw" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) @@ -1035,7 +1035,7 @@ "atX" = (/obj/structure/chair/sofa/corner{dir = 1},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) "atY" = (/obj/machinery/light{dir = 1},/obj/structure/chair/sofa/left,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) "atZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) -"aua" = (/obj/structure/window/reinforced{dir = 4},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/structure/sign/barsign{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) +"aua" = (/obj/structure/window/reinforced{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/structure/sign/barsign{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) "aub" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "aud" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "auf" = (/obj/structure/table/reinforced,/obj/item/lighter{pixel_x = 3; pixel_y = 3},/obj/item/lighter,/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},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) @@ -1131,7 +1131,7 @@ "avU" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel,/area/maintenance/starboard/aft) "avV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) "avW" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port) -"avX" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port) +"avX" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port) "avY" = (/obj/structure/table/reinforced,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/machinery/cell_charger,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -24; pixel_y = -24},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/primary) "avZ" = (/obj/machinery/vending/tool,/obj/machinery/status_display{pixel_y = -32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary) "awa" = (/obj/machinery/vending/assist,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/light,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary) @@ -1194,7 +1194,7 @@ "axn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) "axo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) "axp" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/engine/atmos) -"axq" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display/ai{pixel_y = 32},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/atmos) +"axq" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display/ai{pixel_y = 32},/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/atmos) "axr" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/atmos) "axs" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light_switch{pixel_x = 24; pixel_y = 24},/obj/effect/decal/cleanable/oil,/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/atmos) "axt" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) @@ -1211,9 +1211,9 @@ "axE" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/turf_decal/bot,/obj/structure/closet/wardrobe/white,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) "axF" = (/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) "axG" = (/obj/effect/turf_decal/bot,/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/machinery/cryopod{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"axH" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/suit/jacket/letterman_nanotrasen,/obj/item/clothing/suit/toggle/lawyer,/obj/item/clothing/under/maid,/obj/machinery/light/small{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"axH" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/suit/jacket/letterman_nanotrasen,/obj/item/clothing/suit/toggle/lawyer,/obj/item/clothing/under/costume/maid,/obj/machinery/light/small{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms) "axI" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "dormsat_shutter4"},/turf/open/floor/plating,/area/crew_quarters/dorms) -"axJ" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/suit/jacket{desc = "All the class of a trenchcoat without the security fibers."; icon_state = "detective"; name = "trenchcoat"},/obj/item/clothing/suit/toggle/lawyer/purple,/obj/item/clothing/head/fedora{icon_state = "detective"},/obj/item/clothing/under/geisha,/obj/machinery/light/small{dir = 1},/turf/open/floor/carpet/gato,/area/crew_quarters/dorms) +"axJ" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/suit/jacket{desc = "All the class of a trenchcoat without the security fibers."; icon_state = "detective"; name = "trenchcoat"},/obj/item/clothing/suit/toggle/lawyer/purple,/obj/item/clothing/head/fedora{icon_state = "detective"},/obj/item/clothing/under/costume/geisha,/obj/machinery/light/small{dir = 1},/turf/open/floor/carpet/gato,/area/crew_quarters/dorms) "axK" = (/obj/structure/dresser,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/dorms) "axL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/research) "axN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/turf/open/floor/carpet/black,/area/crew_quarters/theatre) @@ -1314,7 +1314,7 @@ "azE" = (/obj/structure/chair/sofa/corner{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) "azF" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/light,/obj/structure/chair/sofa/left{dir = 1},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) "azG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) -"azH" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced{dir = 4},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) +"azH" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/theatre) "azI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/table/plasmaglass,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "azJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/white{icon_state = "1-2"},/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "azL" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) @@ -1435,7 +1435,7 @@ "aBW" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/theatre) "aBX" = (/obj/machinery/vending/autodrobe,/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/theatre"; dir = 1; name = "Theatre Backstage APC"; pixel_y = 25},/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/white{icon_state = "0-2"},/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) "aBY" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 8},/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) -"aCa" = (/obj/machinery/light{dir = 4},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) +"aCa" = (/obj/machinery/light{dir = 4},/obj/item/kirbyplants{icon_state = "plant-22"},/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "aCb" = (/obj/machinery/status_display,/turf/closed/wall,/area/crew_quarters/kitchen) "aCc" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/kitchen) "aCd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) @@ -1514,7 +1514,7 @@ "aDy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/break_room) "aDz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/break_room) "aDA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/break_room) -"aDB" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/engine/break_room) +"aDB" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/engine/break_room) "aDC" = (/obj/structure/table/reinforced,/obj/item/airlock_painter,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/port) "aDD" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/crew_quarters/dorms) "aDE" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/dorms) @@ -1578,7 +1578,7 @@ "aEL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "aEM" = (/obj/effect/turf_decal/bot,/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/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) "aEN" = (/obj/machinery/vending/autodrobe{req_access_txt = "0"},/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/camera{c_tag = "Locker Room South"; dir = 8},/obj/effect/turf_decal/bot,/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},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"aEO" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/suit/jacket{desc = "All the class of a trenchcoat without the security fibers."; icon_state = "detective"; name = "trenchcoat"},/obj/item/clothing/suit/toggle/lawyer/purple,/obj/item/clothing/head/fedora{icon_state = "detective"},/obj/item/clothing/under/lawyer/female,/obj/machinery/light/small,/turf/open/floor/wood,/area/crew_quarters/dorms) +"aEO" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/suit/jacket{desc = "All the class of a trenchcoat without the security fibers."; icon_state = "detective"; name = "trenchcoat"},/obj/item/clothing/suit/toggle/lawyer/purple,/obj/item/clothing/head/fedora{icon_state = "detective"},/obj/item/clothing/under/rank/security/detective,/obj/machinery/light/small,/turf/open/floor/wood,/area/crew_quarters/dorms) "aEP" = (/obj/structure/dresser,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/dorms) "aEQ" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/suit/jacket{desc = "All the class of a trenchcoat without the security fibers."; icon_state = "greydet"; name = "trenchcoat"},/obj/item/clothing/suit/toggle/lawyer/black,/obj/item/clothing/head/fedora,/obj/item/clothing/under/blacktango,/obj/machinery/light/small,/turf/open/floor/wood,/area/crew_quarters/dorms) "aER" = (/obj/structure/dresser,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/open/floor/wood,/area/crew_quarters/dorms) @@ -1629,7 +1629,7 @@ "aFK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.3-Engi"; location = "9.2-EnteringEngi"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/primary/port) "aFL" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Central Hallway West"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port) "aFM" = (/obj/machinery/status_display{pixel_x = 32},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aFN" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/camera{c_tag = "Central Diner 1"; dir = 4},/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) +"aFN" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/camera{c_tag = "Central Diner 1"; dir = 4},/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "aFQ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchencounter"; name = "Kitchen Counter Shutters"},/obj/item/storage/fancy/donut_box,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/kitchen) "aFR" = (/turf/open/floor/plasteel/white,/area/crew_quarters/kitchen) "aFS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) @@ -1660,7 +1660,7 @@ "aGr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/obj/machinery/camera{c_tag = "Engineering Foyer"; dir = 1},/obj/machinery/power/apc{areastring = "/area/engine/break_room"; dir = 2; name = "Engineering Foyer APC"; pixel_y = -26},/obj/structure/cable/white,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) "aGs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) "aGt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/break_room) -"aGu" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/break_room) +"aGu" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/break_room) "aGv" = (/obj/structure/table/reinforced,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/machinery/cell_charger,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/port) "aGw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/primary/port) "aGx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port) @@ -1700,7 +1700,7 @@ "aHf" = (/obj/structure/table/reinforced,/obj/item/book/manual/wiki/security_space_law,/obj/item/taperecorder,/obj/machinery/status_display{pixel_y = -32},/obj/item/flashlight/seclite,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/brig) "aHg" = (/obj/machinery/camera{c_tag = "Gravity Generator Room"; dir = 8},/obj/effect/turf_decal/bot_white/left,/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},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) "aHh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"aHi" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/button/door{id = "engstorage"; name = "Engineering Secure Storage Control"; pixel_y = 24; req_access_txt = "10"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/engine,/area/engine/engineering) +"aHi" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/button/door{id = "engstorage"; name = "Engineering Secure Storage Control"; pixel_y = 24; req_access_txt = "10"},/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/engine,/area/engine/engineering) "aHj" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/engine,/area/engine/engineering) "aHk" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/engine,/area/engine/engineering) "aHl" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) @@ -1712,7 +1712,7 @@ "aHr" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) "aHs" = (/obj/machinery/computer/security{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = -26; pixel_y = -26},/obj/machinery/status_display{pixel_y = -32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/camera{c_tag = "Security - Front Desk"; dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) "aHt" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"aHu" = (/obj/structure/cable/white{icon_state = "2-8"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) +"aHu" = (/obj/structure/cable/white{icon_state = "2-8"},/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) "aHv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/engineering) "aHw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "ceblast"; name = "Engineering Lockdown Shutters"},/obj/structure/sign/warning/electricshock{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/white{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/engineering) "aHx" = (/obj/machinery/door/poddoor/preopen{id = "ceblast"; name = "Engineering Lockdown Shutters"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Access"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/white{icon_state = "2-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) @@ -1743,7 +1743,7 @@ "aHW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen Coldroom"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) "aHX" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/book/lorebooks/welcome_to_gato,/turf/open/floor/plasteel/dark,/area/library) "aHY" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) -"aHZ" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"aHZ" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/exit) "aIa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "aIb" = (/obj/structure/sign/warning/radiation{pixel_x = -32},/obj/effect/turf_decal/bot_white,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/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},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) "aIc" = (/turf/open/floor/circuit/green,/area/engine/gravity_generator) @@ -1796,7 +1796,7 @@ "aIX" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard) "aIY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "aIZ" = (/obj/machinery/status_display/ai,/turf/closed/wall,/area/hallway/primary/starboard) -"aJa" = (/obj/structure/table,/obj/item/storage/pill_bottle/dice,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"aJa" = (/obj/structure/table,/obj/item/storage/dice,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit) "aJb" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) "aJc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) "aJd" = (/obj/structure/table/wood,/obj/item/folder,/obj/item/pen,/obj/item/book/lorebooks/welcome_to_gato,/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) @@ -1867,7 +1867,7 @@ "aKI" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) "aKJ" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "4-8"},/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},/turf/open/floor/plasteel,/area/engine/engineering) "aKK" = (/obj/structure/table/reinforced,/obj/structure/cable/white{icon_state = "4-8"},/obj/item/clothing/gloves/color/yellow,/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/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/plasteel,/area/engine/engineering) -"aKL" = (/obj/structure/table/reinforced,/obj/item/stack/cable_coil/white{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil/white,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/twohanded/rcl/pre_loaded,/obj/item/twohanded/rcl/pre_loaded,/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},/turf/open/floor/plasteel,/area/engine/engineering) +"aKL" = (/obj/structure/table/reinforced,/obj/item/stack/cable_coil/white{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil/white,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/rcl/pre_loaded,/obj/item/rcl/pre_loaded,/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},/turf/open/floor/plasteel,/area/engine/engineering) "aKM" = (/obj/structure/table/reinforced,/obj/item/lightreplacer,/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/yellow{dir = 1},/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/plasteel,/area/engine/engineering) "aKN" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{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},/turf/open/floor/plasteel,/area/engine/engineering) "aKO" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "2-8"},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/computer/rdconsole/production{dir = 8},/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) @@ -1936,8 +1936,8 @@ "aMt" = (/obj/machinery/light{dir = 8},/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},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "aMu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/cable/white{icon_state = "2-4"},/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,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "aMx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/white{icon_state = "2-8"},/turf/open/floor/plasteel,/area/maintenance/starboard/central) -"aMy" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) -"aMz" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"aMy" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) +"aMz" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "aMA" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/exit) "aMB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/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},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "aMC" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) @@ -2004,11 +2004,11 @@ "aOi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hydroponics) "aOj" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hydroponics) "aOk" = (/obj/structure/sign/departments/botany,/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hydroponics) -"aOm" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/hallway/primary/central) +"aOm" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/hallway/primary/central) "aOn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/hallway/primary/central) "aOo" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/hallway/primary/central) "aOp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/hallway/primary/central) -"aOq" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/hallway/primary/central) +"aOq" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/hallway/primary/central) "aOr" = (/obj/structure/sign/directions/supply{dir = 4},/obj/structure/sign/directions/science{pixel_y = -8},/obj/structure/sign/directions/evac{dir = 4; pixel_y = 8},/turf/closed/wall,/area/hallway/primary/central) "aOt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/starboard/central) "aOu" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Maintenance Hatch"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/central) @@ -2067,7 +2067,7 @@ "aPR" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) "aPV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/port) "aPW" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/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/machinery/vending/mealdor,/turf/open/floor/plasteel/dark,/area/hallway/primary/port/aft) -"aPX" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Central Primary Hallway South-West"; dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/primary/port/aft) +"aPX" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Central Primary Hallway South-West"; dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/primary/port/aft) "aPY" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.2-EnteringEngi"; location = "9.1-Library"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/primary/port/aft) "aPZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/primary/port/aft) "aQa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/primary/port/aft) @@ -2092,7 +2092,7 @@ "aQx" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "aQy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "aQz" = (/obj/structure/sign/warning/securearea{pixel_y = -32},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"aQA" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/camera{c_tag = "Starboard Primary Hallway 3"; dir = 1},/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) +"aQA" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/camera{c_tag = "Starboard Primary Hallway 3"; dir = 1},/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/starboard) "aQB" = (/obj/structure/table/wood,/obj/item/crowbar/red,/obj/item/book/manual/wiki/security_space_law{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/detective,/obj/item/camera/detective,/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},/turf/open/floor/plasteel/dark,/area/maintenance/starboard/aft) "aQC" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/wood,/area/maintenance/starboard/aft) "aQD" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/starboard/aft) @@ -2164,7 +2164,7 @@ "aSh" = (/turf/closed/wall,/area/medical/medbay/zone3) "aSi" = (/obj/machinery/status_display,/turf/closed/wall,/area/medical/medbay/zone3) "aSj" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/item/radio/intercom{name = "Station Intercom"; pixel_x = -26; pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/closet/secure_closet/medical1,/obj/item/storage/box/beakers,/obj/item/storage/box/pillbottles,/turf/open/floor/plasteel,/area/medical/chemistry) -"aSk" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/medical/chemistry"; dir = 1; name = "Chemistry Lab APC"; pixel_y = 25},/obj/structure/cable/white{icon_state = "0-2"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/camera{c_tag = "Chemistry"; dir = 2},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"aSk" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/medical/chemistry"; dir = 1; name = "Chemistry Lab APC"; pixel_y = 25},/obj/structure/cable/white{icon_state = "0-2"},/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/camera{c_tag = "Chemistry"; dir = 2},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) "aSl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table/glass,/obj/item/clipboard,/obj/item/storage/bag/chemistry,/obj/item/storage/pill_bottle/mutadone,/turf/open/floor/plasteel,/area/medical/chemistry) "aSm" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/medical/chemistry) "aSn" = (/obj/machinery/chem_dispenser,/obj/machinery/button/door{id = "chemistbot"; name = "Chemistry Shutter Control"; pixel_x = 24; pixel_y = 24; req_access_txt = "33"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/chemistry) @@ -2198,7 +2198,7 @@ "aTc" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/library) "aTd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/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},/turf/open/floor/plasteel/dark,/area/library) "aTe" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"aTf" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/storage/pill_bottle/dice,/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},/turf/open/floor/plasteel/dark,/area/library) +"aTf" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/storage/dice,/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},/turf/open/floor/plasteel/dark,/area/library) "aTg" = (/obj/structure/table/wood,/obj/item/folder,/obj/item/pen/red,/turf/open/floor/plasteel/dark,/area/library) "aTh" = (/obj/structure/chair/office/dark{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/library) "aTi" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/librarian,/turf/open/floor/plasteel/dark,/area/library) @@ -2375,7 +2375,7 @@ "aWO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/nosmoking/circle{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/chemistry) "aWP" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chips,/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) "aWQ" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/effect/landmark/start/assistant,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"aWR" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/machinery/light,/obj/machinery/newscaster{pixel_y = -32},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"aWR" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/machinery/light,/obj/machinery/newscaster{pixel_y = -32},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) "aWS" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) "aWU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Research and Development Lab"; req_one_access_txt = "7;29"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/science/lab) "aWV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/science/lab) @@ -2401,7 +2401,7 @@ "aXr" = (/obj/machinery/airalarm{pixel_y = 23},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) "aXs" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) "aXt" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"aXu" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"aXu" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) "aXz" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/cable/white{icon_state = "1-4"},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/science/research) "aXA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/science/research) "aXB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/research) @@ -2557,8 +2557,8 @@ "bbn" = (/obj/machinery/vending/autodrobe{req_access_txt = "0"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/port) "bbp" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) "bbq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bbr" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bbs" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bbr" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bbs" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) "bbt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) "bbu" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) "bbv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) @@ -2795,7 +2795,7 @@ "bhI" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bhJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bhK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"bhL" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/machinery/light/small{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) +"bhL" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/machinery/light/small{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "bhM" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/science/xenobiology) "bhN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/white,/turf/open/floor/plating,/area/science/xenobiology) "bhO" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/xenobiology) @@ -2894,13 +2894,13 @@ "bki" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bkj" = (/obj/machinery/door/airlock/external{name = "External Docking Port"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bko" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) -"bkt" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkt" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bku" = (/obj/machinery/vending/snack/random,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bky" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bkz" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/gato,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bkB" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bkC" = (/obj/item/beacon,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkE" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkE" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) "blc" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) "blf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/camera{c_tag = "Fore Primary Hallway 3"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) "blh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Starboard Primary Hallway 2"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/starboard/fore) @@ -3123,7 +3123,7 @@ "esZ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/junction/flip,/turf/open/floor/plating,/area/maintenance/port) "eva" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/computer/atmos_control/tank/air_tank{dir = 1},/obj/effect/decal/cleanable/dirt,/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},/turf/open/floor/plasteel/dark,/area/engine/atmos) "ewc" = (/turf/open/floor/plasteel/dark/side{dir = 1},/area/crew_quarters/dorms) -"ewH" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"ewH" = (/obj/item/kirbyplants,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) "ewT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) "exb" = (/obj/machinery/door/window/brigdoor{dir = 8; name = "Creature Pen"; req_access_txt = "47"},/obj/machinery/door/poddoor/preopen{id = "xeno3"; name = "Creature Cell #3"},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "2-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},/turf/open/floor/plasteel/dark,/area/science/xenobiology) "eyu" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) @@ -3250,7 +3250,7 @@ "hyn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) "hAy" = (/obj/machinery/power/apc{areastring = "/area/science/mixing"; dir = 4; name = "Toxins Lab APC"; pixel_x = 26},/obj/structure/cable/white,/turf/open/floor/plasteel,/area/science/mixing) "hBr" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/solar/starboard/fore) -"hBP" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"hBP" = (/obj/item/kirbyplants,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) "hDg" = (/obj/machinery/power/apc{areastring = "/area/maintenance/solars/starboard/aft"; dir = 8; name = "Starboard Quarter Solar APC"; pixel_x = -26; pixel_y = 3},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) "hDi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=3.4-AtriumNE"; location = "3.3-AtriumSE"},/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},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "hIK" = (/turf/open/floor/plasteel/dark/corner{dir = 8},/area/crew_quarters/dorms) @@ -3281,7 +3281,7 @@ "ixn" = (/obj/effect/landmark/event_spawn,/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/structure/disposalpipe/segment,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) "iye" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) "iAr" = (/obj/structure/cable/white{icon_state = "2-4"},/turf/open/floor/plating,/area/crew_quarters/dorms) -"iAR" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1,/turf/open/floor/wood,/area/crew_quarters/dorms) +"iAR" = (/obj/item/kirbyplants/photosynthetic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1,/turf/open/floor/wood,/area/crew_quarters/dorms) "iCX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) "iDH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/airlock/maintenance{dir = 4; name = "Disposal Access"; req_access_txt = "12"},/obj/structure/cable/white{icon_state = "1-2"},/turf/open/floor/plasteel,/area/maintenance/disposal) "iEU" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) @@ -3310,7 +3310,7 @@ "jde" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Toxins Lab East"; dir = 8; network = list("ss13","rd"); pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) "jdv" = (/obj/structure/cable,/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/maintenance/solars/starboard/aft) "jdD" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xeno3"; name = "Containment Control"; req_access_txt = "55"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/xenobiology) -"jil" = (/obj/structure/double_bed,/obj/item/bedsheet/double_blue,/turf/open/floor/carpet/royalblue,/area/crew_quarters/dorms) +"jil" = (/obj/structure/bed/double,/obj/item/bedsheet/double_blue,/turf/open/floor/carpet/royalblue,/area/crew_quarters/dorms) "jkl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) "jkI" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/item/multitool,/turf/open/floor/plating,/area/solar/starboard/fore) "jnK" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/destructible/cult/tome,/obj/item/book/codex_gigas,/turf/open/floor/wood,/area/library) @@ -3400,7 +3400,7 @@ "lPw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) "lTY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hallway/secondary/entry) "lUu" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos) -"lWZ" = (/obj/structure/double_bed,/obj/item/bedsheet/double_red,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) +"lWZ" = (/obj/structure/bed/double,/obj/item/bedsheet/double_red,/turf/open/floor/carpet/red,/area/crew_quarters/dorms) "lXk" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) "lZR" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/primary/fore) "mae" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) @@ -3489,7 +3489,7 @@ "oiL" = (/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) "ojj" = (/obj/structure/table/wood,/obj/item/book/lorebooks/welcome_to_gato,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/dorms) "olc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/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/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) -"oma" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1},/turf/open/floor/wood,/area/crew_quarters/dorms) +"oma" = (/obj/item/kirbyplants/photosynthetic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{dir = 1},/turf/open/floor/wood,/area/crew_quarters/dorms) "omW" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) "oql" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) "orI" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/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},/turf/open/floor/plasteel/dark,/area/engine/atmos) @@ -3585,7 +3585,7 @@ "qAj" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/maintenance/port) "qAV" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/storage/primary) "qBB" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/port) -"qCg" = (/obj/item/twohanded/required/kirbyplants,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"qCg" = (/obj/item/kirbyplants,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) "qCk" = (/obj/machinery/door/airlock/virology/glass{name = "Isolation A"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) "qDc" = (/obj/machinery/power/solar_control{dir = 1; id = "starboardsolar"; name = "Starboard Quarter Solar Control"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) "qEl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) @@ -3601,14 +3601,14 @@ "qZN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/library) "rae" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) "rcj" = (/obj/machinery/satellite/meteor_shield,/turf/open/space/basic,/area/space) -"ree" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/maintenance/starboard/aft) +"ree" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/maintenance/starboard/aft) "rgX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) "rjQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos) "rjV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airlock_sensor{id_tag = "incinerator_airlock_sensor"; master_tag = "incinerator_airlock_control"; pixel_y = 24},/obj/machinery/camera/autoname{dir = 2},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) "rlZ" = (/turf/closed/wall/r_wall,/area/solar/starboard/fore) "rnq" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/turf/open/space/basic,/area/space/nearstation) "rnT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layer1{dir = 2},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"rpu" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"rpu" = (/obj/item/kirbyplants,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) "rpy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/sign/warning/nosmoking/circle,/turf/closed/wall,/area/science/mixing) "rpN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) "rwZ" = (/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/structure/disposalpipe/segment{dir = 10},/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) @@ -3885,7 +3885,7 @@ "tyD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) "tFk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) "tJS" = (/obj/structure/lattice/catwalk,/obj/structure/cable/white{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) -"tKJ" = (/obj/structure/double_bed,/obj/item/bedsheet/double_gato,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms) +"tKJ" = (/obj/structure/bed/double,/obj/item/bedsheet/double_gato,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms) "tKM" = (/turf/closed/wall,/area/hallway/primary/fore) "tLt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/starboard) "tLv" = (/turf/open/floor/plasteel,/area/crew_quarters/dorms{name = "Dorm Satellite"}) @@ -4010,7 +4010,7 @@ "xws" = (/obj/structure/cable/white{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "brigfront"; name = "Brig Blast door"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/security/brig) "xwu" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/break_room) "xyo" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/decal/cleanable/dirt,/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},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"xza" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/maintenance/starboard/aft) +"xza" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/maintenance/starboard/aft) "xAj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/decal/cleanable/dirt,/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},/turf/open/floor/plasteel/dark,/area/engine/atmos) "xAZ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall/r_wall,/area/maintenance/disposal) "xDB" = (/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/structure/chair/stool/bar/brass,/turf/open/floor/mineral/basaltstone_floor,/area/crew_quarters/bar/atrium) diff --git a/_maps/metis_maps/PubbyStation/PubbyStation.dmm b/_maps/metis_maps/PubbyStation/PubbyStation.dmm index 47fb091c9f..56a838113a 100644 --- a/_maps/metis_maps/PubbyStation/PubbyStation.dmm +++ b/_maps/metis_maps/PubbyStation/PubbyStation.dmm @@ -707,7 +707,7 @@ dir = 1; pixel_y = 16 }, -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /turf/open/floor/plasteel, /area/crew_quarters/fitness/pool) "abe" = ( @@ -2609,7 +2609,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "afe" = ( -/obj/item/twohanded/required/kirbyplants/photosynthetic{ +/obj/item/kirbyplants/photosynthetic{ pixel_y = 10 }, /obj/structure/cable/yellow{ @@ -2646,7 +2646,7 @@ /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) "afg" = ( -/obj/item/twohanded/required/kirbyplants/photosynthetic{ +/obj/item/kirbyplants/photosynthetic{ pixel_y = 10 }, /obj/structure/cable/yellow{ @@ -2746,7 +2746,7 @@ /turf/open/floor/plasteel/dark, /area/security/prison) "afp" = ( -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /obj/structure/table, /turf/open/floor/plasteel/dark, /area/security/prison) @@ -2830,7 +2830,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/structure/bed/secbed, +/obj/structure/bed/dogbed, /mob/living/simple_animal/hostile/carp/cayenne/lia, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) @@ -6718,7 +6718,7 @@ dir = 8 }, /obj/item/book/lorebooks/welcome_to_gato, -/mob/living/simple_animal/parrot/Poly, +/mob/living/simple_animal/parrot/Polly, /turf/open/floor/plasteel, /area/crew_quarters/heads/chief) "anp" = ( @@ -6968,7 +6968,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel/dark, @@ -7412,7 +7412,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "aoG" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-05" }, /obj/structure/medkit_cabinet{ @@ -8651,7 +8651,7 @@ throwforce = 1 }, /obj/item/cane, -/obj/item/clothing/under/waiter, +/obj/item/clothing/under/suit/waiter, /obj/item/clothing/under/blacktango, /obj/item/clothing/under/sundress, /obj/item/clothing/shoes/sandal, @@ -10808,7 +10808,7 @@ name = "Privacy Shutters Control"; pixel_y = 26 }, -/obj/structure/double_bed, +/obj/structure/bed/double, /obj/item/bedsheet/double_gato, /turf/open/floor/wood, /area/crew_quarters/dorms) @@ -11373,7 +11373,7 @@ /area/hallway/primary/central) "awe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel, /area/hallway/primary/central) "awf" = ( @@ -11454,7 +11454,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -11574,7 +11574,7 @@ /turf/open/floor/carpet, /area/crew_quarters/heads/captain) "awG" = ( -/obj/item/twohanded/required/kirbyplants/photosynthetic{ +/obj/item/kirbyplants/photosynthetic{ layer = 3.1 }, /obj/structure/window/reinforced/fulltile, @@ -12041,7 +12041,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/fore) "axF" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /obj/effect/turf_decal/tile/red{ @@ -12325,7 +12325,7 @@ pixel_y = 26; req_access_txt = "0" }, -/obj/structure/double_bed, +/obj/structure/bed/double, /obj/item/bedsheet/double_red, /turf/open/floor/carpet, /area/crew_quarters/dorms) @@ -12378,7 +12378,7 @@ /area/crew_quarters/dorms) "ayo" = ( /obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /turf/open/floor/carpet, /area/crew_quarters/dorms) "ayp" = ( @@ -12430,7 +12430,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-04" }, /turf/open/floor/plasteel, @@ -13711,7 +13711,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -24 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-20"; pixel_y = 3 }, @@ -14180,7 +14180,7 @@ /area/maintenance/department/security/brig) "aCi" = ( /obj/structure/table/wood, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-18"; pixel_y = 12 }, @@ -14268,7 +14268,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -14454,13 +14454,13 @@ /area/bridge) "aCG" = ( /obj/structure/table, -/obj/item/aiModule/supplied/quarantine, +/obj/item/ai_module/supplied/quarantine, /obj/machinery/camera/motion{ c_tag = "AI Upload Port"; dir = 4; network = list("aiupload") }, -/obj/item/aiModule/reset, +/obj/item/ai_module/reset, /obj/machinery/flasher{ id = "brigentry"; pixel_x = -28 @@ -14511,7 +14511,7 @@ /area/ai_monitored/turret_protected/ai_upload) "aCM" = ( /obj/structure/table, -/obj/item/aiModule/supplied/freeform, +/obj/item/ai_module/supplied/freeform, /obj/machinery/camera/motion{ c_tag = "AI Upload Starboard"; dir = 8; @@ -15398,9 +15398,9 @@ /area/bridge) "aED" = ( /obj/structure/table, -/obj/item/aiModule/core/full/asimov, +/obj/item/ai_module/core/full/asimov, /obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/item/aiModule/core/freeformcore, +/obj/item/ai_module/core/freeformcore, /obj/machinery/door/window{ base_state = "right"; dir = 4; @@ -15409,7 +15409,7 @@ req_access_txt = "20" }, /obj/effect/spawner/lootdrop/aimodule_neutral, -/obj/item/aiModule/core/full/custom, +/obj/item/ai_module/core/full/custom, /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 @@ -15456,8 +15456,8 @@ /area/ai_monitored/turret_protected/ai_upload) "aEI" = ( /obj/structure/table, -/obj/item/aiModule/supplied/oxygen, -/obj/item/aiModule/zeroth/oneHuman, +/obj/item/ai_module/supplied/oxygen, +/obj/item/ai_module/zeroth/oneHuman, /obj/machinery/door/window{ base_state = "left"; dir = 8; @@ -15465,9 +15465,9 @@ name = "High-Risk Modules"; req_access_txt = "20" }, -/obj/item/aiModule/reset/purge, +/obj/item/ai_module/reset/purge, /obj/effect/spawner/lootdrop/aimodule_harmful, -/obj/item/aiModule/supplied/protectStation, +/obj/item/ai_module/supplied/protectStation, /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 @@ -15513,7 +15513,7 @@ /turf/open/floor/wood, /area/crew_quarters/heads/hop) "aEM" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-24" }, /obj/structure/cable{ @@ -19109,7 +19109,7 @@ /obj/machinery/airalarm{ pixel_y = 22 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-14" }, /turf/open/floor/plasteel, @@ -19516,7 +19516,7 @@ /area/hallway/secondary/entry) "aMN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -19554,7 +19554,7 @@ /obj/structure/cable{ icon_state = "0-8" }, -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -19994,7 +19994,7 @@ /area/quartermaster/sorting) "aNK" = ( /obj/structure/table, -/obj/item/destTagger, +/obj/item/dest_tagger, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -20941,13 +20941,13 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/bar) "aPy" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plating{ @@ -21836,7 +21836,7 @@ pixel_y = 26; req_access_txt = "0" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plating{ icon_state = "platingdmg3" }, @@ -22043,7 +22043,7 @@ /obj/structure/chair/wood/normal{ dir = 8 }, -/obj/item/clothing/under/janimaid, +/obj/item/clothing/under/rank/civilian/janitor/maid, /turf/open/floor/wood{ icon_state = "wood-broken" }, @@ -24901,7 +24901,7 @@ /area/janitor) "aXP" = ( /obj/structure/table, -/obj/item/clothing/under/maid, +/obj/item/clothing/under/costume/maid, /obj/item/key/janitor, /obj/item/grenade/clusterbuster/cleaner, /obj/item/grenade/chem_grenade/cleaner, @@ -25060,7 +25060,7 @@ /area/crew_quarters/bar) "aYe" = ( /obj/structure/table/reinforced, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-18"; pixel_y = 10 }, @@ -25112,7 +25112,7 @@ "aYi" = ( /obj/structure/table/reinforced, /obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-18"; pixel_y = 10 }, @@ -25184,7 +25184,7 @@ "aYm" = ( /obj/structure/closet/crate/wooden/toy, /obj/item/lipstick/random, -/obj/item/clothing/gloves/color/rainbow/clown, +/obj/item/clothing/gloves/color/rainbow, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -26472,7 +26472,7 @@ /turf/open/floor/plasteel, /area/hydroponics) "bbd" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /obj/effect/turf_decal/tile/green, @@ -26672,7 +26672,7 @@ pixel_x = 6; pixel_y = -5 }, -/obj/item/clothing/under/rank/mailman, +/obj/item/clothing/under/misc/mailman, /obj/item/clothing/head/mailman, /turf/open/floor/plasteel, /area/quartermaster/office) @@ -28398,7 +28398,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bfp" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/machinery/button/door{ @@ -29030,7 +29030,7 @@ /turf/open/floor/plasteel, /area/crew_quarters/bar) "bgv" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-14" }, /obj/effect/turf_decal/tile/neutral{ @@ -30224,7 +30224,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "biP" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-05" }, /obj/structure/disposalpipe/segment{ @@ -30302,7 +30302,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-04" }, /turf/open/floor/plasteel, @@ -30379,7 +30379,7 @@ /turf/open/floor/plasteel, /area/medical/medbay/central) "bji" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /obj/effect/turf_decal/tile/blue, @@ -30432,7 +30432,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bjn" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /obj/effect/turf_decal/tile/purple, @@ -31045,7 +31045,7 @@ /turf/open/floor/plating, /area/science/xenobiology) "bkI" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-05" }, /obj/machinery/airalarm{ @@ -31909,7 +31909,7 @@ /turf/open/floor/plasteel, /area/crew_quarters/fitness) "bmw" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-05" }, /obj/effect/turf_decal/tile/blue{ @@ -32359,7 +32359,7 @@ dir = 8; pixel_x = 28 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-11" }, /obj/machinery/light/small{ @@ -32489,7 +32489,7 @@ /obj/structure/window{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_x = -3; pixel_y = 3 @@ -32641,7 +32641,7 @@ /turf/open/floor/engine, /area/science/explab) "bnZ" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /obj/effect/turf_decal/tile/neutral{ @@ -33069,7 +33069,7 @@ /turf/open/floor/plasteel/dark, /area/hallway/primary/aft) "boT" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/effect/turf_decal/bot, @@ -33096,7 +33096,7 @@ dir = 1 }, /obj/machinery/light, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /obj/effect/turf_decal/tile/neutral{ @@ -33940,7 +33940,7 @@ /turf/open/floor/plasteel/white, /area/science/explab) "bqu" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-05" }, /turf/open/floor/plasteel, @@ -34029,7 +34029,7 @@ /obj/structure/window{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /obj/effect/turf_decal/loading_area{ @@ -34184,12 +34184,12 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/item/clothing/under/shorts/redwshort, -/obj/item/clothing/under/shorts/redwshort, -/obj/item/clothing/under/shorts/yellowwshort, -/obj/item/clothing/under/shorts/yellowwshort, -/obj/item/clothing/under/shorts/pinkwshort, -/obj/item/clothing/under/shorts/pinkwshort, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/yellow, +/obj/item/clothing/under/shorts/yellow, +/obj/item/clothing/under/shorts/pink, +/obj/item/clothing/under/shorts/pink, /turf/open/floor/plasteel/white/corner, /area/crew_quarters/dorms) "bqO" = ( @@ -34497,7 +34497,7 @@ /turf/open/floor/plating, /area/maintenance/disposal) "brp" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-03" }, /obj/structure/extinguisher_cabinet{ @@ -35028,7 +35028,7 @@ pixel_x = 8; pixel_y = 6 }, -/obj/item/storage/pill_bottle/dice{ +/obj/item/storage/dice{ pixel_x = -3 }, /turf/open/floor/carpet, @@ -35398,7 +35398,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "bsW" = ( -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -35739,7 +35739,7 @@ /turf/open/floor/grass, /area/medical/genetics) "btU" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/blue, @@ -36005,7 +36005,7 @@ /area/science/robotics/lab) "buw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/twohanded/required/kirbyplants/photosynthetic{ +/obj/item/kirbyplants/photosynthetic{ pixel_y = 10 }, /obj/effect/turf_decal/tile/purple{ @@ -36024,7 +36024,7 @@ /turf/open/floor/plasteel/dark, /area/science/explab) "buy" = ( -/obj/item/twohanded/required/kirbyplants/photosynthetic{ +/obj/item/kirbyplants/photosynthetic{ pixel_y = 10 }, /obj/effect/turf_decal/tile/purple, @@ -36063,7 +36063,7 @@ /turf/open/floor/plasteel, /area/science/explab) "buD" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-11" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36940,7 +36940,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_y = 3 }, @@ -37932,7 +37932,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/photosynthetic{ +/obj/item/kirbyplants/photosynthetic{ pixel_y = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -38322,7 +38322,7 @@ /turf/open/floor/plasteel/white, /area/medical/genetics) "bzM" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /obj/effect/turf_decal/tile/green, @@ -39118,7 +39118,7 @@ /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hor) "bBu" = ( -/obj/item/twohanded/required/kirbyplants/dead, +/obj/item/kirbyplants/dead, /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -39172,7 +39172,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "bBB" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-20"; pixel_y = 3 }, @@ -40733,7 +40733,7 @@ icon_state = "2-4" }, /obj/structure/closet, -/obj/item/clothing/under/rank/nursesuit, +/obj/item/clothing/under/rank/medical/doctor/nurse, /obj/item/clothing/head/nursehat, /obj/effect/decal/cleanable/cobweb, /obj/machinery/airalarm{ @@ -42837,7 +42837,7 @@ /turf/open/floor/plasteel/dark, /area/maintenance/department/engine) "bJi" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plating, @@ -43926,7 +43926,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "bLT" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "applebush" }, /obj/machinery/airalarm{ @@ -44779,7 +44779,7 @@ /turf/open/floor/plasteel/white, /area/medical/virology) "bNR" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /obj/effect/turf_decal/tile/green, @@ -45717,7 +45717,7 @@ pixel_x = -26 }, /obj/item/aicard, -/obj/item/aiModule/reset, +/obj/item/ai_module/reset, /obj/item/assembly/flash/handheld, /obj/effect/turf_decal/tile/green{ dir = 1 @@ -46866,7 +46866,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "bSP" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-02" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -47424,7 +47424,7 @@ /area/maintenance/department/engine) "bUb" = ( /obj/structure/grille/broken, -/obj/structure/piano, +/obj/structure/musician/piano, /turf/open/floor/plating, /area/maintenance/department/engine) "bUc" = ( @@ -49099,7 +49099,7 @@ /turf/open/floor/plating, /area/maintenance/department/engine) "bYI" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_y = 3 }, @@ -49882,7 +49882,7 @@ /area/engine/engineering) "caw" = ( /obj/structure/table, -/obj/item/twohanded/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, /turf/open/floor/plasteel, /area/engine/engineering) "cax" = ( @@ -51000,7 +51000,7 @@ /turf/open/floor/plasteel/dark, /area/chapel/main/monastery) "ceK" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-08" }, /turf/open/floor/plasteel/dark, @@ -52131,7 +52131,7 @@ /turf/open/floor/plating, /area/maintenance/department/chapel/monastery) "cjP" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/item/radio/intercom{ @@ -53828,7 +53828,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "cpT" = ( -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -53836,7 +53836,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "cpU" = ( -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ dir = 8 @@ -54031,7 +54031,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "cqE" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-18"; layer = 3 }, @@ -54643,7 +54643,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /turf/open/floor/plasteel/dark, @@ -54736,7 +54736,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel/dark, @@ -55263,7 +55263,7 @@ icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21" }, /turf/open/floor/plasteel/dark, @@ -55522,7 +55522,7 @@ /turf/open/floor/plating, /area/maintenance/department/chapel/monastery) "cwr" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/structure/cable{ @@ -55564,10 +55564,10 @@ /turf/open/floor/carpet, /area/chapel/main/monastery) "cwz" = ( -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main/monastery) @@ -55981,7 +55981,7 @@ /turf/open/floor/plasteel/dark, /area/library) "cyQ" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/machinery/camera{ @@ -55996,7 +55996,7 @@ /turf/open/floor/plasteel/dark, /area/library) "cyR" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plasteel/dark, @@ -56254,7 +56254,7 @@ /area/library) "cAs" = ( /obj/structure/table/wood, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-05"; pixel_y = 10 }, @@ -57000,7 +57000,7 @@ }, /area/hallway/secondary/exit/departure_lounge) "dpb" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_y = 3 }, @@ -57449,7 +57449,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /turf/open/floor/plasteel/dark, @@ -58203,7 +58203,7 @@ /turf/open/floor/engine, /area/engine/engineering) "gkR" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, @@ -58497,7 +58497,7 @@ /area/science/xenobiology) "gKz" = ( /obj/structure/table/wood, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22"; pixel_y = 8 }, @@ -58566,7 +58566,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "gOf" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-14" }, /turf/open/floor/plasteel, @@ -59561,7 +59561,7 @@ /obj/structure/sign/plaques/deempisi{ pixel_y = 28 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_y = 3 }, @@ -60032,7 +60032,7 @@ /turf/open/floor/carpet, /area/lawoffice) "kxs" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /turf/open/floor/plating, @@ -61295,7 +61295,7 @@ /turf/open/floor/engine, /area/engine/supermatter) "nyO" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-22" }, /obj/machinery/light/small{ @@ -61545,7 +61545,7 @@ /turf/open/floor/wood, /area/lawoffice) "nVU" = ( -/obj/item/twohanded/spear, +/obj/item/spear, /turf/open/floor/plating, /area/maintenance/department/engine) "nWP" = ( @@ -62218,7 +62218,7 @@ /turf/open/floor/plating, /area/chapel/office) "plA" = ( -/obj/structure/piano, +/obj/structure/musician/piano, /turf/open/floor/plasteel/dark, /area/maintenance/department/crew_quarters/dorms) "pnU" = ( @@ -62552,7 +62552,7 @@ /turf/open/floor/plasteel/white, /area/science/xenobiology) "pXT" = ( -/obj/item/twohanded/required/kirbyplants, +/obj/item/kirbyplants, /obj/machinery/power/apc{ areastring = "/area/lawoffice"; dir = 8; @@ -62637,7 +62637,7 @@ /turf/open/floor/plasteel, /area/construction/mining/aux_base) "qkK" = ( -/obj/item/conveyor_construct/treadmill, +/obj/machinery/treadmill, /turf/open/floor/wood, /area/crew_quarters/fitness) "qnT" = ( diff --git a/_maps/metis_maps/SyndieBoxStation/SyndieBoxStation.dmm b/_maps/metis_maps/SyndieBoxStation/SyndieBoxStation.dmm index 3a994f53e2..09754dd231 100644 --- a/_maps/metis_maps/SyndieBoxStation/SyndieBoxStation.dmm +++ b/_maps/metis_maps/SyndieBoxStation/SyndieBoxStation.dmm @@ -258,7 +258,7 @@ /area/security/prison) "aaL" = ( /obj/structure/table, -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /turf/open/floor/engine, /area/security/prison) "aaM" = ( @@ -1635,7 +1635,7 @@ icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/carpet/red, /area/crew_quarters/heads/hos) "adH" = ( @@ -3813,7 +3813,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/security/main) "ahG" = ( @@ -3981,7 +3981,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/security/main) "ahX" = ( @@ -7950,7 +7950,7 @@ dir = 1; pixel_y = 16 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-10" }, /turf/open/floor/plasteel/dark, @@ -8707,7 +8707,7 @@ pixel_x = 8; pixel_y = 6 }, -/obj/item/storage/pill_bottle/dice{ +/obj/item/storage/dice{ pixel_x = -3 }, /turf/open/floor/carpet, @@ -10677,7 +10677,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/dorms) "awZ" = ( @@ -11883,7 +11883,7 @@ /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/bar) "azN" = ( -/obj/item/storage/pill_bottle/dice, +/obj/item/storage/dice, /obj/structure/table/plaswood, /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/dorms) @@ -12007,7 +12007,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/hallway/secondary/entry) "aAf" = ( @@ -12450,7 +12450,7 @@ /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/fitness) "aAY" = ( -/obj/item/clothing/under/rank/mailman, +/obj/item/clothing/under/misc/mailman, /obj/item/clothing/head/mailman, /obj/structure/closet, /obj/effect/landmark/blobstart, @@ -13099,7 +13099,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/chapel/main) "aCw" = ( @@ -13792,7 +13792,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light, /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/fitness) @@ -14267,7 +14267,7 @@ dir = 4; pixel_x = 24 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/gateway) "aEO" = ( @@ -16108,7 +16108,7 @@ c_tag = "EVA South"; dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/ai_monitored/storage/eva) "aIK" = ( @@ -16151,7 +16151,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/hallway/primary/central) "aIO" = ( @@ -17446,7 +17446,7 @@ /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/theatre) "aMa" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/theatre) "aMb" = ( @@ -17575,12 +17575,12 @@ /turf/open/floor/plasteel/dark, /area/chapel/office) "aMu" = ( -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, -/obj/item/clothing/under/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, /obj/structure/table/plaswood, /turf/open/floor/plasteel/grimy, /area/chapel/office) @@ -18059,7 +18059,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/hallway/secondary/entry) "aNP" = ( @@ -18981,7 +18981,7 @@ /area/library) "aPZ" = ( /obj/structure/destructible/cult/tome, -/obj/item/clothing/under/suit_jacket/red, +/obj/item/clothing/under/suit/red, /obj/item/book/codex_gigas, /turf/open/floor/engine/cult, /area/library) @@ -19349,7 +19349,7 @@ /obj/machinery/light_switch{ pixel_x = 27 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/storage/art) "aQQ" = ( @@ -19768,7 +19768,7 @@ /obj/structure/medkit_cabinet{ pixel_y = 27 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -20640,7 +20640,7 @@ /obj/machinery/firealarm{ pixel_y = 24 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -21316,7 +21316,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/vaporwave, /area/crew_quarters/bar) "aVI" = ( @@ -22517,7 +22517,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/bridge) "aXW" = ( @@ -22660,7 +22660,7 @@ dir = 1; pixel_y = -22 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/bar) "aYl" = ( @@ -22980,11 +22980,11 @@ /area/crew_quarters/locker) "aZc" = ( /obj/structure/closet, -/obj/item/clothing/under/suit_jacket/female{ +/obj/item/clothing/under/suit/female{ pixel_x = 3; pixel_y = 1 }, -/obj/item/clothing/under/suit_jacket/really_black{ +/obj/item/clothing/under/rank/civilian/lawyer/really_black{ pixel_x = -2 }, /obj/structure/window{ @@ -23261,7 +23261,7 @@ name = "bridge blast door" }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_x = -3; pixel_y = 3 @@ -23278,7 +23278,7 @@ name = "bridge blast door" }, /obj/effect/turf_decal/delivery, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_x = -3; pixel_y = 3 @@ -23400,7 +23400,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/chapel{ dir = 1 }, @@ -23418,7 +23418,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/chapel{ dir = 4 }, @@ -23468,7 +23468,7 @@ name = "Station Intercom (General)"; pixel_y = -29 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/mineral/basaltstone_floor, /area/security/vacantoffice) "baq" = ( @@ -23640,7 +23640,7 @@ /area/ai_monitored/turret_protected/ai_upload) "baO" = ( /obj/structure/table, -/obj/item/aiModule/reset, +/obj/item/ai_module/reset, /obj/machinery/light{ dir = 8 }, @@ -24018,7 +24018,7 @@ /area/bridge/meeting_room) "bbK" = ( /obj/structure/table, -/obj/item/aiModule/supplied/quarantine, +/obj/item/ai_module/supplied/quarantine, /obj/machinery/camera/motion{ dir = 4; network = list("aiupload") @@ -24034,7 +24034,7 @@ /area/ai_monitored/turret_protected/ai_upload) "bbM" = ( /obj/structure/table, -/obj/item/aiModule/supplied/freeform, +/obj/item/ai_module/supplied/freeform, /obj/structure/sign/plaques/kiddie{ pixel_x = 32 }, @@ -24623,7 +24623,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/pod/light, /area/hallway/secondary/exit) "bdn" = ( @@ -24757,7 +24757,7 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/security/detectives_office) "bdH" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_x = -3; pixel_y = 3 @@ -24790,8 +24790,8 @@ /area/bridge/meeting_room) "bdL" = ( /obj/structure/table, -/obj/item/aiModule/core/full/asimov, -/obj/item/aiModule/core/freeformcore, +/obj/item/ai_module/core/full/asimov, +/obj/item/ai_module/core/freeformcore, /obj/machinery/door/window{ base_state = "right"; dir = 4; @@ -24808,7 +24808,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/aiModule/core/full/custom, +/obj/item/ai_module/core/full/custom, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) "bdM" = ( @@ -24855,14 +24855,14 @@ /area/ai_monitored/turret_protected/ai_upload) "bdR" = ( /obj/structure/table, -/obj/item/aiModule/supplied/oxygen, -/obj/item/aiModule/zeroth/oneHuman, +/obj/item/ai_module/supplied/oxygen, +/obj/item/ai_module/zeroth/oneHuman, /obj/machinery/door/window{ dir = 8; name = "High-Risk Modules"; req_access_txt = "20" }, -/obj/item/aiModule/reset/purge, +/obj/item/ai_module/reset/purge, /obj/structure/window/reinforced, /obj/effect/spawner/lootdrop/aimodule_harmful, /obj/structure/window/reinforced{ @@ -24871,7 +24871,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/aiModule/supplied/protectStation, +/obj/item/ai_module/supplied/protectStation, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) "bdS" = ( @@ -25813,7 +25813,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/hallway/secondary/entry) "bfY" = ( @@ -26077,8 +26077,8 @@ layer = 2.9 }, /obj/structure/table/reinforced, -/obj/item/destTagger, -/obj/item/destTagger, +/obj/item/dest_tagger, +/obj/item/dest_tagger, /obj/effect/turf_decal/tile/brown{ dir = 1 }, @@ -26336,7 +26336,7 @@ /obj/structure/medkit_cabinet{ pixel_y = 27 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/medical/medbay/central) "bhh" = ( @@ -26684,7 +26684,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/hallway/primary/port) "bhL" = ( @@ -27356,7 +27356,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/structure/piano{ +/obj/structure/musician/piano{ icon_state = "piano"; pixel_y = 6 }, @@ -28187,7 +28187,7 @@ pixel_x = 5; pixel_y = 30 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/quartermaster/storage) "bkV" = ( @@ -30825,7 +30825,7 @@ /turf/open/floor/carpet/black, /area/library) "bqA" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -31647,7 +31647,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/loading_area{ icon_state = "drain"; name = "drain" @@ -32709,7 +32709,7 @@ /area/science/robotics/lab) "buI" = ( /obj/structure/window/plastitanium, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/mineral/basaltstone_floor, /area/science/robotics/lab) "buJ" = ( @@ -33459,7 +33459,7 @@ icon_state = "drain"; name = "drain" }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_x = -3; pixel_y = 3 @@ -34230,7 +34230,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hop) "bye" = ( @@ -34739,7 +34739,7 @@ dir = 8; pixel_x = 24 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/heads/hor) "bzc" = ( @@ -35906,7 +35906,7 @@ /obj/machinery/light_switch{ pixel_y = -23 }, -/obj/item/twohanded/required/kirbyplants/dead, +/obj/item/kirbyplants/dead, /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/heads/hor) "bBH" = ( @@ -36586,7 +36586,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/dark, /area/quartermaster/qm) "bDb" = ( @@ -36796,7 +36796,7 @@ icon_state = "drain"; name = "drain" }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/hallway/primary/central) "bDu" = ( @@ -37682,12 +37682,12 @@ pixel_x = -24 }, /obj/structure/closet/athletic_mixed, -/obj/item/clothing/under/shorts/redwshort, -/obj/item/clothing/under/shorts/redwshort, -/obj/item/clothing/under/shorts/yellowwshort, -/obj/item/clothing/under/shorts/yellowwshort, -/obj/item/clothing/under/shorts/pinkwshort, -/obj/item/clothing/under/shorts/pinkwshort, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/yellow, +/obj/item/clothing/under/shorts/yellow, +/obj/item/clothing/under/shorts/pink, +/obj/item/clothing/under/shorts/pink, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness) "bFn" = ( @@ -38491,7 +38491,7 @@ "bGX" = ( /obj/structure/table, /obj/item/aicard, -/obj/item/aiModule/reset, +/obj/item/ai_module/reset, /turf/open/floor/plating, /area/storage/tech) "bGY" = ( @@ -41870,7 +41870,7 @@ pixel_y = 24 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/engine/atmos) "bOU" = ( @@ -42467,7 +42467,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/pod/light, /area/medical/virology) "bQn" = ( @@ -44454,7 +44454,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 1; pixel_y = 16 @@ -44987,7 +44987,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/security/prison) "bVR" = ( @@ -46728,7 +46728,7 @@ /turf/open/floor/engine, /area/tcommsat/computer) "cag" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/carpet/black, /area/lawoffice) "cah" = ( @@ -47228,7 +47228,7 @@ /turf/closed/wall/r_wall, /area/engine/break_room) "cbv" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/ai_monitored/storage/eva) "cbw" = ( @@ -48991,7 +48991,7 @@ pixel_x = 27 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/tcommsat/computer) "cfH" = ( @@ -49892,7 +49892,7 @@ /area/maintenance/port/aft) "chQ" = ( /obj/item/clothing/head/kitty, -/obj/item/clothing/under/maid, +/obj/item/clothing/under/costume/maid, /obj/item/clothing/mask/muzzle, /turf/open/floor/plating, /area/maintenance/bar) @@ -50065,7 +50065,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/engine/break_room) "cim" = ( @@ -50801,7 +50801,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/mob/living/simple_animal/parrot/Poly, +/mob/living/simple_animal/parrot/Polly, /turf/open/floor/pod/light, /area/crew_quarters/heads/chief) "ckf" = ( @@ -52102,7 +52102,7 @@ /obj/structure/table/reinforced, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high/plus, -/obj/item/twohanded/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, /turf/open/floor/engine, /area/crew_quarters/heads/chief) "cmO" = ( @@ -53417,8 +53417,8 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/item/twohanded/rcl/pre_loaded, -/obj/item/twohanded/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, /turf/open/floor/engine, /area/engine/engineering) "cpE" = ( @@ -53488,7 +53488,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/engine/engineering) "cpK" = ( @@ -53511,7 +53511,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/engine/engineering) "cpM" = ( @@ -53688,7 +53688,7 @@ /obj/machinery/status_display{ pixel_y = -32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/effect/turf_decal/loading_area{ icon_state = "drain"; name = "drain" @@ -54978,7 +54978,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-04" }, /turf/open/floor/plasteel/dark, @@ -55390,7 +55390,7 @@ /turf/open/floor/engine, /area/engine/engineering) "ctN" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/chapel/office) "ctO" = ( @@ -55528,7 +55528,7 @@ /obj/structure/sign/warning/electricshock{ pixel_x = -32 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/engine/engineering) "cue" = ( @@ -55731,7 +55731,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/engine/engine_smes) "cuJ" = ( @@ -55778,7 +55778,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/engine/engineering) "cvh" = ( @@ -56011,7 +56011,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plating, /area/engine/engineering) "cwn" = ( @@ -58429,7 +58429,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/hallway/secondary/entry) "cEN" = ( @@ -58819,7 +58819,7 @@ /turf/open/floor/engine, /area/hallway/primary/central) "cFF" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/mineral/basaltstone_floor, /area/crew_quarters/bar) "cFG" = ( @@ -58874,7 +58874,7 @@ /turf/open/floor/engine, /area/hallway/secondary/entry) "cFQ" = ( -/obj/item/twohanded/required/kirbyplants{ +/obj/item/kirbyplants{ icon_state = "plant-21"; pixel_x = -3; pixel_y = 3 @@ -59075,7 +59075,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/pod/light, /area/quartermaster/miningdock) "cGy" = ( @@ -59213,7 +59213,7 @@ dir = 1; pixel_y = 16 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/hallway/primary/central) "cGK" = ( @@ -59940,7 +59940,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /obj/machinery/newscaster{ pixel_y = 32 }, @@ -60265,7 +60265,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/security/main) "cIO" = ( @@ -61220,7 +61220,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/pod/light, /area/quartermaster/miningdock) "dWZ" = ( @@ -61671,7 +61671,7 @@ /turf/open/floor/pod/light, /area/quartermaster/sorting) "kkG" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/carpet/black, /area/library) "koe" = ( @@ -61728,7 +61728,7 @@ /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai) "lvH" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/engine/atmos) "lyI" = ( @@ -61811,7 +61811,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "mAx" = ( -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/carpet/red, /area/crew_quarters/heads/captain) "mTT" = ( @@ -61946,7 +61946,7 @@ /turf/open/floor/plasteel/dark, /area/chapel/office) "oHS" = ( -/obj/structure/double_bed, +/obj/structure/bed/double, /obj/item/restraints/handcuffs/cable/zipties{ pixel_y = 6 }, @@ -61965,7 +61965,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/engine/atmos) "oRp" = ( @@ -62129,7 +62129,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/engine, /area/medical/virology) "rja" = ( @@ -62541,7 +62541,7 @@ /area/quartermaster/miningdock) "wST" = ( /obj/structure/disposalpipe/segment, -/obj/item/twohanded/required/kirbyplants/random, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) "wTX" = ( diff --git a/_maps/metis_maps/debug/multiz.dmm b/_maps/metis_maps/debug/multiz.dmm index c4693a6940..085a64bf97 100644 --- a/_maps/metis_maps/debug/multiz.dmm +++ b/_maps/metis_maps/debug/multiz.dmm @@ -450,8 +450,8 @@ "bo" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/table, -/obj/item/handdrill, -/obj/item/jawsoflife, +/obj/item/screwdriver/power, +/obj/item/crowbar/power, /turf/open/floor/plating, /area/engine/engineering) "bp" = ( diff --git a/_maps/metis_maps/generic/CentCom.dmm b/_maps/metis_maps/generic/CentCom.dmm index 5111917e5a..9545d6aab1 100644 --- a/_maps/metis_maps/generic/CentCom.dmm +++ b/_maps/metis_maps/generic/CentCom.dmm @@ -13,12 +13,12 @@ "adK" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel,/area/fatlab) "aek" = (/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime,/turf/open/floor/grass,/area/wizard_station) "aeq" = (/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/turf_decal/stripes/line,/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/centcom/control) -"afH" = (/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/fatlab) +"afH" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/fatlab) "agN" = (/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/centcom/holding) "agR" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/fatlab) "agU" = (/obj/effect/turf_decal/stripes/white,/obj/structure/table,/obj/item/storage/box/beakers/bluespace,/obj/effect/turf_decal/box/white/corners{dir = 1},/obj/effect/turf_decal/box/white/corners{dir = 4},/turf/open/floor/engine,/area/fatlab) "ahl" = (/obj/structure/chair/bench,/turf/open/floor/plasteel,/area/fatlab) -"ahn" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 4},/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 9; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) +"ahn" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 4},/obj/item/kirbyplants,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 9; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) "ahu" = (/obj/structure/plasticflaps/opaque,/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/centcom/supply) "ahM" = (/obj/structure/closet/cardboard,/obj/effect/turf_decal/bot,/obj/machinery/light,/turf/open/floor/plasteel,/area/fatlab) "ahT" = (/turf/closed/indestructible/abductor{icon_state = "alien3"},/area/abductor_ship) @@ -59,7 +59,7 @@ "awf" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/dark,/area/fatlab) "awq" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "awP" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/tdome/tdomeadmin) -"awR" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-05"; pixel_y = 4},/turf/open/floor/wood,/area/centcom/ferry) +"awR" = (/obj/item/kirbyplants{icon_state = "plant-05"; pixel_y = 4},/turf/open/floor/wood,/area/centcom/ferry) "axx" = (/turf/closed/indestructible/abductor{icon_state = "alien4"},/area/abductor_ship) "ayb" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/turf/open/floor/holofloor,/area/holodeck/rec_center/basketball) "ayk" = (/obj/machinery/modular_computer/console/preset/command{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) @@ -68,13 +68,13 @@ "ayO" = (/obj/machinery/light/small,/turf/open/floor/plasteel/dark/side,/area/centcom/ferry) "ayS" = (/obj/structure/chair/bench/left,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "ayW" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/fatlab) -"ayZ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{dir = 4},/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) +"ayZ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{dir = 4},/obj/item/kirbyplants,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) "azv" = (/obj/structure/flora/rock,/turf/open/floor/grass,/area/fatlab) "azF" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/table,/turf/open/floor/plasteel,/area/centcom/ferry) "azG" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/centcom/ferry) "aAk" = (/obj/structure/table/reinforced,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/centcom/supplypod) "aAB" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/folder/red,/obj/item/pen/red,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) -"aAL" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/newscaster{pixel_x = -32},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"aAL" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/newscaster{pixel_x = -32},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "aAQ" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/fatlab) "aAS" = (/obj/structure/table,/obj/item/book/manual/hydroponics_pod_people,/obj/item/seeds/pumpkin/blumpkin,/obj/item/paper/guides/jobs/hydroponics,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/holding) "aBj" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/holofloor,/area/holodeck/rec_center/firingrange) @@ -94,8 +94,8 @@ "aFc" = (/obj/effect/turf_decal/box/white/corners{dir = 4},/obj/effect/turf_decal/box/white/corners{dir = 1},/turf/open/floor/plasteel,/area/fatlab) "aFq" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/ctf) "aFv" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/fatlab) -"aFF" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) -"aFJ" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/fatlab) +"aFF" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) +"aFJ" = (/obj/item/kirbyplants/photosynthetic,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/fatlab) "aFM" = (/obj/structure/window/reinforced{color = "#008000"; dir = 1; resistance_flags = 3},/turf/open/lava,/area/wizard_station) "aGb" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/centcom/control) "aGf" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/ctf) @@ -138,7 +138,7 @@ "aVD" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/stripes/asteroid/line,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/fatlab) "aVK" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/syndicate_mothership) "aWv" = (/obj/structure/flora/tree/palm,/turf/open/floor/plating/beach/sand,/area/awaymission/jungleresort) -"aWC" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/wood,/area/centcom/ferry) +"aWC" = (/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/wood,/area/centcom/ferry) "aWF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Thunderdome Administration"; opacity = 1; req_access_txt = "102"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeadmin) "aWQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 8; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/fatlab) "aXA" = (/obj/structure/filingcabinet,/turf/open/floor/mineral/titanium/blue,/area/centcom/evac) @@ -157,7 +157,7 @@ "baX" = (/obj/structure/table/wood/fancy,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/light{brightness = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -28},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 7; pixel_y = 5},/obj/item/candle{pixel_x = 1; pixel_y = 6},/turf/open/floor/wood,/area/centcom/control) "bbm" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_y = 4},/turf/open/floor/holofloor/carpet,/area/holodeck/rec_center/lounge) "bbI" = (/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/structure/curtain,/turf/open/floor/plasteel/freezer,/area/fatlab) -"bcf" = (/obj/structure/table/wood/fancy,/obj/item/storage/pill_bottle/dice{icon_state = "magicdicebag"},/turf/open/floor/carpet,/area/wizard_station) +"bcf" = (/obj/structure/table/wood/fancy,/obj/item/storage/dice{icon_state = "magicdicebag"},/turf/open/floor/carpet,/area/wizard_station) "bco" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/ctf) "bcy" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/centcom/control) "bcI" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ctf) @@ -186,8 +186,8 @@ "bjU" = (/obj/structure/sign/nanotrasen,/turf/closed/indestructible/riveted,/area/centcom/evac) "bkz" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) "blg" = (/obj/structure/chair/sofa/right,/turf/open/floor/wood,/area/centcom/ferry) -"blm" = (/obj/structure/table/wood,/obj/item/storage/pill_bottle/dice,/obj/machinery/light,/obj/structure/sign/poster/official/gato_logo{pixel_y = -32},/turf/open/floor/carpet/gato,/area/centcom/evac) -"blw" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel,/area/centcom/ferry) +"blm" = (/obj/structure/table/wood,/obj/item/storage/dice,/obj/machinery/light,/obj/structure/sign/poster/official/gato_logo{pixel_y = -32},/turf/open/floor/carpet/gato,/area/centcom/evac) +"blw" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel,/area/centcom/ferry) "blF" = (/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},/turf/open/floor/plasteel,/area/centcom/ferry) "blS" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/fatlab) "bma" = (/obj/structure/rack,/obj/item/clothing/under/color/red,/obj/item/clothing/shoes/sneakers/brown,/obj/item/clothing/suit/armor/tdome/red,/obj/item/clothing/head/helmet/thunderdome,/obj/item/melee/baton/loaded,/obj/item/melee/transforming/energy/sword/saber/red,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/tdome/arena) @@ -222,7 +222,7 @@ "bvz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "bvO" = (/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/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/centcom/control) "bwN" = (/turf/open/floor/plasteel/dark,/area/syndicate_mothership) -"bwX" = (/obj/structure/table/wood,/obj/item/tailclub,/obj/item/twohanded/spear,/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/thunderdome1218) +"bwX" = (/obj/structure/table/wood,/obj/item/tailclub,/obj/item/spear,/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/thunderdome1218) "bxa" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/circuit/red,/area/ctf) "bxc" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{light_color = "#cee5d2"},/turf/open/floor/engine,/area/fatlab) "bxt" = (/obj/structure/sign/warning/securearea,/turf/closed/indestructible/riveted,/area/centcom/prison) @@ -252,9 +252,9 @@ "bGN" = (/turf/closed/indestructible/riveted/uranium,/area/wizard_station) "bIy" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/open/floor/plating/dirt/jungle,/area/awaymission/jungleresort) "bJt" = (/turf/closed/indestructible/abductor{icon_state = "alien24"},/area/abductor_ship) -"bJL" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-15"; pixel_x = -6; pixel_y = 12},/turf/open/floor/plasteel,/area/centcom/ferry) +"bJL" = (/obj/item/kirbyplants{icon_state = "plant-15"; pixel_x = -6; pixel_y = 12},/turf/open/floor/plasteel,/area/centcom/ferry) "bKe" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/stripes/white/line{dir = 10},/turf/open/floor/plasteel,/area/fatlab) -"bKu" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/button/door{pixel_x = 26; id = "fatlab_shutter_chemtwo"; name = "Privacy Shutter Control"},/turf/open/floor/plasteel/dark,/area/fatlab) +"bKu" = (/obj/item/kirbyplants,/obj/machinery/button/door{pixel_x = 26; id = "fatlab_shutter_chemtwo"; name = "Privacy Shutter Control"},/turf/open/floor/plasteel/dark,/area/fatlab) "bLO" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plasteel,/area/fatlab) "bLR" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/awaymission/jungleresort) "bLV" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/centcom/control) @@ -286,7 +286,7 @@ "bVC" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "sink"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/holding) "bVK" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet/gato,/area/centcom/evac) "bVP" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/tdome/arena_source) -"bVX" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{dir = 8},/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) +"bVX" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{dir = 8},/obj/item/kirbyplants,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) "bVY" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/centcom/control) "bWh" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/centcom/supplypod/loading/four) "bWN" = (/obj/structure/chair/sofa/right,/obj/machinery/button/door{id = "CCStationMonitor"; normaldoorcontrol = 1; pixel_y = 30; specialfunctions = 4},/turf/open/floor/plasteel/dark,/area/centcom/ferry) @@ -295,7 +295,7 @@ "bXe" = (/obj/machinery/door/airlock/centcom{name = "CentCom Supply"; req_access_txt = "106"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/centcom/ferry) "bXm" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/pointybush,/turf/open/floor/grass,/area/centcom/ferry) "bXz" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/smoke_machine,/turf/open/floor/engine,/area/fatlab) -"bXL" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"bXL" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "bYe" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/fatlab) "bYj" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/holding) "bYk" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/fernybush,/turf/open/floor/plasteel{icon_state = "asteroid5"; name = "plating"},/area/centcom/control) @@ -310,7 +310,7 @@ "ccn" = (/obj/machinery/computer/shuttle,/turf/open/floor/engine/cult,/area/wizard_station) "ccq" = (/obj/machinery/conveyor/inverted{dir = 9; id = "fatfacility_cargo_left"},/turf/open/floor/mineral/calorite,/area/fatlab) "ccS" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/armor/hos/trenchcoat,/obj/item/clothing/suit/armor/hos/trenchcoat,/obj/item/clothing/shoes/jackboots/tall,/obj/item/clothing/gloves/combat,/obj/item/clothing/neck/cloak/centcom,/obj/item/clothing/shoes/combat/swat,/obj/item/clothing/mask/chameleon,/obj/machinery/light/small{dir = 1},/obj/item/clothing/accessory/medal/gato_badge/employee,/obj/item/clothing/head/HoS/beret/gato,/obj/item/clothing/head/HoS/gato,/obj/item/clothing/suit/space/hardsuit/ert/alert/gato,/obj/item/clothing/suit/armor/vest/capcarapace/gato,/obj/item/clothing/suit/armor/vest/capcarapace/paradepurple,/obj/item/clothing/suit/armor/vest/capcarapace/paradeblack,/obj/item/clothing/under/centcomdress,/obj/item/clothing/under/centcomdressvk,/turf/open/floor/plasteel/dark/side{dir = 9},/area/centcom/ferry) -"cdu" = (/obj/structure/table/wood{layer = 3.3},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-05"; pixel_y = 4},/turf/open/floor/holofloor{dir = 9; icon_state = "wood"},/area/holodeck/rec_center/lounge) +"cdu" = (/obj/structure/table/wood{layer = 3.3},/obj/item/kirbyplants{icon_state = "plant-05"; pixel_y = 4},/turf/open/floor/holofloor{dir = 9; icon_state = "wood"},/area/holodeck/rec_center/lounge) "cdA" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/control) "cdF" = (/obj/structure/bed,/turf/open/floor/mineral/titanium/blue,/area/centcom/evac) "cdL" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/tdome/tdomeadmin) @@ -395,13 +395,13 @@ "cLp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "cLB" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/syndicate_mothership) "cMv" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/centcom/supplypod/loading/one) -"cMT" = (/obj/structure/double_bed,/turf/open/floor/carpet/black,/area/fatlab) +"cMT" = (/obj/structure/bed/double,/turf/open/floor/carpet/black,/area/fatlab) "cNd" = (/obj/structure/mineral_door/paperframe,/turf/open/floor/wood,/area/centcom/holding) "cNo" = (/turf/open/floor/carpet/black,/area/centcom/holding) "cNV" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/cafeteria,/area/centcom/ferry) "cOv" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/turf/open/floor/holofloor{icon_state = "white"},/area/holodeck/rec_center/medical) "cPI" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/white/line,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/fatlab) -"cQt" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/fatlab) +"cQt" = (/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/fatlab) "cQy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/holofloor,/area/holodeck/rec_center/court) "cQI" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/holofloor,/area/holodeck/rec_center/basketball) "cRo" = (/obj/machinery/vending/hydronutrients,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/holding) @@ -470,7 +470,7 @@ "dus" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/centcom/evac) "dvo" = (/obj/structure/fans/tiny,/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},/turf/open/floor/plasteel/dark,/area/centcom/supply) "dvu" = (/obj/machinery/computer/security/mining{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/centcom/supply) -"dvA" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"dvA" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "dvH" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/caution{dir = 8},/obj/machinery/door/window/southright{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "dvT" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/centcom/supplypod/loading/three) "dwN" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/ctf) @@ -556,7 +556,7 @@ "dXn" = (/obj/structure/disposalpipe/junction,/turf/open/floor/plasteel,/area/fatlab) "dZf" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/holofloor,/area/holodeck/rec_center/dodgeball) "dZj" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/fatlab) -"dZV" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"dZV" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "eav" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/centcom/control) "eaN" = (/obj/machinery/computer/shuttle/mining,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/centcom/ferry) "ebH" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/holofloor,/area/holodeck/rec_center/basketball) @@ -581,7 +581,7 @@ "ehQ" = (/obj/machinery/light,/turf/open/floor/carpet/black,/area/centcom/ferry) "ehZ" = (/obj/structure/ladder/unbreakable/binary/space,/turf/open/indestructible/airblock,/area/fabric_of_reality) "eir" = (/turf/closed/indestructible/wood,/area/awaymission/jungleresort) -"eiA" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-15"; pixel_x = -6; pixel_y = 12},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"eiA" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/item/kirbyplants{icon_state = "plant-15"; pixel_x = -6; pixel_y = 12},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "eiW" = (/obj/machinery/door/airlock/centcom{name = "CentCom Security"; opacity = 1; req_access_txt = "101"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/centcom/control) "ejk" = (/obj/structure/rack,/obj/item/clothing/under/color/green,/obj/item/clothing/shoes/sneakers/brown,/obj/item/clothing/suit/armor/tdome/green,/obj/item/clothing/head/helmet/thunderdome,/obj/item/melee/baton/loaded,/obj/item/melee/transforming/energy/sword/saber/green,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/tdome/arena) "ejK" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/centcom/supplypod/loading/one) @@ -597,7 +597,7 @@ "eod" = (/obj/structure/rack/shelf,/obj/effect/turf_decal/box,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plasteel,/area/fatlab) "eog" = (/obj/machinery/abductor/pad{team_number = 1},/turf/open/floor/plating/abductor,/area/abductor_ship) "eoq" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 1},/turf/open/floor/plasteel,/area/fatlab) -"eou" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/centcom/evac) +"eou" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/centcom/evac) "eoG" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/ctf) "eoP" = (/obj/machinery/smartfridge,/turf/closed/indestructible{icon = 'icons/turf/walls/wood_wall.dmi'; icon_state = "wood"; smooth = 1},/area/centcom/holding) "eoW" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/fatlab) @@ -607,7 +607,7 @@ "eqI" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/wood,/area/centcom/holding) "eqJ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/ctf) "erw" = (/obj/machinery/chem_master,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/fatlab) -"erN" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/dark,/area/centcom/control) +"erN" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/dark,/area/centcom/control) "erS" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/burger/superbite,/obj/item/reagent_containers/food/snacks/burger/superbite,/obj/item/reagent_containers/food/snacks/burger/superbite,/turf/open/floor/plasteel/freezer,/area/fatlab) "esD" = (/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/tdome/tdomeobserve) "etR" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/item/paper_bin,/obj/item/pen/red,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/centcom/supply) @@ -620,7 +620,7 @@ "eww" = (/obj/structure/mineral_door/paperframe{name = "Dojo"},/turf/open/floor/wood,/area/centcom/holding) "exI" = (/obj/effect/turf_decal/sand,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plating/beach/sand,/area/awaymission/jungleresort) "eye" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/centcom/supply) -"eyk" = (/obj/machinery/power/apc{dir = 4; name = "Commander's Office APC"; pixel_x = 26},/obj/structure/table/reinforced,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/plasteel{amount = 15},/obj/item/stack/sheet/rglass{amount = 50; pixel_x = 2; pixel_y = -2},/obj/item/stack/rods/fifty,/obj/item/stack/cable_coil/white,/obj/item/handdrill,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/white{icon_state = "0-2"},/obj/structure/cable/white{icon_state = "0-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/centcom/ferry) +"eyk" = (/obj/machinery/power/apc{dir = 4; name = "Commander's Office APC"; pixel_x = 26},/obj/structure/table/reinforced,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/plasteel{amount = 15},/obj/item/stack/sheet/rglass{amount = 50; pixel_x = 2; pixel_y = -2},/obj/item/stack/rods/fifty,/obj/item/stack/cable_coil/white,/obj/item/screwdriver/power,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/white{icon_state = "0-2"},/obj/structure/cable/white{icon_state = "0-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/centcom/ferry) "eyl" = (/obj/structure/table,/obj/machinery/computer/bounty{dir = 8},/obj/structure/window{dir = 1},/turf/open/floor/carpet/gato,/area/centcom/ferry) "eyo" = (/obj/structure/table/wood,/obj/item/camera/detective{desc = "A polaroid camera with extra capacity for social media marketing."; name = "Professional camera"},/obj/item/camera_film,/obj/item/wallframe/newscaster,/obj/item/paper_bin,/obj/item/pen/fountain,/turf/open/floor/wood,/area/centcom/holding) "eyr" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/mineral/titanium/blue,/area/centcom/evac) @@ -637,7 +637,7 @@ "eDe" = (/obj/structure/table/wood,/obj/item/phone{desc = "Supposedly a direct line to GATO Central Command. It's not even plugged in."; pixel_x = -3; pixel_y = 3},/obj/item/clothing/mask/cigarette/cigar/cohiba{pixel_x = 6},/obj/item/clothing/mask/cigarette/cigar/havana{pixel_x = 2},/obj/item/clothing/mask/cigarette/cigar{pixel_x = 4.5},/obj/machinery/newscaster{pixel_y = 32},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "eDt" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "eDE" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel/dark,/area/fatlab) -"eEe" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/fatlab) +"eEe" = (/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "eFj" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/ctf) "eGt" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/condiment/sugar,/obj/item/reagent_containers/food/condiment/sugar,/obj/item/reagent_containers/food/condiment/sugar,/obj/item/reagent_containers/food/condiment/sugar,/obj/item/reagent_containers/food/snacks/spaghetti,/obj/item/reagent_containers/food/snacks/spaghetti,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/item/reagent_containers/food/condiment/sugar{pixel_x = -7},/turf/open/floor/plasteel/freezer,/area/fatlab) "eIR" = (/obj/effect/overlay/palmtree_l,/obj/effect/overlay/coconut,/turf/open/floor/holofloor/beach,/area/holodeck/rec_center/beach) @@ -728,7 +728,7 @@ "fnj" = (/obj/structure/table/wood,/turf/open/floor/holofloor{dir = 9; icon_state = "wood"},/area/holodeck/rec_center/lounge) "fnB" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/grimy,/area/centcom/ferry) "fow" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/holding) -"fpb" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/under/rank/curator/treasure_hunter,/obj/item/clothing/under/skirt/black,/obj/item/clothing/under/shorts/black,/obj/item/clothing/under/pants/track,/obj/item/clothing/accessory/armband/deputy,/obj/item/clothing/accessory/waistcoat,/obj/item/clothing/shoes/jackboots,/obj/item/clothing/shoes/laceup,/obj/item/clothing/neck/stripedredscarf,/obj/item/clothing/neck/tie/red,/obj/item/clothing/head/helmet/space/beret,/obj/item/clothing/suit/curator,/obj/item/clothing/suit/space/officer,/obj/item/clothing/gloves/fingerless,/obj/item/clothing/gloves/color/black,/obj/item/clothing/glasses/eyepatch,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/clothing/accessory/medal/gato_badge/employee,/obj/item/clothing/suit/armor/vest/capcarapace/paradeblack,/obj/item/clothing/suit/armor/vest/capcarapace/paradepurple,/obj/item/clothing/head/HoS/gato,/obj/item/clothing/head/HoS/beret/gato,/obj/item/clothing/suit/armor/vest/capcarapace/gato,/obj/item/clothing/suit/armor/vest/capcarapace/cc,/obj/item/clothing/under/centcomdress,/obj/item/clothing/under/centcomdressvk,/turf/open/floor/plasteel/grimy,/area/centcom/ferry) +"fpb" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/under/rank/civilian/curator/treasure_hunter,/obj/item/clothing/under/skirt/black,/obj/item/clothing/under/shorts/black,/obj/item/clothing/under/pants/track,/obj/item/clothing/accessory/armband/deputy,/obj/item/clothing/accessory/waistcoat,/obj/item/clothing/shoes/jackboots,/obj/item/clothing/shoes/laceup,/obj/item/clothing/neck/stripedredscarf,/obj/item/clothing/neck/tie/red,/obj/item/clothing/head/helmet/space/beret,/obj/item/clothing/suit/curator,/obj/item/clothing/suit/space/officer,/obj/item/clothing/gloves/fingerless,/obj/item/clothing/gloves/color/black,/obj/item/clothing/glasses/eyepatch,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/clothing/accessory/medal/gato_badge/employee,/obj/item/clothing/suit/armor/vest/capcarapace/paradeblack,/obj/item/clothing/suit/armor/vest/capcarapace/paradepurple,/obj/item/clothing/head/HoS/gato,/obj/item/clothing/head/HoS/beret/gato,/obj/item/clothing/suit/armor/vest/capcarapace/gato,/obj/item/clothing/suit/armor/vest/capcarapace/cc,/obj/item/clothing/under/centcomdress,/obj/item/clothing/under/centcomdressvk,/turf/open/floor/plasteel/grimy,/area/centcom/ferry) "fpm" = (/obj/machinery/abductor/console{team_number = 4},/turf/open/floor/plating/abductor,/area/abductor_ship) "fpx" = (/obj/machinery/vending/snack,/turf/open/floor/engine/cult,/area/wizard_station) "fpS" = (/obj/structure/flora/ausbushes/fernybush,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced/fulltile,/turf/open/floor/grass,/area/centcom/holding) @@ -773,7 +773,7 @@ "fFw" = (/obj/effect/turf_decal/stripes/white/line{dir = 8},/turf/open/floor/plasteel,/area/fatlab) "fGq" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel/dark,/area/fatlab) "fGR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/fatlab) -"fIX" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"fIX" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "fJm" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/holofloor,/area/holodeck/rec_center/basketball) "fJO" = (/obj/structure/statue/uranium/nuke,/turf/open/floor/plating/asteroid/snow/airless,/area/syndicate_mothership) "fKb" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/side{dir = 10},/area/fatlab) @@ -807,15 +807,15 @@ "fTk" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/fatlab) "fUz" = (/obj/structure/chair,/obj/effect/landmark/thunderdome/observe,/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeobserve) "fUR" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/fatlab) -"fVc" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/centcom/control) +"fVc" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/centcom/control) "fVd" = (/obj/structure/table/reinforced,/obj/item/storage/fancy/donut_box,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/centcom/control) "fVq" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/dark,/area/centcom/supplypod) -"fVr" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) +"fVr" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) "fVV" = (/obj/structure/table,/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/fire{pixel_x = -2; pixel_y = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/white,/area/centcom/control) "fWt" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/syndicate_mothership) "fXe" = (/obj/machinery/abductor/console{team_number = 2},/turf/open/floor/plating/abductor,/area/abductor_ship) "fXF" = (/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/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) -"fYb" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark/side{dir = 6},/area/centcom/ferry) +"fYb" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark/side{dir = 6},/area/centcom/ferry) "fYz" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/centcom/evac) "fZo" = (/obj/structure/window/reinforced,/turf/open/floor/holofloor/plating,/area/holodeck/rec_center/kobayashi) "fZA" = (/obj/structure/mopbucket,/obj/item/mop,/turf/open/floor/plasteel/cafeteria,/area/centcom/holding) @@ -846,7 +846,7 @@ "gkq" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/centcom/supplypod/loading/three) "glf" = (/obj/item/cautery/alien,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/wizard_station) "gmi" = (/turf/open/floor/carpet/gato,/area/centcom/ferry) -"gnc" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/centcom/ferry) +"gnc" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/centcom/ferry) "gnp" = (/obj/item/clipboard,/obj/structure/table/reinforced,/obj/item/detective_scanner,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "gnZ" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/fatlab) "goB" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel,/area/tdome/arena) @@ -1027,7 +1027,7 @@ "hCY" = (/obj/structure/flora/junglebush/b,/turf/open/floor/grass,/area/awaymission/jungleresort) "hDc" = (/obj/machinery/computer/prisoner/management,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/centcom/control) "hEz" = (/obj/machinery/vending/cola/red,/turf/open/floor/plasteel,/area/fatlab) -"hES" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/centcom/evac) +"hES" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/centcom/evac) "hEU" = (/obj/structure/flora/rock/pile/largejungle{pixel_x = 0; pixel_y = -35},/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/grass,/area/centcom/ferry) "hEV" = (/obj/structure/table,/obj/item/storage/lockbox,/turf/open/floor/mineral/titanium/blue,/area/centcom/evac) "hFF" = (/obj/structure/closet/crate/large,/turf/open/floor/plasteel,/area/fatlab) @@ -1037,7 +1037,7 @@ "hHO" = (/obj/docking_port/stationary{dir = 4; dwidth = 2; height = 7; id = "pod_away"; name = "recovery ship"; width = 5},/turf/open/floor/plating,/area/centcom/control) "hIe" = (/obj/structure/table,/obj/machinery/computer/station_alert{dir = 8},/obj/structure/window{dir = 1},/turf/open/floor/carpet/gato,/area/centcom/ferry) "hIt" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/tdome/tdomeadmin) -"hIA" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/centcom/ferry) +"hIA" = (/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/centcom/ferry) "hIS" = (/obj/item/banner/red,/turf/open/floor/holofloor/grass,/area/holodeck/rec_center/thunderdome1218) "hJa" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/fatlab) "hJn" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/button/door{id = "fatfacility_cell3"; name = "Holding Cell 3"; normaldoorcontrol = 1; specialfunctions = 4; pixel_y = 8; pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/fatlab) @@ -1072,7 +1072,7 @@ "hVw" = (/obj/machinery/capture_the_flag/red,/turf/open/floor/circuit/green/anim,/area/ctf) "hVC" = (/obj/structure/rack,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/fatlab) "hVN" = (/obj/machinery/vending/autodrobe{req_access_txt = "0"},/turf/open/floor/wood,/area/centcom/holding) -"hVU" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/wood,/area/centcom/holding) +"hVU" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/wood,/area/centcom/holding) "hWd" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/centcom/supplypod/loading/two) "hWh" = (/obj/structure/table/wood,/obj/machinery/reagentgrinder{desc = "Used to grind things up into raw materials and liquids."; pixel_y = 5},/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeobserve) "hWM" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/awaymission/jungleresort) @@ -1097,7 +1097,7 @@ "idd" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/holofloor{dir = 10; icon_state = "white"},/area/holodeck/rec_center/firingrange) "idL" = (/obj/machinery/processor,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/fatlab) "iek" = (/obj/structure/chair/office/dark{dir = 4},/obj/structure/cable/white{icon_state = "1-2"},/turf/open/floor/wood,/area/centcom/ferry) -"ieq" = (/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/turf_decal/stripes/line{dir = 1},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/centcom/control) +"ieq" = (/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/turf_decal/stripes/line{dir = 1},/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/centcom/control) "ieQ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/arcade/orion_trail/kobayashi,/turf/open/floor/holofloor/plating,/area/holodeck/rec_center/kobayashi) "ieR" = (/obj/structure/chair/comfy/brown{color = "#596479"; dir = 2},/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},/turf/open/floor/plasteel/dark,/area/centcom/control) "ifC" = (/obj/structure/table,/obj/item/folder,/obj/item/pen/blue,/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/holofloor,/area/holodeck/rec_center/kobayashi) @@ -1127,7 +1127,7 @@ "inX" = (/obj/structure/window{dir = 4},/obj/structure/window{dir = 8},/turf/open/floor/plasteel,/area/centcom/ferry) "ioO" = (/obj/structure/sign/warning/nosmoking,/turf/closed/indestructible/riveted,/area/centcom/ferry) "ioP" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/carpet/gato,/area/centcom/ferry) -"ipJ" = (/obj/machinery/light{dir = 4},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/centcom/ferry) +"ipJ" = (/obj/machinery/light{dir = 4},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/centcom/ferry) "iqt" = (/obj/structure/closet/cardboard,/obj/item/banhammer,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/wizard_station) "iqy" = (/obj/machinery/computer/communications{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/control) "iqK" = (/obj/structure/flora/ausbushes/pointybush,/turf/open/floor/holofloor/grass,/area/holodeck/rec_center/pet_lounge) @@ -1174,7 +1174,7 @@ "iGr" = (/obj/structure/window/reinforced/fulltile{max_integrity = 5000; name = "hardened window"; obj_integrity = 5000},/turf/open/floor/plating,/area/ctf) "iHi" = (/obj/structure/closet/crate/bin,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "iHj" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/centcom/supplypod/loading/one) -"iIo" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/fatlab) +"iIo" = (/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/fatlab) "iIF" = (/obj/structure/bookcase/random,/obj/machinery/light{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "iIM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/centcom/evac) "iJa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating{luminosity = 2},/area/ctf) @@ -1201,7 +1201,7 @@ "iPe" = (/turf/open/floor/plasteel/dark,/area/centcom/control) "iPy" = (/obj/effect/turf_decal/stripes/white/line{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/airless/white/corner{dir = 4},/area/fatlab) "iPG" = (/turf/open/floor/plasteel/stairs,/area/centcom/holding) -"iPI" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"iPI" = (/obj/item/kirbyplants{icon_state = "plant-22"},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "iPS" = (/obj/machinery/computer/station_alert{dir = 8},/turf/open/floor/holofloor/plating,/area/holodeck/rec_center/kobayashi) "iQg" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/tdome/tdomeobserve) "iQJ" = (/obj/structure/chair{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -28},/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/centcom/ferry) @@ -1217,7 +1217,7 @@ "iUc" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/centcom/ferry) "iUy" = (/obj/effect/turf_decal/stripes/white/corner,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white/side{dir = 9},/area/fatlab) "iUR" = (/obj/structure/rack/shelf,/obj/effect/turf_decal/bot,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/reagent_containers/spray/cleaner,/obj/item/reagent_containers/spray/cleaner,/obj/item/mop/advanced,/obj/item/mop/advanced,/obj/item/storage/bag/trash/bluespace,/obj/item/storage/bag/trash/bluespace,/turf/open/floor/plasteel/dark,/area/fatlab) -"iUU" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"iUU" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "iVz" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/bunker) "iVC" = (/obj/item/target,/obj/item/target/syndicate,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/holofloor,/area/holodeck/rec_center/firingrange) "iVK" = (/obj/item/storage/crayons,/obj/structure/table,/obj/item/storage/crayons,/turf/open/floor/plasteel/freezer{dir = 2},/area/syndicate_mothership) @@ -1237,7 +1237,7 @@ "iZq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/centcom/supplypod) "iZT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/circuit,/area/ctf) "jai" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) -"jaB" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-05"; pixel_y = 4},/turf/open/floor/plasteel,/area/centcom/ferry) +"jaB" = (/obj/item/kirbyplants{icon_state = "plant-05"; pixel_y = 4},/turf/open/floor/plasteel,/area/centcom/ferry) "jbo" = (/obj/structure/closet/cardboard,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/fatlab) "jbZ" = (/obj/machinery/button/door{id = "CCDorm6"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/centcom/ferry) "jcr" = (/obj/machinery/computer/mech_bay_power_console{dir = 1},/turf/open/floor/plating,/area/syndicate_mothership) @@ -1266,7 +1266,7 @@ "jkd" = (/obj/structure/flora/rock/pile,/turf/open/floor/plating/beach/sand,/area/awaymission/jungleresort) "jkh" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/circuit/red,/area/ctf) "jkS" = (/turf/closed/wall/mineral/titanium/nodiagonal,/area/centcom/evac) -"jkY" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/fatlab) +"jkY" = (/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/fatlab) "jln" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/white{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/centcom/ferry) "jlz" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/tdome/tdomeadmin) "jme" = (/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) @@ -1280,7 +1280,7 @@ "jnk" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) "jnK" = (/obj/structure/table,/obj/item/storage/firstaid/toxin{pixel_x = -2; pixel_y = 4},/obj/item/storage/firstaid/toxin,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/centcom/control) "joe" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/centcom/supply) -"joD" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/fatlab) +"joD" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/fatlab) "joO" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/centcom/control) "jpx" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "jpJ" = (/turf/closed/indestructible/fakeglass,/area/tdome/tdomeadmin) @@ -1313,7 +1313,7 @@ "jzx" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/fatlab) "jzW" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/tdome/tdomeobserve) "jAq" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) -"jAt" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/centcom/control) +"jAt" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/centcom/control) "jBa" = (/obj/structure/table/wood,/obj/item/storage/fancy/donut_box,/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeadmin) "jBT" = (/obj/machinery/vending/kink{free = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/centcom/ferry) "jBV" = (/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop,/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},/turf/open/floor/plasteel/dark,/area/centcom/control) @@ -1337,7 +1337,7 @@ "jGt" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/tdome/tdomeobserve) "jGw" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "jGD" = (/obj/machinery/light/small{dir = 8},/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/white,/area/centcom/ferry) -"jGF" = (/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/centcom/ferry) +"jGF" = (/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/centcom/ferry) "jGU" = (/obj/structure/window/reinforced,/turf/open/floor/carpet/black,/area/centcom/holding) "jHp" = (/turf/open/floor/mineral/plastitanium/red,/area/centcom/evac) "jHB" = (/obj/structure/table/reinforced,/obj/item/storage/box/handcuffs,/obj/item/crowbar/red,/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},/turf/open/floor/plasteel/dark,/area/centcom/control) @@ -1359,7 +1359,7 @@ "jOf" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/ert_spawn,/turf/open/floor/plasteel/dark,/area/centcom/ferry) "jPi" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/centcom/ferry) "jQp" = (/obj/machinery/quantumpad{map_pad_id = "fatlab"; map_pad_link_id = "fatlab_botany"},/turf/open/floor/wood,/area/awaymission/jungleresort) -"jQq" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/fatlab) +"jQq" = (/obj/item/kirbyplants,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/fatlab) "jQx" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/surgical_drapes,/turf/open/floor/plasteel/white,/area/fatlab) "jQJ" = (/obj/structure/window{dir = 8},/obj/structure/window,/turf/open/floor/carpet/black,/area/centcom/ferry) "jQM" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/holofloor,/area/holodeck/rec_center/court) @@ -1446,7 +1446,7 @@ "ksp" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/centcom/supply) "ktb" = (/obj/machinery/conveyor{id = "fatfacility_cargo_left"},/turf/open/floor/mineral/calorite,/area/fatlab) "ktr" = (/obj/docking_port/stationary{area_type = /area/syndicate_mothership; dheight = 1; dir = 8; dwidth = 12; height = 17; id = "syndicate_away"; name = "syndicate recon outpost"; roundstart_template = /datum/map_template/shuttle/infiltrator/basic; width = 23},/turf/open/floor/plating/asteroid/snow/airless,/area/syndicate_mothership) -"kuv" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/fatlab) +"kuv" = (/obj/item/kirbyplants/photosynthetic,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "kux" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/centcom/supplypod) "kvi" = (/obj/item/reagent_containers/food/snacks/grown/oat,/turf/open/floor/plating/dirt/jungle,/area/awaymission/jungleresort) "kvu" = (/obj/effect/landmark/thunderdome/one,/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},/turf/open/floor/plasteel,/area/tdome/arena) @@ -1463,7 +1463,7 @@ "kAp" = (/turf/open/floor/circuit,/area/ctf) "kAC" = (/obj/structure/rack/shelf,/obj/item/reagent_containers/rag/towel,/obj/item/reagent_containers/rag/towel{pixel_y = 5},/obj/item/reagent_containers/rag/towel{pixel_y = 10},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/fatlab) "kAG" = (/obj/item/paicard,/obj/structure/table/wood,/turf/open/floor/engine/cult,/area/wizard_station) -"kAK" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"kAK" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "kAX" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/freezer,/area/fatlab) "kBB" = (/obj/structure/chair{dir = 1},/turf/open/floor/holofloor,/area/holodeck/rec_center/school) "kCo" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/item/folder,/obj/item/pen/red,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/holofloor,/area/holodeck/rec_center/kobayashi) @@ -1507,7 +1507,7 @@ "kSl" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"; name = "trim"},/obj/machinery/light/small{dir = 1},/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) "kTa" = (/turf/open/floor/plasteel/grimy,/area/centcom/control) "kUj" = (/obj/structure/table,/obj/item/camera{pixel_y = -4; pixel_x = 4},/obj/item/taperecorder{pixel_y = 8; pixel_x = -4},/turf/open/floor/plasteel/dark,/area/fatlab) -"kUk" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/fatlab) +"kUk" = (/obj/item/kirbyplants/photosynthetic,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/fatlab) "kUG" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/holofloor,/area/holodeck/rec_center/kobayashi) "kUM" = (/turf/open/floor/holofloor/grass,/area/holodeck/rec_center/thunderdome1218) "kVj" = (/obj/machinery/door/window/westleft{dir = 2; icon_state = "right"},/turf/open/floor/holofloor/plating,/area/holodeck/rec_center/kobayashi) @@ -1534,7 +1534,7 @@ "ldq" = (/obj/effect/overlay/palmtree_r,/turf/open/floor/holofloor/beach,/area/holodeck/rec_center/beach) "ldw" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_y = 32},/turf/open/floor/plasteel/grimy,/area/centcom/ferry) "leo" = (/obj/item/storage/briefcase{pixel_x = -3; pixel_y = 3},/obj/item/storage/secure/briefcase,/obj/structure/table/wood,/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) -"leK" = (/obj/structure/table/reinforced,/obj/item/storage/box/handcuffs,/obj/item/crowbar/red,/obj/item/jawsoflife,/obj/item/storage/belt/security/full,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) +"leK" = (/obj/structure/table/reinforced,/obj/item/storage/box/handcuffs,/obj/item/crowbar/red,/obj/item/crowbar/power,/obj/item/storage/belt/security/full,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) "lfn" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/centcom/supplypod/loading/three) "lfQ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/wood,/area/centcom/holding) "lfU" = (/obj/machinery/light,/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeobserve) @@ -1544,7 +1544,7 @@ "lgY" = (/obj/item/cardboard_cutout/adaptive{color = "#9999BB"; icon_state = "cutout_viva"; name = "Black Rook"},/turf/open/floor/holofloor{dir = 8; icon_state = "dark"},/area/holodeck/rec_center/spacechess) "lho" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"; name = "trim"},/obj/machinery/computer/slot_machine,/turf/open/floor/plasteel/dark,/area/centcom/control) "lhr" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/fatlab) -"lil" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"lil" = (/obj/item/kirbyplants{icon_state = "plant-21"},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "ljb" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/syndicate_mothership) "ljJ" = (/turf/open/indestructible/airblock,/area/fabric_of_reality) "ljS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "CentCom"; opacity = 1},/turf/open/floor/plasteel,/area/centcom/control) @@ -1553,7 +1553,7 @@ "lkH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/old/preopen{id = "fatlab_shutter_kitchen"},/turf/open/floor/plating,/area/fatlab) "lkI" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 8; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/fatlab) "lkJ" = (/obj/structure/railing{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/fatlab) -"lkY" = (/obj/structure/piano{pixel_x = 3},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/centcom/control) +"lkY" = (/obj/structure/musician/piano{pixel_x = 3},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/centcom/control) "llk" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/vending/cigarette/syndicate{free = 1},/turf/open/floor/plasteel,/area/syndicate_mothership) "llV" = (/obj/machinery/door/airlock/centcom{name = "CentCom Security"; opacity = 1; req_access_txt = "101"},/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/centcom/control) "lnm" = (/obj/structure/table/wood,/obj/item/restraints/handcuffs/rope,/turf/open/floor/grass,/area/awaymission/jungleresort) @@ -1584,7 +1584,7 @@ "lxp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/directions/engineering{desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: BLAST DOORS"},/turf/open/floor/plating,/area/centcom/ferry) "lxw" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/medkit_cabinet{pixel_x = 32},/turf/open/floor/plasteel,/area/fatlab) "lyd" = (/obj/structure/closet{anchored = 1; name = "Plasmaman suits"},/obj/item/clothing/under/plasmaman,/obj/item/clothing/under/plasmaman,/obj/item/clothing/under/plasmaman,/obj/item/clothing/under/plasmaman,/obj/item/clothing/under/plasmaman,/obj/item/clothing/head/helmet/space/plasmaman,/obj/item/clothing/head/helmet/space/plasmaman,/obj/item/clothing/head/helmet/space/plasmaman,/obj/item/clothing/head/helmet/space/plasmaman,/obj/item/clothing/head/helmet/space/plasmaman,/turf/open/floor/wood,/area/centcom/holding) -"lyl" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_panel"; name = "steel pannel"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"lyl" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_panel"; name = "steel pannel"},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "lyE" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/ctf) "lyF" = (/obj/structure/window{dir = 8},/obj/machinery/computer/pandemic,/turf/open/floor/holofloor{icon_state = "white"},/area/holodeck/rec_center/medical) "lyJ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/holofloor,/area/holodeck/rec_center/dodgeball) @@ -1652,7 +1652,7 @@ "lRa" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Culinary Lab"; id_tag = "fatlab_kitchen_entrance"},/turf/open/floor/plasteel/dark,/area/fatlab) "lRM" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/grimy,/area/centcom/ferry) "lSa" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "trim"; name = "trim"},/turf/open/floor/engine,/area/fatlab) -"lSb" = (/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/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"lSb" = (/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/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "lSf" = (/obj/structure/closet/cardboard/metal,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plating,/area/syndicate_mothership) "lSq" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "lTh" = (/obj/machinery/vending/cola/red,/turf/open/floor/plasteel/dark,/area/fatlab) @@ -1687,7 +1687,7 @@ "mbj" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 4},/turf/open/floor/plasteel/dark,/area/fatlab) "mbn" = (/obj/machinery/computer/rdconsole/core,/turf/open/floor/plasteel/dark,/area/centcom/ferry) "mbp" = (/obj/structure/chair/sofa/left,/turf/open/floor/wood,/area/centcom/ferry) -"mcR" = (/obj/structure/table/wood,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-05"; pixel_y = 10},/turf/open/floor/holofloor{dir = 9; icon_state = "wood"},/area/holodeck/rec_center/lounge) +"mcR" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-05"; pixel_y = 10},/turf/open/floor/holofloor{dir = 9; icon_state = "wood"},/area/holodeck/rec_center/lounge) "mcU" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/grass/green,/turf/open/floor/grass/snow,/area/centcom/control) "mdu" = (/obj/structure/sign/warning/securearea,/turf/closed/indestructible/riveted,/area/centcom/control) "mdx" = (/obj/structure/chair{dir = 4; name = "Prosecution"},/turf/open/floor/mineral/titanium,/area/centcom/evac) @@ -1712,7 +1712,7 @@ "mmL" = (/obj/structure/table,/obj/item/stack/medical/bruise_pack{heal_brute = 10},/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/bunker) "mmN" = (/obj/machinery/door/airlock/centcom{name = "Thunderdome"; opacity = 1; req_access_txt = "101"},/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "mnf" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/fatlab) -"mng" = (/obj/structure/double_bed,/obj/item/bedsheet/double_red,/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) +"mng" = (/obj/structure/bed/double,/obj/item/bedsheet/double_red,/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) "mnp" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/centcom/supplypod) "mnz" = (/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "drain"; name = "drain"},/obj/structure/sink/kitchen{dir = 8; pixel_x = 11},/obj/structure/mirror{pixel_x = 30},/turf/open/floor/plasteel/freezer,/area/fatlab) "mnG" = (/obj/effect/landmark/thunderdome/one,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/tdome/arena) @@ -1741,7 +1741,7 @@ "mxJ" = (/obj/item/storage/firstaid/toxin,/obj/item/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/structure/table/reinforced,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/control) "mxV" = (/obj/structure/filingcabinet,/turf/open/floor/plasteel/dark,/area/centcom/ferry) "myI" = (/obj/machinery/computer/bsa_control,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 8; icon_state = "rightsecure"; name = "CentCom Customs"; req_access_txt = "109"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/centcom/ferry) -"myO" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/light{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"myO" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/light{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "mze" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line{dir = 2},/obj/machinery/conveyor{dir = 4; id = "XCCQMLoad2"},/turf/open/floor/plasteel,/area/centcom/supply) "mzv" = (/obj/structure/toilet{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/ferry) "mzA" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/freezer,/area/fatlab) @@ -1788,8 +1788,8 @@ "mLz" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/turf/open/floor/holofloor,/area/holodeck/rec_center/basketball) "mLD" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/white,/area/fatlab) "mLW" = (/obj/structure/closet/crate,/obj/item/vending_refill/autodrobe,/obj/item/stack/sheet/paperframes/fifty,/obj/item/stack/sheet/paperframes/fifty,/obj/item/storage/fancy/candle_box,/obj/item/storage/fancy/candle_box,/obj/item/storage/fancy/candle_box,/obj/item/storage/box/lights/mixed,/turf/open/floor/wood,/area/centcom/holding) -"mNC" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/fatlab) -"mOm" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"mNC" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/fatlab) +"mOm" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "mPc" = (/obj/structure/table/optable/abductor,/turf/open/floor/plating/abductor,/area/abductor_ship) "mQg" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/fatlab) "mQr" = (/obj/structure/ore_box,/obj/effect/turf_decal/box,/turf/open/floor/plasteel/dark,/area/fatlab) @@ -1827,7 +1827,7 @@ "ncT" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light{dir = 4; pixel_x = -6},/obj/item/book/lorebooks/welcome_to_gato,/turf/open/floor/plasteel,/area/centcom/evac) "ncU" = (/obj/structure/chair/comfy/black,/turf/open/floor/carpet/black,/area/centcom/ferry) "ndu" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 8},/turf/open/floor/plasteel/dark,/area/fatlab) -"ndw" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) +"ndw" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "ndM" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/gato,/turf/open/floor/plasteel,/area/centcom/control) "ndU" = (/obj/structure/table/reinforced,/obj/item/folder/white,/obj/item/pen/blue,/turf/open/floor/plasteel,/area/centcom/supplypod) "ndV" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) @@ -1875,9 +1875,9 @@ "ntT" = (/obj/machinery/chem_dispenser/drinks/beer,/turf/closed/indestructible{icon = 'icons/turf/walls/wood_wall.dmi'; icon_state = "wood"; smooth = 1},/area/centcom/holding) "nuE" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_containers/food/snacks/carpmeat,/obj/item/reagent_containers/food/snacks/carpmeat,/obj/item/reagent_containers/food/snacks/carpmeat,/obj/item/reagent_containers/food/snacks/carpmeat,/obj/item/reagent_containers/food/snacks/carpmeat,/obj/item/reagent_containers/food/snacks/meat/rawbacon,/obj/item/reagent_containers/food/snacks/meat/rawbacon,/obj/item/reagent_containers/food/snacks/meat/rawbacon,/obj/item/reagent_containers/food/snacks/meat/slab/bear,/obj/item/reagent_containers/food/snacks/meat/slab/bear,/obj/item/reagent_containers/food/snacks/meat/slab/bear,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/corn,/turf/open/floor/plasteel/freezer,/area/fatlab) "nuS" = (/obj/structure/mirror,/turf/closed/indestructible/wood,/area/awaymission/jungleresort) -"nuY" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/fatlab) +"nuY" = (/obj/item/kirbyplants,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "nvz" = (/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/turf_decal/stripes/line{dir = 8},/obj/structure/table,/turf/open/floor/plasteel,/area/centcom/control) -"nvY" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/wood,/area/centcom/holding) +"nvY" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/wood,/area/centcom/holding) "nww" = (/obj/structure/table/reinforced,/obj/item/storage/box/handcuffs,/obj/item/crowbar/red,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "nwL" = (/obj/structure/chair/wood/wings{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/wood,/area/centcom/control) "nxt" = (/obj/machinery/icecream_vat,/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeobserve) @@ -1923,7 +1923,7 @@ "nKx" = (/obj/effect/landmark/thunderdome/two,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/tdome/arena) "nKO" = (/obj/structure/chair,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "nLw" = (/obj/structure/chair/comfy/black{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/turf/open/floor/plasteel/grimy,/area/centcom/ferry) -"nLy" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/power/apc{dir = 2; name = "Briefing Room APC"; pixel_y = -26},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"nLy" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/power/apc{dir = 2; name = "Briefing Room APC"; pixel_y = -26},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "nLE" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/vending/snack{free = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/centcom/control) "nMw" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel/dark,/area/fatlab) "nMD" = (/obj/item/twohanded/ctf/red,/turf/open/floor/circuit/green/anim,/area/ctf) @@ -1949,7 +1949,7 @@ "nRL" = (/obj/structure/chair/wood/wings{dir = 1},/turf/open/floor/engine/cult,/area/wizard_station) "nSc" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/centcom/control) "nSE" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel,/area/fatlab) -"nSX" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/carpet/black,/area/centcom/control) +"nSX" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/carpet/black,/area/centcom/control) "nSZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/grimy,/area/centcom/ferry) "nTw" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/centcom/ferry) "nTz" = (/obj/machinery/door/airlock/centcom{name = "Thunderdome Administration"; opacity = 1; req_access_txt = "102"},/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/tdome/tdomeadmin) @@ -1967,7 +1967,7 @@ "nXh" = (/turf/open/floor/mineral/titanium/blue,/area/centcom/evac) "nXj" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/folder/red,/obj/item/pen/red,/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/centcom/evac) "nXw" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/centcom/supply) -"nXI" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) +"nXI" = (/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) "nYM" = (/obj/machinery/computer/secure_data{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/centcom/evac) "nZv" = (/obj/machinery/light/small,/turf/open/pool,/area/centcom/ferry) "nZN" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fourcolor,/turf/open/floor/plasteel/grimy,/area/centcom/ferry) @@ -2000,7 +2000,7 @@ "onK" = (/mob/living/simple_animal/bot/medbot/mysterious{desc = "If you don't accidentally blow yourself up from time to time you're not really a wizard anyway."; faction = list("neutral","silicon","creature"); name = "Nobody's Perfect"},/turf/open/floor/engine/cult,/area/wizard_station) "onM" = (/obj/structure/closet/secure_closet/ertMed,/obj/structure/sign/directions/medical{dir = 1; pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/centcom/ferry) "onQ" = (/obj/machinery/computer/operating{dir = 1},/obj/effect/turf_decal/box/white/corners,/turf/open/floor/plasteel/white,/area/fatlab) -"onW" = (/obj/structure/table/reinforced,/obj/item/storage/box/handcuffs,/obj/item/crowbar/red,/obj/item/jawsoflife,/obj/item/storage/belt/security/full,/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/centcom/ferry) +"onW" = (/obj/structure/table/reinforced,/obj/item/storage/box/handcuffs,/obj/item/crowbar/red,/obj/item/crowbar/power,/obj/item/storage/belt/security/full,/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/centcom/ferry) "ooo" = (/turf/closed/indestructible/abductor{icon_state = "alien5"},/area/abductor_ship) "oov" = (/obj/machinery/icecream_vat,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/centcom/ferry) "ooC" = (/obj/machinery/computer/telecomms/server{dir = 8; network = "tcommsat"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) @@ -2010,7 +2010,7 @@ "opq" = (/obj/structure/table,/obj/machinery/door/poddoor/shutters/old/preopen{id = "fatlab_shutters_kitchen"},/turf/open/floor/plasteel/dark,/area/fatlab) "opv" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/carpet/black,/area/centcom/holding) "opx" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/fatlab) -"opA" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/structure/extinguisher_cabinet{pixel_x = -24},/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},/turf/open/floor/plasteel/dark,/area/centcom/control) +"opA" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/structure/extinguisher_cabinet{pixel_x = -24},/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},/turf/open/floor/plasteel/dark,/area/centcom/control) "oqY" = (/obj/effect/turf_decal/delivery,/obj/machinery/light,/turf/open/floor/plasteel,/area/centcom/control) "oru" = (/obj/structure/table,/obj/item/paper/pamphlet/centcom/visitor_info,/obj/item/paper/pamphlet/centcom/visitor_info,/obj/item/paper/pamphlet/centcom/visitor_info,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) "orE" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/centcom/control) @@ -2114,7 +2114,7 @@ "oZQ" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/fatlab) "oZS" = (/turf/closed/indestructible/riveted,/area/ai_multicam_room) "oZU" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/holofloor{dir = 8; icon_state = "white"},/area/holodeck/rec_center/firingrange) -"paT" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/tdome/tdomeobserve) +"paT" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/tdome/tdomeobserve) "pbc" = (/obj/machinery/computer/card/centcom{dir = 1},/obj/machinery/button/door{id = "XCCcustoms1"; layer = 3.5; name = "CC Customs 1 Control"; pixel_x = 8; pixel_y = -24},/obj/machinery/button/door{id = "XCCcustoms2"; layer = 3.5; name = "CC Customs 2 Control"; pixel_x = -8; pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/centcom/control) "pbm" = (/turf/closed/indestructible/riveted,/area/start) "pbr" = (/obj/structure/barricade/wooden,/turf/open/water/jungle,/area/awaymission/jungleresort) @@ -2180,7 +2180,7 @@ "pAD" = (/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/turf_decal/stripes/line{dir = 4},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) "pAF" = (/obj/structure/table,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 1},/turf/open/floor/plasteel,/area/fatlab) "pAY" = (/obj/docking_port/stationary{area_type = /area/syndicate_mothership/control; dir = 1; dwidth = 3; height = 7; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/assault_pod/default; width = 7},/turf/open/floor/plating,/area/syndicate_mothership) -"pBk" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"pBk" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "pBZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/fatlab) "pCa" = (/obj/structure/table/reinforced,/obj/item/crowbar/red,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/gas,/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "pCp" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/grassybush,/obj/structure/flora/ausbushes/palebush,/turf/open/floor/plating/asteroid,/area/centcom/control) @@ -2211,7 +2211,7 @@ "pLB" = (/obj/machinery/power/smes/magical,/obj/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/white{icon_state = "0-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/centcom/ferry) "pMa" = (/turf/open/floor/plasteel/dark,/area/centcom/evac) "pMy" = (/obj/machinery/computer/secure_data{dir = 1},/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},/turf/open/floor/plasteel/dark,/area/centcom/control) -"pMz" = (/obj/structure/table/wood,/obj/item/scythe,/obj/item/twohanded/spear,/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/thunderdome1218) +"pMz" = (/obj/structure/table/wood,/obj/item/scythe,/obj/item/spear,/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/thunderdome1218) "pMB" = (/obj/machinery/door/airlock/centcom{name = "CentCom Security"; opacity = 1; req_access_txt = "101"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/centcom/evac) "pMF" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 1},/turf/open/floor/plasteel,/area/fatlab) "pMH" = (/obj/structure/rack,/obj/item/clothing/under/color/green,/obj/item/clothing/shoes/sneakers/brown,/obj/item/clothing/suit/armor/tdome/green,/obj/item/clothing/head/helmet/thunderdome,/obj/item/melee/baton/loaded,/obj/item/melee/transforming/energy/sword/saber/green,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/tdome/arena_source) @@ -2233,7 +2233,7 @@ "pUD" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/fatlab) "pUM" = (/obj/machinery/light{dir = 8},/obj/structure/rack,/obj/item/nullrod/claymore/saber{damtype = "stamina"; force = 30},/turf/open/floor/wood,/area/centcom/holding) "pWf" = (/obj/machinery/vending/wardrobe/hydro_wardrobe,/turf/open/floor/wood,/area/awaymission/jungleresort) -"pWo" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) +"pWo" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) "pXD" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/shower{pixel_y = 16},/obj/structure/curtain,/obj/machinery/door/window/brigdoor/southleft{name = "Shower"},/obj/item/soap/deluxe,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/centcom/ferry) "pYh" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) "pYq" = (/obj/structure/table,/obj/item/storage/firstaid/toxin{pixel_x = -2; pixel_y = 4},/obj/item/storage/firstaid/toxin,/turf/open/floor/mineral/titanium/blue,/area/centcom/evac) @@ -2263,12 +2263,12 @@ "qgY" = (/obj/machinery/light{dir = 4},/turf/open/floor/plating,/area/syndicate_mothership) "qhq" = (/obj/effect/turf_decal/stripes/white,/obj/structure/table,/obj/item/reagent_containers/glass/beaker/lipoifier{pixel_x = 7},/obj/item/reagent_containers/glass/beaker/lipoifier{pixel_x = -7},/obj/item/reagent_containers/syringe{pixel_y = 8},/turf/open/floor/engine,/area/fatlab) "qiq" = (/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/tdome/tdomeobserve) -"qiL" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/tdome/tdomeobserve) +"qiL" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/tdome/tdomeobserve) "qiW" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 3},/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/item/multitool,/obj/item/clothing/glasses/meson,/obj/item/storage/belt,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/fatlab) "qjd" = (/obj/effect/turf_decal/box,/obj/machinery/iv_drip/feeding_tube,/turf/open/floor/plasteel,/area/fatlab) "qjm" = (/obj/structure/table/wood/fancy,/obj/item/radio/intercom{desc = "Talk smack through this."; syndie = 1},/turf/open/floor/wood,/area/wizard_station) "qjP" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/fatlab) -"qjX" = (/obj/structure/table/wood,/obj/item/storage/pill_bottle/dice,/turf/open/floor/carpet/black,/area/centcom/ferry) +"qjX" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/carpet/black,/area/centcom/ferry) "qkd" = (/obj/machinery/abductor/console{team_number = 1},/turf/open/floor/plating/abductor,/area/abductor_ship) "qke" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/tdome/arena_source) "qkw" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/fatlab) @@ -2286,7 +2286,7 @@ "qnU" = (/obj/structure/table,/obj/item/stack/medical/ointment{heal_burn = 10},/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/bunker) "qos" = (/obj/item/cardboard_cutout/adaptive{color = "#9999BB"; icon_state = "cutout_clown"; name = "Black King"},/turf/open/floor/holofloor{dir = 8; icon_state = "dark"},/area/holodeck/rec_center/spacechess) "qov" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "CentCom"; opacity = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/centcom/evac) -"qpe" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light{dir = 8},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/centcom/ferry) +"qpe" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light{dir = 8},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/centcom/ferry) "qpK" = (/obj/structure/flora/ausbushes/reedbush,/turf/open/water/jungle,/area/fatlab) "qqL" = (/obj/structure/sign/directions/engineering{desc = "A sign that shows there are doors here. There are doors everywhere!"; icon_state = "doors"; name = "WARNING: BLAST DOORS"},/turf/closed/indestructible/riveted,/area/centcom/control) "qqM" = (/obj/effect/turf_decal/stripes/line,/obj/item/banner/command/mundane,/turf/open/floor/plasteel,/area/centcom/evac) @@ -2306,7 +2306,7 @@ "qwg" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/structure/chair/sofa{dir = 4},/turf/open/floor/carpet/black,/area/centcom/ferry) "qww" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/white/line,/turf/open/floor/plasteel/white,/area/fatlab) "qwE" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/fatlab) -"qxg" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) +"qxg" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "qxI" = (/obj/machinery/door/airlock/centcom{name = "Thunderdome Administration"; opacity = 1; req_access_txt = "102"},/obj/effect/turf_decal/stripes/line{dir = 2},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/tdome/tdomeadmin) "qxZ" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/turf/open/floor/holofloor/carpet,/area/holodeck/rec_center/lounge) "qyh" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/centcom/evac) @@ -2362,7 +2362,7 @@ "qPv" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/fatlab) "qQj" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/crate/bin,/turf/open/floor/plasteel,/area/centcom/control) "qQm" = (/obj/effect/turf_decal/stripes/white{dir = 10},/obj/structure/scale,/obj/effect/turf_decal/box/white,/turf/open/floor/engine,/area/fatlab) -"qQo" = (/obj/machinery/light{dir = 8},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel,/area/centcom/ferry) +"qQo" = (/obj/machinery/light{dir = 8},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel,/area/centcom/ferry) "qQq" = (/obj/structure/flora/ausbushes/fernybush,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced/fulltile,/obj/machinery/light,/turf/open/floor/grass,/area/centcom/holding) "qQM" = (/obj/machinery/door/window/westleft{dir = 2; icon_state = "right"},/turf/open/floor/holofloor/grass,/area/holodeck/rec_center/thunderdome1218) "qQN" = (/obj/machinery/computer/communications{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/centcom/ferry) @@ -2431,12 +2431,12 @@ "rpE" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "rqj" = (/obj/structure/janitorialcart,/turf/open/floor/plasteel,/area/centcom/ferry) "rqu" = (/turf/open/floor/holofloor/beach/coast_b,/area/holodeck/rec_center/beach) -"rqL" = (/obj/item/clothing/under/jabroni,/obj/item/clothing/under/geisha,/obj/item/clothing/under/kilt,/obj/structure/closet,/obj/item/clothing/under/roman,/turf/open/floor/wood,/area/centcom/holding) +"rqL" = (/obj/item/clothing/under/jabroni,/obj/item/clothing/under/costume/geisha,/obj/item/clothing/under/costume/kilt,/obj/structure/closet,/obj/item/clothing/under/roman,/turf/open/floor/wood,/area/centcom/holding) "rqN" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen/red,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/centcom/supply) "rrG" = (/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/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "rrU" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/centcom/control) "rsK" = (/obj/machinery/computer/shuttle/syndicate/recall,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/syndicate_mothership) -"rsL" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeadmin) +"rsL" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeadmin) "rto" = (/obj/structure/chair/stool/bar,/turf/open/floor/wood,/area/centcom/holding) "rtx" = (/obj/structure/closet/cardboard,/obj/effect/turf_decal/delivery,/obj/machinery/light,/turf/open/floor/plasteel,/area/fatlab) "rtB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/old/preopen{id = "fatlab_shutter_kitchen2"},/turf/open/floor/plating,/area/fatlab) @@ -2473,7 +2473,7 @@ "rGl" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/carpet,/area/wizard_station) "rGx" = (/obj/structure/table/wood,/obj/item/storage/box,/obj/item/tank/internals/emergency_oxygen/double,/obj/item/reagent_containers/hypospray/medipen/survival,/obj/item/reagent_containers/hypospray/medipen,/obj/item/crowbar/red,/obj/machinery/light/small{dir = 1},/obj/item/melee/classic_baton/telescopic,/turf/open/floor/plasteel/dark/side{dir = 5},/area/centcom/ferry) "rGL" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/tdome/tdomeobserve) -"rGM" = (/obj/structure/table/reinforced,/obj/item/stack/packageWrap,/obj/item/jawsoflife,/obj/item/wrench,/obj/item/hand_labeler,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/centcom/ferry) +"rGM" = (/obj/structure/table/reinforced,/obj/item/stack/packageWrap,/obj/item/crowbar/power,/obj/item/wrench,/obj/item/hand_labeler,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/centcom/ferry) "rGR" = (/obj/structure/table/wood,/obj/item/instrument/violin,/turf/open/floor/holofloor/carpet,/area/holodeck/rec_center/lounge) "rHE" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/flora/grass/brown,/turf/open/floor/grass/snow,/area/centcom/control) "rIb" = (/obj/machinery/computer/auxillary_base{pixel_y = 32},/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/radio/headset/headset_cent,/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) @@ -2509,9 +2509,9 @@ "rSQ" = (/obj/structure/table/reinforced,/obj/item/kitchen/knife,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -8; pixel_y = 5},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -8},/turf/open/floor/plasteel/cafeteria,/area/centcom/ferry) "rSZ" = (/obj/machinery/light/small{dir = 8},/obj/structure/toilet,/turf/open/floor/plasteel/white,/area/centcom/ferry) "rTi" = (/obj/structure/closet/crate/trashcart,/turf/open/floor/plating,/area/fatlab) -"rTq" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/light,/obj/structure/noticeboard{dir = 1; pixel_y = -32},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"rTq" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/light,/obj/structure/noticeboard{dir = 1; pixel_y = -32},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "rTt" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/turf/open/floor/holofloor,/area/holodeck/rec_center/basketball) -"rTu" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/centcom/control) +"rTu" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/centcom/control) "rTC" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel,/area/fatlab) "rUj" = (/obj/machinery/shower{pixel_y = 12},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/freezer,/area/fatlab) "rVm" = (/obj/structure/table/reinforced,/obj/item/folder/red{pixel_x = -2; pixel_y = -2},/obj/item/folder/blue{pixel_x = 2; pixel_y = 2},/obj/item/lighter,/turf/open/floor/plasteel/grimy,/area/centcom/ferry) @@ -2521,14 +2521,14 @@ "rWu" = (/obj/docking_port/stationary{dir = 4; dwidth = 2; height = 8; id = "backup_away"; name = "Backup Shuttle Dock"; roundstart_template = /datum/map_template/shuttle/emergency/backup; width = 8},/turf/open/space/basic,/area/space) "rWC" = (/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar{dir = 8},/turf/open/floor/plasteel/dark,/area/fatlab) "rWU" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/fatlab) -"rXi" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/centcom/control) +"rXi" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/centcom/control) "rXn" = (/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/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/centcom/evac) "rXq" = (/obj/structure/table/wood,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/awaymission/jungleresort) "rXW" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/syndicate_mothership) "rXX" = (/turf/closed/wall/r_wall,/area/centcom/evac) "rYf" = (/turf/closed/indestructible/riveted,/area/centcom/supplypod) "rYi" = (/obj/machinery/light{dir = 1},/obj/structure/medkit_cabinet{pixel_y = 27},/turf/open/floor/plasteel/freezer,/area/fatlab) -"rYx" = (/obj/structure/table/wood,/obj/item/melee/chainofcommand{name = "chain whip"},/obj/item/twohanded/spear,/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/thunderdome1218) +"rYx" = (/obj/structure/table/wood,/obj/item/melee/chainofcommand{name = "chain whip"},/obj/item/spear,/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/thunderdome1218) "rZh" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/table,/obj/machinery/light{dir = 8},/obj/item/paper/pamphlet/centcom/visitor_info{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel,/area/centcom/control) "rZz" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/fatlab) "rZU" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ctf) @@ -2576,21 +2576,21 @@ "srA" = (/turf/open/floor/plasteel,/area/tdome/arena_source) "srR" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/centcom/supplypod/loading/one) "ssE" = (/turf/open/floor/holofloor/plating,/area/holodeck/rec_center/refuel) -"ssJ" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/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},/turf/open/floor/plasteel/dark,/area/centcom/control) +"ssJ" = (/obj/item/kirbyplants{icon_state = "plant-22"},/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},/turf/open/floor/plasteel/dark,/area/centcom/control) "ssM" = (/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},/turf/open/floor/plasteel,/area/centcom/supply) "stx" = (/obj/structure/chair/wood/wings{dir = 8},/obj/machinery/defibrillator_mount/loaded{pixel_y = 28},/turf/open/floor/wood,/area/centcom/holding) "stz" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ctf) "suT" = (/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/grass,/area/awaymission/jungleresort) "suX" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "svt" = (/turf/closed/indestructible/riveted,/area/awaymission/jungleresort) -"svO" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) +"svO" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "swb" = (/obj/effect/turf_decal/stripes/white{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 9; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) "swd" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 4; icon_state = "rightsecure"; name = "CentCom Customs"; req_access_txt = "109"},/turf/open/floor/plasteel,/area/centcom/evac) "swl" = (/obj/machinery/door/airlock/centcom{name = "CentCom Supply"; req_access_txt = "106"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/centcom/supply) "swO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/stripes/asteroid/line{dir = 4},/obj/machinery/light{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/fatlab) "sxj" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/tdome/tdomeobserve) "sxo" = (/obj/structure/sign/nanotrasen,/turf/closed/indestructible/riveted,/area/centcom/supply) -"sxr" = (/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/turf_decal/stripes/line,/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/centcom/control) +"sxr" = (/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/turf_decal/stripes/line,/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel,/area/centcom/control) "sxE" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/centcom/evac) "sxL" = (/obj/structure/table,/obj/item/clothing/head/helmet/thunderdome,/obj/item/clothing/suit/armor/tdome/red,/obj/item/clothing/under/color/red,/obj/item/holo/esword/red,/turf/open/floor/holofloor/basalt,/area/holodeck/rec_center/thunderdome) "sym" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) @@ -2649,7 +2649,7 @@ "sOA" = (/obj/structure/table/reinforced,/obj/item/clipboard{pixel_x = -16},/obj/item/assembly/flash{pixel_x = -16},/turf/open/floor/plaswood,/area/centcom/ferry) "sPa" = (/obj/structure/sign/warning/nosmoking,/turf/closed/indestructible/riveted,/area/fatlab) "sPh" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/centcom/control) -"sPz" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/centcom/control) +"sPz" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/centcom/control) "sPB" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "CentCom Customs"; req_access_txt = "109"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/centcom/evac) "sQf" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/centcom/ferry) "sRa" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced/fulltile,/turf/open/floor/grass,/area/centcom/holding) @@ -2661,14 +2661,14 @@ "sSn" = (/obj/structure/flora/tree/pine,/obj/structure/flora/grass/both,/turf/open/floor/grass/snow,/area/centcom/control) "sSN" = (/obj/machinery/recharger{pixel_y = 4},/obj/effect/landmark/thunderdome/two,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/tdome/arena) "sSO" = (/obj/machinery/light,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/holding) -"sSV" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/fatlab) +"sSV" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/fatlab) "sTk" = (/obj/structure/table/reinforced,/obj/item/clothing/suit/space/hardsuit/deathsquad{pixel_y = 5},/obj/item/clothing/gloves/combat,/obj/item/clothing/shoes/combat/swat,/obj/item/clothing/mask/gas/sechailer/swat,/obj/effect/turf_decal/stripes/line,/obj/item/clothing/suit/space/hardsuit/ert/alert/gato,/turf/open/floor/plasteel,/area/centcom/ferry) "sTU" = (/obj/effect/landmark/ai_multicam_room,/turf/open/ai_visible,/area/ai_multicam_room) "sUc" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 4},/turf/open/floor/plasteel/white,/area/fatlab) "sUz" = (/obj/machinery/computer/card/centcom,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "sUX" = (/obj/structure/window/reinforced/tinted{dir = 4},/turf/open/floor/holofloor{dir = 9; icon_state = "wood"},/area/holodeck/rec_center/lounge) "sVq" = (/obj/machinery/readybutton,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/holofloor,/area/holodeck/rec_center/dodgeball) -"sVT" = (/obj/structure/table,/obj/item/hand_labeler,/obj/item/destTagger{pixel_y = 16},/turf/open/floor/plasteel/dark,/area/fatlab) +"sVT" = (/obj/structure/table,/obj/item/hand_labeler,/obj/item/dest_tagger{pixel_y = 16},/turf/open/floor/plasteel/dark,/area/fatlab) "sVW" = (/turf/closed/indestructible/abductor{icon_state = "alien15"},/area/abductor_ship) "sWv" = (/turf/open/pool,/area/centcom/ferry) "sXu" = (/turf/open/floor/wood,/area/centcom/holding) @@ -2697,11 +2697,11 @@ "thc" = (/obj/structure/window,/obj/structure/window{dir = 8},/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) "thm" = (/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/grimy,/area/centcom/ferry) "thw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/circuit,/area/ctf) -"thB" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/wood,/area/centcom/evac) +"thB" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/wood,/area/centcom/evac) "thI" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria,/area/centcom/holding) "tis" = (/obj/structure/chair/office/light,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/fatlab) "tiA" = (/obj/machinery/power/terminal{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/structure/cable/white{icon_state = "0-8"},/obj/structure/cable/white{icon_state = "0-4"},/obj/structure/cable/white{icon_state = "0-2"},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) -"tkj" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/wood,/area/centcom/ferry) +"tkj" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/wood,/area/centcom/ferry) "tkQ" = (/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel,/area/centcom/control) "tkS" = (/obj/machinery/door/airlock/centcom{name = "Shuttle Control Office"; opacity = 1; req_access_txt = "109"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/centcom/ferry) "tkW" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/lipoifier,/obj/item/reagent_containers/glass/beaker/lipoifier{pixel_x = 8},/obj/item/healthanalyzer/advanced{pixel_y = 10},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/fatlab) @@ -2714,7 +2714,7 @@ "tmw" = (/obj/machinery/door/airlock{icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; name = "Observation Deck"},/turf/open/floor/engine/cult,/area/wizard_station) "tmR" = (/turf/open/water/jungle,/area/awaymission/jungleresort) "tny" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/centcom/control) -"tnD" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/fatlab) +"tnD" = (/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/fatlab) "tnE" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/table/plasmaglass,/obj/item/paper,/turf/open/floor/carpet/black,/area/centcom/ferry) "tol" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/centcom/holding) "toJ" = (/obj/vehicle/ridden/wheelchair,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/fatlab) @@ -2724,7 +2724,7 @@ "tqi" = (/obj/machinery/manned_turret,/turf/open/floor/plating/beach/sand,/area/awaymission/jungleresort) "trx" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/centcom/supplypod) "trO" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/fatlab) -"trS" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/centcom/control) +"trS" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/centcom/control) "trY" = (/obj/machinery/door/airlock/centcom{id_tag = "CCStationMonitor"; name = "Station Monitoring Office"; req_access_txt = "101"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "tsH" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 9; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) "tuq" = (/obj/machinery/light,/turf/open/pool,/area/centcom/ferry) @@ -2766,7 +2766,7 @@ "tJL" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/table,/obj/machinery/light,/obj/item/storage/fancy/donut_box{pixel_y = 5},/turf/open/floor/plasteel,/area/centcom/control) "tKt" = (/obj/structure/table/reinforced,/obj/item/storage/box/syringes,/obj/item/gun/syringe/rapidsyringe,/obj/structure/reagent_dispensers/peppertank{pixel_y = -32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/centcom/ferry) "tKU" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/holding) -"tKX" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeadmin) +"tKX" = (/obj/item/kirbyplants{icon_state = "plant-21"},/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeadmin) "tLg" = (/turf/open/floor/plating,/area/ctf) "tMQ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/structure/closet/crate/bin,/turf/open/floor/plasteel,/area/centcom/ferry) "tNk" = (/obj/structure/rack,/obj/item/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/holofloor,/area/holodeck/rec_center/firingrange) @@ -2830,7 +2830,7 @@ "uip" = (/obj/effect/turf_decal/stripes/white/line{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "uiX" = (/obj/structure/sink/kitchen{dir = 4; pixel_x = -11},/turf/open/floor/plasteel/freezer,/area/fatlab) "ukp" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel,/area/centcom/supply) -"ukT" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/centcom/control) +"ukT" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/centcom/control) "ukU" = (/obj/machinery/computer/apc_control{dir = 4},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/dark,/area/centcom/ferry) "ukX" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/door/window/westleft{name = "Uplink Management Control"; req_access_txt = "151"},/turf/open/floor/plasteel,/area/syndicate_mothership) "ulj" = (/obj/structure/table/plasmaglass,/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "trim"; name = "trim"},/obj/machinery/light/small,/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) @@ -2850,7 +2850,7 @@ "uoM" = (/obj/machinery/capture_the_flag/blue,/turf/open/floor/circuit/green/anim,/area/ctf) "uoO" = (/turf/closed/indestructible/fakedoor{name = "External Access"},/area/syndicate_mothership) "uoS" = (/obj/effect/turf_decal/stripes/white/line{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/fatlab) -"upm" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_panel"; name = "steel pannel"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"upm" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_panel"; name = "steel pannel"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "upD" = (/obj/machinery/computer/crew{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},/turf/open/floor/plasteel/dark,/area/centcom/control) "upG" = (/obj/structure/table/reinforced,/obj/item/cartridge/quartermaster{pixel_x = -6},/obj/item/cartridge/quartermaster{pixel_x = 6},/obj/item/cartridge/quartermaster{pixel_y = 6},/obj/item/gps/mining,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/centcom/supply) "uqE" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/centcom/supply) @@ -2861,7 +2861,7 @@ "urs" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/centcom/ferry) "urx" = (/turf/open/floor/carpet/gato,/area/centcom/evac) "urS" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/cult,/area/wizard_station) -"usw" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"usw" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "usz" = (/obj/structure/table/wood,/obj/item/bikehorn/golden{pixel_x = -8; pixel_y = 8},/turf/open/floor/engine/cult,/area/wizard_station) "usC" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plasteel/white,/area/centcom/control) "utc" = (/obj/machinery/light{dir = 4},/obj/item/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/centcom/ferry) @@ -2873,7 +2873,7 @@ "uvi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "uvn" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/tdome/tdomeobserve) "uvV" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/fatlab) -"uwe" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"uwe" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "uww" = (/obj/structure/ladder/unbreakable/binary,/turf/open/indestructible/airblock,/area/fabric_of_reality) "uwC" = (/turf/open/floor/grass,/area/wizard_station) "uxa" = (/obj/machinery/chem_dispenser/fullupgrade,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/fatlab) @@ -2893,7 +2893,7 @@ "uDu" = (/obj/machinery/computer/card/centcom{dir = 1},/turf/open/floor/plasteel/grimy,/area/centcom/ferry) "uDA" = (/obj/machinery/conveyor/inverted{id = "fatfacility_mainhall_left"},/obj/item/reagent_containers/food/snacks/store/cake/bsvc,/turf/open/floor/plasteel/dark,/area/fatlab) "uDU" = (/obj/structure/table/reinforced,/obj/item/book/manual/wiki/security_space_law,/obj/item/taperecorder,/turf/open/floor/plasteel/grimy,/area/centcom/ferry) -"uEi" = (/obj/item/twohanded/required/kirbyplants/photosynthetic,/obj/structure/window/fulltile,/turf/open/floor/light,/area/fatlab) +"uEi" = (/obj/item/kirbyplants/photosynthetic,/obj/structure/window/fulltile,/turf/open/floor/light,/area/fatlab) "uEk" = (/obj/item/banner/command/mundane,/turf/open/floor/plasteel,/area/centcom/ferry) "uEq" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/light{dir = 4},/obj/structure/medkit_cabinet{pixel_x = 32},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "uEy" = (/obj/structure/sign/departments/restroom,/turf/closed/indestructible/riveted,/area/centcom/control) @@ -2909,19 +2909,19 @@ "uJn" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/closed/indestructible/riveted,/area/space) "uJO" = (/obj/structure/closet/secure_closet/ertSec,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/centcom/ferry) "uKd" = (/obj/structure/table/wood,/obj/item/export/bottle/wine{pixel_y = 6; pixel_x = 6},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -7},/obj/machinery/light/small{dir = 1},/turf/open/floor/carpet/royalblack,/area/centcom/ferry) -"uKj" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"uKj" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/tdome/tdomeobserve) "uKq" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/fatlab) "uKr" = (/obj/structure/barricade/sandbags,/turf/open/floor/plating/beach/sand,/area/awaymission/jungleresort) "uKt" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet/black,/area/centcom/ferry) "uKE" = (/obj/machinery/computer/communications{dir = 8},/turf/open/floor/plasteel/dark,/area/centcom/ferry) -"uKN" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) +"uKN" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) "uKU" = (/obj/structure/table/reinforced,/obj/item/storage/box/zipties,/obj/item/crowbar/red,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/centcom/ferry) "uLf" = (/obj/structure/window{dir = 1},/obj/item/toy/beach_ball/holoball/dodgeball,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/holofloor,/area/holodeck/rec_center/dodgeball) "uLm" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/centcom/control) "uLH" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet/black,/area/centcom/ferry) "uLS" = (/obj/structure/table/reinforced,/obj/item/storage/firstaid/regular,/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},/turf/open/floor/plasteel/dark,/area/centcom/control) "uMj" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) -"uMP" = (/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel/white,/area/fatlab) +"uMP" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel/white,/area/fatlab) "uOs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/circuit/red,/area/ctf) "uOv" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "sink"; pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/centcom/holding) "uOy" = (/obj/machinery/door/window/westleft{dir = 2},/turf/open/floor/holofloor/grass,/area/holodeck/rec_center/thunderdome1218) @@ -2934,9 +2934,9 @@ "uQw" = (/obj/structure/table/reinforced,/obj/item/pizzabox/meat{pixel_y = 10},/turf/open/floor/carpet/black,/area/centcom/ferry) "uQW" = (/obj/structure/closet/wardrobe/grey,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "uRn" = (/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/fatlab) -"uRB" = (/obj/effect/turf_decal/loading_area{icon_state = "steel_panel"; name = "steel pannel"},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"uRB" = (/obj/effect/turf_decal/loading_area{icon_state = "steel_panel"; name = "steel pannel"},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "uRM" = (/obj/machinery/vr_sleeper{dir = 1},/turf/open/floor/wood,/area/centcom/holding) -"uRP" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel,/area/centcom/control) +"uRP" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel,/area/centcom/control) "uSd" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{light_color = "#cee5d2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) "uSl" = (/obj/machinery/door/airlock/centcom{name = "Back Room Documents"; req_access_txt = "101"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "uSr" = (/obj/structure/table/wood/fancy,/obj/item/clothing/suit/nun,/obj/item/clothing/head/nun_hood,/obj/item/clothing/suit/holidaypriest,/turf/open/floor/holofloor{dir = 8; icon_state = "dark"},/area/holodeck/rec_center/chapelcourt) @@ -3034,7 +3034,7 @@ "vBz" = (/obj/structure/chair/wood/wings{dir = 4},/obj/machinery/defibrillator_mount/loaded{pixel_y = 28},/turf/open/floor/wood,/area/centcom/holding) "vBG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/centcom/ferry) "vCf" = (/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/structure/table,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/centcom/supply) -"vCY" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 8},/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 9; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) +"vCY" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 8},/obj/item/kirbyplants,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 9; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/fatlab) "vDm" = (/obj/structure/table/wood,/obj/item/paicard,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/syndicate_mothership) "vDr" = (/obj/structure/table/reinforced,/obj/machinery/smartfridge/food,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel/dark,/area/fatlab) "vDy" = (/obj/structure/foamedmetal,/obj/structure/window{dir = 8},/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/bunker) @@ -3148,7 +3148,7 @@ "wqZ" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/centcom/supplypod) "wrh" = (/obj/structure/chair,/turf/open/floor/mineral/titanium,/area/centcom/evac) "wrk" = (/obj/structure/bookcase/random/reference,/turf/open/floor/engine/cult,/area/wizard_station) -"wrl" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/centcom/control) +"wrl" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel,/area/centcom/control) "wrH" = (/obj/machinery/light{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},/turf/open/floor/plasteel/dark,/area/centcom/evac) "wrK" = (/obj/machinery/door/poddoor/shutters{id = "XCCsec1"; name = "XCC Checkpoint 1 Shutters"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) "wrT" = (/obj/machinery/vending/tool{free = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/mineral/plastitanium/red,/area/syndicate_mothership) @@ -3198,7 +3198,7 @@ "wJy" = (/obj/machinery/computer/secure_data{dir = 8},/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},/turf/open/floor/plasteel/dark,/area/centcom/control) "wKn" = (/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "trim"; name = "trim"},/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) "wKs" = (/obj/structure/flora/grass/brown,/turf/open/floor/grass/snow,/area/centcom/control) -"wKH" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/machinery/light{dir = 1},/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"wKH" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/machinery/light{dir = 1},/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "wKL" = (/obj/structure/flora/tree/pine,/turf/open/floor/plating/asteroid/snow/airless,/area/syndicate_mothership) "wKQ" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/fatlab) "wLz" = (/obj/structure/destructible/cult/talisman{desc = "An altar dedicated to the Wizards' Federation"},/obj/item/kitchen/knife/ritual,/turf/open/floor/engine/cult,/area/wizard_station) @@ -3217,7 +3217,7 @@ "wRa" = (/turf/open/floor/holofloor/asteroid,/area/holodeck/rec_center/thunderdome1218) "wRq" = (/obj/item/gavelblock,/obj/item/gavelhammer,/obj/structure/table/wood,/turf/open/floor/holofloor{dir = 8; icon_state = "dark"},/area/holodeck/rec_center/chapelcourt) "wRE" = (/obj/item/surgical_drapes,/obj/item/paper/guides/antag/abductor,/obj/item/scalpel/alien,/obj/structure/table/abductor,/obj/item/cautery/alien,/turf/open/floor/plating/abductor,/area/abductor_ship) -"wSf" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/centcom/ferry) +"wSf" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/centcom/ferry) "wSr" = (/obj/structure/filingcabinet/filingcabinet,/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},/turf/open/floor/plasteel/dark,/area/centcom/supply) "wSI" = (/obj/effect/landmark/thunderdome/two,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/tdome/arena) "wSO" = (/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel/freezer,/area/fatlab) @@ -3239,7 +3239,7 @@ "wYq" = (/obj/item/cardboard_cutout{desc = "They seem to be ignoring you... Typical."; dir = 1; icon_state = "cutout_ntsec"; name = "Private Security Officer"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/centcom/evac) "wYL" = (/obj/machinery/shuttle_manipulator,/turf/open/floor/circuit/green,/area/centcom/ferry) "wZB" = (/turf/open/floor/plaswood,/area/centcom/ferry) -"wZG" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) +"wZG" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "wZL" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_y = -4; pixel_x = -4},/obj/item/storage/toolbox/emergency,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/obj/item/clothing/glasses/meson,/obj/item/storage/belt,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/fatlab) "wZN" = (/obj/structure/sign/poster/official/gato_logo,/turf/closed/wall/r_wall,/area/centcom/evac) "xaz" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/tdome/arena) @@ -3289,7 +3289,7 @@ "xlN" = (/turf/open/floor/wood,/area/centcom/evac) "xlZ" = (/obj/machinery/vending/sovietsoda,/turf/open/floor/plasteel/dark,/area/fatlab) "xmi" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/dark,/area/fatlab) -"xnh" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/wood,/area/centcom/ferry) +"xnh" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/wood,/area/centcom/ferry) "xnk" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/fatlab) "xnq" = (/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/tdome/arena) "xnx" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/sleeper{dir = 8},/turf/open/floor/plasteel/white,/area/centcom/control) @@ -3298,7 +3298,7 @@ "xpr" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/ctf) "xpL" = (/obj/structure/dresser,/obj/item/storage/backpack/satchel,/turf/open/floor/carpet,/area/wizard_station) "xqi" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/folder/yellow,/obj/item/pen/blue,/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) -"xqv" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) +"xqv" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "xry" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/old/preopen{id = "fatlab_shutter_med"},/turf/open/floor/plating,/area/fatlab) "xrF" = (/obj/structure/toilet{dir = 1},/turf/open/floor/plasteel/white,/area/wizard_station) "xrS" = (/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "trim"; name = "trim"},/turf/open/floor/engine,/area/fatlab) @@ -3306,7 +3306,7 @@ "xsc" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/tdome/arena) "xsl" = (/obj/machinery/door/airlock{dir = 4; name = "Employee Area"},/turf/open/floor/plasteel,/area/fatlab) "xsA" = (/obj/structure/window/reinforced,/obj/machinery/mass_driver{dir = 1; icon_state = "mass_driver"; id = "trektorpedo1"; name = "photon torpedo tube"},/obj/item/toy/minimeteor{color = ""; desc = "A primitive long-range weapon, inferior to GATO's perfected bluespace artillery."; icon = 'icons/effects/effects.dmi'; icon_state = "impact_laser"; name = "photon torpedo"},/turf/open/floor/holofloor/hyperspace,/area/holodeck/rec_center/kobayashi) -"xsQ" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/machinery/light{dir = 4},/obj/structure/mirror{pixel_x = 28},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"xsQ" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/light{dir = 4},/obj/structure/mirror{pixel_x = 28},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "xsZ" = (/obj/structure/chair/office/light{dir = 4},/obj/structure/window,/turf/open/floor/carpet/gato,/area/centcom/ferry) "xtd" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/centcom/control) "xto" = (/obj/structure/lattice,/turf/open/space,/area/space) @@ -3374,8 +3374,8 @@ "xKc" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/mineral/basaltstone_floor,/area/centcom/ferry) "xKl" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/centcom/control) "xLx" = (/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/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/centcom/control) -"xLI" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/tdome/tdomeobserve) -"xMc" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-21"},/obj/structure/extinguisher_cabinet{pixel_y = -32},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) +"xLI" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/tdome/tdomeobserve) +"xMc" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/structure/extinguisher_cabinet{pixel_y = -32},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "xMy" = (/obj/structure/table/reinforced,/obj/item/storage/secure/briefcase,/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) "xMz" = (/obj/effect/decal/big_gato,/turf/open/floor/plasteel,/area/centcom/control) "xNr" = (/obj/structure/flora/ausbushes/reedbush,/turf/open/water,/area/centcom/ferry) @@ -3388,8 +3388,8 @@ "xPD" = (/obj/structure/fans/tiny,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/centcom/ferry) "xQj" = (/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/centcom/control) "xQl" = (/obj/structure/table/wood,/obj/item/taperecorder,/obj/item/storage/box/handcuffs,/obj/item/flashlight/seclite,/obj/structure/noticeboard{pixel_y = 28},/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},/turf/open/floor/plasteel/dark,/area/centcom/ferry) -"xRa" = (/obj/structure/piano,/obj/machinery/light{dir = 8},/turf/open/floor/carpet/black,/area/centcom/holding) -"xRY" = (/obj/item/twohanded/required/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/centcom/ferry) +"xRa" = (/obj/structure/musician/piano,/obj/machinery/light{dir = 8},/turf/open/floor/carpet/black,/area/centcom/holding) +"xRY" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/centcom/ferry) "xSx" = (/obj/machinery/reagentgrinder,/obj/structure/table,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/fatlab) "xSE" = (/turf/open/floor/grass,/area/awaymission/jungleresort) "xTa" = (/obj/structure/sign/poster/official/antifat,/turf/closed/wall/mineral/calorite,/area/awaymission/jungleresort) @@ -3425,7 +3425,7 @@ "ycH" = (/obj/machinery/vending/snack/green,/turf/open/floor/plasteel,/area/fatlab) "ycU" = (/obj/effect/spawner/structure/window/shuttle,/turf/open/floor/plating,/area/centcom/evac) "ydj" = (/obj/structure/table/reinforced,/turf/open/floor/mineral/plastitanium/red,/area/centcom/evac) -"ydP" = (/obj/structure/table/wood,/obj/item/storage/pill_bottle/dice,/turf/open/floor/plasteel/grimy,/area/centcom/ferry) +"ydP" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/plasteel/grimy,/area/centcom/ferry) "yeu" = (/obj/machinery/door/airlock/centcom{name = "CentCom"; opacity = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/centcom/evac) "yeO" = (/obj/structure/fans/tiny,/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},/turf/open/floor/plasteel/dark,/area/tdome/tdomeobserve) "yfx" = (/obj/structure/railing{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/fatlab) diff --git a/_maps/metis_maps/gs13/Fast_Food.dmm b/_maps/metis_maps/gs13/Fast_Food.dmm index 2c3df15705..0bea0590f3 100644 --- a/_maps/metis_maps/gs13/Fast_Food.dmm +++ b/_maps/metis_maps/gs13/Fast_Food.dmm @@ -38,7 +38,7 @@ "aL" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "aM" = (/turf/open/space,/area/space) "aN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) -"aO" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) +"aO" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "aP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/checker,/area/ruin/space/has_grav/fastfood_employee) "aQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals_central4"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee) "aR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals8"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals6"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee) @@ -123,7 +123,7 @@ "fc" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/white/line,/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central4"},/turf/open/floor/circuit/telecomms,/area/ruin/space/has_grav/fastfood_employee) "fi" = (/obj/structure/chair/sofa/left{dir = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "fv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) -"fx" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 1},/obj/structure/sign/warning/nosmoking/circle{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main) +"fx" = (/obj/item/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 1},/obj/structure/sign/warning/nosmoking/circle{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main) "fA" = (/obj/structure/lattice/catwalk,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/ruin/space/has_grav/fastfood_employee) "fB" = (/obj/structure/closet/firecloset/full,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "fD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee) @@ -154,7 +154,7 @@ "iK" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "iL" = (/obj/structure/rack/shelf,/obj/item/vending_refill/mealdor,/obj/item/vending_refill/boozeomat,/obj/item/vending_refill/coffee,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/vending_refill/hydroseeds,/obj/item/vending_refill/hydronutrients,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee) "iN" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_grid_diagonal"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_grid_diagonal"},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals6"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee) -"iZ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/item/twohanded/required/kirbyplants,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) +"iZ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/item/kirbyplants,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "jh" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "jv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main) "jJ" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) @@ -289,7 +289,7 @@ "xw" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "xA" = (/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "xB" = (/obj/machinery/smartfridge/food,/obj/item/reagent_containers/food/snacks/burger/cheese,/obj/item/reagent_containers/food/snacks/burger/chicken,/obj/item/reagent_containers/food/snacks/burger/bigbite,/obj/item/reagent_containers/food/snacks/burger/bearger,/obj/item/reagent_containers/food/snacks/burger/baconburger,/obj/item/reagent_containers/food/snacks/burger,/obj/item/reagent_containers/food/snacks/burger/plain,/obj/item/reagent_containers/food/snacks/burger/rib,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/ash_flora/cactus_fruit,/obj/item/reagent_containers/food/snacks/eggmuffin,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee) -"xC" = (/obj/item/twohanded/required/kirbyplants,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) +"xC" = (/obj/item/kirbyplants,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "xD" = (/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/turf/open/floor/circuit/telecomms,/area/ruin/space/has_grav/fastfood_employee) "xT" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/item/trash/can,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating/airless,/area/space/nearstation) "xV" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall,/area/ruin/space/has_grav/fastfood_employee) @@ -389,7 +389,7 @@ "JH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee) "JJ" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "JM" = (/obj/machinery/door/poddoor/shutters/old/preopen{id = "fastfood_kitchen"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee) -"JQ" = (/obj/item/twohanded/required/kirbyplants,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) +"JQ" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "Kd" = (/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "Kh" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "Kk" = (/obj/item/toy/plush/primus{pixel_x = 16},/turf/open/floor/plating/asteroid/airless,/area/space/nearstation) @@ -467,7 +467,7 @@ "RL" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "RV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_grid_diagonal"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_grid_diagonal"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee) "RZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_main) -"Sc" = (/obj/item/ammo_box/magazine/m45/kitchengun,/obj/item/gun/ballistic/automatic/pistol/m1911/kitchengun,/obj/structure/closet/wardrobe,/obj/item/clothing/neck/tie/black,/obj/item/clothing/under/suit_jacket/red,/obj/item/clothing/under/suit_jacket/navy,/obj/item/clothing/under/suit_jacket/burgundy,/obj/item/clothing/under/suit_jacket/charcoal,/obj/item/modular_computer/laptop/preset/civillian,/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee) +"Sc" = (/obj/item/ammo_box/magazine/m45/kitchengun,/obj/item/gun/ballistic/automatic/pistol/m1911/kitchengun,/obj/structure/closet/wardrobe,/obj/item/clothing/neck/tie/black,/obj/item/clothing/under/suit/red,/obj/item/clothing/under/suit/navy,/obj/item/clothing/under/suit/burgundy,/obj/item/clothing/under/suit/charcoal,/obj/item/modular_computer/laptop/preset/civillian,/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee) "Sm" = (/obj/machinery/door/window/brigdoor/southright{name = "Pete Containment Unit"},/obj/machinery/door/firedoor/border_only/closed{dir = 2; name = "Pete Containment Unit seal"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee) "Sq" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee) "Sz" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) @@ -475,7 +475,7 @@ "SK" = (/obj/structure/table/plaswood,/obj/item/trash/tray,/obj/item/reagent_containers/food/snacks/burger/bigbite,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "SM" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "Te" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/sink/kitchen{dir = 4; pixel_x = -11; pixel_y = 5},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee) -"Tm" = (/obj/structure/double_bed,/obj/item/restraints/handcuffs/cable/zipties{pixel_y = 6},/obj/item/clothing/mask/pig/gag,/obj/item/clothing/mask/cowmask/gag,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) +"Tm" = (/obj/structure/bed/double,/obj/item/restraints/handcuffs/cable/zipties{pixel_y = 6},/obj/item/clothing/mask/pig/gag,/obj/item/clothing/mask/cowmask/gag,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "Tv" = (/obj/machinery/chem_dispenser/drinks/fullupgrade{dir = 8},/obj/item/reagent_containers/glass/beaker/lipoifier{pixel_x = -12; pixel_y = 5},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "TA" = (/obj/machinery/conveyor{dir = 2; id = "fastfood_trash"},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "TC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 8},/obj/item/trash/sosjerky,/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main) diff --git a/_maps/metis_maps/hyper/Diner.dmm b/_maps/metis_maps/hyper/Diner.dmm index 260d131627..91756ae041 100644 --- a/_maps/metis_maps/hyper/Diner.dmm +++ b/_maps/metis_maps/hyper/Diner.dmm @@ -8,7 +8,7 @@ "ah" = (/obj/machinery/door/airlock{name = "Toilet 2"},/turf/open/floor/plasteel/dark,/area/diner) "ai" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) "aj" = (/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/diner) -"ak" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/diner) +"ak" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/diner) "al" = (/obj/machinery/door/airlock{name = "Unisex Bathroom"},/turf/open/floor/plasteel/dark,/area/diner) "am" = (/obj/structure/lattice/catwalk,/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/open/space/basic,/area/space/nearstation) "an" = (/obj/structure/lattice/catwalk,/obj/structure/railing{dir = 1},/turf/open/space/basic,/area/space/nearstation) @@ -93,7 +93,7 @@ "dF" = (/obj/machinery/vending/kink,/turf/open/floor/plasteel/dark,/area/diner) "ef" = (/turf/open/floor/plasteel{dir = 1; icon_state = "floor_plate"},/area/diner) "eq" = (/obj/structure/chair/comfy/beige{dir = 1},/turf/open/floor/carpet/black,/area/diner) -"eM" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner) +"eM" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner) "fD" = (/obj/structure/table,/obj/item/ashtray,/obj/item/cigbutt,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner) "hM" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/circuit,/area/diner) "ie" = (/turf/open/floor/plasteel{icon_state = "floor_plate"},/area/diner) @@ -143,7 +143,7 @@ "HH" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/diner) "Ir" = (/obj/structure/chair/comfy/beige,/turf/open/floor/carpet/black,/area/diner) "Ji" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "External Access"; req_access_txt = "13"},/turf/open/floor/plating,/area/diner) -"JA" = (/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/diner) +"JA" = (/obj/machinery/light{dir = 8; pixel_x = -7; pixel_y = 0},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/diner) "LB" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/enzyme{layer = 5; pixel_x = -5; pixel_y = 6},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel/cafeteria,/area/diner) "MD" = (/obj/structure/chair/sofa/left{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/diner) "OE" = (/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner) @@ -152,7 +152,7 @@ "QD" = (/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_panel"; name = "steel pannel"},/obj/machinery/button/door{id = "kitchen"; name = "Diner Shutters Control"; pixel_x = 5; pixel_y = -23; req_access_txt = "28"; tag = dshutters},/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/diner) "QM" = (/obj/structure/mopbucket,/obj/item/mop,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel{icon_state = "floor_trim"},/area/diner) "QP" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/diner) -"Rt" = (/obj/item/twohanded/required/kirbyplants/random,/turf/open/floor/plasteel,/area/diner) +"Rt" = (/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/diner) "Rx" = (/obj/structure/table/plasmaglass,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_y = 10},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/diner) "Sc" = (/obj/structure/table/plasmaglass,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/carpet/black,/area/diner) "Tm" = (/obj/machinery/door/window/southright{base_state = "left"; dir = 8; icon_state = "left"; name = "Interior Door"; req_access_txt = "12"},/turf/open/floor/plasteel/dark,/area/diner) diff --git a/_maps/regex_used.txt b/_maps/regex_used.txt index 6fe24b3828..0785e9b4ad 100644 --- a/_maps/regex_used.txt +++ b/_maps/regex_used.txt @@ -45,9 +45,105 @@ Treadmills /obj/item/conveyor_construct/treadmill /obj/machinery/treadmill -Regex Starts here +Red Shorts +redwshort +red + +Yellow Shorts +yellowwshort +yellow + +Maid Costume +/obj/item/clothing/under/maid +/obj/item/clothing/under/costume/maid + +Polly +/mob/living/simple_animal/parrot/Poly +/mob/living/simple_animal/parrot/Polly + +Suits +/obj/item/clothing/under/suit_jacket/ +/obj/item/clothing/under/suit/ + +Mailman +/obj/item/clothing/under/rank/mailman +/obj/item/clothing/under/misc/mailman + +Hand Drill +/obj/item/handdrill +/obj/item/screwdriver/power + +Jaws of Life +/obj/item/jawsoflife +/obj/item/crowbar/power + +Kilt +/obj/item/clothing/under/kilt +/obj/item/clothing/under/costume/kilt + +Waiter +/obj/item/clothing/under/waiter +/obj/item/clothing/under/suit/waiter + +sl_suit +/obj/item/clothing/under/sl_suit +/obj/item/clothing/under/suit/sl + +Treasure Hunter Clothing +/obj/item/clothing/under/rank/curator +/obj/item/clothing/under/rank/civilian/curator + +Geisha +/obj/item/clothing/under/geisha +/obj/item/clothing/under/costume/geisha + +HoS Grey +/obj/item/clothing/under/rank/head_of_security/grey +/obj/item/clothing/under/rank/security/head_of_security/grey + +Warden Grey +/obj/item/clothing/under/rank/warden/grey +/obj/item/clothing/under/rank/security/warden/grey + +Detective +/obj/item/clothing/under/rank/det +/obj/item/clothing/under/rank/security/detective + +Red Evening Gown +/obj/item/clothing/under/redeveninggown +/obj/item/clothing/under/dress/redeveninggown + +Nurse Suit +/obj/item/clothing/under/rank/nursesuit +/obj/item/clothing/under/rank/medical/doctor/nurse + +Owl Suit +/obj/item/clothing/under/owl +/obj/item/clothing/under/costume/owl + +Really Black Suit +/obj/item/clothing/under/suit/really_black +/obj/item/clothing/under/rank/civilian/lawyer/really_black + +Female Lawyer +/obj/item/clothing/under/lawyer/femal +/obj/item/clothing/under/rank/civilian/lawyer/female + +Centcom Commander +/obj/item/clothing/under/rank/centcom_commander +/obj/item/clothing/under/rank/centcom/commander + +Janitor Maid +/obj/item/clothing/under/janimaid +/obj/item/clothing/under/rank/civilian/janitor/maid + +Spear +/obj/item/twohanded/spear +/obj/item/spear + +Regex Starts here: Shorts -/obj/item/clothing/under/shorts/(.+)wshort +/obj/item/clothing/under/shorts/(.+)?wshort /obj/item/clothing/under/shorts/$1 diff --git a/tgstation.dme b/tgstation.dme index 8cb58db072..c04a035ae2 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3909,6 +3909,7 @@ #include "GainStation13\code\clothing\fat_mask.dm" #include "GainStation13\code\clothing\haydee_suit.dm" #include "GainStation13\code\clothing\head.dm" +#include "GainStation13\code\clothing\hud.dm" #include "GainStation13\code\clothing\shoes.dm" #include "GainStation13\code\clothing\suits.dm" #include "GainStation13\code\clothing\under.dm" @@ -4029,6 +4030,7 @@ #include "GainStation13\code\obj\weapons\fatoray.dm" #include "GainStation13\code\obj\weapons\feeder_ebow.dm" #include "GainStation13\code\structures\chair.dm" +#include "GainStation13\code\structures\table.dm" #include "GainStation13\code\structures\trapped_items.dm" #include "GainStation13\code\structures\trash_piles.dm" #include "GainStation13\code\xenoarch\artifact.dm"