diff --git a/code/game/area/station_areas.dm b/code/game/area/station_areas.dm index 665e0e24bdc..a81730b3699 100644 --- a/code/game/area/station_areas.dm +++ b/code/game/area/station_areas.dm @@ -452,10 +452,21 @@ NOTE: there are two lists of areas in the end of this file: centcom and station icon_state = "medbay2" sound_environment = SOUND_AREA_STATION_HALLWAY +/area/station/medical/staff_hallway + icon_state = "medbay2" + /area/station/medical/reception name = "Medbay Reception" icon_state = "medbay" +/area/station/medical/paramedic + name = "Paramedic Reception" + icon_state = "medbay" + +/area/station/medical/reception_hall + name = "Medbay Reception hall" + icon_state = "medbay" + /area/station/medical/storage name = "Medbay Storage" icon_state = "medbay3" @@ -472,6 +483,14 @@ NOTE: there are two lists of areas in the end of this file: centcom and station name = "Patient's Rooms" icon_state = "patients" +/area/station/medical/hospital + name = "Hospital" + icon_state = "medbay2" + +/area/station/medical/infectious_disease_ward + name = "Infectious disease ward" + icon_state = "virology" + /area/station/medical/patient_a name = "Patient Room One" icon_state = "patients" @@ -480,6 +499,14 @@ NOTE: there are two lists of areas in the end of this file: centcom and station name = "Patient Room Two" icon_state = "patients" +/area/station/medical/patient_c + name = "Patient Room Three" + icon_state = "patients" + +/area/station/medical/patient_d + name = "Patient Room Four" + icon_state = "patients" + /area/station/medical/cmo name = "Chief Medical Officer's office" icon_state = "CMO" @@ -516,6 +543,10 @@ NOTE: there are two lists of areas in the end of this file: centcom and station name = "Cryogenics" icon_state = "cryo" +/area/station/medical/therapist + name = "Therapist Cabinet" + icon_state = "medbay3" + /area/station/medical/genetics name = "Genetics Lab" icon_state = "genetics" @@ -593,6 +624,10 @@ NOTE: there are two lists of areas in the end of this file: centcom and station name = "Security Checkpoint" icon_state = "security" +/area/station/security/medbay_checkpoint + name = "Medbay Security Checkpoint" + icon_state = "security" + /area/station/security/vacantoffice name = "Coworking" icon_state = "security" diff --git a/code/game/objects/effects/decals/contraband.dm b/code/game/objects/effects/decals/contraband.dm index 9d7762a1ec5..2fe241f6ee2 100644 --- a/code/game/objects/effects/decals/contraband.dm +++ b/code/game/objects/effects/decals/contraband.dm @@ -601,6 +601,12 @@ desc = "This informational poster teaches the viewer what carbon dioxide is." icon_state = "poster35_legit" + +/obj/structure/sign/poster/official/sivtsev + name = "Sivtsev's chart" + desc = "This is an eye chart that can be used to measure visual acuity.." + icon_state = "Sivtsev's chart" + /obj/structure/sign/poster/revolution poster_item_name = "revolution poster" poster_item_desc = "Some weird poster shaming Nanotrasen for things they never did... or did they?" @@ -656,5 +662,4 @@ desc = "This poster claims that NanoTrasens puts chemicals in snacks that provoke faster metabolism in order to sell more chips and chocobars." icon_state = "poster9_rev" - #undef PLACE_SPEED diff --git a/code/game/objects/structures/crates_lockers/closets/fireaxe.dm b/code/game/objects/structures/crates_lockers/closets/fireaxe.dm index 2d3456a6006..9d5eca28e84 100644 --- a/code/game/objects/structures/crates_lockers/closets/fireaxe.dm +++ b/code/game/objects/structures/crates_lockers/closets/fireaxe.dm @@ -13,17 +13,18 @@ integrity_failure = 0.5 - var/obj/item/weapon/fireaxe/fireaxe + var/obj/item/weapon/axe + var/axe_type = /obj/item/weapon/fireaxe var/localopened = FALSE // Setting this to keep it from behaviouring like a normal closet and obstructing movement in the map. -Agouri var/hitstaken = 0 var/smashed = FALSE /obj/structure/closet/fireaxecabinet/Destroy() - QDEL_NULL(fireaxe) + QDEL_NULL(axe) return ..() /obj/structure/closet/fireaxecabinet/PopulateContents() - fireaxe = new /obj/item/weapon/fireaxe(src) + axe = new axe_type(src) /obj/structure/closet/fireaxecabinet/attackby(obj/item/O, mob/living/user) //Marker -Agouri //..() //That's very useful, Erro @@ -44,15 +45,15 @@ if(smashed || localopened) if(localopened) localopened = FALSE - icon_state = text("fireaxe[][][][]closing", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]closing", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) return ..() - else if (istype(O, /obj/item/weapon/fireaxe) && localopened) - if(!fireaxe) + else if (istype(O, axe_type) && localopened) + if(!axe) user.drop_from_inventory(O, src) - fireaxe = O + axe = O to_chat(user, "You place the fire axe back in the [src.name].") update_icon() else @@ -61,10 +62,10 @@ else localopened = !localopened if(localopened) - icon_state = text("fireaxe[][][][]opening", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]opening", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) else - icon_state = text("fireaxe[][][][]closing", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]closing", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) else if(smashed) @@ -72,7 +73,7 @@ if(ismultitool(O)) if(localopened) localopened = FALSE - icon_state = text("fireaxe[][][][]closing", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]closing", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) else to_chat(user, "Resetting circuitry...") @@ -83,10 +84,10 @@ else localopened = !localopened if(localopened) - icon_state = text("fireaxe[][][][]opening", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]opening", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) else - icon_state = text("fireaxe[][][][]closing", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]closing", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) /obj/structure/closet/fireaxecabinet/play_attack_sound(damage_amount, damage_type = BRUTE, damage_flag = 0) @@ -124,9 +125,9 @@ if(flags & NODECONSTRUCT) return ..() - if(fireaxe) - fireaxe.forceMove(loc) - fireaxe = null + if(axe) + axe.forceMove(loc) + axe = null new /obj/item/stack/sheet/metal(loc, 2) if(!smashed) new /obj/item/weapon/shard(loc) @@ -143,9 +144,9 @@ return if(localopened) - if(fireaxe) - user.try_take(fireaxe, loc) - fireaxe = null + if(axe) + user.try_take(axe, loc) + axe = null to_chat(user, "You take the fire axe from the [name].") add_fingerprint(user) update_icon() @@ -155,19 +156,19 @@ else localopened = !localopened if(localopened) - icon_state = text("fireaxe[][][][]opening", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]opening", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) else - icon_state = text("fireaxe[][][][]closing", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]closing", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) else localopened = !localopened //I'm pretty sure we don't need an if(src.smashed) in here. In case I'm wrong and it fucks up teh cabinet, **MARKER**. -Agouri if(localopened) - icon_state = text("fireaxe[][][][]opening", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]opening", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) else - src.icon_state = text("fireaxe[][][][]closing", !!fireaxe, localopened, hitstaken, smashed) + src.icon_state = text("fireaxe[][][][]closing", !!axe, localopened, hitstaken, smashed) addtimer(CALLBACK(src, /atom.proc/update_icon), 10) /obj/structure/closet/fireaxecabinet/attack_paw(mob/user) @@ -184,10 +185,14 @@ to_chat(user, "Cabinet unlocked.") /obj/structure/closet/fireaxecabinet/update_icon() // Template: fireaxe[has fireaxe][is opened][hits taken][is smashed]. If you want the opening or closing animations, add "opening" or "closing" right after the numbers - icon_state = text("fireaxe[][][][]", !!fireaxe, localopened, hitstaken, smashed) + icon_state = text("fireaxe[][][][]", !!axe, localopened, hitstaken, smashed) /obj/structure/closet/fireaxecabinet/open() return /obj/structure/closet/fireaxecabinet/close() return + + +/obj/structure/closet/fireaxecabinet/hatchet + axe_type = /obj/item/weapon/hatchet diff --git a/code/game/objects/structures/signs/signs_departments.dm b/code/game/objects/structures/signs/signs_departments.dm index e787668947c..b3ecc37c81f 100644 --- a/code/game/objects/structures/signs/signs_departments.dm +++ b/code/game/objects/structures/signs/signs_departments.dm @@ -15,6 +15,16 @@ desc = "A sign labelling an area containing chemical equipment." icon_state = "chemistry1" +/obj/structure/sign/departments/pharmacy + name = "PHARMACY" + desc = "A sign labelling a pharmacy." + icon_state = "pharmacy" + +/obj/structure/sign/departments/morgue + name = "MORGUE" + desc = "A sign labelling a morgue." + icon_state = "morgue" + /obj/structure/sign/departments/botany name = "HYDROPONICS" desc = "A sign labelling an area as a place where plants are grown." diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm index 3fb81fc1a58..2943dbf5988 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm @@ -533,3 +533,67 @@ /obj/structure/stool/bed/chair/office/dark icon_state = "officechair_dark" behind = "officechair_dark_behind" + +/obj/structure/stool/bed/chair/weigher + name = "Floor Weighter" + desc = "A device to measure weight." + icon = 'icons/obj/objects.dmi' + icon_state = "weigher" + name = "Floor Weighter" + buckle_lying = FALSE // force people to sit up in chairs when buckled + +/obj/structure/stool/bed/chair/weigher/atom_init() + . = ..() + verbs -= /obj/structure/stool/bed/chair/verb/rotate + +/obj/structure/stool/bed/chair/weigher/examine(mob/user) + if(buckled_mob) + if(ishuman(buckled_mob)) + var/mob/living/carbon/human/H = buckled_mob + var/weight = 26.1 + if(H.gender == MALE) + weight = 34.8 + for(var/obj/item/organ/external/BP in H.bodyparts) // find a broken/destroyed limb + if(!BP.is_stump) + switch(BP.name) + if("head") + if(H.gender == MALE) + weight += 5.6 + else + weight += 4.2 + if("left arm") + if(H.gender == MALE) + weight += 3.92 + else + weight += 2.94 + if("right arm") + if(H.gender == MALE) + weight += 3.92 + else + weight += 2.94 + if("left leg") + if(H.gender == MALE) + weight += 15.84 + else + weight += 11.88 + if("right leg") + if(H.gender == MALE) + weight += 15.84 + else + weight += 11.88 + if(HAS_TRAIT(H, TRAIT_FAT)) + weight *= 1.4 + + var/height = 1.8 + switch(H.height) + if(HUMANHEIGHT_SHORTEST) + height = 1.6 + if(HUMANHEIGHT_SHORT) + height = 1.7 + if(HUMANHEIGHT_TALL) + height = 1.9 + if(HUMANHEIGHT_TALLEST) + height = 2.0 + if(SMALLSIZE in H.mutations) + height -= 0.5 + to_chat(user, "The [H]'s weight is [weight]kg, height is [height]m") diff --git a/icons/obj/contraband.dmi b/icons/obj/contraband.dmi index 49b660bd2cd..852ceebac42 100644 Binary files a/icons/obj/contraband.dmi and b/icons/obj/contraband.dmi differ diff --git a/icons/obj/decals.dmi b/icons/obj/decals.dmi index 51976870403..e6c434e0641 100644 Binary files a/icons/obj/decals.dmi and b/icons/obj/decals.dmi differ diff --git a/icons/obj/objects.dmi b/icons/obj/objects.dmi index b98acca7c4e..9092ed17c03 100644 Binary files a/icons/obj/objects.dmi and b/icons/obj/objects.dmi differ diff --git a/maps/boxstation/boxstation.dmm b/maps/boxstation/boxstation.dmm index c1eeadfecab..0c90ee295e8 100644 --- a/maps/boxstation/boxstation.dmm +++ b/maps/boxstation/boxstation.dmm @@ -380,12 +380,9 @@ }, /area/station/security/range) "aaM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -396,11 +393,15 @@ d2 = 4; icon_state = "2-4" }, -/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitehall" }, -/area/station/medical/hallway) +/area/station/medical/infectious_disease_ward) "aaN" = ( /obj/structure/cable{ d1 = 2; @@ -456,33 +457,23 @@ }, /area/station/security/main) "aaR" = ( -/obj/machinery/camera{ - c_tag = "Surgery Operating 1"; - dir = 4; - network = list("SS13","Medical") +/turf/simulated/wall, +/area/station/medical/reception_hall) +"aaS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/structure/table, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 4 +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/item/weapon/razor{ - pixel_x = -4 +/obj/structure/sign/warning/smoking{ + pixel_y = 32 }, +/obj/machinery/vending/cigarette, /turf/simulated/floor, -/area/station/medical/surgery) -"aaS" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/iv_drip, -/turf/simulated/floor{ - dir = 1; - icon_state = "whitehall" - }, -/area/station/medical/surgery) +/area/station/maintenance/medbay) "aaT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -661,12 +652,21 @@ /turf/simulated/floor/plating, /area/station/security/brig) "abp" = ( -/obj/machinery/life_assist/cardiopulmonary_bypass, +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/under/patient_gown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/door_control{ + id = "Medical_Room3"; + name = "Privacy Shutters"; + pixel_y = -25 + }, /turf/simulated/floor{ - dir = 1; - icon_state = "whitehall" + dir = 4; + icon_state = "whitegreen" }, -/area/station/medical/surgery) +/area/station/medical/patient_c) "abq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -874,9 +874,27 @@ }, /area/station/security/armoury) "abI" = ( -/obj/structure/closet/crate/freezer, -/turf/simulated/floor, -/area/station/medical/surgery) +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Room3"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/patient_c) "abJ" = ( /obj/machinery/deployable/barrier, /turf/simulated/floor{ @@ -1286,16 +1304,11 @@ /turf/simulated/floor, /area/station/security/main) "acm" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/weapon/phone, -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 }, -/area/station/medical/hallway) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/infectious_disease_ward) "acn" = ( /obj/machinery/door/airlock/security{ name = "Execution Chamber"; @@ -1407,15 +1420,11 @@ }, /area/station/security/processing) "acw" = ( -/obj/structure/table, -/obj/machinery/vending/wallmed2{ - pixel_x = -32 - }, /turf/simulated/floor{ - dir = 4; - icon_state = "whitehall" + icon_state = "Stairs_wide"; + dir = 1 }, -/area/station/medical/surgery) +/area/station/civilian/library) "acx" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red, /turf/simulated/floor, @@ -1474,9 +1483,11 @@ }, /area/station/security/processing) "acC" = ( -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/turf/simulated/floor{ + dir = 5; + icon_state = "warning" + }, +/area/station/medical/chemistry) "acD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -1689,22 +1700,11 @@ }, /area/station/security/interrogation) "acZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(9,12,47) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/bonfire, +/obj/item/weapon/reagent_containers/food/snacks/kabob, +/turf/simulated/floor/plating{ + icon_state = "platingdmg2" }, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) "ada" = ( /obj/machinery/alarm{ @@ -2356,21 +2356,25 @@ }, /area/station/security/armoury) "aeb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/drain, -/obj/structure/disposalpipe/segment, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = -32; + req_access = list(39) + }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "warnwhite" }, /area/station/medical/virology) "aec" = ( @@ -2662,7 +2666,10 @@ dir = 4 }, /obj/random/foods/food_trash, -/turf/simulated/floor/plating, +/turf/simulated/floor{ + icon_state = "stairs_middle"; + dir = 4 + }, /area/station/maintenance/atmos) "aeD" = ( /turf/simulated/floor{ @@ -4699,26 +4706,18 @@ }, /area/station/civilian/fitness) "aif" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" + dir = 5; + icon_state = "blue" }, -/area/station/medical/hallway) +/area/station/medical/surgery) "aig" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -4838,9 +4837,12 @@ /turf/simulated/floor/plating, /area/station/security/warden) "aip" = ( -/obj/machinery/bodyscanner, +/obj/machinery/sleeper{ + dir = 4 + }, /turf/simulated/floor{ - icon_state = "whiteblue" + dir = 4; + icon_state = "whitebluecorner" }, /area/station/medical/sleeper) "aiq" = ( @@ -4972,21 +4974,18 @@ }, /area/station/rnd/robotics) "aiD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/grille, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/simulated/floor{ - icon_state = "warning" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/cryo) +/turf/simulated/floor/plating, +/area/station/civilian/garden) "aiE" = ( /obj/structure/table, /obj/item/device/taperecorder, @@ -5037,23 +5036,9 @@ }, /area/station/security/warden) "aiH" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/accessory/stethoscope, -/obj/machinery/door_control{ - id = "Medical_Room2"; - name = "Privacy Shutters"; - pixel_x = 25 - }, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/turf/simulated/floor{ - icon_state = "whiteblue" - }, -/area/station/medical/patient_b) +/obj/item/weapon/hatchet, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "aiI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -5605,19 +5590,22 @@ /turf/simulated/floor/plating, /area/station/security/warden) "ajC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = -8; + pixel_x = -24 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/reception_hall) "ajD" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/syringe, @@ -7712,8 +7700,11 @@ }, /area/station/security/brig) "amR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, +/obj/machinery/space_heater, +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, /area/station/maintenance/atmos) "amS" = ( /obj/machinery/door/poddoor{ @@ -8234,24 +8225,13 @@ /turf/simulated/floor, /area/station/security/prison) "anG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/machinery/door/airlock{ + name = "Shower" }, /turf/simulated/floor{ - icon_state = "whitehall" + icon_state = "freezerfloor" }, -/area/station/medical/hallway) +/area/station/medical/medbreak) "anH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -8438,30 +8418,14 @@ }, /area/station/security/prison) "anW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Medbay Break Room"; - sortType = "Medbay Break Room" +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8 }, /turf/simulated/floor{ - dir = 10; - icon_state = "whitehall" + icon_state = "freezerfloor" }, -/area/station/medical/hallway) +/area/station/medical/medbreak) "anX" = ( /obj/machinery/door/airlock/command{ name = "MiniSat Access"; @@ -8846,15 +8810,14 @@ /turf/simulated/floor/carpet/red, /area/station/security/detectives_office) "aoF" = ( -/obj/structure/stool/bed/chair/comfy/black{ +/obj/structure/grille, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/landmark/start/medical_doctor, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" - }, -/area/station/medical/medbreak) +/obj/item/weapon/shard, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "aoG" = ( /obj/structure/stool, /obj/structure/window/reinforced, @@ -10130,14 +10093,15 @@ }, /area/station/security/lobby) "aqU" = ( -/obj/structure/table, -/obj/machinery/vending/wallmed2{ - pixel_y = 32 +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor{ - icon_state = "whitehall" + icon_state = "white" }, -/area/station/medical/surgery2) +/area/station/medical/hallway) "aqV" = ( /obj/machinery/light_switch{ pixel_y = -25 @@ -10394,31 +10358,43 @@ /turf/simulated/floor, /area/station/hallway/primary/fore) "ary" = ( -/obj/structure/table/woodentable, -/obj/random/misc/book, /obj/machinery/light/small, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -32 +/obj/item/weapon/cigbutt{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/weapon/cigbutt{ + pixel_x = -6; + pixel_y = -4 }, /turf/simulated/floor{ - icon_state = "cult" + dir = 8; + icon_state = "yellowcorner" }, -/area/station/civilian/library) +/area/station/maintenance/medbay) "arz" = ( /obj/structure/stool/bed, /obj/item/weapon/bedsheet/brown, /turf/simulated/floor/plating, /area/station/maintenance/dormitory) "arA" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 15 +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2"; + req_access = list(45) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holosign/surgery{ + id = "op2" }, /turf/simulated/floor{ - icon_state = "cult" + icon_state = "whitebluefull" }, -/area/station/civilian/library) +/area/station/medical/surgery2) "arB" = ( /turf/simulated/floor{ dir = 8; @@ -10471,10 +10447,14 @@ }, /area/station/security/prison) "arG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/station/civilian/library) +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor{ + icon_state = "yellow" + }, +/area/station/maintenance/medbay) "arH" = ( /obj/structure/noticeboard{ dir = 4; @@ -10838,18 +10818,22 @@ /turf/simulated/floor/carpet/black, /area/station/civilian/library) "asm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/obj/effect/decal/cleanable/generic, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "asn" = ( -/obj/structure/bookcase/manuals/medical, -/turf/simulated/floor/wood{ - icon_state = "wood-broken7" +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/area/station/civilian/library) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "aso" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -11362,14 +11346,11 @@ /turf/simulated/floor/plating, /area/station/civilian/cold_room) "atl" = ( -/obj/structure/table/woodentable/poker, -/obj/item/toy/cards, -/obj/item/device/harmonica{ - pixel_x = 2; - pixel_y = 2 +/turf/simulated/floor{ + dir = 4; + icon_state = "Stairs_wide" }, -/turf/simulated/floor/carpet/black, -/area/station/civilian/library) +/area/station/maintenance/medbay) "atm" = ( /obj/structure/cable{ d1 = 4; @@ -11394,13 +11375,17 @@ /turf/simulated/floor/carpet/black, /area/station/civilian/library) "ato" = ( -/obj/machinery/door/morgue{ - dir = 4; - name = "Reading Bay" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/hallway) "atp" = ( /obj/machinery/light{ dir = 8 @@ -11909,17 +11894,17 @@ }, /area/station/rnd/xenobiology) "auk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/stool/bed, +/obj/item/weapon/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/light_switch{ + pixel_x = -27; + pixel_y = -8 }, -/area/station/medical/surgery) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/patient_c) "aul" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/auxsolarstarboard) @@ -11941,22 +11926,7 @@ }, /area/station/civilian/kitchen) "aun" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/sign/chinese{ - pixel_y = -32 - }, -/turf/simulated/floor{ - dir = 8; - icon_state = "green" - }, +/turf/simulated/floor/wood, /area/station/civilian/garden) "auo" = ( /obj/structure/window/reinforced{ @@ -11996,15 +11966,13 @@ }, /area/station/rnd/xenobiology) "aut" = ( -/obj/machinery/door/airlock/glass{ - name = "Garden" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor{ - dir = 4; - icon_state = "greencorner" +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 }, -/area/station/civilian/garden) +/turf/simulated/floor/plating, +/area/station/civilian/library) "auu" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plating, @@ -12100,14 +12068,42 @@ }, /area/station/rnd/xenobiology) "auG" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 +/obj/structure/table, +/obj/item/weapon/storage/visuals/surgery/full, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 4 + }, +/obj/item/weapon/razor{ + pixel_x = -4 + }, +/obj/machinery/vending/wallmed2{ + pixel_x = 26 + }, +/obj/machinery/light_switch{ + pixel_x = 9; + pixel_y = 27 + }, +/obj/machinery/windowtint{ + id = "op2"; + pixel_y = 27 + }, +/obj/machinery/holosign_switch{ + id = "op2"; + pixel_x = -9; + pixel_y = 27 + }, +/obj/machinery/door_control{ + id = "Medical_Surgery2"; + name = "Privacy Shutters"; + pixel_y = 38 }, /turf/simulated/floor{ - icon_state = "bluecorner" + dir = 8; + icon_state = "whitehall" }, -/area/station/hallway/primary/starboard) +/area/station/medical/surgery2) "auH" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; @@ -12234,28 +12230,23 @@ }, /area/station/hallway/primary/fore) "auU" = ( -/obj/structure/table/woodentable, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/painting_frame{ - pixel_y = -10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/item/painting_frame{ - pixel_y = -10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/item/stack/sheet/cloth{ - amount = 50; - pixel_y = -11 +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/item/device/camera/lomo, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "auV" = ( -/obj/structure/stool/bed/chair/comfy/black, -/turf/simulated/floor/carpet/black, -/area/station/civilian/garden) +/obj/item/stack/sheet/wood, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "auW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -12299,14 +12290,12 @@ }, /area/station/maintenance/dormitory) "ava" = ( -/obj/item/weapon/flora/pottedplant{ - icon_state = "plant-21" - }, -/obj/machinery/newscaster{ - pixel_y = 32 +/obj/item/weapon/flora/random, +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteblue" }, -/turf/simulated/floor/wood, -/area/station/civilian/garden) +/area/station/medical/sleeper) "avb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 @@ -12453,13 +12442,9 @@ }, /area/station/civilian/cold_room) "avs" = ( -/obj/structure/table/woodentable, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/turf/simulated/floor/carpet/black, -/area/station/civilian/garden) +/obj/random/scrap/sparse_weighted, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "avt" = ( /obj/structure/window/reinforced{ dir = 5 @@ -12520,13 +12505,13 @@ /turf/environment/space, /area/shuttle/officer/station) "avz" = ( -/obj/machinery/light/small{ - dir = 4 +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 }, -/turf/simulated/floor/wood{ - icon_state = "wood-broken6" +/turf/simulated/floor{ + icon_state = "whitegreencorner" }, -/area/station/civilian/garden) +/area/station/medical/sleeper) "avA" = ( /obj/machinery/door/window/northleft{ base_state = "right"; @@ -12877,13 +12862,16 @@ /turf/simulated/floor/plating, /area/station/maintenance/escape) "awe" = ( -/obj/machinery/vending/chinese, -/obj/machinery/alarm{ +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ dir = 1; - pixel_y = -22 + frequency = 1379; + id_tag = "toxin_test_pump"; + name = "Toxin Test Large Air Vent" }, -/turf/simulated/floor/wood, -/area/station/civilian/garden) +/turf/simulated/floor/plating{ + icon_state = "platebotc" + }, +/area/station/maintenance/medbay) "awf" = ( /turf/simulated/floor{ icon_state = "warnwhite" @@ -12904,11 +12892,15 @@ }, /area/station/civilian/holodeck/alphadeck) "awi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/station/civilian/library) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/weapon/cigbutt/cigarbutt, +/turf/simulated/floor{ + dir = 4; + icon_state = "yellow" + }, +/area/station/maintenance/medbay) "awj" = ( /obj/machinery/power/apc{ dir = 8; @@ -13081,17 +13073,12 @@ /turf/simulated/floor/plating, /area/station/civilian/fitness) "awA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/storage/emergency) +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/station/hallway/primary/starboard) "awB" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -13105,12 +13092,10 @@ /turf/simulated/floor/wood, /area/station/civilian/library) "awC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating{ - icon_state = "platingdmg1" +/obj/item/weapon/shard{ + icon_state = "small" }, +/turf/simulated/floor/plating, /area/station/maintenance/medbay) "awD" = ( /obj/machinery/light/small, @@ -13321,26 +13306,27 @@ }, /area/station/cargo/office) "axa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Room1"; + name = "Privacy Shutters"; + opacity = 0 }, -/area/station/medical/cmo) +/turf/simulated/floor/plating, +/area/station/medical/patient_a) "axb" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -13359,21 +13345,17 @@ }, /area/station/cargo/qm) "axd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Garden APC"; - pixel_x = -25 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable, -/turf/simulated/floor{ - dir = 8; - icon_state = "green" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/civilian/garden) +/obj/random/scrap/safe_even, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "axe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden, @@ -14165,24 +14147,26 @@ }, /area/station/rnd/xenobiology) "ayH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access = list(45) +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Chem"; + name = "Chemistry Shutters"; + opacity = 0 }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/station/medical/surgery2) +/area/station/medical/storage) "ayI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16431,13 +16415,30 @@ /turf/simulated/floor/plating, /area/station/maintenance/medbay) "aCW" = ( -/obj/structure/table, -/obj/item/clothing/accessory/stethoscope, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "Genetics"; + name = "Cloning Lab"; + req_access = list(5,9) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/genetics_cloning) "aCX" = ( /turf/simulated/floor{ dir = 8; @@ -16509,13 +16510,27 @@ /turf/simulated/floor/plating, /area/station/civilian/fitness) "aDe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 8; + icon_state = "whiteblue" }, -/area/station/medical/hallway) +/area/station/medical/genetics_cloning) "aDf" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/table/woodentable, @@ -16649,11 +16664,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/eva) "aDp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "yellow" + dir = 8; + icon_state = "cautioncorner" }, /area/station/hallway/primary/central) "aDq" = ( @@ -17121,14 +17134,14 @@ }, /area/station/security/main) "aEq" = ( -/obj/item/seeds/glowshroom, -/obj/item/seeds/cornseed, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plating{ - dir = 10; - icon_state = "warnplate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/station/maintenance/atmos) +/turf/simulated/floor{ + dir = 9; + icon_state = "warning" + }, +/area/station/medical/chemistry) "aEr" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper_bin, @@ -17274,16 +17287,25 @@ }, /area/station/ai_monitored/eva) "aEF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/camera{ + c_tag = "Genetics Cloning"; + network = list("SS13","Medical"); + dir = 9 }, +/obj/machinery/clonepod, /obj/structure/window/reinforced{ - dir = 4 + dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/hallway) +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 + }, +/turf/simulated/floor{ + icon_state = "dark" + }, +/area/station/medical/genetics_cloning) "aEG" = ( /turf/simulated/floor{ icon_state = "wooden-2" @@ -17471,7 +17493,7 @@ }, /turf/simulated/floor{ dir = 8; - icon_state = "cautioncorner" + icon_state = "bluecorner" }, /area/station/hallway/primary/central) "aEW" = ( @@ -17502,12 +17524,18 @@ /turf/simulated/floor/plating, /area/station/maintenance/chapel) "aEZ" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/structure/bookcase{ + name = "Forbidden Knowledge" }, -/area/station/maintenance/medbay) +/obj/random/misc/book, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 22 + }, +/turf/simulated/floor{ + icon_state = "cult" + }, +/area/station/civilian/library) "aFa" = ( /obj/structure/cable{ d1 = 4; @@ -17556,21 +17584,20 @@ }, /area/station/gateway) "aFe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps{ + opacity = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" }, /turf/simulated/floor{ - icon_state = "whiteblue" + dir = 1; + icon_state = "bot" }, -/area/station/medical/hallway) +/area/station/medical/storage) "aFf" = ( /obj/structure/flora/ausbushes/ppflowers{ pixel_x = 11 @@ -17811,28 +17838,23 @@ }, /area/station/hallway/secondary/entry) "aFA" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/closet/secure_closet/personal, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 +/turf/simulated/floor/wood{ + icon_state = "wood-broken6" }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/civilian/garden) "aFB" = ( /turf/simulated/floor, /area/station/hallway/secondary/arrival) "aFC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + req_access = list(5); + name = "Treatment Centre" }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/turf/simulated/floor{ + icon_state = "whitebluefull" }, -/obj/item/trash/popcorn, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/sleeper) "aFD" = ( /obj/item/weapon/coin/gold, /turf/simulated/floor/plating, @@ -17904,20 +17926,20 @@ }, /area/station/civilian/fitness) "aFN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/medical{ + name = "Therapist Office"; + req_access = list(5) + }, /turf/simulated/floor{ - icon_state = "whiteblue" + icon_state = "whitebluefull" }, -/area/station/medical/genetics_cloning) +/area/station/medical/therapist) "aFO" = ( /obj/structure/sink{ dir = 8; @@ -18025,30 +18047,19 @@ }, /area/station/ai_monitored/eva) "aFY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "yellowcorner" }, -/area/station/medical/hallway) +/area/station/maintenance/medbay) "aFZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteyellowcorner" + icon_state = "blue" }, -/area/station/medical/hallway) +/area/station/medical/reception) "aGa" = ( /obj/machinery/door/airlock/glass{ name = "Holodeck Control" @@ -18067,11 +18078,19 @@ }, /area/station/ai_monitored/eva) "aGc" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/cups{ - pixel_y = 4 +/obj/machinery/light/small{ + dir = 8 }, -/turf/simulated/floor/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = -4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/green, /area/station/civilian/library) "aGd" = ( /obj/structure/stool/bed/chair/metal{ @@ -18382,19 +18401,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/eva) "aGG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/machinery/vending/cigarette, +/turf/simulated/floor/wood, +/area/station/civilian/garden) "aGH" = ( /obj/structure/cable{ d1 = 2; @@ -18415,14 +18424,18 @@ }, /area/station/civilian/toilet) "aGI" = ( -/obj/machinery/camera{ - c_tag = "Medbay West"; - network = list("SS13","Medical") +/obj/structure/sign/mark{ + icon_state = "fdn"; + pixel_y = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/simulated/floor{ - icon_state = "white" + dir = 8; + icon_state = "whitebluecorner" }, -/area/station/medical/hallway) +/area/station/medical/reception_hall) "aGJ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -18646,18 +18659,18 @@ /turf/simulated/floor/plating, /area/station/maintenance/eva) "aHi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/power/apc{ + name = "Cryogenics APC"; + pixel_x = -24; + dir = 8 }, +/obj/structure/closet/secure_closet/medical1, +/obj/structure/cable, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + dir = 10; + icon_state = "warning" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "aHj" = ( /turf/simulated/floor{ dir = 8; @@ -18665,9 +18678,10 @@ }, /area/station/ai_monitored/eva) "aHk" = ( -/obj/item/seeds/grapeseed, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/turf/simulated/floor{ + icon_state = "yellow" + }, +/area/station/hallway/primary/central) "aHl" = ( /turf/simulated/wall, /area/station/hallway/primary/fore) @@ -18704,35 +18718,28 @@ /area/station/hallway/primary/fore) "aHp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "Genetics"; - name = "Cloning Lab"; - req_access = list(5,9) + d2 = 4; + icon_state = "1-4" }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "whitebluefull" + dir = 1; + icon_state = "whiteblue" }, -/area/station/medical/genetics_cloning) +/area/station/medical/therapist) "aHq" = ( -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/weapon/reagent_containers/spray/plantbgone, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plating{ - dir = 4; - icon_state = "warnplate" +/obj/machinery/camera{ + c_tag = "Medbay Pharmacy"; + network = list("SS13","Medical"); + dir = 4 }, -/area/station/maintenance/atmos) +/obj/machinery/smartfridge/chemistry, +/turf/simulated/floor, +/area/station/hallway/primary/central) "aHr" = ( /turf/simulated/floor{ dir = 8; @@ -18760,20 +18767,30 @@ /turf/simulated/floor/plating, /area/station/maintenance/chapel) "aHu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, /turf/simulated/floor{ - dir = 1; - icon_state = "whitebluecorner" + icon_state = "warning" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "aHv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "aHw" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -18877,12 +18894,21 @@ /turf/simulated/floor/plating, /area/station/maintenance/eva) "aHG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/cat/dusty, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" + }, +/area/station/medical/cmo) "aHH" = ( /obj/item/weapon/flora/random, /turf/simulated/floor/wood{ @@ -18985,10 +19011,26 @@ /turf/simulated/floor, /area/station/storage/primary) "aHR" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/four, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/maintenance/atmos) "aHS" = ( /turf/simulated/wall/r_wall, /area/station/rnd/brainstorm_center) @@ -19033,29 +19075,29 @@ /area/station/rnd/storage) "aHZ" = ( /obj/structure/closet, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/item/weapon/reagent_containers/dropper, -/obj/structure/grille{ - destroyed = 1 +/obj/item/weapon/storage/box/syringes, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 }, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "aIa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/genetics) +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/station/medical/cmo) "aIb" = ( /obj/structure/table, /obj/item/device/radio/intercom{ @@ -19091,17 +19133,20 @@ }, /area/station/storage/tools) "aId" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor{ - icon_state = "whiteblue" +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/station/medical/hallway) +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/cryo) "aIe" = ( /obj/structure/sign/warning/biohazard, /turf/simulated/wall/r_wall, @@ -19236,24 +19281,20 @@ }, /area/station/ai_monitored/eva) "aIq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/status_display{ - pixel_y = -32 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "darkblue" }, -/area/station/medical/hallway) +/area/station/medical/morgue) "aIr" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, @@ -19274,42 +19315,29 @@ /turf/simulated/floor/plating, /area/station/maintenance/escape) "aIt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor{ + icon_state = "white" }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/area/station/medical/surgeryobs) +"aIu" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 }, -/obj/machinery/firealarm{ - pixel_y = 24 +/obj/item/weapon/flora/deskleaf{ + pixel_x = -7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 }, /turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/hallway) -"aIu" = ( -/obj/item/weapon/hatchet, -/obj/item/weapon/minihoe, -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/wheatseed, -/turf/simulated/floor/plating{ - dir = 4; - icon_state = "warnplate" + dir = 10; + icon_state = "yellow" }, -/area/station/maintenance/atmos) +/area/station/hallway/primary/central) "aIv" = ( /turf/simulated/floor, /area/station/civilian/fitness) @@ -19358,29 +19386,22 @@ /turf/simulated/floor/plating, /area/station/maintenance/chapel) "aIA" = ( -/obj/item/weapon/storage/bag/plants, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/station/maintenance/atmos) -"aIB" = ( -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 4 +/obj/machinery/chem_master, +/obj/machinery/light_switch{ + pixel_y = -28 }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 2 +/turf/simulated/floor{ + dir = 10; + icon_state = "warning" }, -/obj/item/weapon/storage/firstaid/regular, -/obj/structure/table/glass, +/area/station/medical/chemistry) +"aIB" = ( +/obj/structure/stool/bed/chair/metal/blue, /turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" + dir = 9; + icon_state = "warnwhite" }, -/area/station/medical/storage) +/area/station/medical/surgeryobs) "aIC" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -20144,13 +20165,17 @@ }, /area/station/maintenance/escape) "aJV" = ( -/obj/item/seeds/watermelonseed, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plating{ - dir = 4; - icon_state = "warnplate" +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/station/maintenance/atmos) +/turf/simulated/floor{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "aJW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -20212,13 +20237,36 @@ }, /area/station/hallway/secondary/arrival) "aKa" = ( -/obj/item/seeds/berryseed, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plating{ +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/phoron{ + layer = 2.9 + }, +/obj/item/weapon/storage/pill_bottle/inaprovaline{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/machinery/alarm{ dir = 4; - icon_state = "warnplate" + pixel_x = -22 }, -/area/station/maintenance/atmos) +/obj/item/weapon/storage/pill_bottle/inaprovaline{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/weapon/storage/pill_bottle/dexalin, +/turf/simulated/floor{ + dir = 8; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "aKb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21090,33 +21138,9 @@ /turf/simulated/floor, /area/station/hallway/secondary/exit) "aLD" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Genetics Lab"; - sortType = "Genetics Lab" - }, -/turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/hallway) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/therapist) "aLE" = ( /obj/structure/stool/bed/chair/metal{ dir = 1 @@ -21513,10 +21537,13 @@ }, /area/station/hallway/primary/aft) "aMr" = ( +/obj/structure/stool/bed/chair/schair/wagon/bench{ + dir = 1 + }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whiteblue" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) "aMs" = ( /obj/machinery/computer/area_atmos{ dir = 4 @@ -21822,10 +21849,12 @@ }, /area/station/hallway/secondary/exit) "aMV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/reagent_dispensers/fueltank, +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing/yellow, /turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/maintenance/medbay) "aMW" = ( /obj/structure/rack, /obj/item/weapon/wirecutters, @@ -21868,25 +21897,26 @@ }, /area/station/storage/tools) "aNc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/table, +/obj/machinery/light/small{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/weapon/paper_bin{ + pixel_x = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/weapon/pen{ + layer = 3.1; + pixel_x = 3; + pixel_y = 5 }, -/turf/simulated/floor{ - dir = 1; - icon_state = "whitebluecorner" +/obj/machinery/camera{ + c_tag = "Therapist Office"; + dir = 8; + network = list("SS13","Medical"); + pixel_y = -22 }, -/area/station/medical/hallway) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/therapist) "aNd" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21899,13 +21929,60 @@ }, /area/station/security/prison) "aNe" = ( -/obj/item/seeds/ambrosiavulgarisseed, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plating{ - dir = 4; - icon_state = "warnplate" +/obj/structure/closet/secure_closet/chemical, +/obj/item/weapon/grenade/chem_grenade{ + pixel_x = 6; + pixel_y = 5 }, -/area/station/maintenance/atmos) +/obj/item/weapon/grenade/chem_grenade{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/grenade/chem_grenade{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/grenade/chem_grenade{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/turf/simulated/floor{ + dir = 10; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "aNf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22005,14 +22082,10 @@ }, /area/station/civilian/fitness) "aNq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/station/civilian/garden) +/obj/item/weapon/wrench, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "aNr" = ( /obj/structure/weightlifter, /turf/simulated/floor{ @@ -22749,75 +22822,42 @@ /area/station/civilian/hydroponics) "aOK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Medbay Mid-East"; - network = list("SS13","Medical") + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/warning/smoking{ + pixel_y = -32 }, /turf/simulated/floor{ - icon_state = "white" + dir = 6; + icon_state = "green" }, -/area/station/medical/hallway) +/area/station/civilian/garden) "aOL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/hallway) +/turf/simulated/floor/plating, +/area/station/medical/genetics) "aOM" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/light/small{ + dir = 8 }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "freezerfloor" }, -/area/station/medical/hallway) +/area/station/medical/medbreak) "aON" = ( /obj/machinery/firealarm{ pixel_y = 24 @@ -22829,17 +22869,10 @@ }, /area/station/civilian/chapel/office) "aOO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor/wood{ + icon_state = "wood-broken7" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/hallway) +/area/station/maintenance/medbay) "aOP" = ( /obj/effect/decal/cleanable/blood/oil, /obj/machinery/space_heater, @@ -23036,17 +23069,20 @@ }, /area/station/gateway) "aPj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/simulated/floor{ - icon_state = "whiteblue" +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/station/medical/hallway) +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/staff_hallway) "aPk" = ( /obj/structure/cable{ d1 = 4; @@ -23123,16 +23159,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whiteblue" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) "aPp" = ( /obj/structure/cable{ d1 = 4; @@ -23293,15 +23325,28 @@ }, /area/station/hallway/primary/central) "aPH" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/simulated/floor{ - icon_state = "bot" +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/gas/coloured, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/item/clothing/suit/space/rig/medical, +/obj/item/clothing/head/helmet/space/rig/medical, +/obj/item/device/sensor_device, +/obj/machinery/door/window/southright{ + dir = 4; + name = "Paramedic equipment"; + req_access = list(70) }, -/area/station/medical/hallway) +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/glasses/hud/health, +/obj/structure/window/reinforced, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor, +/area/station/medical/staff_hallway) "aPI" = ( /obj/item/weapon/legcuffs/beartrap, /obj/item/weapon/legcuffs/beartrap, @@ -23401,9 +23446,11 @@ }, /area/station/civilian/playroom) "aPT" = ( -/obj/machinery/computer/mech_bay_power_console, -/turf/simulated/floor/bluegrid, -/area/station/medical/hallway) +/turf/simulated/floor{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/staff_hallway) "aPU" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor{ @@ -23511,12 +23558,16 @@ /turf/simulated/floor/plating, /area/station/civilian/hydroponics) "aQd" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/machinery/disposal, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/disposalpipe/trunk, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 1; + icon_state = "whitecorner" }, -/area/station/medical/cryo) +/area/station/medical/staff_hallway) "aQe" = ( /obj/structure/stool, /obj/machinery/light{ @@ -23566,9 +23617,14 @@ }, /area/station/civilian/playroom) "aQi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/seeds/glowshroom, +/turf/simulated/floor/plating{ + dir = 9; + icon_state = "warnplate" + }, +/area/station/maintenance/medbay) "aQj" = ( /obj/decal/boxingrope{ density = 0; @@ -24001,19 +24057,13 @@ }, /area/station/storage/primary) "aQW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/mirror{ - pixel_x = 32 +/obj/structure/sign/mark{ + icon_state = "fdn"; + pixel_y = 22 }, /turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" + dir = 9; + icon_state = "whiteblue" }, /area/station/medical/hallway) "aQX" = ( @@ -24059,18 +24109,9 @@ /turf/simulated/floor, /area/station/civilian/playroom) "aRc" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/machinery/computer/guestpass{ - dir = 1; - pixel_y = 28 - }, -/turf/simulated/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/station/medical/sleeper) +/obj/machinery/chem_dispenser/old, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "aRd" = ( /obj/structure/table/woodentable/poker, /obj/item/weapon/storage/fancy/crayons, @@ -24288,14 +24329,23 @@ /turf/simulated/floor/plating, /area/station/maintenance/chapel) "aRy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = 25 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor{ - icon_state = "whitehall" + dir = 4; + icon_state = "whiteblue" }, /area/station/medical/hallway) "aRz" = ( @@ -24311,17 +24361,10 @@ /turf/simulated/floor/plating, /area/station/maintenance/chapel) "aRA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor{ + icon_state = "whitebot" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/sleeper) +/area/station/medical/hallway) "aRB" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -24346,28 +24389,24 @@ /turf/simulated/floor/plating, /area/station/maintenance/chapel) "aRC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/stool/bed, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/therapist) +"aRD" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/light/small{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 }, /turf/simulated/floor{ - dir = 4; - icon_state = "whitebluecorner" + icon_state = "whiteyellow" }, -/area/station/medical/hallway) -"aRD" = ( -/obj/structure/sign/departments/medbay/lifestar, -/turf/simulated/wall, /area/station/medical/storage) "aRE" = ( /obj/structure/extinguisher_cabinet{ @@ -24424,18 +24463,25 @@ }, /area/station/civilian/chapel/crematorium) "aRI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor{ dir = 8; - icon_state = "warning" + icon_state = "whiteblue" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "aRJ" = ( /obj/structure/grille{ destroyed = 1 @@ -24499,14 +24545,28 @@ }, /area/station/security/prison) "aRQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + id = "op1"; + dir = 1 }, -/turf/simulated/floor{ - dir = 4; - icon_state = "warning" +/obj/structure/window/reinforced/polarized{ + id = "op1" }, -/area/station/medical/cryo) +/obj/structure/window/reinforced/polarized{ + id = "op1"; + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Surgery1"; + name = "Surgery Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/surgery) "aRR" = ( /turf/simulated/floor{ dir = 8; @@ -24514,20 +24574,16 @@ }, /area/station/hallway/primary/central) "aRS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor{ + dir = 4; + icon_state = "whiteblue" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "aRT" = ( /obj/structure/altar_of_gods, /turf/simulated/floor{ @@ -24642,20 +24698,26 @@ }, /area/station/storage/primary) "aSh" = ( -/obj/machinery/camera{ - c_tag = "Secondary Storage"; - dir = 8; - network = list("SS13","Medical") +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/structure/closet/l3closet/general, -/obj/machinery/alarm{ - pixel_y = 23 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/simulated/floor{ dir = 8; - icon_state = "escapecorner" + icon_state = "barber" }, -/area/station/medical/hallway) +/area/station/medical/cmo) "aSi" = ( /obj/effect/landmark/start/assistant/test_subject, /turf/simulated/floor{ @@ -24664,41 +24726,62 @@ }, /area/station/storage/primary) "aSj" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/machinery/atmospherics/components/binary/pump/on, +/obj/machinery/light/small{ + dir = 8 }, -/area/station/medical/medbreak) +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "aSk" = ( -/obj/machinery/light, -/turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" +/obj/machinery/door_control{ + id = "Medical_Therapist"; + name = "Privacy Shutters"; + pixel_x = 25; + pixel_y = -10 }, -/area/station/medical/hallway) -"aSl" = ( -/obj/item/weapon/flora/pottedplant{ - icon_state = "plant-21" +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 11 }, -/turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" +/obj/effect/landmark/start/medical_doctor, +/obj/structure/stool/bed/chair/office/light{ + dir = 1 }, -/area/station/medical/hallway) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/therapist) +"aSl" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ashtray/glass, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "aSm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + req_access = list(5); + name = "Medbay Staff Hall" }, /turf/simulated/floor{ - icon_state = "whitebluecorner" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/sleeper) "aSn" = ( /turf/simulated/floor{ dir = 5; @@ -24706,31 +24789,21 @@ }, /area/station/gateway) "aSo" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/ghost, +/obj/item/weapon/storage/fancy/cigarettes{ + pixel_x = 6; + pixel_y = 9 }, -/obj/structure/table/woodentable, -/obj/random/misc/book, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/turf/simulated/floor, +/area/station/maintenance/medbay) "aSp" = ( /turf/simulated/floor/carpet, /area/station/civilian/library) "aSq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood{ - icon_state = "wood-broken3" - }, -/area/station/civilian/library) +/turf/simulated/floor, +/area/station/maintenance/medbay) "aSr" = ( /obj/structure/table, /obj/machinery/alarm{ @@ -24751,16 +24824,16 @@ }, /area/station/storage/primary) "aSs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -32 +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 }, -/obj/structure/stool/bed/chair/comfy/black{ - dir = 8 +/turf/simulated/floor{ + dir = 6; + icon_state = "warnwhite" }, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/area/station/medical/surgeryobs) "aSt" = ( /obj/structure/table, /obj/machinery/light_switch{ @@ -24982,18 +25055,10 @@ /turf/simulated/wall, /area/station/civilian/locker) "aSQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay Hallway APC"; - pixel_x = 26 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, +/obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "whiteblue" }, /area/station/medical/hallway) "aSR" = ( @@ -25211,15 +25276,23 @@ }, /area/station/bridge) "aTh" = ( -/obj/machinery/status_display{ - pixel_y = 32 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/bodyscanner, -/turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/station/medical/sleeper) +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/warning/smoking{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/station/civilian/garden) "aTi" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -25316,25 +25389,11 @@ /turf/simulated/floor/wood, /area/station/civilian/bar) "aTq" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Patients" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Patients" - }, -/obj/structure/window/reinforced/polarized{ - id = "Patients" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Patients" +/mob/living/carbon/monkey/unathi{ + name = "Eric" }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/patients_rooms) +/turf/simulated/floor/grass, +/area/station/medical/genetics) "aTr" = ( /obj/machinery/light{ dir = 4 @@ -25361,16 +25420,12 @@ }, /area/station/civilian/chapel) "aTt" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ +/obj/machinery/light/small{ dir = 1 }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, +/turf/simulated/floor{ + icon_state = "freezerfloor" + }, /area/station/medical/medbreak) "aTu" = ( /obj/machinery/constructable_frame/machine_frame, @@ -25564,14 +25619,14 @@ }, /area/station/storage/primary) "aTL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" + icon_state = "freezerfloor" }, -/area/station/medical/hallway) +/area/station/medical/medbreak) "aTM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25723,12 +25778,13 @@ /turf/simulated/floor, /area/station/hallway/primary/starboard) "aUa" = ( -/obj/machinery/vending/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "aUb" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/lavendergrass, @@ -25864,15 +25920,15 @@ }, /area/station/rnd/hor) "aUp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/door/firedoor, +/obj/structure/sign/warning/smoking{ + pixel_y = 32 }, /turf/simulated/floor{ - icon_state = "white" + dir = 8; + icon_state = "Stairs2_wide" }, -/area/station/medical/sleeper) +/area/station/maintenance/atmos) "aUq" = ( /obj/machinery/computer/mecha, /turf/simulated/floor{ @@ -26148,18 +26204,11 @@ }, /area/station/security/checkpoint) "aUQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + dir = 3; + icon_state = "whitegreen" }, -/area/station/medical/storage) +/area/station/medical/virology) "aUR" = ( /obj/machinery/door/poddoor/shutters{ id = "Gateway_shutters"; @@ -26173,65 +26222,51 @@ }, /area/station/gateway) "aUS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = -28 }, -/obj/machinery/door/poddoor/shutters{ - density = 0; - icon_state = "shutter0"; - id = "Medical_Room1"; - name = "Privacy Shutters"; - opacity = 0 +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 }, -/turf/simulated/floor/plating, -/area/station/medical/patient_a) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/therapist) "aUT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable{ d1 = 1; d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor, /area/station/hallway/primary/starboard) "aUU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = ""; - name = "Break Room"; - req_access = list(5) +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + dir = 4; + icon_state = "green" }, -/area/station/medical/medbreak) +/area/station/medical/infectious_disease_ward) "aUV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -26245,35 +26280,21 @@ }, /area/station/hallway/secondary/exit) "aUW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/station/hallway/primary/starboard) -"aUX" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "toxin_test_airlock"; - name = "exterior access button"; - pixel_x = -20; - pixel_y = -20; - req_one_access = list(13,45,1) - }, +/obj/structure/grille, +/obj/item/stack/rods, /turf/simulated/floor/plating, /area/station/maintenance/medbay) +"aUX" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/turf/simulated/floor/carpet/black, +/area/station/civilian/garden) "aUY" = ( /obj/structure/stool/bed/chair/wood/wings{ dir = 4 @@ -26314,31 +26335,28 @@ }, /area/station/construction/assembly_line) "aVd" = ( -/obj/structure/table/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/newscaster{ - pixel_y = -30 +/obj/machinery/light/small, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/item/device/sensor_device, -/obj/item/clothing/glasses/sunglasses/hud/med, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/area/station/medical/cmo) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/patient_a) "aVe" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 1 +/obj/machinery/door/airlock/medical/glass{ + name = "Medical Supplies"; + req_access = list(72) }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "whitebluefull" }, -/area/station/medical/cryo) +/area/station/medical/storage) "aVf" = ( /obj/structure/sink{ dir = 8; @@ -26358,27 +26376,53 @@ }, /area/station/civilian/hydroponics) "aVi" = ( -/obj/machinery/sleeper{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, /turf/simulated/floor{ - icon_state = "whitebluefull" + icon_state = "white" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "aVj" = ( -/obj/structure/bookcase{ - name = "bookcase (Fiction)" +/obj/machinery/door/morgue{ + dir = 4; + name = "Librarian"; + req_access = list(37) + }, +/turf/simulated/floor{ + icon_state = "cult" }, -/turf/simulated/floor/wood, /area/station/civilian/library) "aVk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/carpet, -/area/station/civilian/library) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "aVl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -26606,15 +26650,17 @@ }, /area/station/engineering/chiefs_office) "aVI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/simulated/floor{ - dir = 10; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "aVJ" = ( /obj/machinery/door/airlock/external, /obj/machinery/door/firedoor, @@ -27567,23 +27613,26 @@ }, /area/station/rnd/scibreak) "aXk" = ( -/obj/machinery/disposal, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = -28 +/obj/machinery/door/airlock/virology{ + name = "Patient Room One" }, -/obj/machinery/light_switch{ - pixel_x = -27 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor{ - dir = 8; - icon_state = "barber" + dir = 4; + icon_state = "whitegreenfull" }, -/area/station/medical/cmo) +/area/station/medical/patient_a) "aXl" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -27748,12 +27797,22 @@ /turf/environment/space, /area/station/rnd/mixing) "aXy" = ( -/obj/item/weapon/flora/random, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor{ dir = 8; - icon_state = "barber" + icon_state = "whitegreen" }, -/area/station/medical/cmo) +/area/station/medical/patient_a) "aXz" = ( /obj/machinery/door_control{ id = "qm_warehouse"; @@ -27890,9 +27949,6 @@ /area/station/civilian/garden) "aXN" = ( /obj/item/weapon/flora/random, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, /turf/simulated/floor/wood, /area/station/civilian/library) "aXO" = ( @@ -27912,11 +27968,16 @@ }, /area/station/hallway/secondary/mine_sci_shuttle) "aXP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood{ - icon_state = "wood-broken7" +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 }, -/area/station/civilian/library) +/obj/item/weapon/flora/pottedplant/largebush, +/turf/simulated/floor{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/staff_hallway) "aXQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -28208,11 +28269,11 @@ }, /area/station/hallway/secondary/exit) "aYp" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 }, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/storage/emergency3) "aYq" = ( /obj/machinery/alarm{ pixel_y = 28 @@ -28313,14 +28374,11 @@ /turf/simulated/floor/grass, /area/station/civilian/hydroponics) "aYz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, +/obj/item/stack/rods, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "aYA" = ( @@ -28333,18 +28391,28 @@ /turf/simulated/floor/plating, /area/station/hallway/secondary/exit) "aYB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /obj/structure/cable{ - d1 = 1; + d1 = 2; d2 = 4; - icon_state = "1-4" + icon_state = "2-4" }, -/turf/simulated/floor/plating{ - icon_state = "platingdmg1" +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/area/station/maintenance/medbay) +/turf/simulated/floor, +/area/station/medical/cryo) "aYC" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/landmark/start/botanist, @@ -28734,18 +28802,20 @@ }, /area/station/bridge) "aZk" = ( -/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Reception"; + req_access = list(5) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ - dir = 8; - icon_state = "greencorner" + icon_state = "whitebluefull" }, -/area/station/civilian/garden) +/area/station/medical/reception) "aZl" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper_bin, @@ -28804,11 +28874,25 @@ }, /area/station/rnd/scibreak) "aZp" = ( -/obj/structure/morgue, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor{ - icon_state = "dark" + dir = 4; + icon_state = "whiteyellow" }, -/area/station/medical/morgue) +/area/station/medical/infectious_disease_ward) "aZq" = ( /obj/machinery/camera{ c_tag = "Containment Cell 1"; @@ -29596,13 +29680,8 @@ }, /area/station/gateway) "baG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/assembly/mousetrap/armed, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "baH" = ( @@ -29874,41 +29953,14 @@ }, /area/station/tcommsat/computer) "bbi" = ( -/obj/item/stack/sheet/mineral/phoron{ - layer = 2.9 - }, -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline, -/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/pill_bottle/inaprovaline{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/weapon/storage/pill_bottle/inaprovaline{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/structure/table/glass, -/obj/machinery/door_control{ - desc = "A remote control-switch for a shutters."; - id = "Chem"; - name = "Chemistry Shutters Control"; - pixel_x = -5; - pixel_y = 27; - req_access = list(33) +/obj/structure/stool/bed/chair/schair/wagon/bench{ + icon_state = "bench_2" }, /turf/simulated/floor{ dir = 1; - icon_state = "whiteyellow" + icon_state = "whiteblue" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "bbj" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass, @@ -30130,12 +30182,19 @@ }, /area/station/hallway/secondary/entry) "bbE" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "whiteyellow" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bbF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -30579,19 +30638,24 @@ }, /area/station/rnd/hallway) "bcs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/sink{ - pixel_y = 24 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /turf/simulated/floor{ - dir = 5; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) "bct" = ( /obj/machinery/door/firedoor, /turf/simulated/floor{ @@ -30599,20 +30663,13 @@ }, /area/station/rnd/hallway) "bcu" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/weapon/storage/box/rxglasses{ - pixel_x = -6 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/masks{ - pixel_x = 3; - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/simulated/floor{ - dir = 4; - icon_state = "whitehall" + icon_state = "whiteblue" }, /area/station/medical/hallway) "bcv" = ( @@ -30990,11 +31047,14 @@ }, /area/station/civilian/chapel/mass_driver) "bdh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/station/medical/psych) +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "bdi" = ( /obj/machinery/door/poddoor{ density = 0; @@ -31023,12 +31083,21 @@ }, /area/station/hallway/primary/port) "bdk" = ( -/obj/structure/stool/bed/chair/comfy/brown, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/under/patient_gown, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/wood, -/area/station/medical/psych) +/obj/machinery/door_control{ + id = "Medical_Room2"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/patient_b) "bdl" = ( /obj/machinery/ai_status_display{ pixel_y = 32 @@ -31125,17 +31194,10 @@ }, /area/station/civilian/garden) "bdx" = ( -/obj/structure/table/woodentable, -/obj/item/device/camera_film{ - pixel_x = -11; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/weapon/folder{ - pixel_x = 10; - pixel_y = 2 +/obj/structure/stool/bed/chair/office/dark{ + dir = 4 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/carpet/green, /area/station/civilian/library) "bdy" = ( /obj/machinery/firealarm{ @@ -31288,7 +31350,16 @@ /turf/simulated/floor/wood, /area/station/bridge/meeting_room) "bdJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ + dir = 1; icon_state = "whiteblue" }, /area/station/medical/sleeper) @@ -31741,28 +31812,14 @@ }, /area/station/hallway/primary/starboard) "bew" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/structure/closet/crate, +/obj/random/cloth/gloves, +/obj/item/device/guitar, +/obj/item/weapon/coin/iron{ + pixel_x = 5; + pixel_y = -10 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/wood, /area/station/maintenance/medbay) "bex" = ( /obj/machinery/firealarm{ @@ -31997,16 +32054,16 @@ /turf/simulated/floor/wood, /area/station/bridge/captain_quarters) "beR" = ( -/obj/structure/table, -/obj/item/weapon/autopsy_scanner{ - pixel_x = 1; - pixel_y = 1 +/obj/structure/filingcabinet/chestdrawer, +/obj/item/weapon/paper_bin{ + pixel_y = 9; + pixel_x = 2 }, -/obj/item/weapon/scalpel, /turf/simulated/floor{ - icon_state = "white" + dir = 8; + icon_state = "barber" }, -/area/station/medical/morgue) +/area/station/medical/cmo) "beS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -32098,18 +32155,17 @@ }, /area/station/hallway/secondary/exit) "bfa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyerIn"; - name = "Medbay"; - req_access = list(5) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/area/station/medical/reception) +/obj/item/device/beacon/medical, +/turf/simulated/floor, +/area/station/medical/cryo) "bfb" = ( /obj/structure/table, /turf/simulated/floor, @@ -32144,29 +32200,35 @@ name = "Central Access" }, /turf/simulated/floor{ - icon_state = "neutralcorner" + icon_state = "bluecorner" }, /area/station/hallway/primary/starboard) "bff" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access = list(5,33) }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Chem"; + name = "Chemistry Shutters"; + opacity = 0 }, /turf/simulated/floor{ - icon_state = "warnwhite" + dir = 4; + icon_state = "whiteyellowfull" }, -/area/station/medical/virology) +/area/station/medical/chemistry) "bfg" = ( /obj/structure/closet/wardrobe/white, /obj/structure/window/reinforced{ @@ -32207,38 +32269,11 @@ }, /area/station/civilian/garden) "bfk" = ( -/obj/structure/sign/warning/detailed{ - pixel_x = 32 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = -32; - req_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, /turf/simulated/floor{ dir = 6; icon_state = "warnwhite" }, -/area/station/medical/virology) +/area/station/medical/surgeryobs) "bfl" = ( /obj/machinery/alarm{ pixel_y = 24 @@ -32521,8 +32556,14 @@ /turf/simulated/floor/plating/airless, /area/space) "bfL" = ( -/turf/simulated/floor, -/area/station/medical/surgeryobs) +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/infectious_disease_ward) "bfM" = ( /obj/effect/decal/cleanable/blood/oil, /turf/simulated/floor/plating, @@ -32580,16 +32621,40 @@ }, /area/station/rnd/hallway) "bfQ" = ( +/obj/structure/rack, +/obj/item/roller{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/roller{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/roller{ + pixel_x = 7 + }, +/obj/item/roller{ + pixel_x = -7 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 10 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor{ - dir = 1; - icon_state = "whitehall" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bfR" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/clothing/under/patient_gown, -/turf/simulated/floor, -/area/station/medical/surgery2) +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/simulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/station/medical/storage) "bfS" = ( /obj/structure/table/woodentable, /obj/item/weapon/book/manual/wiki/security_space_law, @@ -32623,39 +32688,74 @@ }, /area/station/medical/chemistry) "bfW" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Hospital"; + network = list("SS13","Medical") + }, /turf/simulated/floor{ - dir = 4; - icon_state = "blue" + dir = 8; + icon_state = "whitehall" }, -/area/station/medical/surgeryobs) +/area/station/medical/infectious_disease_ward) "bfX" = ( -/obj/structure/morgue{ +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access = list(5,6) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 }, /turf/simulated/floor{ - icon_state = "dark" + dir = 4; + icon_state = "whiteyellowfull" }, /area/station/medical/morgue) "bfY" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access = list(45) + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 }, -/obj/item/weapon/flora/random, /turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" + dir = 4; + icon_state = "whiteyellowfull" }, -/area/station/medical/hallway) +/area/station/medical/surgery) "bfZ" = ( /obj/machinery/door/firedoor, /turf/simulated/floor{ @@ -32663,20 +32763,11 @@ }, /area/station/hallway/secondary/entry) "bga" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor{ - icon_state = "white" +/obj/item/weapon/flora/pottedplant{ + icon_state = "plant-21" }, -/area/station/medical/hallway) +/turf/simulated/floor/wood, +/area/station/civilian/garden) "bgb" = ( /obj/machinery/door/firedoor, /turf/simulated/floor{ @@ -32684,42 +32775,36 @@ }, /area/station/hallway/primary/port) "bgc" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/dryer{ - dir = 4; - pixel_x = -6 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor{ - icon_state = "freezerfloor" +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/medbreak) +/turf/simulated/floor/plating, +/area/station/civilian/garden) "bgd" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/simulated/floor{ - icon_state = "freezerfloor" +/obj/structure/grille{ + destroyed = 1 }, -/area/station/medical/medbreak) +/obj/random/meds/chemical_bottle, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bge" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced{ +/obj/machinery/optable, +/obj/machinery/light/small{ dir = 8 }, -/mob/living/carbon/monkey/unathi{ - name = "Eric" +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 }, -/turf/simulated/floor/grass, -/area/station/medical/genetics) +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/morgue) "bgf" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -32733,28 +32818,34 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal) "bgg" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/item/weapon/reagent_containers/glass/beaker/LSD, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"bgh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor{ - icon_state = "freezerfloor" +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = 28 }, -/area/station/medical/medbreak) -"bgh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Virology Lab"; + sortType = "Virology Lab" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /turf/simulated/floor{ - icon_state = "freezerfloor" + dir = 8; + icon_state = "whiteyellow" }, -/area/station/medical/medbreak) +/area/station/medical/infectious_disease_ward) "bgi" = ( /obj/structure/cable{ d1 = 2; @@ -32780,25 +32871,13 @@ /turf/environment/space, /area/shuttle/specops/station) "bgk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/grille{ - destroyed = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/potatoseed, +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplate" }, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/maintenance/medbay) "bgl" = ( /obj/structure/closet/l3closet/general, /obj/structure/sign/warning/biohazard{ @@ -32833,30 +32912,27 @@ }, /area/station/rnd/hallway) "bgn" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "op1" - }, -/obj/structure/window/reinforced/polarized{ - id = "op1" +/obj/machinery/cryopod/right, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - icon_state = "shutter0"; - id = "Medical_Surgery1"; - name = "Surgery Shutters"; - opacity = 0 +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 }, -/turf/simulated/floor/plating, -/area/station/medical/surgery) +/turf/simulated/floor/carpet/green, +/area/station/medical/infectious_disease_ward) "bgo" = ( -/obj/structure/stool/bed/chair, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/area/station/maintenance/medbay) +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" + }, +/area/station/medical/cmo) "bgp" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -32866,15 +32942,12 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal) "bgq" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor{ - dir = 8; - icon_state = "vault" +/obj/machinery/light{ + dir = 1 }, -/area/station/medical/morgue) +/obj/item/weapon/flora/random, +/turf/simulated/floor/wood, +/area/station/civilian/library) "bgr" = ( /obj/machinery/firealarm{ dir = 1; @@ -32885,26 +32958,33 @@ }, /area/station/hallway/primary/port) "bgs" = ( -/obj/machinery/shower{ +/obj/structure/grille, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor{ - icon_state = "freezerfloor" +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/medbreak) +/turf/simulated/floor/plating, +/area/station/medical/sleeper) "bgt" = ( -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/kitchenspike, +/obj/item/organ/external/r_arm, +/obj/item/organ/external/l_leg, +/obj/item/weapon/reagent_containers/food/snacks/meat/human{ + name = "Edvard Right Leg Meat" }, -/obj/machinery/light/small{ - dir = 4 +/obj/item/weapon/reagent_containers/food/snacks/meat/human{ + name = "Victor Body Meat" }, -/obj/machinery/computer/med_data, -/turf/simulated/floor{ - icon_state = "white" +/obj/item/weapon/reagent_containers/food/snacks/meat/human{ + name = "Josh Body Meat" }, -/area/station/medical/morgue) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bgu" = ( /obj/structure/cable{ d1 = 1; @@ -32932,16 +33012,13 @@ }, /area/station/hallway/primary/central) "bgw" = ( -/obj/machinery/power/apc{ - name = "Operating 2 APC"; - pixel_y = -25 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/cable, /turf/simulated/floor{ - dir = 1; - icon_state = "whitehall" + icon_state = "white" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bgx" = ( /obj/machinery/status_display{ layer = 4; @@ -32986,8 +33063,7 @@ /turf/simulated/floor/plating, /area/station/bridge/meeting_room) "bgB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/trash/liquidfood, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "bgC" = ( @@ -33242,21 +33318,37 @@ }, /area/station/hallway/primary/central) "bha" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/grille, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, /area/station/medical/storage) "bhb" = ( -/obj/machinery/optable, -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/area/station/medical/morgue) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/atmos) "bhc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33324,24 +33416,30 @@ }, /area/station/hallway/secondary/entry) "bhk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating{ - icon_state = "platingdmg1" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/area/station/maintenance/medbay) -"bhl" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/structure/dryer{ - pixel_y = 24 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"bhl" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 24 }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/drain{ + drainage = 2 + }, /turf/simulated/floor{ icon_state = "freezerfloor2" }, @@ -33351,15 +33449,11 @@ }, /area/station/medical/virology) "bhm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor{ + dir = 8; + icon_state = "whiteblue" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/staff_hallway) "bhn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -33370,10 +33464,18 @@ }, /area/station/medical/virology) "bho" = ( -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/mob/living/simple_animal/mouse/gray, +/obj/structure/stool/bed, +/obj/effect/decal/cleanable/dirt, +/obj/item/candle{ + pixel_x = 9; + pixel_y = 15 }, -/area/station/storage/emergency) +/obj/item/device/harmonica, +/turf/simulated/floor/wood{ + icon_state = "wood-broken3" + }, +/area/station/maintenance/medbay) "bhp" = ( /obj/structure/cable{ d1 = 1; @@ -33439,12 +33541,24 @@ }, /area/station/hallway/primary/central) "bhw" = ( -/obj/item/weapon/flora/random, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access = list(72) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 + }, /turf/simulated/floor{ - dir = 10; - icon_state = "green" + dir = 4; + icon_state = "whiteyellowfull" }, -/area/station/civilian/garden) +/area/station/medical/storage) "bhx" = ( /obj/item/weapon/storage/fancy/donut_box, /obj/structure/table/woodentable, @@ -33462,15 +33576,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/science) "bhA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/mob/living/simple_animal/mouse/brown, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "bhB" = ( @@ -33496,22 +33602,14 @@ }, /area/station/rnd/hallway) "bhD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_one_access = list(12,37) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/station/civilian/library) +/area/station/maintenance/medbay) "bhE" = ( /obj/machinery/flasher{ id = "AI"; @@ -33589,16 +33687,8 @@ /turf/simulated/floor/carpet/blue2, /area/station/bridge/captain_quarters) "bhM" = ( -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = 21 - }, -/turf/simulated/floor{ - dir = 9; - icon_state = "blue" - }, -/area/station/medical/surgeryobs) +/turf/simulated/wall, +/area/station/medical/infectious_disease_ward) "bhN" = ( /obj/item/device/radio/intercom{ dir = 0; @@ -33628,9 +33718,15 @@ }, /area/station/hallway/primary/central) "bhQ" = ( -/turf/simulated/floor{ - icon_state = "greencorner" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/turf/simulated/floor, /area/station/hallway/primary/starboard) "bhR" = ( /obj/structure/rack, @@ -33663,17 +33759,18 @@ }, /area/station/rnd/hallway) "bhU" = ( -/obj/machinery/shower{ - dir = 8 +/obj/structure/sign/warning/detailed{ + pixel_x = 32 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, /turf/simulated/floor{ icon_state = "freezerfloor2" }, /turf/simulated/floor{ - dir = 10; + dir = 8; icon_state = "warningline" }, /area/station/medical/virology) @@ -33739,13 +33836,19 @@ }, /area/station/maintenance/incinerator) "bia" = ( -/obj/machinery/door/window/southright{ - dir = 8; - name = "Shrubbery"; - req_access = list(9) +/obj/structure/table, +/obj/item/weapon/autopsy_scanner{ + pixel_x = -7; + pixel_y = 1 }, -/turf/simulated/floor/grass, -/area/station/medical/genetics) +/obj/item/weapon/scalpel{ + pixel_x = 13; + pixel_y = -3 + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/morgue) "bib" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -33882,14 +33985,10 @@ }, /area/station/bridge/nuke_storage) "bin" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor{ - dir = 1; - icon_state = "blue" +/mob/living/carbon/monkey{ + name = "Butters" }, +/turf/simulated/floor/grass, /area/station/medical/genetics) "bio" = ( /turf/simulated/wall, @@ -33931,93 +34030,75 @@ }, /area/station/hallway/secondary/entry) "biu" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/structure/closet/secure_closet/medical1, /turf/simulated/floor{ dir = 5; - icon_state = "vault" + icon_state = "green" }, -/area/station/medical/genetics) +/area/station/civilian/garden) "biv" = ( /obj/structure/table, /obj/item/weapon/storage/toolbox/mechanical, /turf/simulated/floor, /area/station/civilian/locker) "biw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = ""; - name = "Surgery"; - req_access = list(5) +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/curtain/medical, /turf/simulated/floor{ - icon_state = "white" + dir = 3; + icon_state = "whitegreen" }, -/area/station/medical/surgeryobs) +/area/station/medical/sleeper) "bix" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/floor{ - icon_state = "whitehall" +/obj/machinery/newscaster{ + pixel_x = -28; + pixel_y = 1 }, -/area/station/medical/surgery) +/obj/item/weapon/flora/pottedplant/crystal, +/turf/simulated/floor/carpet/green, +/area/station/medical/infectious_disease_ward) "biy" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/closet/secure_closet/chemical, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteyellow" + dir = 8; + icon_state = "green" }, -/area/station/medical/chemistry) +/area/station/civilian/garden) "biz" = ( /turf/simulated/floor{ icon_state = "yellowcorner" }, /area/station/hallway/primary/aft) "biA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) -"biB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, +/obj/machinery/light, /obj/structure/cable{ - d1 = 4; d2 = 8; - icon_state = "4-8" + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "Operation Observation Room APC"; + pixel_y = -26 }, /turf/simulated/floor{ - dir = 4; - icon_state = "blue" + icon_state = "whiteblue" }, +/area/station/medical/surgeryobs) +"biB" = ( +/turf/simulated/floor/grass, /area/station/medical/genetics) "biC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, +/obj/structure/flora/junglebush/large, +/turf/simulated/floor/grass, /area/station/medical/genetics) "biD" = ( /obj/structure/grille, @@ -34092,21 +34173,12 @@ /turf/simulated/floor/carpet/black, /area/station/security/iaa_office) "biM" = ( -/obj/structure/closet/wardrobe/genetics_white, -/obj/machinery/power/apc{ - dir = 4; - name = "Genetics APC"; - pixel_x = 26 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 4; + icon_state = "green" }, -/area/station/medical/genetics) +/area/station/civilian/garden) "biN" = ( /obj/machinery/door/airlock/research/glass{ name = "Robotics Lab"; @@ -34159,17 +34231,10 @@ }, /area/station/rnd/server) "biS" = ( -/obj/item/weapon/flora/random, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = 25 - }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "whiteredcorner" }, -/area/station/medical/reception) +/area/station/medical/reception_hall) "biT" = ( /obj/item/weapon/storage/box/lights/mixed, /obj/item/weapon/storage/box/lights/mixed, @@ -34220,12 +34285,24 @@ }, /area/station/rnd/hallway) "biY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Psychiatry_2"; + name = "Privacy Shutters"; + opacity = 0 }, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/psych) "biZ" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, @@ -34307,12 +34384,42 @@ /turf/simulated/wall, /area/station/medical/sleeper) "bjm" = ( -/obj/machinery/chem_master, +/obj/structure/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 5 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 10; + pixel_y = -3 + }, +/obj/item/stack/medical/ointment, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/weapon/storage/box/cups{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/machinery/power/apc{ + level = 4; + name = "Medbay Reception Hall APC"; + pixel_y = 25; + dir = 1 + }, +/obj/item/weapon/storage/pill_bottle/paracetamol{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28 + }, /turf/simulated/floor{ dir = 9; - icon_state = "warning" + icon_state = "whiteblue" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "bjn" = ( /obj/structure/window/reinforced/shuttle/mining{ icon_state = "5-6" @@ -34320,20 +34427,24 @@ /turf/environment/space, /area/shuttle/mining/station) "bjo" = ( -/obj/structure/stool/bed/chair/comfy/teal{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" +/obj/structure/grille{ + destroyed = 1 }, -/area/station/medical/reception) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bjp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor{ dir = 1; - icon_state = "red" + icon_state = "whitepurple" }, -/area/station/medical/reception) +/area/station/medical/genetics) "bjq" = ( /obj/structure/object_wall/mining{ icon_state = "5-7" @@ -34420,16 +34531,23 @@ /turf/simulated/floor, /area/station/cargo/office) "bjB" = ( -/obj/machinery/light, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor{ - dir = 10; - icon_state = "yellow" + dir = 4; + icon_state = "whiteyellowfull" }, -/area/station/hallway/primary/starboard) +/area/station/storage/emergency) "bjC" = ( /obj/structure/object_wall/mining{ icon_state = "5-8" @@ -34470,11 +34588,27 @@ /turf/simulated/floor/carpet/black, /area/station/security/iaa_office) "bjI" = ( -/obj/machinery/dna_scannernew, -/turf/simulated/floor{ - icon_state = "whiteblue" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/station/medical/genetics_cloning) +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Therapist"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/therapist) "bjJ" = ( /obj/item/trash/sosjerky, /obj/structure/table, @@ -34517,14 +34651,24 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bjO" = ( -/obj/machinery/door/airlock/medical/glass{ - req_access = list(5) +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, /obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Psychiatry_2"; + name = "Privacy Shutters"; + opacity = 0 }, -/area/station/medical/hallway) +/turf/simulated/floor/plating, +/area/station/medical/psych) "bjP" = ( /obj/machinery/status_display{ layer = 4; @@ -34668,14 +34812,18 @@ /turf/simulated/floor/plating, /area/station/bridge/captain_quarters) "bkd" = ( -/obj/machinery/door_control{ - id = "Medical_Surgery2"; - name = "Privacy Shutters"; - pixel_y = 25 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/body_scanconsole, -/turf/simulated/floor, -/area/station/medical/surgery2) +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/station/medical/sleeper) "bke" = ( /obj/structure/table/woodentable, /obj/machinery/recharger{ @@ -34800,15 +34948,18 @@ /turf/simulated/floor/plating, /area/station/engineering/chiefs_office) "bkq" = ( -/obj/structure/filingcabinet, -/obj/machinery/alarm{ - pixel_y = 23 +/obj/machinery/computer/scan_consolenew, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor{ - dir = 5; - icon_state = "red" + dir = 1; + icon_state = "whitepurplecorner" }, -/area/station/medical/reception) +/area/station/medical/genetics) "bkr" = ( /obj/structure/table/woodentable, /obj/item/weapon/book/manual/wiki/security_space_law, @@ -34829,14 +34980,11 @@ }, /area/station/cargo/storage) "bkt" = ( -/obj/structure/rack, -/obj/item/weapon/reagent_containers/spray/extinguisher{ - pixel_y = 6 - }, -/obj/item/weapon/reagent_containers/spray/extinguisher, -/obj/machinery/light/small, +/obj/structure/closet, +/obj/item/clothing/under/rank/mailman, +/obj/item/clothing/head/mailman, /turf/simulated/floor/plating, -/area/station/storage/emergency3) +/area/station/maintenance/medbay) "bku" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -34905,35 +35053,25 @@ }, /area/station/hallway/secondary/entry) "bkC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor{ + dir = 3; + icon_state = "whitegreen" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/surgeryobs) +/area/station/medical/sleeper) "bkD" = ( -/obj/item/weapon/reagent_containers/dropper/precision, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper{ - pixel_y = -4 +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/table/glass, -/obj/item/clothing/glasses/science{ - pixel_y = 1 +/obj/machinery/camera{ + c_tag = "Medbay Foyer North"; + network = list("SS13","Medical") }, /turf/simulated/floor{ dir = 1; - icon_state = "warning" + icon_state = "whiteblue" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "bkE" = ( /turf/simulated/wall/r_wall, /area/station/medical/chemistry) @@ -34955,38 +35093,31 @@ }, /area/station/rnd/xenobiology) "bkH" = ( -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = list(1) }, -/area/station/medical/reception) -"bkI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; + d1 = 4; d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Virology Lab"; - sortType = "Virology Lab" + icon_state = "4-8" }, /turf/simulated/floor{ - dir = 3; - icon_state = "whitegreen" + dir = 9; + icon_state = "redfull" }, -/area/station/maintenance/medbay) +/area/station/security/medbay_checkpoint) +"bkI" = ( +/obj/structure/lattice, +/turf/simulated/wall, +/area/station/maintenance/atmos) "bkJ" = ( /obj/machinery/light{ dir = 8 @@ -34998,15 +35129,9 @@ }, /area/station/cargo/office) "bkK" = ( -/obj/machinery/camera{ - c_tag = "Genetics Reception"; - dir = 1; - network = list("SS13","Research") - }, -/turf/simulated/floor{ - dir = 6; - icon_state = "blue" - }, +/obj/structure/flora/ausbushes/stalkybush, +/mob/living/carbon/monkey, +/turf/simulated/floor/grass, /area/station/medical/genetics) "bkL" = ( /obj/machinery/door/poddoor{ @@ -35109,17 +35234,9 @@ /turf/simulated/wall/r_wall, /area/station/bridge) "bkU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor{ - icon_state = "blue" - }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light/small, +/turf/simulated/floor/grass, /area/station/medical/genetics) "bkV" = ( /turf/simulated/wall, @@ -35128,14 +35245,21 @@ /turf/simulated/floor, /area/station/cargo/office) "bkX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/medical/genetics) +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/station/medical/cryo) "bkY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/maintenance/two, @@ -35180,11 +35304,18 @@ /turf/simulated/floor/plating, /area/station/bridge) "blb" = ( -/obj/machinery/computer/scan_consolenew, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/structure/stool/bed/psych, +/obj/item/weapon/bedsheet/psych, +/obj/machinery/light/small{ + dir = 8 }, -/area/station/medical/genetics) +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = -28 + }, +/turf/simulated/floor/carpet/green, +/area/station/medical/psych) "blc" = ( /obj/machinery/door/poddoor{ density = 0; @@ -35262,19 +35393,18 @@ }, /area/station/rnd/hallway) "blh" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/camera{ - c_tag = "Genetics Research"; - dir = 1; - network = list("SS13","Research") - }, -/obj/machinery/newscaster{ - pixel_y = -28 +/obj/machinery/door/airlock/medical{ + name = "Psychiatric Office"; + req_access = list(64) }, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, -/area/station/medical/genetics) +/turf/simulated/floor/wood, +/area/station/medical/psych) "bli" = ( /obj/structure/cable{ d1 = 2; @@ -35476,22 +35606,22 @@ }, /area/station/rnd/robotics) "blx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the department."; + dir = 8; + name = "Medical Monitor"; + network = list("Medical"); + pixel_y = 5 }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "whiteyellow" + dir = 4; + icon_state = "blue" }, -/area/station/medical/chemistry) +/area/station/medical/reception) "bly" = ( /obj/machinery/light/small, /turf/simulated/floor{ @@ -35895,93 +36025,56 @@ /turf/simulated/floor/plating, /area/station/bridge/captain_quarters) "bmf" = ( -/obj/structure/stool/bed/chair/office/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/landmark/start/chemist, /turf/simulated/floor{ - dir = 1; - icon_state = "bot" + icon_state = "whitebot" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "bmg" = ( -/obj/machinery/chem_dispenser, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor{ - dir = 8; - icon_state = "warning" + icon_state = "white" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "bmh" = ( -/obj/item/weapon/reagent_containers/blood/AMinus{ - pixel_x = -7; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/blood/APlus{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/blood/empty{ - pixel_x = 1; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/blood/empty{ - pixel_x = 1; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/blood/BMinus{ - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/blood/BPlus{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/blood/OMinus{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/weapon/reagent_containers/blood/OPlus{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/table/glass, -/obj/machinery/power/apc{ - dir = 1; - name = "Operation Observation Room APC"; - pixel_y = 26 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" +/obj/structure/closet/wardrobe/chemistry_white, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/glasses/science{ + pixel_y = 1 }, -/obj/machinery/camera{ - c_tag = "Surgery Observation"; - dir = 8; - network = list("SS13","Medical") +/obj/item/clothing/glasses/science{ + pixel_y = 1 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/item/weapon/airlock_painter, +/obj/item/weapon/packageWrap, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 }, +/obj/item/device/tagger/shop, /turf/simulated/floor{ - dir = 5; - icon_state = "blue" + icon_state = "whiteyellow" }, -/area/station/medical/surgeryobs) +/area/station/medical/chemistry) "bmi" = ( /obj/effect/spawner/lootdrop/maintenance/four, /obj/structure/rack, /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bmj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor{ - dir = 4; - icon_state = "warning" + icon_state = "whitedelivery" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "bmk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -36041,24 +36134,17 @@ }, /area/station/hallway/secondary/entry) "bmr" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access = list(5,33) +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/computer/crew{ + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ dir = 4; - icon_state = "whiteyellowfull" + icon_state = "blue" }, -/area/station/medical/chemistry) +/area/station/medical/reception) "bms" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics Pasture"; @@ -36073,25 +36159,27 @@ }, /area/station/civilian/kitchen) "bmt" = ( -/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/stool/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "whitepurple" }, -/area/station/medical/reception) +/area/station/medical/genetics) "bmv" = ( -/obj/machinery/camera{ - c_tag = "Medbay Security Checkpoint"; - dir = 8; - network = list("SS13","Medical","Security") - }, -/obj/machinery/computer/security{ - dir = 8 +/obj/machinery/hologram/holopad, +/obj/structure/stool/bed/chair/office/light{ + dir = 1 }, +/obj/effect/landmark/start/geneticist, /turf/simulated/floor{ - dir = 4; - icon_state = "red" + icon_state = "white" }, -/area/station/medical/reception) +/area/station/medical/genetics) "bmw" = ( /obj/structure/cable{ d1 = 4; @@ -36209,11 +36297,9 @@ /turf/simulated/floor, /area/station/rnd/chargebay) "bmG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/station/medical/chemistry) +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "bmH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -36250,17 +36336,25 @@ }, /area/station/maintenance/incinerator) "bmN" = ( -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Medbay Reception" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -8 + }, +/obj/item/weapon/pen{ + pixel_y = 10 + }, +/obj/item/weapon/bell{ + pixel_x = 4 }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/syringes, /turf/simulated/floor{ - dir = 6; - icon_state = "warning" + dir = 1; + icon_state = "blue" }, -/area/station/medical/chemistry) +/area/station/medical/reception) "bmO" = ( /obj/machinery/alarm{ dir = 1; @@ -36400,8 +36494,17 @@ }, /area/station/civilian/chapel/altar) "bnb" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor{ + icon_state = "warning" + }, /area/station/storage/emergency) "bnc" = ( /obj/structure/window/reinforced{ @@ -36505,19 +36608,29 @@ }, /area/station/maintenance/chapel) "bnm" = ( -/obj/item/weapon/flora/pottedplant{ - icon_state = "plant-22" +/obj/structure/stool/bed/chair/office/light{ + dir = 4 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/area/station/medical/hallway) -"bnn" = ( /turf/simulated/floor{ - icon_state = "whitehall" + icon_state = "white" }, -/area/station/medical/surgery) +/area/station/medical/genetics_cloning) +"bnn" = ( +/obj/structure/sign/chinese, +/turf/simulated/wall, +/area/station/civilian/garden) "bno" = ( /obj/structure/closet/crate, /obj/item/weapon/storage/belt/utility, @@ -36534,12 +36647,18 @@ /turf/simulated/floor, /area/station/cargo/storage) "bnq" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/simulated/floor{ - dir = 8; - icon_state = "blue" +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -8 }, -/area/station/medical/surgeryobs) +/obj/item/weapon/pen{ + pixel_y = 10 + }, +/obj/item/weapon/storage/box/cups{ + pixel_x = 7 + }, +/turf/simulated/floor/carpet/green, +/area/station/medical/infectious_disease_ward) "bnr" = ( /obj/structure/grille, /obj/structure/window/reinforced, @@ -36768,28 +36887,26 @@ /turf/simulated/floor/plating, /area/station/maintenance/bridge) "bnR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/secure_data{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, +/obj/structure/stool/bed/chair/office/light, /turf/simulated/floor{ - dir = 4; - icon_state = "red" + icon_state = "white" }, -/area/station/medical/reception) +/area/station/medical/genetics) "bnS" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, /obj/machinery/light{ - dir = 8 + dir = 4 }, /turf/simulated/floor{ - dir = 8; - icon_state = "blue" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/reception) +/area/station/medical/reception_hall) "bnT" = ( /obj/structure/closet/secure_closet/freezer/money, /turf/simulated/floor{ @@ -36850,43 +36967,34 @@ /turf/simulated/floor/wood, /area/station/bridge/captain_quarters) "bnZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/libraryscanner, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteyellow" + dir = 6; + icon_state = "blue" }, -/area/station/medical/hallway) +/area/station/medical/reception) "boa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/structure/stool/bed/chair/office/light, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor, +/area/station/medical/chemistry) "bob" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/status_display{ + layer = 4; + pixel_x = 32 }, -/turf/simulated/floor, -/area/station/medical/surgeryobs) +/obj/item/weapon/flora/random, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/infectious_disease_ward) "boc" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -36910,19 +37018,16 @@ }, /area/shuttle/mining/station) "bof" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/table, +/obj/item/weapon/reagent_containers/dropper{ + pixel_y = -4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/weapon/reagent_containers/dropper/precision, +/turf/simulated/floor{ + dir = 4; + icon_state = "warning" }, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/medical/chemistry) "bog" = ( /obj/structure/grille, /obj/structure/window/reinforced, @@ -36960,22 +37065,17 @@ /turf/simulated/floor, /area/station/hallway/secondary/exit) "boj" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + dir = 8 }, /turf/simulated/floor{ - icon_state = "whiteyellow" + icon_state = "white" }, -/area/station/medical/chemistry) +/area/station/medical/virology) "bok" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -36992,10 +37092,25 @@ /turf/simulated/floor/plating, /area/station/rnd/lab) "bol" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/clothing/under/patient_gown, -/turf/simulated/floor, -/area/station/medical/surgery) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/infectious_disease_ward) "bom" = ( /obj/machinery/conveyor{ dir = 1; @@ -37008,14 +37123,9 @@ }, /area/station/cargo/office) "bon" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/turf/simulated/floor{ - icon_state = "whitebluefull" - }, -/area/station/medical/genetics) +/obj/item/weapon/flora/random, +/turf/simulated/floor/carpet/green, +/area/station/medical/psych) "boo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37128,15 +37238,24 @@ }, /area/station/bridge/nuke_storage) "boy" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access = list(5,6) +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, /obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "dark" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/morgue) +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/station/medical/cmo) "boz" = ( /obj/structure/table/reinforced, /obj/machinery/flasher_button{ @@ -37262,17 +37381,12 @@ }, /area/station/rnd/robotics) "boJ" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, +/obj/machinery/life_assist/artificial_ventilation, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "whitehall" }, -/area/station/medical/hallway) +/area/station/medical/surgery) "boK" = ( /obj/structure/table, /turf/simulated/floor{ @@ -37559,69 +37673,49 @@ }, /area/station/rnd/telesci) "bpn" = ( +/obj/structure/grille, /obj/machinery/door/firedoor, -/obj/structure/curtain/medical, -/turf/simulated/floor{ - icon_state = "delivery" - }, -/area/station/medical/cryo) -"bpo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor{ - dir = 6; - icon_state = "warning" - }, -/area/station/medical/cryo) -"bpp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre 2"; - req_access = list(45) - }, -/obj/machinery/holosign/surgery{ - id = "op2" - }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/surgery2) -"bpq" = ( /obj/structure/window/reinforced/polarized{ - dir = 8; - id = "op2" + id = "op1"; + dir = 4 }, /obj/structure/window/reinforced/polarized{ - dir = 4; - id = "op2" + id = "op1" }, /obj/structure/window/reinforced/polarized{ - dir = 1; - id = "op2" + id = "op1"; + dir = 1 }, -/obj/structure/grille, -/obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ density = 0; icon_state = "shutter0"; - id = "Medical_Surgery2"; + id = "Medical_Surgery1"; name = "Surgery Shutters"; opacity = 0 }, -/obj/structure/window/reinforced/polarized{ - id = "op2" +/turf/simulated/floor/plating, +/area/station/medical/surgery) +"bpo" = ( +/obj/machinery/bodyscanner, +/turf/simulated/floor{ + icon_state = "whitehall" + }, +/area/station/medical/surgery) +"bpp" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/station/medical/infectious_disease_ward) +"bpq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/station/medical/surgery2) +/area/station/maintenance/medbay) "bpr" = ( /obj/machinery/camera{ c_tag = "Chapel Hall West"; @@ -37649,11 +37743,31 @@ /turf/simulated/floor, /area/station/hallway/primary/central) "bpu" = ( -/obj/structure/stool/bed/roller, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor{ - icon_state = "blue" + dir = 1; + icon_state = "whitehall" }, -/area/station/medical/surgeryobs) +/area/station/medical/infectious_disease_ward) "bpv" = ( /obj/structure/cable{ d1 = 1; @@ -37715,12 +37829,16 @@ /turf/simulated/floor/plating, /area/station/maintenance/bridge) "bpB" = ( -/obj/machinery/chem_master, +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/obj/structure/window/reinforced{ + dir = 1 + }, /turf/simulated/floor{ - dir = 10; - icon_state = "warning" + dir = 9; + icon_state = "blue" }, -/area/station/medical/chemistry) +/area/station/medical/reception) "bpC" = ( /obj/structure/cable{ d1 = 1; @@ -37734,28 +37852,11 @@ }, /area/station/hallway/primary/central) "bpD" = ( -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "op1" - }, -/obj/structure/window/reinforced/polarized{ - id = "op1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "op1" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - icon_state = "shutter0"; - id = "Medical_Surgery1"; - name = "Surgery Shutters"; - opacity = 0 +/turf/simulated/floor{ + dir = 9; + icon_state = "green" }, -/turf/simulated/floor/plating, -/area/station/medical/surgery) +/area/station/civilian/garden) "bpE" = ( /obj/structure/table, /obj/item/weapon/hand_tele, @@ -37840,69 +37941,45 @@ }, /area/station/civilian/chapel/mass_driver) "bpP" = ( -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "op2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "op2" - }, -/obj/structure/window/reinforced/polarized{ - id = "op2" +/obj/structure/stool/bed/chair/office/light{ + dir = 1 }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - icon_state = "shutter0"; - id = "Medical_Surgery2"; - name = "Surgery Shutters"; - opacity = 0 +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/power/apc{ + name = "Medbay Hospital APC"; + pixel_x = -26; + dir = 8 }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "op2" +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" }, -/turf/simulated/floor/plating, -/area/station/medical/surgery2) +/turf/simulated/floor/carpet/green, +/area/station/medical/infectious_disease_ward) "bpQ" = ( -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "op1" - }, -/obj/structure/window/reinforced/polarized{ - id = "op1" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "op1" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - icon_state = "shutter0"; - id = "Medical_Surgery1"; - name = "Surgery Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/station/medical/surgery) +/turf/simulated/floor/carpet/green, +/area/station/medical/infectious_disease_ward) "bpR" = ( /obj/random/scrap/safe_even, /turf/simulated/floor/plating, /area/station/maintenance/chapel) "bpS" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/woodentable, -/obj/machinery/door_control{ - id = "Medical_Psychiatry"; - name = "Privacy Shutters"; - pixel_y = -25 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/station/medical/psych) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor{ + icon_state = "Stairs_alone"; + dir = 4 + }, +/area/station/maintenance/medbay) "bpT" = ( /obj/machinery/door/window{ dir = 1; @@ -37931,31 +38008,20 @@ /turf/simulated/floor, /area/station/cargo/office) "bpW" = ( -/obj/structure/stool/bed/roller, -/turf/simulated/floor{ - dir = 10; - icon_state = "blue" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/medical/surgeryobs) +/turf/simulated/floor/carpet/green, +/area/station/medical/infectious_disease_ward) "bpX" = ( -/obj/machinery/windowtint{ - id = "op1"; - pixel_x = -27 - }, -/obj/machinery/light_switch{ - pixel_x = -27; - pixel_y = -9 - }, -/obj/machinery/holosign_switch{ - id = "op1"; - pixel_x = -27; - pixel_y = 9 - }, -/turf/simulated/floor{ - dir = 4; - icon_state = "whitehall" +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 8 }, -/area/station/medical/surgery) +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "bpY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -37992,18 +38058,11 @@ /turf/simulated/floor, /area/station/hallway/primary/central) "bqb" = ( -/obj/item/weapon/flora/random, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, +/obj/machinery/computer/scan_consolenew, /turf/simulated/floor{ - dir = 4; - icon_state = "red" + icon_state = "whiteblue" }, -/area/station/medical/reception) +/area/station/medical/genetics) "bqc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -38350,27 +38409,18 @@ }, /area/station/hallway/secondary/exit) "bqH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/rack, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/storage/belt/utility, +/obj/item/clothing/mask/breath, +/obj/structure/closet/fireaxecabinet/hatchet{ + pixel_x = -30 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access = list(5,6) +/turf/simulated/floor{ + dir = 8; + icon_state = "warning" }, -/turf/simulated/floor/plating, -/area/station/medical/morgue) +/area/station/storage/emergency) "bqI" = ( /obj/structure/closet/emcloset, /obj/machinery/alarm{ @@ -38491,26 +38541,13 @@ /turf/environment/space, /area/shuttle/escape_pod2/station) "bqS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor{ - dir = 8; - icon_state = "green" +/obj/structure/bookcase/manuals/engineering, +/obj/machinery/ai_status_display{ + layer = 4; + pixel_y = 32 }, -/area/station/civilian/garden) +/turf/simulated/floor/wood, +/area/station/civilian/library) "bqT" = ( /turf/simulated/floor{ dir = 8; @@ -38717,19 +38754,10 @@ }, /area/station/hallway/secondary/exit) "bro" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, /turf/simulated/floor{ - dir = 8; - icon_state = "whitehall" + icon_state = "white" }, -/area/station/medical/surgery) +/area/station/medical/infectious_disease_ward) "brp" = ( /obj/structure/object_wall/mining{ icon_state = "4-9" @@ -39193,12 +39221,24 @@ }, /area/station/hallway/secondary/exit) "bsh" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/reagent_containers/spray/extinguisher, -/turf/simulated/floor/plating, -/area/station/storage/emergency) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "yellow" + }, +/area/station/maintenance/medbay) "bsi" = ( /turf/simulated/floor{ dir = 8; @@ -39305,17 +39345,19 @@ }, /area/station/hallway/primary/central) "bsu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 +/obj/machinery/camera{ + c_tag = "Medbay West"; + network = list("SS13","Medical") }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 +/obj/item/weapon/flora/pottedplant/tropical_2, +/obj/machinery/alarm{ + pixel_y = 24 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/sleeper) +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/hallway) "bsv" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -39360,29 +39402,20 @@ }, /area/station/cargo/storage) "bsz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/genetics_cloning) +/obj/structure/stool/bed/chair/weigher, +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/therapist) "bsA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "bsB" = ( @@ -39661,15 +39694,30 @@ }, /area/station/cargo/recycleroffice) "bta" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor{ - dir = 6; - icon_state = "blue" + icon_state = "white" }, -/area/station/medical/surgeryobs) +/area/station/medical/infectious_disease_ward) "btb" = ( /obj/random/vending/cola, /obj/machinery/status_display{ @@ -39682,12 +39730,21 @@ }, /area/station/bridge) "btc" = ( -/obj/machinery/life_assist/cardiopulmonary_bypass, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_y = 7 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_y = -5 + }, /turf/simulated/floor{ - dir = 4; - icon_state = "whitehall" + dir = 8; + icon_state = "whiteblue" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "btd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -39705,20 +39762,15 @@ }, /area/station/hallway/secondary/exit) "bte" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/airlock/medical/glass{ + req_access = list(5); + name = "Cryo Lab" }, +/obj/machinery/door/firedoor, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "btf" = ( /obj/machinery/camera{ c_tag = "Bridge West" @@ -39740,76 +39792,52 @@ }, /area/station/bridge) "btg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/hallway) -"bth" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/camera{ + c_tag = "Medbay Toilet"; + dir = 8; + network = list("SS13","Medical") }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor{ - icon_state = "whiteblue" - }, -/area/station/medical/hallway) -"bti" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "freezerfloor" }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 +/area/station/medical/medbreak) +"bth" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stool, +/turf/simulated/floor/wood{ + icon_state = "wood-broken7" }, -/turf/simulated/floor{ - icon_state = "white" +/area/station/maintenance/medbay) +"bti" = ( +/obj/structure/rack, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/seeds/cornseed, +/obj/item/seeds/cabbageseed, +/obj/item/seeds/grassseed, +/obj/item/seeds/chiliseed, +/obj/item/weapon/minihoe, +/obj/item/weapon/shovel/spade, +/obj/item/device/plant_analyzer, +/turf/simulated/floor/plating{ + icon_state = "warnplate" }, -/area/station/medical/hallway) +/area/station/maintenance/medbay) "btj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/simulated/floor{ - dir = 5; icon_state = "whiteblue" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "btk" = ( /obj/machinery/door/firedoor, /turf/simulated/floor{ @@ -40048,20 +40076,21 @@ }, /area/station/bridge) "btK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/medical/glass{ + req_access = list(5); + name = "Cryo Lab" }, /turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "btL" = ( /obj/structure/cable{ d1 = 4; @@ -40160,45 +40189,44 @@ name = "Cyborg Station" }) "btS" = ( +/obj/machinery/door/airlock/medical/glass{ + req_access = list(5); + name = "Medbay Staff Hall" + }, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Supplies"; - req_access = list(72) + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor{ icon_state = "whitebluefull" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "btT" = ( -/obj/machinery/vending/medical, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "btU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "1-2" }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/reception_hall) "btV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, @@ -40258,13 +40286,22 @@ }, /area/station/bridge) "buc" = ( -/obj/structure/stool/bed/chair/office/light, -/obj/effect/landmark/start/geneticist, -/turf/simulated/floor{ - dir = 10; - icon_state = "whiteblue" +/obj/structure/closet/secure_closet{ + name = "Psychiatrist's Locker"; + req_access = list(64) }, -/area/station/medical/genetics) +/obj/item/toy/plushie/tuxedo_cat, +/obj/item/weapon/storage/box/cups, +/obj/item/clothing/suit/straight_jacket, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/pill/methylphenidate, +/obj/item/weapon/reagent_containers/pill/citalopram, +/obj/item/weapon/reagent_containers/pill/citalopram, +/obj/item/weapon/reagent_containers/pill/methylphenidate, +/obj/item/device/healthanalyzer, +/turf/simulated/floor/wood, +/area/station/medical/psych) "bud" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -40312,15 +40349,25 @@ }, /area/station/rnd/lab) "buj" = ( -/obj/structure/stool/bed/roller, -/obj/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor{ - dir = 9; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) "buk" = ( /obj/machinery/requests_console/security{ pixel_x = 32 @@ -40337,16 +40384,37 @@ }, /area/station/security/checkpoint) "bul" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, /turf/simulated/floor{ - dir = 1; + dir = 4; icon_state = "whiteblue" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bum" = ( -/obj/item/weapon/storage/box/gloves, -/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/simulated/floor{ - icon_state = "whitecorner" + icon_state = "white" }, /area/station/medical/hallway) "bun" = ( @@ -40394,16 +40462,14 @@ /turf/simulated/floor, /area/station/rnd/hallway) "bur" = ( -/obj/machinery/iv_drip, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor{ - dir = 8; - icon_state = "whitehall" + dir = 4; + icon_state = "purplecorner" }, -/area/station/medical/surgery2) +/area/station/hallway/primary/starboard) "bus" = ( /obj/structure/morgue, /obj/structure/window/reinforced{ @@ -40519,14 +40585,11 @@ }, /area/station/cargo/recycleroffice) "buC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/stool/bed/chair/comfy/teal, -/turf/simulated/floor{ - icon_state = "white" +/obj/structure/stool/bed/chair/comfy/teal{ + dir = 4 }, -/area/station/medical/hallway) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/infectious_disease_ward) "buD" = ( /turf/simulated/floor{ dir = 1; @@ -40534,22 +40597,20 @@ }, /area/station/cargo/office) "buE" = ( -/obj/structure/drain{ - drainage = 2 - }, -/obj/machinery/door/window/eastright{ - icon_state = "left"; - name = "Cloning Cell"; - req_access = list(5) +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/shower/free{ +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/genetics_cloning) +/turf/simulated/floor/plating, +/area/station/medical/reception) "buF" = ( /obj/structure/object_wall/pod{ icon_state = "2,0" @@ -40994,11 +41055,16 @@ }, /area/station/cargo/recycleroffice) "bvt" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/stool/bed/chair/metal/blue, /turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" + dir = 5; + icon_state = "warnwhite" }, -/area/station/medical/hallway) +/area/station/medical/surgeryobs) "bvu" = ( /obj/effect/landmark/start/recycler, /obj/structure/disposalpipe/segment{ @@ -41014,11 +41080,17 @@ }, /area/station/cargo/recycleroffice) "bvv" = ( -/turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/station/medical/storage) +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/staff_hallway) "bvw" = ( /obj/machinery/door/airlock/mining{ name = "Recycler office"; @@ -41040,18 +41112,11 @@ }, /area/station/cargo/recycleroffice) "bvx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre 1"; - req_access = list(45) - }, -/obj/machinery/holosign/surgery{ - id = "op1" - }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitehall" }, -/area/station/medical/surgery) +/area/station/medical/infectious_disease_ward) "bvy" = ( /obj/machinery/telecomms/server/presets/engineering, /obj/machinery/light/small{ @@ -41065,21 +41130,9 @@ }, /area/station/tcommsat/chamber) "bvz" = ( -/obj/machinery/door/window/southright{ - dir = 4; - name = "Cloning Cell"; - req_access = list(5) - }, -/obj/machinery/camera{ - c_tag = "Genetics Cloning"; - dir = 4; - network = list("SS13","Medical") - }, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" - }, -/area/station/medical/genetics_cloning) +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "bvA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41131,20 +41184,16 @@ }, /area/station/cargo/recycleroffice) "bvD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_y = 22 }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor{ + dir = 1; + icon_state = "whitebluecorner" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/genetics) +/area/station/medical/hallway) "bvE" = ( /obj/machinery/door/airlock/mining{ name = "Recycler's workplace"; @@ -41165,19 +41214,33 @@ /turf/simulated/floor/plating, /area/station/cargo/recycleroffice) "bvF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "blue" }, -/area/station/medical/hallway) +/area/station/medical/reception) "bvG" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/stool/bed/chair/schair/wagon/bench{ + dir = 1; + icon_state = "bench_2" + }, +/obj/machinery/light, /turf/simulated/floor{ - dir = 8; icon_state = "whiteblue" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) "bvH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41459,27 +41522,17 @@ }, /area/station/civilian/bar) "bwg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "1-2" }, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/hallway) +/area/station/medical/surgeryobs) "bwh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -41573,14 +41626,11 @@ }, /area/station/bridge) "bwn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor{ - dir = 4; - icon_state = "green" - }, -/area/station/civilian/garden) +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/bookcase/manuals/security, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood, +/area/station/civilian/library) "bwo" = ( /obj/structure/cable{ d1 = 4; @@ -41903,36 +41953,28 @@ /turf/simulated/floor/carpet/blue2, /area/station/bridge/hop_office) "bwO" = ( -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/structure/table/glass, -/obj/machinery/camera{ - c_tag = "Medbay Storage"; - dir = 4; - network = list("SS13","Medical") - }, -/turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/station/medical/storage) -"bwP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/sleeper) +/area/station/medical/staff_hallway) +"bwP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/medical/staff_hallway) "bwQ" = ( /obj/structure/closet/secure_closet/bar, /obj/item/weapon/gun/projectile/revolver/doublebarrel, @@ -41951,9 +41993,24 @@ /turf/simulated/floor/wood, /area/station/civilian/bar) "bwR" = ( -/obj/structure/closet/crate/freezer, -/turf/simulated/floor, -/area/station/medical/surgery2) +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/fire{ + pixel_y = 9 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_y = -5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "bwS" = ( /obj/structure/cable{ d1 = 4; @@ -41993,15 +42050,12 @@ }, /area/station/rnd/lab) "bwV" = ( -/obj/machinery/computer/cloning, -/obj/machinery/light_switch{ - pixel_y = -27 - }, -/turf/simulated/floor{ - dir = 10; - icon_state = "whiteblue" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/area/station/medical/genetics_cloning) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bwW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -42139,7 +42193,14 @@ }, /area/station/hallway/secondary/arrival) "bxi" = ( -/turf/simulated/wall, +/obj/random/vending/cola, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "whitebluecorner" + }, /area/station/medical/hallway) "bxj" = ( /obj/machinery/door/airlock/highsecurity{ @@ -42191,10 +42252,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bxo" = ( +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bxp" = ( /obj/structure/cable{ d1 = 1; @@ -42255,17 +42320,19 @@ /turf/simulated/wall, /area/station/medical/patient_a) "bxu" = ( -/obj/machinery/power/apc{ - name = "Treatment Center APC"; - pixel_y = -25 +/obj/structure/table/glass, +/obj/machinery/kitchen_machine/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/newscaster{ + pixel_x = 30 }, -/obj/structure/cable, -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/medical, /turf/simulated/floor{ - icon_state = "whiteblue" + dir = 5; + icon_state = "cafeteria" }, -/area/station/medical/sleeper) +/area/station/medical/staff_hallway) "bxv" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -42280,14 +42347,11 @@ }, /area/station/cargo/storage) "bxw" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, /turf/simulated/floor{ - dir = 10; - icon_state = "whiteblue" + dir = 5; + icon_state = "cafeteria" }, -/area/station/medical/sleeper) +/area/station/medical/staff_hallway) "bxx" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor{ @@ -42631,15 +42695,14 @@ /turf/environment/space, /area/space) "byd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor, /area/station/hallway/primary/central) @@ -42756,33 +42819,39 @@ /turf/simulated/floor/plating, /area/station/rnd/telesci) "byn" = ( -/turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/station/medical/sleeper) +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/medical/staff_hallway) "byo" = ( /turf/simulated/floor{ icon_state = "loadingareadirty2" }, /area/station/cargo/storage) "byp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/camera{ - c_tag = "Medbay South"; - dir = 4; - network = list("SS13","Medical") +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor{ - icon_state = "white" +/obj/structure/stool/bed/chair/comfy/teal{ + dir = 4 }, -/area/station/medical/hallway) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/infectious_disease_ward) "byq" = ( /turf/simulated/floor{ dir = 8; @@ -42790,21 +42859,14 @@ }, /area/station/cargo/storage) "byr" = ( -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Medbay Treatment Center"; - network = list("SS13","Medical") +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/body_scanconsole, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "bys" = ( /obj/machinery/light, /turf/simulated/floor{ @@ -43020,21 +43082,11 @@ /turf/simulated/floor/plating, /area/station/maintenance/dormitory) "byM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/item/weapon/flora/pottedplant/palm, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whiteblue" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "byN" = ( /obj/machinery/power/apc{ dir = 1; @@ -43180,34 +43232,16 @@ }, /area/station/hallway/primary/starboard) "bza" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, /turf/simulated/floor{ - icon_state = "whitebluefull" + icon_state = "whiteblue" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "bzb" = ( -/obj/structure/table, -/obj/item/weapon/storage/visuals/surgery/full, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = -28 - }, -/turf/simulated/floor{ - icon_state = "white" +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = 28 }, -/area/station/medical/surgery) +/turf/simulated/floor, +/area/station/storage/emergency3) "bzc" = ( /obj/machinery/door/airlock/external{ frequency = 1379; @@ -43245,18 +43279,18 @@ }, /area/station/cargo/storage) "bzh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whiteblue" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "bzi" = ( /turf/simulated/floor{ icon_state = "dark" @@ -43281,14 +43315,15 @@ }, /area/station/civilian/bar) "bzl" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/simulated/floor{ - icon_state = "whitebluecorner" + icon_state = "whiteblue" }, -/area/station/medical/hallway) +/area/station/medical/surgeryobs) "bzm" = ( /obj/machinery/firealarm{ dir = 1; @@ -43301,26 +43336,44 @@ /area/station/civilian/bar) "bzn" = ( /obj/structure/table/woodentable, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen{ - layer = 3.1; - pixel_x = 3; - pixel_y = 5 +/obj/item/device/harmonica{ + pixel_x = 2; + pixel_y = 2 }, -/obj/item/weapon/folder/white, -/turf/simulated/floor/wood, -/area/station/medical/psych) +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood{ + icon_state = "wood-broken7" + }, +/area/station/civilian/library) "bzo" = ( /turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" + dir = 1; + icon_state = "yellow" }, -/area/station/medical/hallway) +/area/station/maintenance/medbay) "bzp" = ( -/obj/machinery/vending/medical, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "white" }, /area/station/medical/hallway) "bzq" = ( @@ -43679,22 +43732,46 @@ /turf/simulated/floor, /area/station/hallway/primary/central) "bzU" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor{ + icon_state = "dark" + }, +/area/station/medical/morgue) "bzV" = ( -/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 4; + icon_state = "whiteblue" }, -/area/station/medical/cryo) +/area/station/medical/staff_hallway) "bzW" = ( /obj/structure/cable{ d1 = 1; @@ -43763,14 +43840,24 @@ }, /area/station/cargo/storage) "bAf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + req_access = list(5) + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 }, -/obj/machinery/disposal, /turf/simulated/floor{ - icon_state = "dark" + icon_state = "whitebluefull" }, -/area/station/hallway/primary/central) +/area/station/medical/staff_hallway) "bAg" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = -32 @@ -43807,9 +43894,10 @@ }, /area/station/cargo/storage) "bAi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/flora/pottedplant/bamboo, /turf/simulated/floor{ - icon_state = "white" + dir = 6; + icon_state = "whiteblue" }, /area/station/medical/hallway) "bAj" = ( @@ -43843,19 +43931,12 @@ }, /area/station/cargo/storage) "bAm" = ( -/obj/structure/closet/l3closet/general, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ dir = 8; - icon_state = "whitehall" + icon_state = "barber" }, -/area/station/medical/hallway) +/area/station/medical/cmo) "bAn" = ( /obj/structure/object_wall/pod{ icon_state = "1,2" @@ -43863,15 +43944,8 @@ /turf/environment/space/shuttle, /area/shuttle/escape_pod2/station) "bAo" = ( -/obj/random/vending/snack, -/obj/machinery/camera{ - c_tag = "Central Hallway South-East"; - dir = 8 - }, -/turf/simulated/floor{ - icon_state = "dark" - }, -/area/station/hallway/primary/central) +/turf/simulated/wall, +/area/station/medical/staff_hallway) "bAp" = ( /turf/simulated/floor{ dir = 1; @@ -43901,37 +43975,45 @@ /turf/simulated/floor/plating, /area/station/medical/patient_b) "bAr" = ( -/obj/structure/stool/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/firealarm{ - pixel_y = 24 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Genetics Lab"; + sortType = "Genetics Lab" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor{ - dir = 5; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "bAs" = ( /obj/structure/displaycase/captain, /turf/simulated/floor/carpet/blue, /area/station/bridge/captain_quarters) "bAt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/disposal, +/obj/machinery/light, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/status_display{ + layer = 3.3; + pixel_y = -32 }, /turf/simulated/floor{ - dir = 4; - icon_state = "whitebluecorner" + icon_state = "whiteblue" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "bAu" = ( /obj/structure/cable{ d2 = 4; @@ -43957,42 +44039,67 @@ /turf/simulated/floor, /area/station/hallway/primary/central) "bAw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/grille, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical{ - name = "Patient Room 2" - }, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "op2" }, -/area/station/medical/patient_b) -"bAx" = ( /obj/structure/window/reinforced/polarized{ dir = 8; - id = "Patients" + id = "op2" }, /obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Patients" + id = "op2" }, -/obj/structure/window/reinforced/polarized{ - id = "Patients" +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Surgery2"; + name = "Surgery Shutters"; + opacity = 0 }, -/obj/structure/grille, -/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/station/medical/patients_rooms) -"bAy" = ( +/area/station/medical/surgery2) +"bAx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor{ - icon_state = "whitebluecorner" + icon_state = "freezerfloor" }, -/area/station/medical/sleeper) +/area/station/medical/medbreak) +"bAy" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/gas/coloured, +/obj/item/weapon/tank/emergency_oxygen/double, +/obj/item/clothing/suit/space/rig/medical, +/obj/item/clothing/head/helmet/space/rig/medical, +/obj/item/device/sensor_device, +/obj/machinery/door/window/eastright{ + icon_state = "left"; + name = "Paramedic equipment"; + req_access = list(70) + }, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/glasses/hud/health, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor, +/area/station/medical/staff_hallway) "bAz" = ( /obj/machinery/camera{ c_tag = "Bridge Center"; @@ -44009,40 +44116,52 @@ }, /area/station/bridge) "bAA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/stool/bed/chair/schair/wagon/bench{ + dir = 1; + icon_state = "bench_2" }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whiteblue" }, -/area/station/medical/sleeper) +/area/station/medical/hallway) "bAB" = ( -/obj/structure/table/glass, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/simulated/wall, +/area/station/medical/therapist) +"bAC" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 4 }, -/obj/item/weapon/book/manual/wiki/medical_genetics, -/obj/machinery/door_control{ - id = "Genetics"; - name = "Genetics"; - pixel_y = -28 +/obj/item/weapon/flora/deskferntrim{ + icon_state = "plant-34-alternative"; + pixel_x = -8; + pixel_y = 10 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/obj/item/weapon/paper_bin{ + pixel_x = 8 }, -/area/station/medical/genetics_cloning) -"bAC" = ( -/turf/simulated/floor{ - icon_state = "white" +/obj/item/weapon/pen{ + layer = 3.1; + pixel_x = 3; + pixel_y = 5 }, -/area/station/medical/genetics) +/obj/machinery/camera{ + c_tag = "Psychiatric Office"; + dir = 8; + network = list("SS13","Medical"); + pixel_y = -22 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 18 + }, +/turf/simulated/floor/carpet/green, +/area/station/medical/psych) "bAD" = ( /obj/structure/stool/bed/chair/office/dark{ dir = 1 @@ -44078,20 +44197,12 @@ }, /area/station/hallway/primary/fore) "bAG" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cryogenics Freezer"; - dir = 8; - network = list("SS13","Medical") - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 1; + icon_state = "whiteblue" }, -/area/station/medical/cryo) +/area/station/medical/genetics_cloning) "bAH" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -44142,32 +44253,41 @@ /turf/simulated/floor/plating, /area/station/maintenance/medbay) "bAN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = 28 + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "yellowcorner" }, -/turf/simulated/floor/plating, /area/station/maintenance/atmos) "bAO" = ( -/obj/item/device/beacon/medical, -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + req_access = list(5); + name = "Treatment Centre" }, -/area/station/medical/sleeper) -"bAP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitebluefull" }, /area/station/medical/sleeper) -"bAQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"bAP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable{ @@ -44175,37 +44295,43 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/firedoor, /turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/hallway) -"bAR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + dir = 8; + icon_state = "red" }, -/obj/machinery/hologram/holopad{ - pixel_y = -16 +/area/station/security/medbay_checkpoint) +"bAQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitebluefull" }, -/area/station/medical/sleeper) +/area/station/medical/reception_hall) +"bAR" = ( +/obj/structure/stool/bed/chair/metal, +/obj/item/weapon/lighter, +/turf/simulated/floor, +/area/station/maintenance/medbay) "bAS" = ( /turf/simulated/floor{ icon_state = "white" }, /area/station/medical/sleeper) "bAT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /turf/simulated/floor{ - icon_state = "whiteblue" + dir = 1; + icon_state = "bot" }, -/area/station/medical/reception) +/area/station/medical/cryo) "bAU" = ( /turf/simulated/wall/r_wall, /area/station/rnd/hor) @@ -44220,26 +44346,17 @@ }, /area/station/civilian/dormitories) "bAW" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "yellow" }, -/area/station/medical/hallway) +/area/station/civilian/garden) "bAX" = ( -/obj/machinery/power/apc{ - name = "Cryogenics APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/structure/closet/secure_closet/medical1, +/obj/machinery/body_scanconsole, +/obj/machinery/life_assist/artificial_ventilation, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "bAY" = ( /obj/machinery/status_display{ pixel_x = 32 @@ -44250,13 +44367,14 @@ /turf/simulated/floor/carpet, /area/station/civilian/bar) "bAZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor{ - icon_state = "white" +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplate" }, -/area/station/medical/hallway) +/area/station/maintenance/medbay) "bBa" = ( /obj/machinery/door/airlock/maintenance{ name = "Private Maintenance"; @@ -44272,22 +44390,23 @@ /area/station/maintenance/cargo) "bBb" = ( /obj/structure/cable{ - d1 = 4; d2 = 8; - icon_state = "4-8" + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/power/apc{ + name = "Therapist Office APC"; + pixel_x = 25; dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/stool/bed/chair/metal/blue, +/obj/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/disposalpipe/segment{ +/turf/simulated/floor{ dir = 1; - icon_state = "pipe-c" + icon_state = "whitebluecorner" }, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/medical/therapist) "bBc" = ( /obj/structure/cable{ d1 = 1; @@ -44519,17 +44638,7 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bBy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "bBz" = ( @@ -44553,11 +44662,18 @@ }, /area/station/bridge) "bBA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "bBB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -44729,12 +44845,20 @@ }, /area/station/rnd/lab) "bBX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/structure/grille, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor{ - icon_state = "white" +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/structure/sign/departments/examroom, +/turf/simulated/floor/plating, /area/station/medical/sleeper) "bBY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -44756,25 +44880,15 @@ /turf/simulated/floor/carpet/blue, /area/station/bridge/captain_quarters) "bCa" = ( -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/structure/table/glass, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bCb" = ( /obj/structure/cable{ d1 = 4; @@ -44787,44 +44901,54 @@ /turf/simulated/floor, /area/station/civilian/janitor) "bCc" = ( -/obj/machinery/meter, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor{ + icon_state = "Stairs_wide" + }, /area/station/maintenance/atmos) "bCd" = ( /obj/structure/device/piano/royal, /turf/simulated/floor/wood, /area/station/civilian/bar) "bCe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" +/obj/machinery/door/airlock/centcom{ + name = "Library" }, -/area/station/medical/patient_a) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/station/civilian/library) "bCf" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/clothing/under/patient_gown, +/obj/machinery/bodyscanner{ + dir = 4 + }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "whitehall" }, -/area/station/medical/patient_b) +/area/station/medical/surgery2) "bCg" = ( -/obj/machinery/computer/med_data{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/curtain/medical, +/obj/machinery/door/airlock/medical/glass{ + id_tag = ""; + name = "Surgery"; + req_access = list(5) }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/surgeryobs) "bCh" = ( /obj/machinery/light/small{ dir = 8 @@ -44841,59 +44965,47 @@ /turf/simulated/floor/carpet/black, /area/station/security/iaa_office) "bCj" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Patients APC"; - pixel_x = -28 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/stool/bed/chair/comfy/black{ +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/medical/genetics_cloning) "bCk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /turf/simulated/floor{ - dir = 10; - icon_state = "whitehall" + icon_state = "freezerfloor" }, -/area/station/medical/hallway) +/area/station/medical/medbreak) "bCl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/item/weapon/cigbutt{ + pixel_x = 6 }, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) -"bCm" = ( -/obj/structure/stool/bed/chair/comfy/black{ - dir = 1 +/obj/item/weapon/cigbutt{ + pixel_x = -11; + pixel_y = -10 }, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + dir = 1; + icon_state = "yellowcorner" }, -/area/station/medical/medbreak) +/area/station/maintenance/medbay) +"bCm" = ( +/turf/simulated/floor/wood{ + icon_state = "wood-broken5" + }, +/area/station/civilian/library) "bCn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -44932,21 +45044,24 @@ /turf/simulated/floor, /area/station/hallway/primary/fore) "bCp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor{ - dir = 8; - icon_state = "green" + dir = 1; + icon_state = "warning" }, -/area/station/civilian/garden) +/area/station/storage/emergency) "bCq" = ( /obj/item/weapon/storage/toolbox/mechanical{ pixel_y = 4 @@ -45102,17 +45217,19 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bCF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "CMO Office"; + sortType = "CMO Office" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ - dir = 8; + dir = 1; icon_state = "whiteblue" }, /area/station/medical/hallway) @@ -45298,29 +45415,27 @@ /turf/simulated/floor/plating, /area/station/maintenance/cargo) "bCU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor{ + dir = 1; + icon_state = "yellow" }, -/turf/simulated/floor/plating, /area/station/maintenance/atmos) "bCV" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/sleeper{ - dir = 8 - }, +/obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor{ - icon_state = "whitebluefull" + dir = 10; + icon_state = "warnwhite" }, -/area/station/medical/sleeper) +/area/station/medical/surgeryobs) "bCW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor{ - dir = 1; - icon_state = "warning" + icon_state = "white" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "bCX" = ( /obj/machinery/vending/coffee, /turf/simulated/floor{ @@ -45338,20 +45453,16 @@ }, /area/station/civilian/chapel/mass_driver) "bCZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/power/apc{ - dir = 8; - level = 4; - name = "Patient Room Two APC"; - pixel_x = -25 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/body_scanconsole{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "whitehall" }, -/area/station/medical/patient_b) +/area/station/medical/surgery2) "bDa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -45419,22 +45530,15 @@ }, /area/station/cargo/office) "bDg" = ( -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = 25 +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 }, -/obj/structure/table, /turf/simulated/floor{ - dir = 1; + dir = 10; icon_state = "warning" }, -/area/station/medical/cryo) +/area/station/storage/emergency) "bDh" = ( /obj/machinery/door/airlock/external{ frequency = 1379; @@ -45466,18 +45570,12 @@ /turf/simulated/wall, /area/station/hallway/secondary/entry) "bDj" = ( -/obj/item/weapon/defibrillator/loaded, -/obj/machinery/recharger/wallcharger{ - dir = 1; - pixel_x = 5; - pixel_y = 25 - }, -/obj/structure/table, +/obj/machinery/door/firedoor, /turf/simulated/floor{ - dir = 1; - icon_state = "warning" + icon_state = "stairs_middle"; + dir = 8 }, -/area/station/medical/cryo) +/area/station/maintenance/medbay) "bDk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45490,22 +45588,21 @@ /turf/simulated/floor/plating, /area/station/maintenance/cargo) "bDl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/power/apc{ dir = 8; - icon_state = "pipe-c" + name = "Library APC"; + pixel_x = -25 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" }, -/area/station/medical/medbreak) +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood{ + icon_state = "wood-broken6" + }, +/area/station/civilian/library) "bDm" = ( /obj/structure/table, /obj/item/device/tagger, @@ -45610,16 +45707,14 @@ /turf/simulated/floor/beach/water/waterpool, /area/station/civilian/gym) "bDA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "bDB" = ( /obj/effect/landmark{ name = "xeno_spawn"; @@ -45652,25 +45747,9 @@ /turf/simulated/floor/carpet/blue, /area/station/bridge/captain_quarters) "bDE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/hallway) +/obj/structure/sign/departments/medbay, +/turf/simulated/wall, +/area/station/medical/reception) "bDF" = ( /obj/structure/cable{ d1 = 1; @@ -45753,19 +45832,15 @@ }, /area/station/hallway/primary/central) "bDL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 }, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/storage/emergency3) "bDM" = ( /obj/machinery/door/airlock/maintenance{ name = "Custodial Maintenance"; @@ -45783,12 +45858,20 @@ /turf/simulated/floor/plating, /area/station/civilian/janitor) "bDN" = ( -/obj/item/weapon/flora/random, -/obj/machinery/light_switch{ - pixel_x = 27 +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/obj/machinery/power/apc{ + dir = 8; + name = "Garden APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/simulated/floor{ + dir = 8; + icon_state = "green" + }, +/area/station/civilian/garden) "bDO" = ( /turf/simulated/floor/wood, /area/station/civilian/theatre) @@ -45829,27 +45912,20 @@ /turf/simulated/floor/wood, /area/station/civilian/theatre) "bDS" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + dir = 8; + icon_state = "whiteblue" }, -/area/station/medical/medbreak) +/area/station/medical/staff_hallway) "bDT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor{ - icon_state = "white" +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating{ + icon_state = "platingdmg1" }, -/area/station/medical/storage) +/area/station/maintenance/atmos) "bDU" = ( /obj/structure/table/woodentable, /obj/item/clothing/head/santahat, @@ -45858,18 +45934,14 @@ /turf/simulated/floor/wood, /area/station/civilian/theatre) "bDV" = ( -/turf/simulated/wall, -/area/station/medical/patients_rooms) +/obj/item/weapon/wrench, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bDW" = ( -/obj/item/weapon/flora/random, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" - }, -/area/station/medical/medbreak) +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/station/hallway/primary/central) "bDX" = ( /obj/structure/closet/secure_closet/miner, /turf/simulated/floor{ @@ -45935,17 +46007,10 @@ }, /area/station/hallway/primary/central) "bEe" = ( -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, /turf/simulated/floor{ - dir = 6; - icon_state = "whiteyellow" + icon_state = "whiteblue" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "bEf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -46083,13 +46148,17 @@ /turf/simulated/floor/carpet/purple, /area/station/civilian/theatre) "bEt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/stool/bed, +/obj/item/weapon/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, -/turf/simulated/floor/carpet/green, -/area/station/medical/psych) +/obj/machinery/light_switch{ + pixel_x = 27; + pixel_y = -8 + }, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/patient_b) "bEu" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -46346,20 +46415,30 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/plating, +/turf/simulated/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, /area/station/maintenance/atmos) "bER" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/machinery/light_switch{ - pixel_x = 27 +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Chem"; + name = "Chemistry Shutters"; + opacity = 0 }, -/area/station/medical/medbreak) +/turf/simulated/floor/plating, +/area/station/medical/storage) "bES" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ @@ -46406,17 +46485,17 @@ /turf/simulated/floor/plating, /area/station/maintenance/cargo) "bEX" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 +/obj/machinery/sleeper{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 }, /turf/simulated/floor{ dir = 10; - icon_state = "warning" + icon_state = "whiteblue" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "bEY" = ( /obj/structure/cable{ d1 = 4; @@ -46443,17 +46522,10 @@ /turf/simulated/floor/plating, /area/station/maintenance/cargo) "bFb" = ( -/obj/structure/stool/bed/chair/metal/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitebot" }, -/area/station/medical/patient_b) +/area/station/medical/surgery2) "bFc" = ( /obj/structure/cable{ d1 = 4; @@ -46474,37 +46546,40 @@ /turf/simulated/floor/plating, /area/station/maintenance/atmos) "bFd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/computer/operating{ + dir = 8 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 }, /turf/simulated/floor{ - icon_state = "warning" + dir = 8; + icon_state = "whitehall" }, -/area/station/medical/cryo) +/area/station/medical/surgery2) "bFe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 }, +/obj/machinery/iv_drip, +/obj/structure/stool/bed/roller, /turf/simulated/floor{ - icon_state = "warning" + icon_state = "whitebot" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "bFf" = ( -/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "delivery" + icon_state = "white" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "bFg" = ( /turf/simulated/floor{ dir = 4; @@ -46517,45 +46592,26 @@ }, /area/station/medical/hallway) "bFi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/hallway) +/area/station/medical/surgeryobs) "bFj" = ( -/obj/structure/stool/bed/chair/metal/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/patient_a) +/obj/structure/rack, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/mask/gas/coloured, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/suit/fire/firefighter, +/turf/simulated/floor, +/area/station/storage/emergency3) "bFk" = ( /obj/structure/table, /obj/item/weapon/handcuffs, @@ -46573,31 +46629,33 @@ }, /area/station/rnd/lab) "bFm" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/machinery/status_display{ - pixel_x = -32 +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -17 }, /turf/simulated/floor{ - dir = 9; - icon_state = "warning" + dir = 8; + icon_state = "whitebluecorner" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "bFn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical{ - name = "Patient Room 1" +/obj/structure/filingcabinet, +/obj/machinery/newscaster{ + pixel_y = -30 }, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "therapist_shirma"; + opacity = 1 }, -/area/station/medical/patient_a) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/therapist) "bFo" = ( /turf/simulated/wall, /area/station/maintenance/medbay) @@ -46611,21 +46669,25 @@ }, /area/station/rnd/server) "bFq" = ( -/obj/machinery/door/airlock/medical{ - name = "Patients room" +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/power/apc{ + name = "Break Room APC"; + pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 4; + icon_state = "0-4" }, -/obj/machinery/door/firedoor, /turf/simulated/floor{ - icon_state = "whitebluefull" + icon_state = "freezerfloor" }, -/area/station/medical/patients_rooms) +/area/station/medical/medbreak) "bFr" = ( /obj/machinery/door/airlock/mining/glass{ name = "Delivery Office"; @@ -46651,11 +46713,10 @@ }, /area/station/civilian/theatre) "bFt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor{ + icon_state = "Stairs_alone" }, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/area/station/maintenance/medbay) "bFu" = ( /obj/machinery/light/small, /obj/structure/stool/bed/chair/schair/wagon{ @@ -46800,16 +46861,19 @@ /turf/simulated/wall, /area/station/maintenance/science) "bFI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/structure/drain, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor{ - dir = 1; - icon_state = "warnwhite" + icon_state = "white" }, /area/station/medical/virology) "bFJ" = ( @@ -46837,15 +46901,13 @@ }, /area/station/hallway/primary/starboard) "bFM" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Supplies"; - req_access = list(72) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/berryseed, +/turf/simulated/floor/plating{ + dir = 9; + icon_state = "warnplate" }, -/area/station/medical/storage) +/area/station/maintenance/medbay) "bFN" = ( /obj/structure/closet/firecloset, /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -46956,14 +47018,19 @@ /turf/simulated/floor, /area/station/hallway/primary/aft) "bFZ" = ( -/obj/item/weapon/packageWrap, -/obj/item/weapon/pen, -/obj/structure/table/glass, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Medbay Restroom" + }, /turf/simulated/floor{ - dir = 4; - icon_state = "escapecorner" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/medbreak) "bGa" = ( /obj/machinery/optable{ name = "Robotics Operating Table" @@ -46974,16 +47041,25 @@ }, /area/station/rnd/robotics) "bGb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/disposalpipe/junction{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/weapon/cigbutt{ + pixel_x = -18 + }, +/obj/item/weapon/cigbutt{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/weapon/cigbutt{ + pixel_x = 6 + }, +/turf/simulated/floor, /area/station/maintenance/atmos) "bGc" = ( /obj/structure/closet/secure_closet/miner, @@ -47003,75 +47079,45 @@ }, /area/station/rnd/robotics) "bGe" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light/small{ +/obj/structure/closet/crate, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"bGf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + icon_state = "freezerfloor" }, /area/station/medical/medbreak) -"bGf" = ( -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Patients" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Patients" - }, -/obj/structure/window/reinforced/polarized{ - id = "Patients" - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/patients_rooms) "bGg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/random/scrap/safe_even, +/turf/simulated/floor/wood{ + icon_state = "wood-broken5" }, +/area/station/maintenance/medbay) +"bGh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" - }, -/area/station/medical/medbreak) -"bGh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + d2 = 2; + icon_state = "1-2" }, -/area/station/medical/medbreak) +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/station/civilian/library) "bGi" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/clothing/under/patient_gown, -/obj/machinery/power/apc{ - dir = 8; - level = 4; - name = "Patient Room One APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + dir = 4; + icon_state = "whitegreen" }, -/area/station/medical/patient_a) +/area/station/medical/genetics) "bGj" = ( /obj/structure/stool/bed/chair/comfy/brown{ dir = 4 @@ -47300,32 +47346,21 @@ }, /area/station/civilian/barbershop) "bGz" = ( -/obj/structure/disposalpipe/segment, +/obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/trash/candy, -/mob/living/simple_animal/mouse, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "bGA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/dna_scannernew, /obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 8; + pixel_x = 22 }, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "whiteblue" }, -/area/station/medical/patient_b) +/area/station/medical/genetics_cloning) "bGB" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, @@ -47442,6 +47477,10 @@ }, /area/station/hallway/secondary/exit) "bGN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -47450,38 +47489,30 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 8; + icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "bGO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/cigbutt, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "yellow" }, -/area/station/medical/reception) +/area/station/maintenance/medbay) "bGP" = ( -/obj/machinery/light/small{ +/obj/structure/stool/bed/chair/metal{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/patient_a) +/obj/item/device/lens/nude, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bGQ" = ( /obj/machinery/door/airlock{ name = "Honk Office"; @@ -47502,27 +47533,31 @@ /turf/simulated/floor/plating, /area/station/civilian/theatre) "bGR" = ( -/obj/machinery/camera{ - c_tag = "Patient's Room"; - dir = 4; - network = list("SS13","Medical") - }, -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/structure/stool/bed/chair/metal{ dir = 4 }, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/obj/item/weapon/cigbutt{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/simulated/floor, +/area/station/maintenance/atmos) "bGS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/table, +/obj/item/weapon/reagent_containers/glass/beaker/large{ + pixel_x = -8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/item/weapon/reagent_containers/glass/beaker/large{ + pixel_x = 8 }, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner"; + pixel_y = 7 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/station/medical/chemistry) "bGT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -47569,13 +47604,13 @@ }, /area/station/rnd/chargebay) "bGZ" = ( -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" }, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/area/station/maintenance/medbay) "bHa" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -47585,14 +47620,21 @@ /turf/simulated/floor/plating, /area/station/cargo/recycler) "bHb" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/hologram/holopad{ - pixel_y = -16 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/turf/simulated/floor, -/area/station/medical/cryo) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/sleeper) "bHc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -47632,15 +47674,15 @@ }, /area/station/aisat/antechamber_interior) "bHg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor{ - dir = 1; - icon_state = "whitehall" +/obj/item/weapon/shard{ + icon_state = "medium" }, -/area/station/medical/hallway) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bHh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -47791,10 +47833,18 @@ /turf/simulated/floor/plating, /area/station/civilian/barbershop) "bHv" = ( -/turf/simulated/floor/wood{ - icon_state = "wood-broken7" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/area/station/civilian/library) +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/item/trash/raisins, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bHw" = ( /obj/structure/closet/crate, /obj/random/tools/tool, @@ -47828,19 +47878,19 @@ }, /area/station/rnd/mixing) "bHy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/structure/stool/bed/chair/comfy/black{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the department."; + name = "Medical Monitor"; + network = list("Medical"); + pixel_y = 26 }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitecorner" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bHz" = ( /obj/structure/table/woodentable, /obj/item/device/taperecorder{ @@ -47921,22 +47971,15 @@ /turf/simulated/floor, /area/station/hallway/primary/central) "bHG" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor{ - dir = 8; - icon_state = "warning" +/turf/simulated/floor/wood{ + icon_state = "wood-broken" }, -/area/station/medical/chemistry) +/area/station/civilian/library) "bHH" = ( /obj/machinery/disposal, /obj/machinery/recharger/wallcharger{ @@ -47982,6 +48025,9 @@ }, /area/station/civilian/bar) "bHM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -47992,8 +48038,8 @@ }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 8; + icon_state = "2-8" }, /obj/structure/disposalpipe/sortjunction{ dir = 8; @@ -48001,9 +48047,6 @@ name = "Atmospherics"; sortType = "Atmospherics" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "bHN" = ( @@ -48028,27 +48071,26 @@ }, /area/station/civilian/cold_room) "bHP" = ( -/obj/effect/landmark/start/medical_intern, -/turf/simulated/floor{ - icon_state = "white" +/obj/structure/stool/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/area/station/medical/reception) -"bHQ" = ( /obj/structure/cable{ + d1 = 4; d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Break Room APC"; - pixel_x = 28 + icon_state = "4-8" }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/turf/simulated/floor, +/area/station/security/medbay_checkpoint) +"bHQ" = ( +/obj/structure/stool/bed, +/obj/item/weapon/reagent_containers/food/drinks/dry_ramen{ + pixel_x = -8 }, -/area/station/medical/medbreak) +/turf/simulated/floor/wood, +/area/station/maintenance/medbay) "bHR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -48126,17 +48168,11 @@ }, /area/station/civilian/dormitories) "bHX" = ( -/obj/machinery/door_control{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyerIn"; - name = "Medbay Doors Control"; - pixel_y = 28 - }, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor{ - dir = 4; - icon_state = "whitebluecorner" + icon_state = "warning" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "bHY" = ( /turf/simulated/wall, /area/station/medical/medbreak) @@ -48167,38 +48203,24 @@ /area/station/rnd/lab) "bIb" = ( /obj/structure/table/glass, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay Storage APC"; - pixel_x = 24 +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 7 }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" +/obj/item/weapon/storage/box/cups{ + pixel_x = -8 }, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" + dir = 5; + icon_state = "cafeteria" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bIc" = ( -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, +/obj/machinery/hologram/holopad, +/obj/machinery/iv_drip, /turf/simulated/floor{ - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/patient_b) +/area/station/medical/surgery2) "bId" = ( /obj/machinery/r_n_d/protolathe, /turf/simulated/floor{ @@ -48280,23 +48302,17 @@ /turf/simulated/wall/r_wall, /area/station/hallway/primary/starboard) "bIk" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/accessory/stethoscope, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/obj/machinery/door_control{ - id = "Medical_Room1"; - name = "Privacy Shutters"; - pixel_x = -25 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/simulated/floor{ - icon_state = "whiteblue" +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/patient_a) +/turf/simulated/floor/plating, +/area/station/security/medbay_checkpoint) "bIl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -48361,24 +48377,47 @@ /turf/simulated/floor/wood, /area/station/civilian/bar) "bIq" = ( -/obj/item/weapon/storage/fancy/donut_box, -/obj/structure/table/glass, -/obj/machinery/windowtint{ - id = "Patients"; - pixel_x = -27 +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access = list(5,6) }, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor{ + icon_state = "whitebluefull" + }, +/area/station/medical/morgue) "bIr" = ( -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(9,12,47) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor{ - icon_state = "whiteblue" + dir = 4; + icon_state = "whiteyellowfull" }, -/area/station/medical/patient_a) +/area/station/medical/infectious_disease_ward) "bIs" = ( /obj/structure/sign/warning/securearea, /turf/simulated/wall/r_wall, @@ -48417,17 +48456,8 @@ /turf/simulated/floor/plating, /area/station/civilian/barbershop) "bIw" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = -27 - }, -/obj/item/weapon/storage/box/cups, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" - }, +/obj/structure/sign/departments/restroom, +/turf/simulated/wall, /area/station/medical/medbreak) "bIx" = ( /obj/structure/table/glass, @@ -48475,41 +48505,47 @@ /turf/simulated/floor/plating, /area/station/storage/tech) "bIB" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "warning" + }, +/area/station/medical/chemistry) "bIC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 1"; + req_access = list(45) + }, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, +/obj/machinery/holosign/surgery{ + id = "op1" + }, /turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/surgery) "bID" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" + icon_state = "whiteblue" }, -/area/station/medical/hallway) +/area/station/medical/surgeryobs) "bIE" = ( /obj/machinery/disposal, /obj/structure/sign/warning/morgue_disposal{ @@ -48557,18 +48593,21 @@ /turf/environment/space/shuttle, /area/shuttle/escape_pod2/station) "bII" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/structure/closet/secure_closet/CMO, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/accessory/stethoscope, +/obj/item/weapon/defibrillator/compact/loaded, +/obj/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor{ - dir = 1; - icon_state = "whitehall" + dir = 8; + icon_state = "barber" }, -/area/station/medical/hallway) +/area/station/medical/cmo) "bIJ" = ( /obj/structure/kitchenspike, /obj/machinery/camera{ @@ -48644,29 +48683,14 @@ }, /area/station/civilian/barbershop) "bIR" = ( -/obj/item/weapon/folder/white, -/obj/item/device/radio/headset/headset_medsci, -/obj/item/device/flashlight/pen, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = -28 - }, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 4; + icon_state = "Stairs2_wide" }, -/area/station/medical/genetics) +/area/station/maintenance/medbay) "bIS" = ( /turf/simulated/wall, /area/station/medical/storage) @@ -48681,62 +48705,43 @@ }, /area/station/civilian/barbershop) "bIU" = ( -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 2; - pixel_y = 2 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/item/weapon/storage/firstaid/fire, -/obj/structure/table/glass, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, /turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bIV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/camera{ + c_tag = "Medbay Treatment Center"; + network = list("SS13","Medical"); + dir = 8 }, /turf/simulated/floor{ - icon_state = "warning" + icon_state = "white" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "bIW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor{ - icon_state = "warning" +/obj/structure/grille{ + destroyed = 1 }, -/area/station/medical/cryo) +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bIX" = ( /obj/machinery/photocopier, /obj/machinery/camera{ @@ -48782,14 +48787,11 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bJd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/plating{ - icon_state = "platingdmg3" +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteyellow" }, -/area/station/maintenance/atmos) +/area/station/medical/chemistry) "bJe" = ( /turf/simulated/wall, /area/station/civilian/janitor) @@ -48805,23 +48807,14 @@ }, /area/station/rnd/robotics) "bJg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/curtain/medical, +/obj/machinery/body_scanconsole, /turf/simulated/floor{ - icon_state = "delivery" + icon_state = "whitehall" }, -/area/station/medical/cryo) +/area/station/medical/surgery) "bJh" = ( /obj/structure/object_wall/pod{ icon_state = "0,0" @@ -48832,18 +48825,24 @@ /turf/simulated/wall, /area/station/medical/morgue) "bJj" = ( +/obj/item/weapon/flora/random, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/machinery/power/apc{ + dir = 4; + name = "CM Office APC"; + pixel_x = 28 }, -/area/station/maintenance/medbay) +/obj/machinery/requests_console/cmo{ + pixel_y = 25 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" + }, +/area/station/medical/cmo) "bJk" = ( /obj/machinery/conveyor_switch/oneway{ id = "Assembly Line" @@ -48948,27 +48947,14 @@ }, /area/station/rnd/chargebay) "bJu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /turf/simulated/floor{ dir = 8; - icon_state = "whiteblue" + icon_state = "greencorner" }, -/area/station/medical/hallway) +/area/station/civilian/garden) "bJv" = ( /turf/simulated/floor{ icon_state = "warning" @@ -49031,11 +49017,19 @@ }, /area/station/civilian/chapel) "bJB" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "bluecorner" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/area/station/hallway/primary/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bJC" = ( /turf/simulated/wall/r_wall, /area/station/rnd/misc_lab) @@ -49168,16 +49162,11 @@ /turf/simulated/floor/carpet/blue, /area/station/civilian/dormitories/dormthree) "bJR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 +/obj/item/weapon/cigbutt{ + pixel_y = -10 }, -/obj/machinery/cryopod, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/turf/simulated/floor, +/area/station/maintenance/medbay) "bJS" = ( /obj/structure/dresser, /turf/simulated/floor{ @@ -49203,15 +49192,16 @@ /obj/structure/window/reinforced{ dir = 1 }, +/obj/item/weapon/shard{ + icon_state = "small" + }, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "bJV" = ( -/obj/structure/stool/bed/chair/comfy/black, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + icon_state = "Stairs_wide" }, -/area/station/medical/medbreak) +/area/station/maintenance/medbay) "bJW" = ( /obj/structure/cable{ d1 = 1; @@ -49248,15 +49238,11 @@ /turf/simulated/floor/plating, /area/station/construction/assembly_line) "bKa" = ( -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/medical, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = -28 +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor{ + icon_state = "whitebot" }, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/area/station/medical/hallway) "bKb" = ( /obj/machinery/light{ dir = 1 @@ -49287,34 +49273,49 @@ }, /area/station/rnd/hallway) "bKe" = ( -/obj/machinery/light, -/obj/structure/stool/bed/roller, -/obj/machinery/iv_drip, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/surgeryobs) +"bKf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/simulated/floor{ - dir = 6; + dir = 1; icon_state = "whiteblue" }, -/area/station/medical/sleeper) -"bKf" = ( -/turf/simulated/floor/mech_bay_recharge_floor, -/area/station/medical/hallway) +/area/station/medical/staff_hallway) "bKg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/simulated/floor{ - dir = 1; - icon_state = "whitebluecorner" + dir = 8; + icon_state = "whitehall" }, -/area/station/medical/hallway) +/area/station/medical/surgery) "bKh" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/machinery/light/small{ @@ -49341,8 +49342,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bKk" = ( +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 + dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -49354,8 +49356,8 @@ }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/plating, /area/station/maintenance/atmos) @@ -49425,10 +49427,20 @@ /turf/simulated/floor/plating, /area/station/storage/tech) "bKq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/reagent_dispensers/watertank, +/obj/item/toy/figure/ninja{ + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/food/snacks/chinese/rice, +/obj/item/weapon/reagent_containers/food/snacks/chinese/newdles{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/toy/crossbow{ + pixel_x = -4; + pixel_y = -6 + }, /turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/civilian/garden) "bKr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49457,28 +49469,25 @@ }, /area/station/medical/virology) "bKt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/adv{ + pixel_y = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/item/weapon/storage/firstaid/adv{ + pixel_y = 2 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/weapon/storage/firstaid/adv{ + pixel_y = -5 }, /turf/simulated/floor{ - icon_state = "white" + dir = 8; + icon_state = "whiteblue" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bKu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" - }, -/area/station/medical/medbreak) +/obj/item/device/assembly/mousetrap/armed, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bKv" = ( /obj/structure/closet/jcloset, /turf/simulated/floor, @@ -49503,39 +49512,32 @@ }, /area/station/rnd/misc_lab) "bKy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" + dir = 5 }, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bKz" = ( /turf/simulated/floor, /area/station/civilian/janitor) "bKA" = ( -/obj/structure/table/glass, -/obj/machinery/kitchen_machine/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/firealarm{ +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = 24 + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 }, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + icon_state = "white" }, -/area/station/medical/medbreak) +/area/station/medical/storage) "bKB" = ( /obj/machinery/door/window/westleft{ name = "Janitoral Delivery"; @@ -49552,8 +49554,9 @@ }, /area/station/civilian/gym) "bKD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "bKE" = ( @@ -49575,18 +49578,20 @@ }, /area/station/storage/tech) "bKH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bKI" = ( -/obj/machinery/life_assist/artificial_ventilation, -/turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/station/medical/sleeper) +/obj/effect/decal/cleanable/dirt, +/obj/random/scrap/safe_even, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bKJ" = ( /obj/item/weapon/cigbutt, /obj/structure/cable{ @@ -49623,54 +49628,36 @@ }, /area/station/rnd/hallway) "bKM" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/simulated/floor{ - dir = 9; - icon_state = "blue" - }, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass, /area/station/medical/genetics) "bKN" = ( -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" - }, -/area/station/medical/medbreak) +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/station/storage/emergency3) "bKO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" +/obj/structure/stool/bed/chair/comfy/brown, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random{ + pixel_x = -32 }, -/area/station/medical/cryo) +/turf/simulated/floor/carpet, +/area/station/civilian/library) "bKP" = ( -/obj/machinery/light, -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/medical, -/turf/simulated/floor{ - icon_state = "whiteblue" - }, -/area/station/medical/sleeper) +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/station/maintenance/atmos) "bKQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/flora/pottedplant/fern, /turf/simulated/floor{ dir = 1; icon_state = "whiteblue" }, -/area/station/medical/cryo) +/area/station/medical/hallway) "bKR" = ( /obj/structure/sign/warning/electricshock{ pixel_x = -32 @@ -49729,10 +49716,9 @@ }, /area/station/medical/cmo) "bKX" = ( -/obj/machinery/light/small{ - dir = 8 - }, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/meter, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "bKY" = ( @@ -49746,9 +49732,11 @@ /turf/simulated/floor, /area/station/civilian/dormitories) "bKZ" = ( -/obj/machinery/body_scanconsole, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/iv_drip, +/obj/structure/stool/bed/roller, /turf/simulated/floor{ - icon_state = "whiteblue" + icon_state = "whitebot" }, /area/station/medical/sleeper) "bLa" = ( @@ -49810,8 +49798,16 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bLg" = ( -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) +/obj/machinery/door/airlock/maintenance{ + name = "Break Room Maintenance"; + req_access = list(5) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/station/medical/medbreak) "bLh" = ( /obj/structure/cable{ d1 = 1; @@ -49881,26 +49877,10 @@ /turf/simulated/floor/plating, /area/station/rnd/lab) "bLp" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_y = 4 - }, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/pen/red{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/weapon/pen{ - pixel_y = 6 - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/seven, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bLq" = ( /turf/simulated/floor{ dir = 9; @@ -49908,38 +49888,27 @@ }, /area/station/hallway/primary/starboard) "bLr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/gas/coloured, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/item/clothing/suit/space/rig/medical, -/obj/item/clothing/head/helmet/space/rig/medical, -/obj/item/device/sensor_device, -/obj/machinery/door/window/southright{ - dir = 8; - name = "Paramedic equipment"; - req_access = list(70) - }, -/obj/item/weapon/storage/belt/medical, -/obj/item/clothing/glasses/hud/health, -/obj/structure/window/reinforced, -/obj/item/device/gps/medical, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/margherita, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" + dir = 5; + icon_state = "cafeteria" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bLs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/storage) +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/station/medical/staff_hallway) "bLt" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Chemistry Lab"; + sortType = "Chemistry Lab" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable{ @@ -49947,12 +49916,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "bLu" = ( @@ -49966,41 +49929,32 @@ }, /area/station/security/hos) "bLv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/trash/candy, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = ""; - name = "Surgery"; - req_access = list(5) - }, -/obj/structure/curtain/medical, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/surgeryobs) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bLw" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor{ + icon_state = "Stairs_alone"; + dir = 8 }, -/turf/simulated/floor/plating, /area/station/maintenance/atmos) "bLx" = ( /obj/effect/decal/cleanable/dirt, @@ -50029,60 +49983,95 @@ }, /area/station/hallway/primary/fore) "bLA" = ( -/obj/structure/stool/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/camera{ - c_tag = "Medbay Cryogenics"; - dir = 1; - network = list("SS13","Medical") +/obj/structure/table, +/obj/item/weapon/storage/visuals/surgery/full, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 4 + }, +/obj/item/weapon/razor{ + pixel_x = -4 + }, +/obj/machinery/vending/wallmed2{ + pixel_x = -26 + }, +/obj/machinery/holosign_switch{ + id = "op1"; + pixel_x = -9; + pixel_y = 27 + }, +/obj/machinery/windowtint{ + id = "op1"; + pixel_y = 27 + }, +/obj/machinery/light_switch{ + pixel_x = 9; + pixel_y = 27 + }, +/obj/machinery/door_control{ + id = "Medical_Surgery1"; + name = "Privacy Shutters"; + pixel_y = 38 }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + dir = 4; + icon_state = "whitehall" }, -/area/station/medical/cryo) +/area/station/medical/surgery) "bLB" = ( -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/medical, -/turf/simulated/floor/carpet/green, -/area/station/medical/patients_rooms) -"bLC" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/structure/table/glass, -/obj/machinery/vending/wallmed2{ - pixel_y = -32 +/obj/item/weapon/cartridge/chemistry{ + pixel_x = 7; + pixel_y = -3 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/item/weapon/cartridge/medical{ + pixel_x = 5 }, -/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/cartridge/medical{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/device/sensor_device{ + pixel_x = -6 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/machinery/light, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" + }, +/area/station/medical/cmo) +"bLC" = ( +/obj/machinery/bodyscanner, /turf/simulated/floor{ dir = 1; - icon_state = "whiteblue" + icon_state = "whitebluecorner" }, -/area/station/medical/cryo) +/area/station/medical/sleeper) "bLD" = ( -/obj/structure/stool/bed/chair/comfy/black{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + dir = 1; + icon_state = "warning" }, -/area/station/medical/medbreak) +/area/station/medical/chemistry) "bLE" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/vending/wallmed2{ - pixel_x = -26 +/obj/machinery/vending/blood, +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_y = -29 }, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + dir = 10; + icon_state = "whiteblue" }, -/area/station/medical/medbreak) +/area/station/medical/sleeper) "bLF" = ( /turf/simulated/wall, /area/station/medical/surgery2) @@ -50146,16 +50135,12 @@ }, /area/station/hallway/primary/starboard) "bLN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/structure/flora/tree/jungle/small, +/turf/simulated/floor/grass, +/turf/simulated/floor{ + icon_state = "wood_siding2" }, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/civilian/garden) "bLO" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/food/snacks/sosjerky, @@ -50178,19 +50163,12 @@ /turf/simulated/floor, /area/station/engineering/monitoring) "bLQ" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +/obj/structure/stool/bed/chair/metal/blue, /turf/simulated/floor{ - icon_state = "white" + dir = 5; + icon_state = "warnwhite" }, -/area/station/medical/virology) +/area/station/medical/surgeryobs) "bLR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -50207,21 +50185,17 @@ /turf/simulated/floor/plating, /area/station/civilian/dormitories) "bLS" = ( -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 4; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 2; - pixel_y = 2 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/weapon/storage/firstaid/adv, -/obj/structure/table/glass, /turf/simulated/floor{ - dir = 9; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bLT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/poddoor{ @@ -50404,13 +50378,10 @@ /turf/simulated/floor/plating, /area/station/engineering/atmos) "bMm" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/clothing/under/patient_gown, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" - }, -/area/station/medical/patients_rooms) +/obj/structure/barricade/wooden, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bMn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -50427,30 +50398,35 @@ }, /area/station/medical/virology) "bMo" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/simulated/floor/carpet/green, +/area/station/medical/psych) +"bMp" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor{ - dir = 9; - icon_state = "whiteblue" + dir = 1; + icon_state = "whitepurple" }, /area/station/medical/genetics) -"bMp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/cigbutt, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) "bMq" = ( -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/disposaloutlet{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/station/medical/genetics) +/turf/simulated/floor{ + dir = 8; + icon_state = "vault" + }, +/area/station/medical/morgue) "bMr" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel"; @@ -50504,11 +50480,9 @@ /area/station/engineering/monitoring) "bMu" = ( /obj/machinery/door/firedoor, -/obj/structure/sign/departments/chemistry{ - pixel_y = -32 - }, +/obj/machinery/light, /turf/simulated/floor{ - icon_state = "neutralcorner" + icon_state = "bluecorner" }, /area/station/hallway/primary/starboard) "bMv" = ( @@ -50517,27 +50491,36 @@ }, /area/station/hallway/primary/starboard) "bMw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/camera{ + c_tag = "Surgery Observation"; + dir = 8; + network = list("SS13","Medical") }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/rack, +/obj/item/roller{ + pixel_x = -7; + pixel_y = 9 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/roller{ + pixel_x = 7; + pixel_y = 8 }, -/obj/machinery/newscaster{ - pixel_y = 32 +/obj/item/roller{ + pixel_x = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/roller{ + pixel_x = -7 + }, +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whiteblue" }, -/area/station/medical/hallway) +/area/station/medical/surgeryobs) "bMx" = ( /obj/structure/stool, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -50552,20 +50535,21 @@ }, /area/station/medical/virology) "bMy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/simulated/floor{ - icon_state = "whitehall" +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Psychiatry_2"; + name = "Privacy Shutters"; + opacity = 0 }, -/area/station/medical/hallway) +/turf/simulated/floor/plating, +/area/station/medical/psych) "bMz" = ( /obj/structure/stool, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -50583,28 +50567,58 @@ }, /area/station/civilian/dormitories) "bMA" = ( -/obj/machinery/light, -/turf/simulated/floor{ - icon_state = "greencorner" +/mob/living/carbon/monkey/skrell, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/hallway/primary/starboard) +/turf/simulated/floor/grass, +/area/station/medical/genetics) "bMB" = ( -/obj/machinery/hologram/holopad, +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bMC" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/station/medical/hallway) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" + }, +/area/station/medical/cmo) "bMD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/station/medical/hallway) +/obj/machinery/washing_machine, +/obj/structure/bedsheetbin{ + pixel_y = 7 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/sign/warning/smoking{ + pixel_y = 32 + }, +/turf/simulated/floor{ + icon_state = "freezerfloor" + }, +/area/station/medical/medbreak) "bME" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -50612,13 +50626,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, /turf/simulated/floor{ dir = 4; - icon_state = "neutralcorner" + icon_state = "blue" }, /area/station/hallway/primary/central) "bMF" = ( @@ -50637,12 +50647,12 @@ }, /area/station/civilian/dormitories) "bMH" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/structure/stool, +/obj/item/weapon/storage/food/small/chips, +/turf/simulated/floor/wood{ + icon_state = "wood-broken4" }, -/area/station/medical/medbreak) +/area/station/maintenance/medbay) "bMI" = ( /obj/structure/table/reinforced, /obj/machinery/ignition_switch{ @@ -50697,12 +50707,15 @@ }, /area/station/civilian/gym) "bMO" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/simulated/floor{ - icon_state = "white" + dir = 8; + icon_state = "whitebluecorner" }, -/area/station/medical/storage) +/area/station/medical/reception_hall) "bMP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -50819,17 +50832,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/eva) "bMX" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = ""; - name = "Surgery"; - req_access = list(5) +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/obj/machinery/door/firedoor, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 8; + icon_state = "barber" }, -/area/station/medical/surgeryobs) +/area/station/medical/cmo) "bMY" = ( /obj/structure/cable{ d1 = 4; @@ -51023,23 +51033,12 @@ /turf/simulated/floor, /area/station/hallway/primary/aft) "bNp" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/food/snacks/meat/human{ - name = "Victor Body Meat" - }, -/obj/item/weapon/reagent_containers/food/snacks/meat/human{ - name = "Josh Body Meat" - }, -/obj/item/weapon/reagent_containers/food/snacks/meat/human{ - name = "Edvard Right Leg Meat" - }, -/obj/item/weapon/reagent_containers/food/snacks/meat/pug, -/obj/item/organ/external/r_arm, -/obj/item/organ/external/l_leg, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/machinery/disposal, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/station/civilian/library) "bNq" = ( /obj/item/weapon/circuitboard/gibber, /obj/effect/decal/cleanable/blood/gibs, @@ -51116,41 +51115,12 @@ }, /area/station/hallway/primary/starboard) "bNw" = ( -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/syringe/inaprovaline{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/weapon/reagent_containers/glass/bottle/stoxin, -/obj/item/weapon/reagent_containers/glass/bottle/toxin{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/syringe/inaprovaline{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/structure/table/glass, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/item/weapon/storage/box/masks{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/flora/random, /turf/simulated/floor{ - dir = 5; + dir = 10; icon_state = "whiteblue" }, -/area/station/medical/storage) +/area/station/medical/hallway) "bNx" = ( /obj/item/device/radio/intercom{ pixel_y = 25 @@ -51224,16 +51194,15 @@ }, /area/station/hallway/primary/starboard) "bNG" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_y = 4 - }, -/obj/item/weapon/pen{ - pixel_y = 6 +/obj/structure/stool/bed/chair/comfy/brown{ + dir = 8 }, -/turf/simulated/floor{ - icon_state = "cult" +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -32 }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, /area/station/civilian/library) "bNH" = ( /obj/structure/table, @@ -51279,15 +51248,10 @@ /turf/simulated/floor, /area/station/civilian/janitor) "bNL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/painting{ - pixel_x = 30 - }, /turf/simulated/floor/wood{ - icon_state = "wood-broken3" + icon_state = "wood-broken5" }, -/area/station/civilian/library) +/area/station/civilian/garden) "bNM" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) @@ -51302,17 +51266,15 @@ /turf/simulated/floor/plating, /area/station/maintenance/dormitory) "bNN" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/clothing/under/patient_gown, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/stool/bed/chair/comfy/black{ + dir = 4 }, +/obj/effect/landmark/start/medical_doctor, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 4; + icon_state = "whitehall" }, -/area/station/medical/patients_rooms) +/area/station/medical/staff_hallway) "bNO" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor{ @@ -51329,72 +51291,66 @@ /turf/simulated/floor/plating, /area/station/maintenance/dormitory) "bNQ" = ( -/obj/random/vending/cola, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/sign/poster/random{ - pixel_x = 32 +/turf/simulated/floor{ + dir = 8; + icon_state = "whitehall" }, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/area/station/medical/infectious_disease_ward) "bNR" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/margherita, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the department."; - dir = 4; - name = "Medical Monitor"; - network = list("Medical"); - pixel_x = -28 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + icon_state = "white" }, -/area/station/medical/medbreak) +/area/station/medical/sleeper) "bNS" = ( /turf/simulated/floor{ icon_state = "dark" }, /area/station/medical/morgue) "bNT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/reinforced{ +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/maintenance/medbay) "bNU" = ( -/obj/machinery/camera{ - c_tag = "Medical Break Room"; - dir = 8; - network = list("SS13","Medical") - }, -/obj/machinery/computer/crew{ - dir = 8 +/obj/item/trash/popcorn, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"bNV" = ( +/obj/structure/stool/bed/chair/comfy/brown{ + dir = 1 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" }, -/area/station/medical/medbreak) -"bNV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/machinery/power/apc{ + name = "Psyciatric Office APC"; + pixel_x = 25; dir = 4 }, -/turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/station/medical/genetics) +/turf/simulated/floor/wood, +/area/station/medical/psych) "bNW" = ( -/turf/simulated/floor{ - icon_state = "whiteblue" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/area/station/medical/genetics) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/station/medical/psych) "bNX" = ( /obj/machinery/power/apc{ dir = 8; @@ -51423,14 +51379,12 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bOa" = ( /obj/structure/cable{ d1 = 1; @@ -51457,16 +51411,24 @@ }, /area/station/hallway/primary/starboard) "bOc" = ( -/obj/machinery/camera{ - c_tag = "Medbay East"; - dir = 8; - network = list("SS13","Medical") +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/life_assist/cardiopulmonary_bypass, +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_y = 25 }, /turf/simulated/floor{ - dir = 6; - icon_state = "whitehall" + dir = 5; + icon_state = "warning" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "bOd" = ( /obj/structure/table, /obj/item/toy/cards, @@ -51862,40 +51824,27 @@ /turf/simulated/floor/wood, /area/station/civilian/library) "bOU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/curtain/medical, +/obj/machinery/door/airlock/medical/glass{ + id_tag = ""; + name = "Surgery"; + req_access = list(5) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor{ + icon_state = "whitebluefull" }, -/obj/random/scrap/safe_even, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/surgeryobs) "bOV" = ( -/obj/machinery/light{ +/obj/machinery/light/small{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/drain{ + drainage = 2 }, /turf/simulated/floor{ - dir = 6; - icon_state = "whitehall" + icon_state = "freezerfloor" }, -/area/station/medical/hallway) +/area/station/medical/medbreak) "bOW" = ( /obj/structure/cable{ d1 = 1; @@ -51957,14 +51906,12 @@ /area/station/hallway/primary/aft) "bPd" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, +/turf/simulated/floor, /area/station/maintenance/atmos) "bPe" = ( /obj/machinery/door/firedoor, @@ -51974,10 +51921,24 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bPf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor{ - icon_state = "blue" + icon_state = "white" }, -/area/station/medical/surgeryobs) +/area/station/medical/infectious_disease_ward) "bPg" = ( /obj/machinery/camera{ c_tag = "Starboard Primary Hallway 3"; @@ -51997,24 +51958,20 @@ /turf/simulated/floor/carpet/red, /area/station/civilian/dormitories/dormtwo) "bPi" = ( -/obj/item/weapon/storage/box/beakers{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/weapon/storage/box/syringes{ - pixel_y = 10 - }, -/obj/item/weapon/storage/box/cdeathalarm_kit{ - pixel_x = 10 +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = -1 +/obj/machinery/camera{ + c_tag = "Medbay Staff"; + network = list("SS13","Medical"); + dir = 4 }, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_x = -26 }, -/area/station/medical/storage) +/turf/simulated/floor/bluegrid, +/area/station/medical/staff_hallway) "bPj" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; @@ -52047,37 +52004,20 @@ /area/station/maintenance/engineering) "bPm" = ( /obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/gas/coloured, -/obj/item/weapon/tank/emergency_oxygen/double, -/obj/item/clothing/suit/space/rig/medical, -/obj/item/clothing/head/helmet/space/rig/medical, -/obj/item/device/sensor_device, -/obj/machinery/door/window/eastright{ - dir = 8; - icon_state = "left"; - name = "Paramedic equipment"; - req_access = list(70) - }, -/obj/item/weapon/storage/belt/medical, -/obj/item/clothing/glasses/hud/health, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/device/gps/medical, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" + dir = 1; + icon_state = "whitehall" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bPn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bPo" = ( -/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor, /area/station/hallway/primary/starboard) "bPp" = ( @@ -52107,9 +52047,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, /turf/simulated/floor, /area/station/hallway/primary/starboard) @@ -52154,50 +52094,46 @@ /turf/simulated/floor, /area/station/hallway/primary/starboard) "bPv" = ( -/obj/random/vending/snack, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/area/station/medical/medbreak) -"bPw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/turf/simulated/floor{ + dir = 1; + icon_state = "greencorner" }, -/turf/simulated/floor, -/area/station/hallway/primary/starboard) -"bPx" = ( +/area/station/civilian/garden) +"bPw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/station/hallway/primary/central) +"bPx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, /turf/simulated/floor{ - icon_state = "white" + dir = 8; + icon_state = "whitehall" }, -/area/station/medical/hallway) +/area/station/medical/surgery) "bPy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -52211,12 +52147,11 @@ }, /area/station/civilian/dormitories) "bPz" = ( -/obj/machinery/light, -/obj/machinery/life_assist/artificial_ventilation, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bPA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -52232,16 +52167,21 @@ /turf/simulated/floor, /area/station/hallway/primary/starboard) "bPB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /obj/structure/cable{ - d1 = 4; + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; d2 = 8; - icon_state = "4-8" + icon_state = "2-8" }, /turf/simulated/floor, /area/station/hallway/primary/starboard) @@ -52279,19 +52219,14 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor, /area/station/hallway/primary/starboard) @@ -52476,57 +52411,64 @@ /turf/simulated/floor/engine, /area/station/rnd/telesci) "bPY" = ( +/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor{ + dir = 4; + icon_state = "Stairs2_wide" }, -/turf/simulated/floor/plating, /area/station/maintenance/atmos) "bPZ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/spawner/lootdrop/maintenance, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) -"bQa" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 4; + icon_state = "1-4" }, +/turf/simulated/floor, +/area/station/maintenance/atmos) +"bQa" = ( +/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "Stairs_wide" }, -/turf/simulated/floor/plating, /area/station/maintenance/atmos) "bQb" = ( /obj/machinery/door/window/eastleft{ @@ -52537,30 +52479,59 @@ }, /area/station/security/main) "bQc" = ( -/obj/effect/landmark/start/medical_doctor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bQd" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/machinery/light/small{ + dir = 8 }, -/area/station/medical/storage) +/turf/simulated/floor/mech_bay_recharge_floor, +/area/station/medical/staff_hallway) "bQe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bQf" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -52570,15 +52541,22 @@ /turf/simulated/floor/plating, /area/station/storage/tech) "bQg" = ( -/obj/machinery/light{ - dir = 4 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/structure/closet/wardrobe/medic_white, /turf/simulated/floor{ dir = 4; - icon_state = "whiteblue" + icon_state = "whitebluecorner" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bQh" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 @@ -52588,14 +52566,18 @@ }, /area/station/civilian/gym) "bQi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/structure/stool/bed, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/structure/grille{ + destroyed = 1 }, -/area/station/medical/medbreak) +/obj/item/weapon/bedsheet/brown, +/obj/random/plushie, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood, +/area/station/maintenance/medbay) "bQj" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -30 @@ -52719,24 +52701,18 @@ }, /area/station/maintenance/engineering) "bQx" = ( -/obj/machinery/bodyscanner, -/obj/machinery/holosign_switch{ - id = "op2"; - pixel_x = -9; - pixel_y = 27 - }, -/obj/machinery/windowtint{ - id = "op2"; - pixel_y = 27 - }, +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/glasses/hud/health, /obj/machinery/light_switch{ - pixel_x = 9; - pixel_y = 27 + pixel_x = 27 }, /turf/simulated/floor{ - icon_state = "whitehall" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bQy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -52814,13 +52790,15 @@ /turf/simulated/floor, /area/station/hallway/primary/aft) "bQH" = ( -/obj/structure/sign/painting{ - pixel_y = -30 +/obj/machinery/dna_scannernew, +/obj/machinery/alarm{ + pixel_y = 28 }, -/turf/simulated/floor/wood{ - icon_state = "wood-broken7" +/turf/simulated/floor{ + dir = 4; + icon_state = "whitegreen" }, -/area/station/civilian/library) +/area/station/medical/genetics) "bQI" = ( /obj/machinery/conveyor{ dir = 10; @@ -52892,14 +52870,11 @@ /turf/simulated/floor, /area/station/engineering/atmos) "bQV" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/crowbar, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 1; + icon_state = "whitehall" }, -/area/station/medical/cryo) +/area/station/medical/staff_hallway) "bQW" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 @@ -53036,15 +53011,29 @@ /turf/simulated/floor/carpet/green, /area/station/civilian/dormitories/dormone) "bRh" = ( +/obj/structure/closet/wardrobe/medic_white, +/obj/item/clothing/suit/straight_jacket, +/obj/item/weapon/cane, +/obj/item/clothing/mask/muzzle, /obj/machinery/camera{ - c_tag = "Medbay Mid"; - dir = 8; - network = list("SS13","Medical") + c_tag = "Medbay Storage"; + network = list("SS13","Medical"); + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/reagent_dispensers/cleaner{ + pixel_x = 32 + }, +/obj/item/device/camera, +/obj/item/device/lens/rentgene, +/obj/item/device/radio/headset/headset_med, +/obj/item/device/radio/headset/headset_med, +/obj/item/device/radio/headset/headset_med, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/hallway) +/area/station/medical/storage) "bRi" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -53096,29 +53085,30 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bRs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" + icon_state = "whitehall" }, -/area/station/medical/hallway) +/area/station/medical/infectious_disease_ward) "bRt" = ( -/obj/machinery/light/small, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/effect/decal/cleanable/spiderling_remains, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = -32 }, -/area/station/medical/medbreak) +/turf/simulated/floor/wood{ + icon_state = "wood-broken3" + }, +/area/station/maintenance/medbay) "bRu" = ( /obj/structure/table, /obj/item/device/t_scanner, @@ -53129,11 +53119,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bRw" = ( -/obj/structure/rack, -/obj/item/weapon/reagent_containers/spray/extinguisher, -/obj/item/device/flashlight, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/station/civilian/library) "bRy" = ( /obj/structure/table, /obj/item/stack/cable_coil/red{ @@ -53176,12 +53169,8 @@ }, /area/station/engineering/engine) "bRF" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, /turf/simulated/floor{ - icon_state = "bluecorner" + icon_state = "purplecorner" }, /area/station/hallway/primary/starboard) "bRG" = ( @@ -53230,16 +53219,18 @@ /turf/simulated/floor/plating, /area/station/construction/assembly_line) "bRK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) +/obj/machinery/computer/security{ + dir = 1 }, -/obj/structure/barricade/wooden{ - layer = 2.8; - name = "doorway barricade" +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/turf/simulated/floor{ + dir = 5; + icon_state = "red" + }, +/area/station/security/medbay_checkpoint) "bRM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53248,34 +53239,16 @@ /turf/simulated/floor/plating, /area/station/construction/assembly_line) "bRN" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/random/vending/cola, /turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" + dir = 10; + icon_state = "warnwhite" }, -/area/station/medical/medbreak) +/area/station/medical/surgeryobs) "bRO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/stool/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/reagent_dispensers/cleaner{ - pixel_x = 32 - }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "whitebot" }, -/area/station/medical/cryo) +/area/station/medical/surgery) "bRP" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 @@ -53316,17 +53289,22 @@ }, /area/station/engineering/atmos) "bRV" = ( -/obj/structure/table, -/obj/item/weapon/wrench{ - pixel_x = 5; - pixel_y = -5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/weapon/wirecutters, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/cryo) +/area/station/medical/staff_hallway) "bRY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 8 @@ -53349,33 +53327,71 @@ /turf/simulated/floor, /area/station/engineering/atmos) "bSc" = ( -/obj/structure/rack, -/obj/item/weapon/stock_parts/cell{ - maxcharge = 2000 +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 }, -/obj/item/weapon/storage/belt/utility, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/item/weapon/reagent_containers/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/blood/BPlus{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/blood/BMinus{ + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/blood/APlus{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/blood/AMinus{ + pixel_x = -7; + pixel_y = -3 + }, +/obj/machinery/power/apc{ + name = "Medbay Storage APC"; + pixel_y = -26 + }, +/obj/structure/cable, +/turf/simulated/floor{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) "bSd" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/simulated/floor/plating, +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/cornseed, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, /area/station/maintenance/medbay) "bSe" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/surgery) +/obj/machinery/light, +/turf/simulated/floor/carpet/green, +/area/station/medical/infectious_disease_ward) "bSf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/airlock/virology/glass{ + name = "Hospital"; + req_access = list(5) }, +/obj/machinery/door/firedoor, /turf/simulated/floor{ - dir = 1; - icon_state = "blue" + dir = 4; + icon_state = "whitegreenfull" }, -/area/station/medical/surgeryobs) +/area/station/medical/infectious_disease_ward) "bSg" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -53387,16 +53403,18 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bSh" = ( -/obj/structure/closet/secure_closet/medical3, +/obj/machinery/mech_bay_recharge_port{ + dir = 1 + }, /obj/item/device/radio/intercom{ frequency = 1485; name = "Station Intercom (Medbay)"; - pixel_x = -28 + pixel_x = -27 }, /turf/simulated/floor{ - icon_state = "whitebluefull" + icon_state = "bot" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bSi" = ( /obj/structure/cable{ d1 = 4; @@ -53453,54 +53471,59 @@ }, /area/station/rnd/xenobiology) "bSn" = ( -/obj/machinery/door/airlock{ - name = "Medbay Restroom"; - req_access = list(5) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "freezerfloor" +/obj/item/weapon/flora/random, +/turf/simulated/floor/wood{ + icon_state = "wood-broken" }, -/area/station/medical/medbreak) +/area/station/civilian/library) "bSo" = ( -/obj/machinery/space_heater, -/obj/machinery/light{ - dir = 1 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor{ - icon_state = "bot" +/obj/item/weapon/shard{ + icon_state = "medium" }, -/area/station/engineering/atmos) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bSp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/wood{ + icon_state = "wood-broken5" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) "bSq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/item/weapon/cigbutt{ + pixel_x = 5; + pixel_y = -10 }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Medbay Storage"; - sortType = "Medbay Storage" +/obj/item/weapon/cigbutt{ + pixel_x = 5; + pixel_y = 5 }, -/turf/simulated/floor/plating, +/obj/item/weapon/cigbutt{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/weapon/cigbutt{ + pixel_x = -6; + pixel_y = -4 + }, +/turf/simulated/floor, /area/station/maintenance/atmos) "bSr" = ( /obj/structure/cable{ @@ -53540,25 +53563,20 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bSv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "Medbay Staff Hallway APC"; + pixel_y = -26 }, /turf/simulated/floor{ - icon_state = "whiteblue" + icon_state = "whitebluecorner" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bSy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor{ - icon_state = "neutralcorner" + icon_state = "white" }, -/area/station/hallway/primary/starboard) +/area/station/medical/staff_hallway) "bSz" = ( /turf/simulated/wall/r_wall, /area/station/rnd/mixing) @@ -53571,38 +53589,45 @@ }, /area/station/hallway/primary/starboard) "bSB" = ( -/obj/machinery/door/airlock/centcom{ - name = "Library" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/turf/simulated/floor{ + icon_state = "damaged5" + }, +/area/station/storage/emergency3) +"bSC" = ( +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/station/civilian/library) -"bSC" = ( -/obj/machinery/door/airlock/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood{ - icon_state = "wood-broken4" +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/turf/simulated/floor/carpet, /area/station/civilian/library) "bSD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/virology/glass{ + name = "Hospital"; + req_access = list(5) }, +/obj/machinery/door/firedoor, /turf/simulated/floor{ - dir = 1; - icon_state = "blue" + dir = 4; + icon_state = "whitegreenfull" }, -/area/station/medical/surgeryobs) +/area/station/medical/infectious_disease_ward) "bSE" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -53646,61 +53671,60 @@ }, /area/station/maintenance/incinerator) "bSN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Genetics Lab"; - req_access = list(9) +/obj/structure/grille{ + destroyed = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/medical/genetics) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bSO" = ( -/obj/structure/table, -/obj/item/weapon/storage/visuals/surgery/full, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = 25 - }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/landmark/start/medical_doctor, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bSP" = ( /turf/simulated/wall/r_wall, /area/station/engineering/break_room) "bSQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 8; + icon_state = "2-8" }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "CMO Office"; - sortType = "CMO Office" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/light{ + dir = 1 }, -/area/station/medical/hallway) +/obj/structure/table/glass, +/obj/item/weapon/game_kit/blue{ + pixel_y = -5 + }, +/obj/item/weapon/storage/fancy/donut_box{ + pixel_y = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/infectious_disease_ward) "bSR" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching the Engineering Department."; @@ -53729,11 +53753,12 @@ }, /area/station/engineering/monitoring) "bST" = ( -/obj/structure/closet/crate, -/obj/item/roller, -/obj/item/device/healthanalyzer, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, +/obj/machinery/seed_extractor, +/obj/item/seeds/watermelonseed, +/turf/simulated/floor/plating{ + dir = 10; + icon_state = "warnplate" + }, /area/station/maintenance/medbay) "bSU" = ( /obj/machinery/access_button{ @@ -53764,12 +53789,9 @@ /turf/simulated/wall/r_wall, /area/station/engineering/atmos) "bSW" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor{ - dir = 6; - icon_state = "green" - }, -/area/station/hallway/primary/starboard) +/obj/structure/sign/departments/pharmacy, +/turf/simulated/wall, +/area/station/hallway/primary/central) "bSX" = ( /obj/machinery/door/firedoor, /obj/structure/grille, @@ -53779,13 +53801,11 @@ /turf/simulated/floor/plating, /area/station/hallway/secondary/entry) "bSY" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 5 +/obj/machinery/biogenerator, +/turf/simulated/floor/plating{ + icon_state = "warnplate" }, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/area/station/maintenance/medbay) "bSZ" = ( /obj/structure/closet/emcloset, /turf/simulated/floor{ @@ -53800,19 +53820,26 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bTc" = ( -/obj/machinery/door/airlock/medical{ - name = "Cooling Room"; - req_access = list(72) +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible{ +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, /obj/machinery/door/firedoor, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/cryo) +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/station/medical/sleeper) "bTd" = ( /obj/effect/decal/cleanable/spiderling_remains, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -53841,11 +53868,19 @@ /area/station/construction/assembly_line) "bTh" = ( /obj/structure/table, -/obj/structure/bedsheetbin, -/turf/simulated/floor{ - icon_state = "freezerfloor" +/obj/item/candle{ + pixel_x = 5; + pixel_y = 11 }, -/area/station/medical/medbreak) +/obj/item/trash/candle{ + pixel_y = 5 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -9; + pixel_y = 11 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bTi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/simulated/floor, @@ -53887,57 +53922,58 @@ /turf/simulated/floor/plating, /area/station/engineering/atmos) "bTr" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 8 +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/wheatseed, +/turf/simulated/floor/plating{ + dir = 4; + icon_state = "warnplate" }, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) "bTs" = ( -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, /turf/simulated/floor{ - dir = 6; icon_state = "whiteblue" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bTt" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/plasticflaps{ - opacity = 1 +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, /obj/machinery/door/firedoor, -/turf/simulated/floor{ - dir = 1; - icon_state = "bot" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/storage) +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Chem"; + name = "Chemistry Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/station/medical/chemistry) "bTu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/power/apc{ dir = 8; name = "Atmos Maintenance APC"; pixel_x = -24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d2 = 2; icon_state = "0-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "bTv" = ( @@ -53947,64 +53983,64 @@ /turf/simulated/floor/plating, /area/station/construction/assembly_line) "bTw" = ( +/obj/machinery/light/small{ + dir = 4 + }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, +/turf/simulated/floor, /area/station/maintenance/atmos) "bTx" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/life_assist/artificial_ventilation, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/surgery) +/turf/simulated/wall, +/area/station/medical/patient_c) "bTz" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, /turf/simulated/floor{ - dir = 4; - icon_state = "whitehall" + dir = 8; + icon_state = "whiteblue" }, -/area/station/medical/surgery2) +/area/station/medical/storage) "bTA" = ( /obj/item/weapon/flora/random, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "bTD" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/mailman, -/obj/item/clothing/head/mailman, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/station/medical/storage) "bTH" = ( /obj/item/weapon/table_parts, /turf/simulated/floor, /area/station/construction) "bTK" = ( -/turf/simulated/floor{ - dir = 4; - icon_state = "whitebluecorner" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/area/station/medical/hallway) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/stool/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/infectious_disease_ward) "bTL" = ( +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor{ - icon_state = "dark" + icon_state = "vault"; + dir = 4 }, /area/station/medical/morgue) "bTM" = ( @@ -54062,23 +54098,24 @@ /turf/simulated/wall/r_wall, /area/station/engineering/monitoring) "bTX" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/item/trash/fries, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "bTY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/under/patient_gown, +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "Operating 1 APC"; + pixel_y = -24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/camera{ + c_tag = "Surgery Operating 1"; + dir = 8; + network = list("SS13","Medical") }, -/area/station/medical/hallway) +/turf/simulated/floor, +/area/station/medical/surgery) "bUa" = ( /obj/structure/cable{ d1 = 1; @@ -54091,14 +54128,21 @@ }, /area/station/hallway/primary/aft) "bUb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access = list(72) +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access = list(5,33) }, /obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/station/medical/storage) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/station/medical/chemistry) "bUc" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -54127,54 +54171,68 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bUg" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor{ - icon_state = "white" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/medical/surgery) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/patient_c) "bUh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/power/apc{ + dir = 1; + level = 4; + name = "Patient Room Three APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/surgery) +/area/station/medical/patient_c) "bUi" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 }, -/obj/machinery/light/small{ - dir = 8 - }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "whiteblue" }, -/area/station/medical/cryo) +/area/station/medical/staff_hallway) "bUl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitegreen" }, -/area/station/medical/surgery) +/area/station/medical/patient_c) "bUp" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 4 @@ -54244,38 +54302,43 @@ /turf/simulated/wall/r_wall, /area/station/engineering/atmos) "bUy" = ( +/obj/machinery/door/airlock/virology{ + name = "Patient Room Two" + }, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor{ + dir = 4; + icon_state = "whitegreenfull" }, -/turf/simulated/floor/wood, -/area/station/medical/psych) +/area/station/medical/patient_b) "bUz" = ( -/obj/machinery/door/airlock/medical{ - name = "Psychiatric Office"; - req_access = list(64) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor{ + dir = 4; + icon_state = "whitegreen" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/station/medical/psych) +/area/station/medical/infectious_disease_ward) "bUA" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -54284,13 +54347,16 @@ /turf/environment/space, /area/space) "bUB" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 +/obj/structure/grille{ + destroyed = 1 }, -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/area/station/medical/hallway) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bUC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on/atmos{ dir = 8; @@ -54323,13 +54389,8 @@ }, /area/station/rnd/hallway) "bUF" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/simulated/floor{ - icon_state = "whitebluecorner" - }, -/area/station/medical/hallway) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/infectious_disease_ward) "bUK" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor{ @@ -54413,17 +54474,9 @@ /turf/simulated/floor/plating, /area/station/construction/assembly_line) "bVa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/reception) +/obj/structure/sign/departments/medbay/alt, +/turf/simulated/wall, +/area/station/security/medbay_checkpoint) "bVb" = ( /obj/structure/stool/bed/chair/metal/yellow{ dir = 8 @@ -54446,20 +54499,26 @@ /turf/simulated/floor, /area/station/engineering/atmos) "bVg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/wall, +/area/station/security/medbay_checkpoint) +"bVh" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_one_access = list(6,28) }, /obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/reception) -"bVh" = ( -/turf/simulated/wall, -/area/station/hallway/primary/starboard) +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 + }, +/turf/simulated/floor{ + icon_state = "dark" + }, +/area/station/medical/morgue) "bVi" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -54554,16 +54613,22 @@ }, /area/station/engineering/monitoring) "bVy" = ( -/obj/machinery/light{ +/obj/machinery/light/small{ dir = 1 }, +/obj/machinery/alarm{ + pixel_y = 28 + }, /obj/structure/cable{ - d1 = 2; + d1 = 4; d2 = 8; - icon_state = "2-8" + icon_state = "4-8" }, -/turf/simulated/floor/carpet/green, -/area/station/medical/psych) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/patient_b) "bVA" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -54573,6 +54638,9 @@ dir = 4; pixel_x = 24 }, +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor{ dir = 4; icon_state = "caution" @@ -54587,12 +54655,11 @@ /turf/simulated/floor/plating, /area/station/rnd/mixing) "bVC" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating{ + icon_state = "platingdmg2" }, -/area/station/medical/cmo) +/area/station/maintenance/atmos) "bVD" = ( /turf/simulated/floor, /area/station/engineering/atmos) @@ -54688,12 +54755,15 @@ }, /area/station/engineering/engine) "bVN" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/item/weapon/flora/floorleaf, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 6; + icon_state = "whiteblue" }, -/area/station/medical/cryo) +/area/station/medical/staff_hallway) "bVO" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 1 @@ -54897,64 +54967,66 @@ }, /area/station/engineering/atmos) "bWj" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor{ + dir = 4; + icon_state = "Stairs2_wide" + }, +/area/station/maintenance/medbay) +"bWk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction, /turf/simulated/floor{ - dir = 6; - icon_state = "yellow" + dir = 8; + icon_state = "whitebluecorner" }, -/area/station/hallway/primary/starboard) -"bWk" = ( -/obj/machinery/door/airlock/glass{ - name = "Library" +/area/station/medical/reception_hall) +"bWl" = ( +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"bWm" = ( +/turf/simulated/floor/wood{ + icon_state = "wood-broken4" + }, +/area/station/civilian/library) +"bWp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood{ - icon_state = "wood-broken" +/turf/simulated/floor{ + icon_state = "white" }, -/area/station/civilian/library) -"bWl" = ( +/area/station/medical/reception_hall) +"bWr" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/turf/simulated/floor{ - dir = 4; - icon_state = "neutralcorner" - }, -/area/station/hallway/primary/central) -"bWm" = ( -/obj/item/weapon/flora/random, -/turf/simulated/floor{ - dir = 9; - icon_state = "green" +/obj/machinery/power/apc{ + dir = 1; + level = 4; + name = "Patient Room Two APC"; + pixel_y = 26 }, -/area/station/civilian/garden) -"bWp" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) -"bWr" = ( -/obj/structure/stool/bed/chair/comfy/brown{ - dir = 4 +/turf/simulated/floor{ + icon_state = "white" }, -/turf/simulated/floor/carpet/green, -/area/station/medical/psych) +/area/station/medical/patient_b) "bWt" = ( /turf/simulated/floor/plating/airless/catwalk, /area/space) @@ -55115,19 +55187,22 @@ /turf/simulated/floor, /area/station/engineering/atmos) "bWV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/turf/simulated/floor{ + dir = 8; + icon_state = "whitegreen" }, -/turf/simulated/floor/wood, -/area/station/medical/psych) +/area/station/medical/patient_b) "bWW" = ( /obj/item/weapon/shard{ icon_state = "medium" @@ -55204,15 +55279,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal) "bXr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southright{ - name = "Genetics Desk"; - req_one_access = list(47,9) +/obj/item/weapon/flora/pottedplant/minitree, +/obj/machinery/alarm{ + pixel_y = 28 }, -/obj/item/weapon/bell, -/turf/simulated/floor/plating, -/area/station/medical/genetics) +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/hallway) "bXs" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -55240,21 +55314,15 @@ }, /area/station/hallway/primary/central) "bXv" = ( -/obj/machinery/door/window/southright{ - dir = 4; - name = "Medbay Storage"; - req_access = list(72) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, /turf/simulated/floor{ - icon_state = "delivery" + dir = 10; + icon_state = "whiteyellow" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "bXw" = ( /obj/structure/stool, /turf/simulated/floor/plating, @@ -55388,14 +55456,12 @@ }, /area/station/engineering/atmos) "bXM" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_one_access = list(6,28) +/obj/structure/morgue{ + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "dark" + dir = 8; + icon_state = "black" }, /area/station/medical/morgue) "bXN" = ( @@ -55418,32 +55484,42 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, /turf/simulated/floor{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "bluecorner" }, /area/station/hallway/primary/central) "bXS" = ( -/obj/item/weapon/flora/random, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor{ + icon_state = "yellow" }, -/turf/simulated/floor/carpet/green, -/area/station/medical/psych) +/area/station/hallway/primary/central) "bXV" = ( -/obj/structure/bookcase{ - name = "bookcase (Adult)" +/obj/item/weapon/paper_bin{ + pixel_x = 7; + pixel_y = -6 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 +/obj/structure/table/woodentable, +/obj/item/weapon/paper, +/obj/item/weapon/paper{ + pixel_x = -7; + pixel_y = -5 }, /obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/wood, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/blood{ + pixel_y = 10; + pixel_x = -11 + }, +/obj/item/trash/candle/ghost{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/grille{ + destroyed = 1 + }, +/turf/simulated/floor/plating, /area/station/civilian/library) "bXW" = ( /obj/effect/decal/cleanable/generic, @@ -55488,12 +55564,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "bYe" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood{ - icon_state = "wood-broken" +/obj/structure/sink{ + pixel_y = 24 }, -/area/station/civilian/library) +/obj/structure/drain{ + drainage = 2 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bYf" = ( /obj/machinery/camera{ c_tag = "Assembly Line"; @@ -55511,9 +55589,14 @@ /turf/simulated/floor, /area/station/engineering/engine) "bYh" = ( -/obj/item/weapon/cigbutt, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central) "bYi" = ( /obj/structure/rack, /obj/item/weapon/storage/fancy/glowsticks{ @@ -55557,12 +55640,12 @@ /turf/simulated/floor/plating, /area/station/engineering/atmos) "bYl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/stool/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 }, /turf/simulated/floor/carpet, /area/station/civilian/library) @@ -55612,13 +55695,10 @@ /turf/simulated/wall, /area/station/engineering/monitoring) "bYr" = ( -/obj/machinery/photocopier, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bYu" = ( /obj/machinery/computer/general_air_control/large_tank_control{ dir = 8; @@ -55689,10 +55769,11 @@ /turf/simulated/floor, /area/station/engineering/break_room) "bYC" = ( -/obj/machinery/libraryscanner, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/turf/simulated/floor, +/area/station/civilian/garden) "bYE" = ( /obj/machinery/atmospherics/components/binary/pump, /turf/simulated/floor, @@ -55702,56 +55783,37 @@ /turf/simulated/floor/engine/n20, /area/station/engineering/atmos) "bYG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/hallway) +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/crowbar, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bYK" = ( -/obj/machinery/disposal, -/obj/effect/decal/cleanable/cobweb2, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28; - pixel_y = -4 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood{ - icon_state = "wood-broken" +/turf/simulated/floor{ + dir = 5; + icon_state = "vault" }, /area/station/civilian/library) "bYL" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/suit_jacket/red, -/obj/item/device/eftpos{ - eftpos_name = "Library EFTPOS scanner" - }, -/obj/item/device/taperecorder, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 22 +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = -30 }, -/obj/item/clothing/shoes/leather, -/obj/item/clothing/suit/wcoat, -/obj/item/clothing/head/beret/black, -/obj/effect/decal/cleanable/cobweb, -/obj/item/device/camera, -/obj/item/device/lens/posterization, -/obj/item/device/lens/sepia, -/obj/item/device/lens/grayscale, /turf/simulated/floor{ - icon_state = "cult" + dir = 5; + icon_state = "vault" }, /area/station/civilian/library) "bYM" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/random/misc/book, /turf/simulated/floor{ - icon_state = "cult" + dir = 5; + icon_state = "vault" }, /area/station/civilian/library) "bYN" = ( @@ -55795,24 +55857,12 @@ /turf/simulated/floor/plating, /area/station/maintenance/incinerator) "bYS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, /turf/simulated/floor{ - dir = 8; - icon_state = "green" + dir = 5; + icon_state = "vault" }, -/area/station/civilian/garden) +/area/station/civilian/library) "bYT" = ( /obj/machinery/atmospherics/components/trinary/tvalve/mirrored/digital, /turf/simulated/floor, @@ -55833,10 +55883,9 @@ /area/station/engineering/atmos) "bYX" = ( /turf/simulated/floor{ - dir = 4; - icon_state = "green" + icon_state = "Stairs2_wide" }, -/area/station/civilian/garden) +/area/station/maintenance/atmos) "bYY" = ( /obj/machinery/atmospherics/components/trinary/filter/on{ dir = 1; @@ -55855,19 +55904,11 @@ }, /area/station/engineering/atmos) "bZa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteblue" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/civilian/garden) +/area/station/medical/surgeryobs) "bZb" = ( /turf/simulated/floor/grass, /area/station/civilian/garden) @@ -56002,11 +56043,10 @@ }, /area/station/construction/assembly_line) "bZH" = ( -/obj/machinery/light/small, -/turf/simulated/floor{ - icon_state = "freezerfloor" - }, -/area/station/medical/medbreak) +/obj/effect/decal/cleanable/generic, +/obj/item/weapon/broken_bottle, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "bZM" = ( /obj/structure/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -56124,14 +56164,23 @@ /turf/simulated/floor/plating, /area/station/maintenance/eva) "cac" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "toxin_test_pump"; + name = "Toxin Test Large Air Vent" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating{ + icon_state = "platebotc" }, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) "cag" = ( /obj/machinery/door/airlock/engineering/glass{ @@ -56190,15 +56239,15 @@ }, /area/station/engineering/monitoring) "cao" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/flora/deskferntrim{ - icon_state = "plant-34-alternative"; - pixel_x = -8; - pixel_y = 10 +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/item/device/healthanalyzer, -/turf/simulated/floor/wood, -/area/station/medical/psych) +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/virology) "cap" = ( /turf/simulated/wall, /area/station/cargo/recycler) @@ -56282,22 +56331,24 @@ }, /area/station/civilian/chapel/altar) "caK" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/carpet/green, -/area/station/medical/psych) -"caL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/grille{ + destroyed = 1 }, /obj/structure/window/reinforced{ dir = 1 }, +/obj/item/weapon/shard{ + icon_state = "medium" + }, /turf/simulated/floor/plating, /area/station/maintenance/medbay) +"caL" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/medical/reception_hall) "caN" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -56313,28 +56364,38 @@ /turf/environment/space/shuttle, /area/shuttle/escape_pod4/station) "caT" = ( -/obj/structure/sign/mark{ - icon_state = "fup"; - pixel_y = -20 +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 }, /turf/simulated/floor{ - icon_state = "whiteblue" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/reception) +/area/station/medical/storage) "caX" = ( /turf/simulated/floor/plating{ icon_state = "platingdmg3" }, /area/station/maintenance/engineering) "caY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_one_access = list(47,9) }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - dir = 6; - icon_state = "whiteblue" + icon_state = "whitepurplefull" }, -/area/station/medical/genetics_cloning) +/area/station/medical/genetics) "cba" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -56350,14 +56411,20 @@ /turf/simulated/floor, /area/station/engineering/break_room) "cbb" = ( -/obj/effect/landmark/start/medical_intern, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + network = list("SS13","Medical") + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, +/obj/item/weapon/defibrillator/loaded, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "warning" }, -/area/station/medical/reception) +/area/station/medical/cryo) "cbd" = ( /obj/machinery/conveyor{ dir = 8; @@ -56471,15 +56538,11 @@ /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "cbx" = ( -/obj/structure/stool/bed/roller, -/obj/machinery/light{ - dir = 4 - }, +/obj/machinery/bodyscanner, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteredcorner" + icon_state = "white" }, -/area/station/medical/reception) +/area/station/medical/sleeper) "cby" = ( /obj/structure/cable{ d1 = 4; @@ -56533,15 +56596,15 @@ /turf/simulated/floor/plating, /area/station/maintenance/portsolar) "cbR" = ( -/obj/structure/stool/bed/chair/comfy/brown, -/obj/machinery/status_display{ - layer = 4; - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood{ - icon_state = "wood-broken" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/turf/simulated/floor/wood, /area/station/civilian/library) "cbS" = ( /obj/machinery/conveyor{ @@ -56551,26 +56614,15 @@ /turf/simulated/floor/plating/airless, /area/station/cargo/recycler) "cbT" = ( -/obj/machinery/door/window/northright{ - dir = 8; - name = "Library Desk Door"; - req_access = list(37) - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Library North"; - dir = 6 - }, -/obj/machinery/windowtint{ - id = "Library"; - pixel_y = 28 - }, -/turf/simulated/floor/wood{ - icon_state = "wood-broken7" +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "virology_outer"; + locked = 1; + name = "Engineering External Access"; + req_one_access = list(13,45,1) }, -/area/station/civilian/library) +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "cbV" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics"; @@ -56658,13 +56710,10 @@ }, /area/station/hallway/primary/starboard) "ccu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/reception) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/station/civilian/library) "ccx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -56714,14 +56763,12 @@ /turf/simulated/floor/engine/carbon_dioxide, /area/station/engineering/atmos) "ccD" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/decal/cleanable/vomit, -/turf/simulated/floor{ - icon_state = "freezerfloor" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" }, -/area/station/medical/medbreak) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "ccE" = ( /turf/simulated/floor/engine/n20, /area/station/engineering/atmos) @@ -56732,56 +56779,64 @@ /turf/simulated/floor/plating, /area/station/maintenance/science) "ccK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet/green, -/area/station/civilian/library) -"ccL" = ( -/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"ccL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /turf/simulated/floor{ - dir = 8; - icon_state = "green" + dir = 4; + icon_state = "whitegreen" }, -/area/station/civilian/garden) +/area/station/medical/genetics) "ccM" = ( -/obj/structure/stool/bed/chair/comfy/brown{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/effect/landmark/start/psychiatrist, -/obj/machinery/light_switch{ - pixel_y = -27 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/station/medical/psych) -"ccN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"ccN" = ( +/obj/structure/reagent_dispensers/aqueous_foam_tank, /turf/simulated/floor{ - dir = 4; - icon_state = "green" + icon_state = "damaged4" }, -/area/station/civilian/garden) +/area/station/storage/emergency3) "ccO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/door/airlock/glass{ + name = "Library" }, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/civilian/garden) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/station/civilian/library) "ccP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -56795,14 +56850,8 @@ /turf/simulated/floor/grass, /area/station/civilian/garden) "ccR" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/mask/gas/coloured, -/obj/item/weapon/reagent_containers/spray/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/item/clothing/glasses/meson, -/turf/simulated/floor/plating, +/obj/item/trash/candy, +/turf/simulated/floor, /area/station/storage/emergency3) "ccT" = ( /obj/machinery/door/airlock/glass{ @@ -56965,17 +57014,27 @@ /turf/simulated/floor, /area/station/security/main) "cdE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/chemistry) "cdF" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "cdH" = ( -/turf/simulated/floor/plating{ - icon_state = "platingdmg3" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 }, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, /area/station/maintenance/atmos) "cdI" = ( /obj/structure/cable{ @@ -57027,18 +57086,23 @@ }, /area/station/construction/assembly_line) "cdP" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor{ + icon_state = "Stairs_alone" + }, /area/station/maintenance/atmos) "cdR" = ( -/obj/structure/closet/toolcloset, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) -"cdS" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/machinery/door/firedoor, +/turf/simulated/floor{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) +"cdS" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "cdT" = ( @@ -57196,7 +57260,11 @@ }, /area/station/rnd/test_area) "cer" = ( -/turf/simulated/floor/plating, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/stool, +/turf/simulated/floor, /area/station/storage/emergency3) "ces" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ @@ -57217,13 +57285,15 @@ /turf/simulated/floor/engine/carbon_dioxide, /area/station/engineering/atmos) "cew" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/boxing, -/obj/item/clothing/mask/luchador/tecnicos, -/obj/item/clothing/under/boxing, -/obj/item/clothing/gloves/fingerless, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/obj/structure/sign/mark{ + icon_state = "fup"; + pixel_y = -4 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/hallway) "cex" = ( /obj/machinery/light{ dir = 4 @@ -57585,28 +57655,18 @@ /turf/simulated/floor/plating, /area/station/storage/emergency3) "cfC" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor{ + icon_state = "stairs_middle"; + dir = 1 }, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/area/station/civilian/library) "cfD" = ( -/obj/machinery/power/apc{ +/obj/structure/morgue, +/turf/simulated/floor{ dir = 4; - name = "Starboard Emergency Storage APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" + icon_state = "black" }, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/area/station/medical/morgue) "cfH" = ( /obj/structure/stool/bed/chair{ dir = 4 @@ -58091,12 +58151,18 @@ }, /area/station/maintenance/atmos) "chb" = ( -/obj/structure/bookcase/manuals/medical, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/structure/table, +/obj/item/weapon/reagent_containers/dropper{ + pixel_x = -4; + pixel_y = 5 }, -/area/station/medical/medbreak) +/obj/item/weapon/reagent_containers/glass/beaker/large{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "chc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -58291,11 +58357,15 @@ }, /area/station/engineering/atmos) "chw" = ( -/obj/machinery/space_heater, +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 5"; + dir = 1 + }, /turf/simulated/floor{ - icon_state = "bot" + icon_state = "neutralcorner" }, -/area/station/engineering/atmos) +/area/station/hallway/primary/starboard) "chz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{ dir = 1; @@ -58538,9 +58608,24 @@ }, /area/station/engineering/atmos) "cil" = ( -/obj/structure/reagent_dispensers/aqueous_foam_tank, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/under/patient_gown, +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "Operating 2 APC"; + pixel_y = -25 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Surgery Operating 2"; + network = list("SS13","Medical"); + dir = 4 + }, +/turf/simulated/floor, +/area/station/medical/surgery2) "cim" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27; @@ -58619,14 +58704,10 @@ /turf/simulated/floor/engine/nitrogen, /area/station/engineering/atmos) "ciD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor{ + icon_state = "cult" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, /area/station/civilian/library) "ciG" = ( /obj/structure/grille, @@ -58702,11 +58783,17 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "ciT" = ( -/obj/machinery/computer/operating, -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "toxin_test_airlock"; + name = "exterior access button"; + pixel_x = -20; + pixel_y = 20; + req_one_access = list(13,45,1) }, -/area/station/medical/surgery) +/turf/simulated/floor/plating, +/area/space) "ciU" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; @@ -58844,12 +58931,12 @@ /turf/simulated/floor/engine, /area/station/rnd/xenobiology) "cjs" = ( -/obj/machinery/door/airlock/glass{ - name = "Library" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "cjt" = ( /obj/machinery/disposal, /obj/structure/window/reinforced, @@ -59033,19 +59120,23 @@ /turf/simulated/floor/plating, /area/station/maintenance/eva) "cjY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/carpet, /area/station/civilian/library) "cjZ" = ( /obj/structure/sign/warning/securearea{ @@ -59183,11 +59274,19 @@ /turf/simulated/floor/plating/airless, /area/station/cargo/recycler) "ckt" = ( -/obj/machinery/computer/operating, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "stairs_middle"; + dir = 1 }, -/area/station/medical/surgery2) +/area/station/civilian/library) "ckv" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, @@ -59261,6 +59360,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, +/obj/structure/closet/firecloset, /turf/simulated/floor{ dir = 8; icon_state = "caution" @@ -59298,14 +59398,11 @@ }, /area/station/civilian/janitor) "ckM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor{ - dir = 4; - icon_state = "green" +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 }, -/area/station/civilian/garden) +/turf/simulated/floor/carpet, +/area/station/civilian/library) "ckN" = ( /obj/structure/transit_tube/station{ dir = 8 @@ -59391,14 +59488,11 @@ }, /area/station/engineering/chiefs_office) "ckW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/door/airlock/glass{ + name = "Library" }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/civilian/garden) +/turf/simulated/floor/wood, +/area/station/civilian/library) "ckX" = ( /obj/structure/grille, /obj/structure/window/reinforced, @@ -60162,10 +60256,9 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/closet/firecloset, +/obj/machinery/space_heater, /turf/simulated/floor{ - dir = 8; - icon_state = "caution" + icon_state = "bot" }, /area/station/engineering/atmos) "cng" = ( @@ -60654,13 +60747,9 @@ }, /area/station/aisat/ai_chamber) "coo" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor{ - icon_state = "bluecorner" - }, -/area/station/hallway/primary/starboard) +/obj/machinery/cryopod/right, +/turf/simulated/floor/carpet/green, +/area/station/medical/infectious_disease_ward) "coq" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -60842,14 +60931,15 @@ }, /area/station/engineering/atmos) "coK" = ( -/obj/machinery/light, -/obj/structure/sign/plaques/kiddie/library{ - pixel_y = -30 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random{ + pixel_x = 32 }, -/turf/simulated/floor{ - icon_state = "neutralcorner" +/turf/simulated/floor/wood{ + icon_state = "wood-broken3" }, -/area/station/hallway/primary/starboard) +/area/station/civilian/library) "coL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -60860,39 +60950,33 @@ /turf/simulated/floor/whitegreed, /area/station/aisat/ai_chamber) "coM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Library" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Library" +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/window/reinforced/polarized{ - id = "Library" +/obj/item/weapon/flora/random, +/turf/simulated/floor{ + dir = 5; + icon_state = "vault" }, -/turf/simulated/floor/plating, /area/station/civilian/library) "coN" = ( -/obj/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood{ - icon_state = "wood-broken5" +/obj/structure/bookcase{ + name = "bookcase (Adult)" }, +/obj/random/misc/book, +/turf/simulated/floor/plating, /area/station/civilian/library) "coO" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Library" +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/window/reinforced/polarized{ - id = "Library" +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor{ + dir = 5; + icon_state = "vault" }, -/turf/simulated/floor/plating, /area/station/civilian/library) "coP" = ( /obj/machinery/access_button{ @@ -60907,9 +60991,26 @@ /turf/simulated/floor/plating/airless/catwalk, /area/space) "coQ" = ( -/obj/machinery/bookbinder, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/station/maintenance/atmos) "coR" = ( /obj/machinery/door/window{ dir = 1; @@ -60927,9 +61028,11 @@ }, /area/station/aisat/ai_chamber) "coS" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/libraryconsole/bookmanagement/old, -/turf/simulated/floor/wood, +/obj/item/weapon/flora/random, +/turf/simulated/floor{ + dir = 5; + icon_state = "vault" + }, /area/station/civilian/library) "coT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -61047,9 +61150,9 @@ }, /area/station/aisat/teleport) "cpi" = ( -/obj/machinery/light, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "bluecorner" + icon_state = "purple" }, /area/station/hallway/primary/starboard) "cpk" = ( @@ -61465,16 +61568,15 @@ }, /area/station/rnd/xenobiology) "cpS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light/small{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/structure/closet/emergency_wall{ + pixel_x = 30 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "warning" }, /area/station/storage/emergency) "cpT" = ( @@ -61579,7 +61681,7 @@ "cqi" = ( /obj/machinery/door/firedoor, /turf/simulated/floor{ - icon_state = "neutralcorner" + icon_state = "yellowcorner" }, /area/station/hallway/primary/starboard) "cqj" = ( @@ -61867,9 +61969,8 @@ }, /area/station/aisat/teleport) "cqK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor{ icon_state = "bluecorner" }, @@ -62169,20 +62270,16 @@ }, /area/station/aisat) "cry" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/reception) +/turf/simulated/floor, +/area/station/medical/cryo) "crA" = ( /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/wood{ @@ -62561,19 +62658,18 @@ /turf/simulated/floor/plating/airless/catwalk, /area/station/solar/port) "csA" = ( -/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock{ - name = "Firefighting equipment" - }, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/infectious_disease_ward) "csB" = ( /obj/machinery/porta_turret/station_default, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -63010,11 +63106,24 @@ }, /area/station/engineering/engine) "ctu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/dryer{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, /turf/simulated/floor{ - dir = 5; - icon_state = "blue" + icon_state = "freezerfloor2" }, -/area/station/medical/genetics) +/turf/simulated/floor{ + dir = 8; + icon_state = "warningline" + }, +/area/station/medical/virology) "ctx" = ( /obj/machinery/flasher{ id = "HoP_flasher"; @@ -63046,7 +63155,9 @@ dir = 8; icon_state = "pipe-c" }, -/turf/simulated/floor, +/turf/simulated/floor{ + icon_state = "neutralcorner" + }, /area/station/hallway/primary/starboard) "ctC" = ( /obj/machinery/hologram/holopad, @@ -63077,27 +63188,44 @@ }, /area/station/security/armoury) "ctJ" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "whitehall" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/station/medical/reception) +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/security/medbay_checkpoint) "ctK" = ( -/obj/random/vending/snack, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor{ - icon_state = "dark" + dir = 1; + icon_state = "warnwhite" }, -/area/station/hallway/primary/starboard) +/area/station/medical/virology) "ctM" = ( -/obj/random/vending/cola, +/obj/structure/sign/departments/morgue, +/turf/simulated/wall, +/area/station/medical/morgue) +"ctO" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, /turf/simulated/floor{ - icon_state = "dark" + icon_state = "purplecorner" }, /area/station/hallway/primary/starboard) -"ctO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/simulated/floor/carpet/green, -/area/station/civilian/library) "ctP" = ( /turf/simulated/wall/r_wall, /area/station/maintenance/starboardsolar) @@ -63261,40 +63389,54 @@ /turf/simulated/floor/plating, /area/station/engineering/engine) "cuk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/visible, /turf/simulated/floor{ - dir = 8; - icon_state = "greencorner" + icon_state = "white" }, -/area/station/hallway/primary/starboard) +/area/station/medical/storage) "cul" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_one_access = list(47,9) +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/simulated/floor, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, /area/station/medical/genetics) "cuo" = ( -/obj/item/weapon/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating{ + icon_state = "platingdmg1" }, -/turf/simulated/floor/plating, /area/station/storage/emergency3) "cuq" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor{ - icon_state = "dark" + dir = 4; + icon_state = "warning" }, -/area/station/hallway/primary/starboard) +/area/station/medical/cryo) "cur" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 @@ -63314,18 +63456,14 @@ /turf/simulated/floor/plating, /area/station/engineering/engine) "cuu" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet/green, -/area/station/civilian/library) +/turf/simulated/wall/r_wall, +/area/station/medical/storage) "cuv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor{ - icon_state = "dark" - }, -/area/station/medical/morgue) +/obj/structure/rack, +/obj/item/weapon/reagent_containers/spray/extinguisher, +/obj/item/device/flashlight, +/turf/simulated/floor, +/area/station/maintenance/medbay) "cuw" = ( /obj/machinery/keycard_auth{ pixel_x = -24 @@ -63386,10 +63524,6 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, /turf/simulated/floor, /area/station/hallway/primary/starboard) "cuE" = ( @@ -63457,18 +63591,13 @@ }, /area/station/rnd/xenobiology) "cuM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "yellowcorner" }, -/turf/simulated/floor, /area/station/hallway/primary/starboard) "cuN" = ( /turf/simulated/floor{ @@ -63476,15 +63605,26 @@ }, /area/station/civilian/garden) "cuP" = ( -/obj/machinery/door/airlock/glass{ - name = "Garden" +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor{ +/obj/machinery/power/apc{ dir = 4; - icon_state = "green" + level = 4; + name = "Chemistry APC"; + pixel_x = 25 }, -/area/station/civilian/garden) +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 8; + network = list("SS13","Medical") + }, +/turf/simulated/floor{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "cuQ" = ( /obj/machinery/power/apc{ dir = 8; @@ -63564,14 +63704,14 @@ }, /area/station/bridge/hop_office) "cvd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor{ - dir = 4; - icon_state = "warning" +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/area/station/medical/chemistry) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "cvf" = ( /obj/machinery/conveyor{ dir = 4; @@ -63595,38 +63735,36 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating{ - icon_state = "platingdmg2" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/turf/simulated/floor, /area/station/maintenance/atmos) "cvj" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/glass, +/obj/machinery/body_scanconsole, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/life_assist/artificial_ventilation, /turf/simulated/floor{ - dir = 5; - icon_state = "whiteyellow" + icon_state = "white" }, -/area/station/medical/chemistry) +/area/station/medical/sleeper) "cvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "green" }, -/area/station/medical/chemistry) +/area/station/civilian/garden) "cvm" = ( /obj/item/weapon/flora/random, /turf/simulated/floor{ @@ -63663,15 +63801,12 @@ }, /area/station/bridge/hop_office) "cvo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance/three, /turf/simulated/floor{ - dir = 1; - icon_state = "green" + icon_state = "yellowcorner" }, -/area/station/civilian/garden) +/area/station/maintenance/medbay) "cvq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63681,28 +63816,29 @@ }, /area/station/civilian/garden) "cvx" = ( -/obj/item/weapon/flora/random, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor{ - dir = 9; - icon_state = "blue" +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/door/window/southright{ + dir = 8; + name = "Shrubbery"; + req_access = list(9) }, +/turf/simulated/floor/grass, /area/station/medical/genetics) "cvy" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen/invisible, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/door/airlock/glass{ + name = "Library" }, -/obj/machinery/newscaster{ - pixel_x = 28 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor{ - icon_state = "cult" + dir = 5; + icon_state = "vault" }, /area/station/civilian/library) "cvD" = ( @@ -63732,14 +63868,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/starboardsolar) "cvH" = ( +/obj/structure/grille, /obj/structure/window/reinforced{ - dir = 5 + dir = 1 }, +/obj/structure/window/reinforced, /obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/sign/departments/medbay, /turf/simulated/floor/plating, -/area/station/medical/reception) +/area/station/security/medbay_checkpoint) "cvM" = ( /obj/machinery/door/airlock/engineering{ name = "Aft Port Solar Access"; @@ -63770,29 +63906,24 @@ }, /area/station/engineering/atmos) "cvS" = ( -/obj/machinery/door/airlock/glass{ - name = "Garden" +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - dir = 8; - icon_state = "green" + dir = 5; + icon_state = "vault" }, -/area/station/civilian/garden) +/area/station/civilian/library) "cvT" = ( -/obj/structure/closet, +/obj/machinery/hologram/holopad, /turf/simulated/floor{ - icon_state = "dark" + dir = 4; + icon_state = "whitehall" }, -/area/station/hallway/primary/starboard) +/area/station/medical/infectious_disease_ward) "cvU" = ( /obj/structure/closet/secure_closet/engineering_welding, /turf/simulated/floor{ @@ -63903,13 +64034,10 @@ /turf/simulated/floor, /area/station/medical/reception) "cwD" = ( -/obj/structure/window/reinforced{ - dir = 5 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, +/obj/effect/spawner/lootdrop/maintenance/two, +/obj/structure/closet/secure_closet/personal, /turf/simulated/floor/plating, -/area/station/medical/reception) +/area/station/civilian/library) "cwE" = ( /obj/machinery/conveyor{ dir = 1; @@ -63932,25 +64060,21 @@ }, /area/station/maintenance/starboardsolar) "cwJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ +/obj/structure/stool/bed/chair/metal{ dir = 4 }, -/turf/simulated/floor/plating, -/area/station/medical/reception) +/obj/item/weapon/storage/fancy/cigarettes, +/turf/simulated/floor, +/area/station/maintenance/atmos) "cwM" = ( -/obj/structure/stool/bed/chair/office/dark{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/simulated/floor, -/area/station/medical/reception) +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/genetics) "cwN" = ( /turf/simulated/floor/plating/airless{ dir = 6; @@ -63973,14 +64097,15 @@ }, /area/station/civilian/garden) "cwQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/light/small{ dir = 4 }, -/turf/simulated/floor{ +/obj/machinery/firealarm{ dir = 4; - icon_state = "greencorner" + pixel_x = 24 }, -/area/station/civilian/garden) +/turf/simulated/floor/wood, +/area/station/civilian/library) "cwR" = ( /obj/structure/cable{ d1 = 1; @@ -64125,24 +64250,20 @@ }, /area/station/hallway/primary/central) "cxk" = ( -/obj/item/weapon/flora/deskferntrim{ - icon_state = "plant-34-alternative"; - pixel_x = -8; - pixel_y = 10 - }, -/obj/structure/table/woodentable/poker, -/obj/item/weapon/reagent_containers/food/drinks/h_chocolate{ - pixel_x = 7 - }, -/obj/machinery/newscaster{ - pixel_x = -28 +/obj/structure/closet/cabinet, +/obj/item/device/camera, +/obj/item/clothing/under/suit_jacket/red, +/obj/item/device/eftpos{ + eftpos_name = "Library EFTPOS scanner" }, -/obj/machinery/light/small{ - dir = 8 +/obj/item/device/taperecorder, +/obj/item/clothing/shoes/leather, +/obj/item/clothing/suit/wcoat, +/obj/item/clothing/head/beret/black, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor{ + icon_state = "cult" }, -/obj/random/misc/book, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, /area/station/civilian/library) "cxl" = ( /obj/structure/disposalpipe/segment{ @@ -64153,37 +64274,37 @@ }, /area/station/civilian/garden) "cxm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/turf/simulated/floor{ + dir = 6; + icon_state = "warning" }, /area/station/storage/emergency) "cxn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor{ - dir = 4; - icon_state = "green" +/obj/machinery/bookbinder, +/turf/simulated/floor/wood{ + icon_state = "wood-broken7" }, -/area/station/civilian/garden) +/area/station/civilian/library) "cxo" = ( /obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "Library" }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/window/reinforced/polarized{ + id = "Library" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "Library" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "Library" }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/station/civilian/garden) +/area/station/civilian/library) "cxp" = ( /turf/simulated/floor/grass, /turf/simulated/floor{ @@ -64216,7 +64337,7 @@ }, /turf/simulated/floor{ dir = 4; - icon_state = "neutralcorner" + icon_state = "blue" }, /area/station/hallway/primary/central) "cxx" = ( @@ -64237,10 +64358,19 @@ /turf/simulated/floor/plating, /area/station/rnd/server) "cxy" = ( -/turf/simulated/floor{ - icon_state = "whitebot" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/area/station/medical/reception) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/station/security/medbay_checkpoint) "cxz" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -64374,8 +64504,7 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor{ - dir = 8; - icon_state = "neutralcorner" + icon_state = "yellowcorner" }, /area/station/hallway/primary/central) "cxR" = ( @@ -64391,14 +64520,12 @@ }, /area/station/engineering/singularity) "cxS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor{ - icon_state = "greencorner" +/obj/structure/bookcase/manuals/research_and_development, +/obj/structure/sign/poster/random{ + pixel_x = 32 }, -/area/station/civilian/garden) +/turf/simulated/floor/wood, +/area/station/civilian/library) "cxT" = ( /obj/machinery/clonepod, /turf/simulated/floor/engine, @@ -64408,14 +64535,13 @@ /turf/simulated/floor/engine, /area/station/rnd/xenobiology) "cxW" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor{ - icon_state = "green" - }, -/area/station/civilian/garden) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "cxZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -64433,13 +64559,11 @@ }, /area/station/rnd/xenobiology) "cya" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/machinery/light/small{ + dir = 1 }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/turf/simulated/floor, +/area/station/maintenance/medbay) "cyd" = ( /obj/structure/rack, /obj/item/clothing/shoes/magboots, @@ -64514,13 +64638,15 @@ /turf/environment/space, /area/space) "cyo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/stool/bed/chair/comfy/brown{ + dir = 8 }, -/turf/simulated/floor{ - icon_state = "greencorner" +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 }, -/area/station/civilian/garden) +/turf/simulated/floor/carpet, +/area/station/civilian/library) "cyq" = ( /obj/machinery/computer/crew{ dir = 4 @@ -64589,36 +64715,29 @@ }, /area/station/maintenance/engineering) "cyD" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/obj/item/weapon/pen, -/obj/machinery/power/apc{ - dir = 1; - name = "Morgue APC"; - pixel_y = 24 +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor{ - icon_state = "dark" + dir = 8; + icon_state = "barber" }, -/area/station/medical/morgue) +/area/station/medical/cmo) "cyE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor{ - dir = 1; - icon_state = "bluecorner" +/mob/living/carbon/monkey{ + name = "Stanley" }, +/turf/simulated/floor/grass, /area/station/medical/genetics) "cyG" = ( -/obj/structure/window/reinforced{ - dir = 8 +/obj/item/weapon/shard{ + icon_state = "medium" }, -/obj/structure/grille, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "cyI" = ( @@ -64643,21 +64762,25 @@ /turf/simulated/wall/r_wall, /area/station/engineering/engine) "cyM" = ( -/obj/structure/table, -/obj/machinery/alarm{ - pixel_y = 23 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/folder/white, /turf/simulated/floor{ - icon_state = "dark" + dir = 4; + icon_state = "green" }, -/area/station/medical/morgue) +/area/station/civilian/garden) "cyN" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "dark" + icon_state = "vault"; + dir = 4 }, /area/station/medical/morgue) "cyO" = ( @@ -64673,20 +64796,11 @@ }, /area/station/construction/assembly_line) "cyS" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "virology_airlock"; - name = "interior access button"; - pixel_x = 20; - pixel_y = -20; - req_one_access = list(13,45,1) - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/turf/simulated/floor, +/area/station/civilian/garden) "cyT" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -64778,14 +64892,21 @@ }, /area/station/rnd/brainstorm_center) "czg" = ( -/obj/structure/stool/bed/chair/office/light{ - dir = 4 +/obj/structure/table, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_y = 7; + pixel_x = -9 }, /turf/simulated/floor{ - dir = 4; - icon_state = "blue" + dir = 1; + icon_state = "warning" }, -/area/station/medical/reception) +/area/station/medical/cryo) "czh" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 1 @@ -64824,16 +64945,20 @@ /turf/simulated/floor/plating, /area/station/maintenance/chapel) "czt" = ( -/obj/machinery/door/window/southright{ - dir = 1; - name = "Medbay Reception"; - req_access = list(5) +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/simulated/floor{ - dir = 1; - icon_state = "blue" +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/station/medical/reception) +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/security/medbay_checkpoint) "czu" = ( /turf/simulated/floor{ dir = 1; @@ -64866,37 +64991,21 @@ /turf/environment/space, /area/space) "czz" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/reagent_containers/food/drinks/britcup{ - pixel_x = -4 - }, -/obj/item/weapon/reagent_containers/glass/beaker/teapot, +/obj/structure/closet/secure_closet/security, /turf/simulated/floor{ - dir = 1; - icon_state = "blue" + dir = 10; + icon_state = "red" }, -/area/station/medical/reception) +/area/station/security/medbay_checkpoint) "czB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" +/obj/machinery/chem_dispenser, +/obj/machinery/newscaster{ + pixel_y = -28 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "platingdmg3" +/turf/simulated/floor{ + icon_state = "warning" }, -/area/station/storage/emergency) +/area/station/medical/chemistry) "czC" = ( /obj/machinery/door/poddoor{ desc = "By gods, release the hounds!"; @@ -65029,11 +65138,14 @@ /turf/simulated/floor, /area/station/engineering/engine) "czO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/obj/machinery/smartfridge/chemistry, +/obj/machinery/door/window/eastright{ + layer = 2.9; + name = "Chemistry Storage"; + req_access = list(5) }, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/turf/simulated/wall/r_wall, +/area/station/medical/storage) "czP" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -65138,14 +65250,9 @@ }, /area/station/rnd/xenobiology) "czX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/station/engineering/atmos) +/obj/structure/sign/warning/fire, +/turf/simulated/wall, +/area/station/maintenance/medbay) "czY" = ( /obj/item/weapon/storage/box/monkeycubes, /obj/item/weapon/storage/box/monkeycubes, @@ -65157,51 +65264,47 @@ }, /area/station/rnd/xenobiology) "czZ" = ( -/obj/machinery/computer/crew, -/obj/structure/window/reinforced{ - dir = 1 - }, +/obj/item/weapon/flora/pottedplant/tropicalfern, /turf/simulated/floor{ - dir = 9; - icon_state = "blue" + dir = 4; + icon_state = "whiteredcorner" }, -/area/station/medical/reception) +/area/station/medical/reception_hall) "cAa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating{ + icon_state = "platingdmg3" }, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) "cAb" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Surgery Operating 2"; - network = list("SS13","Medical") +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = -8; + pixel_y = 12 }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 4 +/obj/item/weapon/storage/box/masks{ + pixel_x = 8; + pixel_y = 12 }, -/obj/item/weapon/razor{ - pixel_x = -4 +/obj/item/weapon/storage/box/rxglasses{ + pixel_x = -8 }, -/turf/simulated/floor, -/area/station/medical/surgery2) +/obj/item/weapon/storage/box/pillbottles{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) "cAc" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas/coloured, -/obj/item/clothing/gloves/black, -/obj/item/weapon/crowbar, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/table/glass, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/cmo) "cAd" = ( /obj/structure/lattice, /obj/structure/grille, @@ -65215,11 +65318,21 @@ /turf/environment/space, /area/space) "cAf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/turf/simulated/floor, -/area/station/medical/surgeryobs) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/infectious_disease_ward) "cAh" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8 @@ -65230,23 +65343,18 @@ /turf/simulated/floor, /area/station/engineering/atmos) "cAi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor{ + dir = 9; + icon_state = "blue" }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/medical/surgery2) "cAk" = ( /obj/machinery/light{ dir = 8 @@ -65288,25 +65396,17 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "cAx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Break Room Maintenance"; - req_access = list(5) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/stool/bed/chair/wheelchair, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor{ + dir = 8; + icon_state = "whitebluecorner" }, -/turf/simulated/floor/plating, -/area/station/medical/medbreak) +/area/station/medical/storage) "cAz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stool/bed/chair/metal{ - dir = 8 - }, -/obj/structure/spider/stickyweb, +/obj/item/trash/sosjerky, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "cAA" = ( @@ -65380,17 +65480,16 @@ /turf/simulated/floor, /area/station/engineering/engine) "cAL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/structure/window/reinforced{ + dir = 8 }, /turf/simulated/floor/plating, -/area/station/storage/emergency3) +/area/station/civilian/garden) "cAM" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -65477,36 +65576,12 @@ /turf/simulated/wall/r_wall, /area/station/maintenance/engineering) "cAX" = ( -/obj/machinery/door/airlock/command/glass{ - id_tag = "CMO_door"; - name = "Chief Medical Officer"; - req_access = list(40) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/machinery/iv_drip, /turf/simulated/floor{ - dir = 8; - icon_state = "barber" + dir = 4; + icon_state = "green" }, -/area/station/medical/cmo) +/area/station/medical/infectious_disease_ward) "cAZ" = ( /obj/machinery/status_display{ layer = 4; @@ -65556,17 +65631,19 @@ }, /area/station/engineering/atmos) "cBh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/hydrant{ - pixel_x = -32 +/turf/simulated/floor{ + dir = 5; + icon_state = "whiteblue" }, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/area/station/medical/storage) "cBj" = ( /obj/structure/rack, /obj/item/clothing/suit/fire/firefighter, @@ -65580,31 +65657,41 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "cBk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Library APC"; - pixel_x = -25 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/structure/bookcase{ - name = "bookcase (Non-Fiction)" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "cBl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /obj/structure/cable{ - d1 = 1; + d1 = 2; d2 = 8; - icon_state = "1-8" + icon_state = "2-8" }, -/turf/simulated/floor/carpet, -/area/station/civilian/library) +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "cBm" = ( /obj/structure/window/reinforced{ dir = 4 @@ -65647,16 +65734,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "cBv" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor{ + icon_state = "freezerfloor" }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, /area/station/medical/medbreak) "cBw" = ( /obj/structure/rack, @@ -65673,19 +65758,22 @@ /turf/simulated/wall/r_wall, /area/station/aisat/teleport) "cBy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/computer/crew{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/item/weapon/storage/secure/safe{ + pixel_x = 32 }, -/area/station/maintenance/medbay) +/obj/machinery/camera{ + c_tag = "Chief Medical Office"; + network = list("SS13","Medical"); + dir = 8 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" + }, +/area/station/medical/cmo) "cBA" = ( /obj/structure/stool/bed/chair/comfy/brown{ dir = 4 @@ -65907,14 +65995,26 @@ }, /area/station/solar/starboard) "cCb" = ( -/obj/machinery/door/firedoor, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor{ - icon_state = "green" + icon_state = "white" }, -/area/station/civilian/garden) +/area/station/medical/sleeper) "cCc" = ( /obj/structure/cable{ d1 = 4; @@ -65953,43 +66053,48 @@ }, /area/station/civilian/garden) "cCg" = ( -/obj/structure/rack, -/obj/item/weapon/storage/belt/medical{ - pixel_y = 2 +/obj/machinery/airlock_sensor{ + id_tag = "virology_sensor"; + pixel_x = 25; + pixel_y = 12; + req_one_access = list(13,45,1) }, -/obj/item/weapon/storage/belt/medical{ - pixel_y = 2 +/obj/machinery/embedded_controller/radio/airlock_controller{ + id_tag = "virology_airlock"; + pixel_x = 25; + req_one_access = list(13,45,1); + tag_airpump = "virology_pump"; + tag_chamber_sensor = "virology_sensor"; + tag_exterior_door = "virology_outer"; + tag_interior_door = "virology_inner" }, -/obj/item/weapon/storage/belt/medical{ - pixel_y = 2 +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "virology_pump"; + name = "Virology Large Air Vent" }, -/obj/item/weapon/storage/belt/medical{ - pixel_y = 2 +/obj/machinery/light/small{ + dir = 4 }, -/obj/item/weapon/gun/syringe, -/obj/item/weapon/medical/teleporter, -/obj/item/weapon/medical/teleporter, -/obj/item/device/lens/rentgene, -/obj/item/device/camera, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/turf/simulated/floor/plating{ + icon_state = "platebotc" }, -/area/station/medical/storage) +/area/station/storage/emergency3) "cCh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - dir = 1; - icon_state = "whitehall" + dir = 3; + icon_state = "whitegreen" }, -/area/station/medical/hallway) +/area/station/medical/infectious_disease_ward) "cCk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -66022,24 +66127,19 @@ }, /area/station/engineering/engine) "cCp" = ( -/obj/structure/disposalpipe/junction{ +/obj/machinery/computer/med_data{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/keycard_auth{ + dir = 4; + pixel_x = 24; + pixel_y = -3 }, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" }, -/area/station/maintenance/medbay) +/area/station/medical/cmo) "cCq" = ( /turf/simulated/floor{ icon_state = "yellowcorner" @@ -66241,20 +66341,11 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "cCV" = ( -/obj/structure/rack, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/weapon/cane, -/obj/item/weapon/cane, -/obj/item/clothing/mask/muzzle, -/obj/item/weapon/packageWrap, -/obj/item/device/tagger/shop, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 6; + icon_state = "whiteyellow" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "cCW" = ( /turf/simulated/wall/r_wall, /area/station/aisat) @@ -66279,14 +66370,15 @@ }, /area/station/engineering/engine) "cDf" = ( -/obj/structure/sign/warning/smoking{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/light/small{ - dir = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, +/turf/simulated/floor, /area/station/maintenance/medbay) "cDh" = ( /turf/simulated/floor{ @@ -66468,14 +66560,15 @@ }, /area/station/aisat) "cDG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/stool/bed/chair/office/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/effect/landmark/start/chief_medical_officer, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" }, -/area/station/maintenance/medbay) +/area/station/medical/cmo) "cDH" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -66614,27 +66707,12 @@ /turf/environment/space, /area/space) "cEe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - icon_state = "shutter0"; - id = "Medical_Psychiatry"; - name = "Privacy Shutters"; - opacity = 0 +/obj/machinery/iv_drip, +/turf/simulated/floor{ + dir = 6; + icon_state = "whitegreen" }, -/turf/simulated/floor/plating, -/area/station/medical/psych) +/area/station/medical/infectious_disease_ward) "cEf" = ( /obj/item/clothing/head/hardhat, /obj/structure/cable/yellow{ @@ -66645,19 +66723,14 @@ /turf/simulated/floor/plating/airless, /area/station/engineering/singularity) "cEh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/turf/simulated/floor, +/area/station/hallway/primary/starboard) "cEi" = ( /obj/effect/decal/cleanable/egg_smudge, /turf/simulated/floor{ @@ -66687,10 +66760,19 @@ }, /area/station/engineering/engine) "cEm" = ( -/obj/structure/stool/bed/psych, -/obj/item/weapon/bedsheet/psych, -/turf/simulated/floor/carpet/green, -/area/station/medical/psych) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/station/medical/virology) "cEn" = ( /obj/structure/table, /obj/item/mecha_parts/mecha_equipment/hydraulic_clamp, @@ -66735,10 +66817,13 @@ /turf/simulated/floor/carpet, /area/station/tcommsat/computer) "cEy" = ( -/obj/structure/stool, -/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/shard, /turf/simulated/floor/plating, -/area/station/storage/emergency3) +/area/station/maintenance/medbay) "cEz" = ( /obj/structure/stool/bed/chair/office/dark{ dir = 8 @@ -66746,9 +66831,16 @@ /turf/simulated/floor/carpet, /area/station/tcommsat/computer) "cEB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "cEC" = ( /obj/structure/window/reinforced{ dir = 4 @@ -66831,10 +66923,10 @@ /area/station/tcommsat/chamber) "cEK" = ( /turf/simulated/floor{ - dir = 1; - icon_state = "whitecorner" + dir = 3; + icon_state = "whitegreen" }, -/area/station/medical/hallway) +/area/station/medical/infectious_disease_ward) "cEL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -66870,9 +66962,17 @@ /turf/simulated/floor/wood, /area/station/maintenance/engineering) "cES" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor{ + icon_state = "freezerfloor" + }, +/area/station/medical/medbreak) "cEU" = ( /obj/structure/stool/bed/chair/metal{ dir = 8 @@ -67094,12 +67194,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/science) "cFR" = ( -/obj/structure/morgue, -/obj/machinery/light/small{ - dir = 8 - }, /turf/simulated/floor{ - icon_state = "dark" + dir = 1; + icon_state = "vault" }, /area/station/medical/morgue) "cFS" = ( @@ -67133,38 +67230,26 @@ }, /area/station/ai_monitored/storage_secure) "cFU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor{ + dir = 8; + icon_state = "warning" }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/storage/emergency) "cFX" = ( /turf/environment/space, /area/shuttle/syndicate/south) "cFY" = ( -/obj/machinery/clonepod, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = -28 +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/area/station/medical/genetics_cloning) +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "cGa" = ( /turf/simulated/floor/whitegreed, /area/station/aisat/ai_chamber) @@ -67197,20 +67282,20 @@ /turf/simulated/floor/plating, /area/station/maintenance/medbay) "cGd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access = list(45) +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "virology_airlock"; + name = "interior access button"; + pixel_x = 20; + pixel_y = -20; + req_one_access = list(13,45,1) }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 }, /turf/simulated/floor/plating, -/area/station/medical/surgery) +/area/station/storage/emergency3) "cGe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -67259,19 +67344,24 @@ }, /area/station/hallway/primary/aft) "cGn" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access = list(5) + }, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "delivery" + dir = 4; + icon_state = "whitegreenfull" }, -/area/station/medical/hallway) +/area/station/medical/infectious_disease_ward) "cGo" = ( /obj/machinery/porta_turret/station_default{ dir = 4 @@ -67282,10 +67372,14 @@ }, /area/station/aisat/antechamber_interior) "cGq" = ( -/obj/structure/stool/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/reception_hall) "cGx" = ( /turf/simulated/floor{ dir = 5; @@ -67300,24 +67394,20 @@ /turf/simulated/floor/plating, /area/station/aisat) "cGz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/simulated/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/station/medical/hallway) -"cGB" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/disks{ - pixel_x = 6; +/obj/structure/sign/mark{ + icon_state = "fdn"; pixel_y = 6 }, -/obj/item/weapon/storage/box/rxglasses, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "whiteblue" }, -/area/station/medical/genetics) +/area/station/medical/reception_hall) +"cGB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/therapist) "cGD" = ( /obj/structure/cable{ d1 = 2; @@ -67335,21 +67425,24 @@ }, /area/station/aisat/antechamber_interior) "cGE" = ( -/obj/machinery/door/airlock{ - name = "Toilet" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/door/firedoor, /turf/simulated/floor{ - icon_state = "freezerfloor" + icon_state = "white" }, -/area/station/medical/medbreak) +/area/station/medical/genetics) "cGF" = ( -/obj/structure/window/reinforced{ - dir = 5 +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/plating{ + dir = 6; + icon_state = "warnplate" }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) "cGG" = ( /obj/machinery/door/firedoor, @@ -67365,10 +67458,22 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "cGI" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/six, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular{ + pixel_y = 14 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_y = 7 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) "cGM" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, @@ -67382,24 +67487,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "cGP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/decal/remains/robot, +/turf/simulated/floor/plating, /area/station/maintenance/medbay) "cGQ" = ( /obj/structure/window/reinforced, @@ -67418,8 +67507,11 @@ /turf/simulated/wall/r_wall, /area/station/tcommsat/computer) "cGV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/wood{ - icon_state = "wood-broken" + icon_state = "wood-broken7" }, /area/station/civilian/library) "cGW" = ( @@ -67455,16 +67547,18 @@ /turf/simulated/floor/carpet, /area/station/tcommsat/computer) "cGY" = ( -/obj/machinery/camera{ - c_tag = "Garden West"; - dir = 8; - pixel_y = -22 +/obj/machinery/vending/coffee, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/poster/random{ + pixel_x = 32 }, /turf/simulated/floor{ - dir = 4; - icon_state = "green" + dir = 5; + icon_state = "cafeteria" }, -/area/station/civilian/garden) +/area/station/medical/staff_hallway) "cGZ" = ( /obj/structure/rack, /obj/item/weapon/tank/oxygen, @@ -67490,29 +67584,16 @@ }, /area/station/engineering/break_room) "cHb" = ( -/obj/machinery/airlock_sensor{ - id_tag = "virology_sensor"; - pixel_x = 25; - pixel_y = 12; - req_one_access = list(13,45,1) - }, -/obj/machinery/embedded_controller/radio/airlock_controller{ - id_tag = "virology_airlock"; - pixel_x = 25; - req_one_access = list(13,45,1); - tag_airpump = "virology_pump"; - tag_chamber_sensor = "virology_sensor"; - tag_exterior_door = "virology_outer"; - tag_interior_door = "virology_inner" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "virology_pump"; - name = "Virology Large Air Vent" +/obj/structure/rack, +/obj/item/weapon/reagent_containers/spray/extinguisher{ + pixel_y = 6 }, +/obj/item/weapon/reagent_containers/spray/extinguisher, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/t_scanner, +/obj/item/device/flashlight, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/storage/emergency3) "cHf" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -67584,14 +67665,15 @@ }, /area/station/maintenance/engineering) "cHo" = ( -/obj/structure/drain{ - drainage = 2 +/obj/machinery/atmospherics/components/unary/portables_connector, +/obj/machinery/portable_atmospherics/canister/oxygen{ + start_pressure = 9000 }, -/obj/machinery/light/small, /turf/simulated/floor{ - icon_state = "freezerfloor" + dir = 5; + icon_state = "vault" }, -/area/station/medical/medbreak) +/area/station/medical/storage) "cHp" = ( /obj/structure/cable{ d1 = 1; @@ -67601,14 +67683,18 @@ /turf/simulated/floor/carpet, /area/station/tcommsat/computer) "cHq" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "virology_outer"; - locked = 1; - name = "Engineering External Access"; - req_one_access = list(13,45,1) +/obj/item/weapon/cigbutt, +/obj/structure/stool/bed/chair/metal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "yellowcorner" }, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) "cHr" = ( /obj/machinery/teleport/station, @@ -67643,9 +67729,8 @@ /turf/simulated/floor, /area/station/engineering/engine) "cHy" = ( -/turf/simulated/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/plating, /area/station/maintenance/medbay) "cHA" = ( /obj/structure/grille, @@ -67783,12 +67868,38 @@ icon_state = "wood-broken6" }, /area/station/maintenance/engineering) -"cHZ" = ( -/obj/machinery/door/firedoor, +"cHY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor{ - icon_state = "delivery" + icon_state = "white" }, /area/station/medical/hallway) +"cHZ" = ( +/obj/item/weapon/flora/random, +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_y = -28 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" + }, +/area/station/medical/cmo) "cIb" = ( /obj/structure/stool, /turf/simulated/floor, @@ -67901,14 +68012,8 @@ /turf/simulated/floor/wood, /area/station/civilian/theatre) "cIu" = ( -/obj/structure/table/woodentable, -/obj/effect/decal/cleanable/cobweb2, -/obj/item/weapon/flora/deskleaf{ - pixel_x = -7; - pixel_y = 2 - }, -/turf/simulated/floor{ - icon_state = "cult" +/turf/simulated/floor/wood{ + icon_state = "wood-broken6" }, /area/station/civilian/library) "cIz" = ( @@ -67925,11 +68030,20 @@ }, /area/station/civilian/chapel/mass_driver) "cIA" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/structure/table/woodentable, +/obj/item/weapon/pen/red{ + pixel_x = -5; + pixel_y = 6 }, -/area/station/maintenance/medbay) +/obj/item/weapon/pen{ + pixel_y = 6 + }, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/station/civilian/library) "cIB" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/drinks/bottle/beer, @@ -67947,20 +68061,21 @@ /turf/simulated/floor/wood, /area/station/maintenance/engineering) "cID" = ( -/obj/structure/bookcase{ - name = "bookcase (Reference)" +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/h_chocolate{ + pixel_x = 7 }, -/obj/machinery/light, -/obj/machinery/ai_status_display{ - pixel_y = -32 +/obj/item/weapon/flora/deskferntrim{ + icon_state = "plant-34-alternative"; + pixel_x = -8; + pixel_y = 10 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/carpet, /area/station/civilian/library) "cIE" = ( -/obj/structure/bookcase/manuals/security, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/station/civilian/library) "cIF" = ( @@ -67996,18 +68111,20 @@ /turf/simulated/floor/plating, /area/station/engineering/engine) "cIH" = ( -/turf/simulated/floor{ - dir = 4; - icon_state = "greencorner" - }, -/area/station/civilian/garden) +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/flora/random, +/turf/simulated/floor/carpet, +/area/station/civilian/library) "cIK" = ( /obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor{ - dir = 1; - icon_state = "green" + dir = 4; + icon_state = "whitehall" }, -/area/station/civilian/garden) +/area/station/medical/reception_hall) "cIM" = ( /obj/structure/window/reinforced{ dir = 8 @@ -68028,11 +68145,9 @@ }, /area/station/civilian/garden) "cIQ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas/coloured, -/obj/item/clothing/glasses/sunglasses, -/turf/simulated/floor/plating{ - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood{ + icon_state = "wood-broken" }, /area/station/maintenance/medbay) "cIR" = ( @@ -68059,14 +68174,62 @@ /turf/simulated/floor, /area/station/construction) "cJn" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/carpet/green, -/area/station/medical/psych) +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "cJo" = ( -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/structure/table/glass, +/obj/item/weapon/book/manual/wiki/possible_threats{ + pixel_x = 6 }, -/area/station/maintenance/medbay) +/obj/item/weapon/stamp/cmo{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/weapon/pen{ + pixel_x = 2 + }, +/obj/item/device/megaphone{ + pixel_x = -13; + pixel_y = 6 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the department."; + dir = 1; + name = "Medical Monitor"; + network = list("Medical"); + pixel_y = -28 + }, +/obj/machinery/door_control{ + id = "CMO_door"; + name = "Door Remote"; + pixel_x = 24; + pixel_y = 10 + }, +/obj/machinery/door_control{ + id = "Medbay_Quarantine"; + name = "Quarantine"; + pixel_x = 24; + pixel_y = -10 + }, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = -1 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" + }, +/area/station/medical/cmo) "cJp" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -68135,18 +68298,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "cJC" = ( @@ -68157,17 +68319,14 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "cJF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/grille{ + destroyed = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/item/weapon/shard{ + icon_state = "small" }, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "cJH" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomittox_2" @@ -68203,30 +68362,37 @@ }, /area/station/engineering/atmos) "cJS" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor{ - dir = 4; - icon_state = "escapecorner" - }, -/area/station/medical/hallway) +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/lizard, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "cJT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" }, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access = list(5) +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "whitegreen" }, -/area/station/medical/hallway) +/area/station/medical/infectious_disease_ward) "cJV" = ( /obj/effect/decal/cleanable/generic, /obj/structure/reagent_dispensers/fueltank, @@ -68278,19 +68444,20 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "cKh" = ( -/obj/machinery/light/small{ - dir = 1 - }, +/obj/item/trash/chips, /turf/simulated/floor/plating, -/area/station/storage/emergency3) +/area/station/maintenance/medbay) "cKi" = ( -/obj/structure/table, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/belt/utility, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/hallway) "cKl" = ( /obj/item/trash/raisins, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -68336,7 +68503,7 @@ }, /turf/simulated/floor{ dir = 1; - icon_state = "warning" + icon_state = "warningcorner" }, /area/station/engineering/atmos) "cKv" = ( @@ -68346,67 +68513,37 @@ /turf/simulated/floor/plating, /area/station/storage/emergency3) "cKy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Virology Access"; - dir = 1; - network = list("SS13","Medical") - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor{ - dir = 3; - icon_state = "whitegreen" - }, +/obj/item/weapon/book/manual/wiki/hydroponics, +/turf/simulated/floor/plating, /area/station/maintenance/medbay) "cKz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor{ - icon_state = "white" + dir = 3; + icon_state = "whitegreen" }, -/area/station/maintenance/medbay) +/area/station/medical/infectious_disease_ward) "cKD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplate" }, -/turf/simulated/floor/plating, /area/station/maintenance/atmos) "cKF" = ( -/obj/machinery/door_control{ - id = "Medical_Surgery1"; - name = "Privacy Shutters"; - pixel_x = -25 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/bodyscanner, -/turf/simulated/floor, -/area/station/medical/surgery) +/turf/simulated/floor/wood, +/area/station/civilian/library) "cKJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -68415,13 +68552,8 @@ }, /area/station/maintenance/engineering) "cKK" = ( -/obj/machinery/power/apc{ - name = "Psyciatric Office APC"; - pixel_y = -28 - }, -/obj/structure/cable, -/turf/simulated/floor/carpet/green, -/area/station/medical/psych) +/turf/simulated/wall/r_wall, +/area/space) "cKM" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor, @@ -68445,53 +68577,26 @@ /area/station/engineering/atmos) "cKP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor{ - icon_state = "freezerfloor" - }, -/area/station/medical/medbreak) -"cKT" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(9,12,47) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/turf/simulated/floor/wood, +/area/station/civilian/library) +"cKT" = ( +/obj/structure/stool/bed/chair/metal, +/obj/item/weapon/storage/fancy/cigarettes/dromedaryco, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/maintenance/medbay) "cKU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + icon_state = "1-2" }, -/turf/simulated/floor/plating{ - icon_state = "platingdmg3" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor{ + icon_state = "freezerfloor" }, -/area/station/maintenance/atmos) +/area/station/medical/medbreak) "cKW" = ( /obj/structure/cable{ d1 = 4; @@ -68509,25 +68614,24 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "cKX" = ( -/obj/structure/sign/warning/smoking{ - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "whiteyellowcorner" }, -/area/station/maintenance/medbay) +/area/station/medical/infectious_disease_ward) "cKZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/item/stack/rods, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "cLb" = ( @@ -68553,20 +68657,21 @@ }, /area/station/bridge/hop_office) "cLg" = ( -/obj/machinery/washing_machine, -/obj/machinery/camera{ - c_tag = "Medbay Toilet"; - dir = 8; - network = list("SS13","Medical") +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/item/device/pda{ + pixel_x = 5 }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = -8 }, -/turf/simulated/floor{ - icon_state = "freezerfloor" +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -7 }, -/area/station/medical/medbreak) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "cLh" = ( /obj/structure/table, /obj/item/clothing/head/soft/trash, @@ -68591,66 +68696,90 @@ /turf/simulated/floor, /area/station/engineering/engine) "cLj" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "virology_pump"; + name = "Virology Large Air Vent" + }, +/turf/simulated/floor/plating{ + icon_state = "platebotc" + }, +/area/station/storage/emergency3) "cLk" = ( -/obj/structure/rack, -/obj/item/device/flashlight, -/obj/item/weapon/storage/box/lights/mixed, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) -"cLl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor{ + icon_state = "warning" }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/area/station/medical/chemistry) +"cLl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light{ dir = 1 }, +/turf/simulated/floor{ + dir = 4; + icon_state = "purplecorner" + }, +/area/station/hallway/primary/starboard) +"cLm" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/warning/smoking{ + pixel_y = 32 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "Stairs_wide" + }, +/area/station/maintenance/atmos) +"cLn" = ( +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/station/maintenance/medbay) -"cLm" = ( +"cLo" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access"; + req_access = list(10) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/station/maintenance/starboardsolar) +"cLp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ - dir = 8 + dir = 1 }, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) -"cLn" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil/red{ - amount = 12 - }, -/obj/item/stack/rods{ - amount = 23 +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) -"cLo" = ( -/obj/item/trash/candy, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) -"cLp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/genetics_cloning) "cLq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" + dir = 8; + icon_state = "whitebluecorner" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) "cLr" = ( /obj/structure/table, /obj/item/trash/raisins, @@ -68659,109 +68788,119 @@ }, /area/station/maintenance/engineering) "cLs" = ( +/obj/structure/table, /obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, +/obj/item/weapon/folder, +/obj/item/weapon/pen, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "cLt" = ( -/obj/machinery/door/airlock{ - name = "Shower" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "freezerfloor" +/turf/simulated/floor/plating{ + icon_state = "platingdmg1" }, -/area/station/medical/medbreak) +/area/station/maintenance/medbay) "cLu" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "cLw" = ( -/obj/machinery/atmospherics/components/binary/pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "cLy" = ( -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) -"cLz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/black, -/area/station/civilian/library) -"cLA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/easel, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/sign/painting{ - pixel_y = 30 +/obj/structure/table/woodentable, +/obj/machinery/light/small, +/obj/random/misc/book, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/carpet, /area/station/civilian/library) -"cLC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/easel, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/wood{ - icon_state = "wood-broken7" +"cLz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/civilian/library) -"cLD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/turf/simulated/floor/carpet/black, +/turf/simulated/floor, +/area/station/hallway/primary/starboard) +"cLA" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, /area/station/civilian/library) -"cLE" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"cLC" = ( +/obj/structure/dryer{ + dir = 4; + pixel_x = -6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/carpet/black, -/area/station/civilian/library) -"cLF" = ( -/obj/structure/stool/bed/chair/comfy/black, +/turf/simulated/floor{ + icon_state = "freezerfloor" + }, +/area/station/medical/medbreak) +"cLD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"cLE" = ( +/obj/effect/landmark/start/librarian, +/obj/structure/stool/bed/chair/comfy/brown, /turf/simulated/floor{ icon_state = "cult" }, /area/station/civilian/library) +"cLF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/station/civilian/library) "cLG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/genetics) "cLH" = ( -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/camera{ + c_tag = "Virology Access"; + dir = 1; + network = list("SS13","Medical") }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whiteyellowcorner" }, -/area/station/maintenance/medbay) +/area/station/medical/infectious_disease_ward) "cLI" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -68793,34 +68932,29 @@ }, /area/station/maintenance/science) "cLJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - dir = 3; - icon_state = "whitegreen" + icon_state = "dark" }, -/area/station/maintenance/medbay) +/area/station/medical/morgue) "cLN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/simulated/floor{ - dir = 8; - icon_state = "green" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/area/station/civilian/garden) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor, +/area/station/hallway/primary/central) "cLR" = ( /obj/structure/stool/bed/chair/schair/wagon/bench{ dir = 1; @@ -69111,7 +69245,7 @@ }, /turf/simulated/floor{ dir = 6; - icon_state = "neutral" + icon_state = "blue" }, /area/station/hallway/primary/central) "cMR" = ( @@ -69131,81 +69265,83 @@ /turf/simulated/floor/carpet/red, /area/station/security/hos) "cNc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/structure/rack, +/obj/item/clothing/mask/gas/coloured, +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"cNd" = ( +/obj/structure/stool/bed/chair/office/light{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/effect/landmark/start/paramedic, +/turf/simulated/floor, +/area/station/medical/reception) +"cNe" = ( +/obj/machinery/door/window/eastright{ + icon_state = "left"; + name = "Cloning Cell"; + req_access = list(5); + dir = 1 }, +/obj/structure/stool/bed/roller, /turf/simulated/floor{ - dir = 1; - icon_state = "blue" + icon_state = "dark" + }, +/area/station/medical/genetics_cloning) +"cNf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/area/station/medical/surgeryobs) -"cNd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/hallway) -"cNe" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor{ +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"cNg" = ( +/obj/machinery/power/apc{ dir = 1; - icon_state = "whiteredcorner" - }, -/area/station/medical/hallway) -"cNf" = ( -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "white" + name = "Medbay Hallway APC"; + pixel_y = 26 }, -/area/station/medical/hallway) -"cNg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; d2 = 2; - icon_state = "1-2" + icon_state = "0-2" }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/structure/stool/bed/chair/schair/wagon/bench{ + icon_state = "bench_2" }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitebluecorner" }, /area/station/medical/hallway) "cNh" = ( -/obj/machinery/door/firedoor, +/obj/structure/sign/mark{ + icon_state = "fup"; + pixel_y = -20 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/hallway) +/area/station/medical/reception_hall) "cNr" = ( /obj/machinery/light{ dir = 8 @@ -69421,6 +69557,11 @@ icon_state = "redcorner" }, /area/station/security/brig) +"cYi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "cZM" = ( /obj/structure/grille, /turf/simulated/floor/plating/airless{ @@ -69428,13 +69569,28 @@ }, /area/station/engineering/singularity) "dab" = ( -/obj/structure/stool/bed/chair/metal/blue{ - dir = 8 +/obj/structure/table/glass, +/obj/item/device/healthanalyzer{ + pixel_y = -3 + }, +/obj/item/device/healthanalyzer, +/obj/item/weapon/storage/box/disks{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/weapon/storage/pill_bottle/dylovene{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ + pixel_x = -5; + pixel_y = 11 }, +/obj/machinery/light, /turf/simulated/floor{ - icon_state = "whiteredcorner" + icon_state = "white" }, -/area/station/medical/reception) +/area/station/medical/genetics) "dbs" = ( /obj/machinery/portable_atmospherics/canister/phoron, /turf/simulated/floor/plating, @@ -69452,6 +69608,13 @@ }, /turf/simulated/floor/wood, /area/station/civilian/bar) +"dcP" = ( +/obj/item/trash/candy, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood{ + icon_state = "wood-broken3" + }, +/area/station/maintenance/medbay) "ddb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/simulated/floor{ @@ -69570,25 +69733,27 @@ /turf/simulated/floor/plating, /area/station/engineering/engine) "dkb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access = list(9) +/obj/structure/morgue, +/obj/machinery/light/small{ + dir = 8 }, /turf/simulated/floor{ - icon_state = "dark" + dir = 4; + icon_state = "black" }, /area/station/medical/morgue) "dlb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor{ - icon_state = "dark" + dir = 4; + icon_state = "whiteyellowfull" }, -/area/station/medical/morgue) +/area/station/maintenance/atmos) "dlq" = ( /obj/machinery/door_control{ id = "Singularity"; @@ -69607,23 +69772,11 @@ }, /area/station/engineering/engine) "dmb" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "dark" + icon_state = "vault"; + dir = 4 }, /area/station/medical/morgue) "doG" = ( @@ -69663,25 +69816,19 @@ }, /area/station/hallway/primary/port) "drb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/table, +/obj/machinery/computer/med_data/laptop{ + pixel_x = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/sign/poster/official/sivtsev{ + pixel_y = -32 }, -/turf/simulated/floor{ - dir = 8; - icon_state = "vault" +/obj/item/weapon/storage/pill_bottle/paracetamol{ + pixel_x = -10; + pixel_y = 4 }, -/area/station/medical/morgue) +/turf/simulated/floor/carpet/blue2, +/area/station/medical/therapist) "drM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/morgue{ @@ -69699,60 +69846,52 @@ }, /area/station/hallway/secondary/arrival) "dsb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor{ + icon_state = "delivery" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/area/station/storage/emergency) +"dtb" = ( +/obj/structure/closet/medical_wall{ + pixel_x = 30 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/stack/medical/bruise_pack{ + pixel_x = 10; + pixel_y = 2 }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment{ + pixel_y = 7; + pixel_x = -8 }, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/item/stack/medical/splint, +/obj/item/weapon/storage/pill_bottle/paracetamol, +/turf/simulated/floor{ + dir = 4; + icon_state = "warning" }, /area/station/storage/emergency) -"dtb" = ( +"dub" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - name = "Morgue"; - sortType = "Morgue" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/storage/emergency) -"dub" = ( -/obj/machinery/chem_dispenser, -/turf/simulated/floor{ - dir = 8; - icon_state = "warning" - }, -/area/station/medical/chemistry) +/turf/simulated/floor/wood, +/area/station/civilian/library) "dul" = ( /obj/machinery/newscaster{ pixel_y = 30 @@ -69777,6 +69916,32 @@ icon_state = "whiteblue" }, /area/station/hallway/secondary/exit) +"dvP" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/weapon/storage/box/pillbottles{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/storage/box/syringes{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/machinery/door_control{ + desc = "A remote control-switch for a shutters."; + id = "Chem"; + name = "Chemistry Shutters Control"; + pixel_x = -27; + req_access = list(33) + }, +/turf/simulated/floor{ + dir = 9; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "dwb" = ( /obj/structure/cult/tome, /turf/simulated/floor{ @@ -69784,17 +69949,17 @@ }, /area/station/civilian/library) "dxb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/crew{ - dir = 8 +/obj/structure/table, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = -6; + pixel_y = 4 }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 1; + icon_state = "warning" }, -/area/station/medical/reception) +/area/station/medical/cryo) "dxv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -69805,19 +69970,14 @@ /turf/simulated/floor, /area/station/cargo/office) "dyb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28 +/obj/structure/sign/poster/random{ + pixel_y = -32 }, -/turf/simulated/floor{ - dir = 8; - icon_state = "green" +/obj/structure/bookcase{ + name = "bookcase (Religious)" }, -/area/station/civilian/garden) +/turf/simulated/floor/wood, +/area/station/civilian/library) "dyy" = ( /obj/structure/table/reinforced, /turf/simulated/floor{ @@ -69826,14 +69986,14 @@ }, /area/station/civilian/bar) "dzb" = ( -/obj/machinery/light{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/bookcase{ + name = "bookcase (Adult)" }, -/turf/simulated/floor{ - dir = 4; - icon_state = "green" +/turf/simulated/floor/wood{ + icon_state = "wood-broken7" }, -/area/station/civilian/garden) +/area/station/civilian/library) "dAb" = ( /obj/structure/object_wall/pod{ dir = 1; @@ -69976,26 +70136,14 @@ }, /area/station/engineering/drone_fabrication) "dMb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/station/medical/cmo) +/obj/structure/closet/wardrobe/grey, +/obj/item/clothing/shoes/boxing/pink, +/obj/item/clothing/under/boxing/pink, +/obj/item/clothing/gloves/wrestling/pink, +/obj/item/clothing/mask/luchador/pink, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/simulated/floor, +/area/station/maintenance/medbay) "dNy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -70181,23 +70329,15 @@ }, /area/station/engineering/engine) "dYb" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor{ - dir = 1; - icon_state = "blue" - }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass, /area/station/medical/genetics) "dZb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/stool/bed/chair/comfy/brown{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/machinery/newscaster{ + pixel_x = -28 }, /turf/simulated/floor/carpet, /area/station/civilian/library) @@ -70266,15 +70406,8 @@ /turf/simulated/floor, /area/station/engineering/engine) "edb" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/wood, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/green, /area/station/civilian/library) "edk" = ( /turf/simulated/floor{ @@ -70354,19 +70487,11 @@ /turf/simulated/floor/wood, /area/station/bridge/captain_quarters) "ejb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, +/obj/structure/filingcabinet, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "red" }, -/area/station/medical/reception) +/area/station/security/medbay_checkpoint) "ejR" = ( /obj/machinery/door/airlock/external{ frequency = 1379; @@ -70387,17 +70512,9 @@ /turf/simulated/floor/wood, /area/station/bridge/captain_quarters) "elw" = ( -/obj/structure/table/woodentable, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/stool/bed/chair/comfy/black{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/libraryconsole/old, /turf/simulated/floor/wood, /area/station/civilian/library) "emk" = ( @@ -70406,6 +70523,21 @@ }, /turf/simulated/floor, /area/station/engineering/engine) +"emF" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "enu" = ( /obj/structure/sign/departments/holy{ pixel_y = 32 @@ -70504,6 +70636,13 @@ }, /turf/simulated/floor/plating, /area/station/hallway/secondary/mine_sci_shuttle) +"erH" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/iv_drip, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/surgery) "etF" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -70521,6 +70660,14 @@ icon_state = "warning" }, /area/station/engineering/engine) +"etR" = ( +/obj/structure/closet/emergency_wall{ + pixel_x = -30 + }, +/turf/simulated/floor{ + icon_state = "damaged1" + }, +/area/station/storage/emergency3) "eub" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/wood, @@ -70586,38 +70733,64 @@ icon_state = "warnplate" }, /area/station/engineering/engine) +"ewN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "eyb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor{ + dir = 4; + icon_state = "whitegreen" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/civilian/garden) +/area/station/medical/virology) "eAb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - icon_state = "shutter0"; - id = "Chem"; - name = "Chemistry Shutters"; - opacity = 0 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/machinery/door/window/eastright{ +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/reception_hall) +"eAV" = ( +/obj/structure/sink{ dir = 8; - icon_state = "left"; - name = "Chemistry Desk"; - req_access = list(33) + pixel_x = -12 }, -/turf/simulated/floor/plating, -/area/station/medical/chemistry) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/medical/surgery2) "eBb" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; @@ -70637,17 +70810,13 @@ /turf/simulated/floor/wood, /area/station/civilian/chapel) "eDb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/plating, -/area/station/medical/reception) +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/genetics) "eDP" = ( /turf/simulated/floor{ dir = 8; @@ -70655,12 +70824,10 @@ }, /area/station/engineering/chiefs_office) "eEb" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor{ - icon_state = "blue" +/mob/living/carbon/monkey/tajara{ + name = "Kyle" }, +/turf/simulated/floor/grass, /area/station/medical/genetics) "eFk" = ( /obj/structure/window/reinforced{ @@ -70677,27 +70844,25 @@ /turf/simulated/floor/plating, /area/station/cargo/office) "eGb" = ( -/obj/item/stack/medical/ointment{ - pixel_y = 4 +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright{ + name = "Genetics Desk"; + req_one_access = list(47,9) }, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 10; - pixel_y = 2 +/obj/item/weapon/bell{ + pixel_x = 4 }, -/obj/item/stack/medical/bruise_pack, -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Medbay Foyer North"; - network = list("SS13","Medical") +/obj/item/weapon/paper_bin{ + pixel_x = -8 }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 +/obj/item/weapon/pen{ + pixel_y = 10 }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "whitepurplefull" }, -/area/station/medical/reception) +/area/station/medical/genetics) "eGf" = ( /obj/structure/disposalpipe/sortjunction{ dir = 8; @@ -70744,24 +70909,38 @@ /turf/simulated/floor, /area/station/engineering/engine) "eJb" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/packageWrap, +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/grass, +/area/station/medical/genetics) +"eJC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor{ - icon_state = "blue" + icon_state = "white" }, -/area/station/medical/genetics) +/area/station/medical/hallway) "eKb" = ( -/obj/machinery/recharger{ - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/device/radio/off, -/obj/structure/table/reinforced, /turf/simulated/floor{ - dir = 8; - icon_state = "red" + icon_state = "white" }, -/area/station/medical/reception) +/area/station/medical/genetics) "eKs" = ( /obj/machinery/door/firedoor, /obj/structure/extinguisher_cabinet{ @@ -70772,15 +70951,25 @@ }, /area/station/hallway/primary/port) "eMb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor{ - icon_state = "dark" + dir = 1; + icon_state = "whitehall" }, -/area/station/medical/morgue) +/area/station/medical/infectious_disease_ward) "eNb" = ( /obj/machinery/light/small, /turf/simulated/floor/grass, @@ -70800,47 +70989,24 @@ /turf/simulated/floor/plating, /area/station/engineering/engine) "ePb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - density = 0; - icon_state = "shutter0"; - id = "Chem"; - name = "Chemistry Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced{ - dir = 1 +/turf/simulated/floor{ + dir = 8; + icon_state = "blue" }, -/turf/simulated/floor/plating, -/area/station/medical/chemistry) +/area/station/medical/reception) "ePF" = ( /turf/simulated/floor/carpet/black, /area/station/civilian/chapel) "eQb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/morgue{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/light/small{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor{ - icon_state = "dark" + dir = 8; + icon_state = "black" }, /area/station/medical/morgue) "eQY" = ( @@ -70851,7 +71017,7 @@ }, /area/station/hallway/primary/aft) "eQZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/flora/pottedplant/ficus, /turf/simulated/floor/carpet/green, /area/station/civilian/library) "eRb" = ( @@ -70886,11 +71052,18 @@ }, /area/station/hallway/primary/central) "eSb" = ( +/obj/structure/sign/mark{ + icon_state = "fdn"; + pixel_y = 22 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/simulated/floor{ - dir = 4; - icon_state = "whitered" + dir = 1; + icon_state = "whitebluecorner" }, -/area/station/medical/reception) +/area/station/medical/hallway) "eTw" = ( /obj/machinery/light{ dir = 1 @@ -70912,22 +71085,15 @@ }, /area/station/cargo/storage) "eUb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/item/weapon/cigbutt{ + pixel_x = 5; + pixel_y = 3 }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/simulated/floor{ + dir = 4; + icon_state = "yellowcorner" }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/station/medical/cmo) +/area/station/maintenance/medbay) "eUl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -70976,18 +71142,14 @@ }, /area/station/ai_monitored/storage_secure) "eWb" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 8; - network = list("SS13","Medical") +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/device/radio/headset/headset_med, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteyellow" + dir = 8; + icon_state = "whitebluecorner" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "eWl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71019,6 +71181,11 @@ icon_state = "vault" }, /area/station/civilian/bar) +"eXF" = ( +/mob/living/simple_animal/mouse, +/obj/structure/stool/bed/chair/metal, +/turf/simulated/floor, +/area/station/maintenance/medbay) "eZb" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plating, @@ -71120,23 +71287,15 @@ }, /area/station/civilian/hydroponics) "flb" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/stool/bed, +/obj/item/device/radio/off{ + pixel_x = -7; + pixel_y = 3 }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" +/turf/simulated/floor/wood{ + icon_state = "wood-broken6" }, -/turf/simulated/floor/plating, -/area/station/medical/cmo) +/area/station/maintenance/medbay) "fmb" = ( /turf/simulated/floor{ icon_state = "redcorner" @@ -71294,12 +71453,21 @@ /turf/simulated/floor/plating, /area/station/cargo/recycleroffice) "ftb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Genetics Lab"; + req_access = list(5,9) + }, +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "red" + icon_state = "whitebluefull" }, -/area/station/medical/reception) +/area/station/medical/genetics_cloning) "fub" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ dir = 4; @@ -71328,17 +71496,19 @@ }, /area/station/engineering/chiefs_office) "fwb" = ( -/obj/machinery/door/airlock/medical/glass{ - req_access = list(5) +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = 28 }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ +/obj/structure/stool/bed/chair/metal{ + dir = 8 + }, +/obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor{ - icon_state = "whitebluefull" + icon_state = "yellowcorner" }, -/area/station/medical/hallway) +/area/station/maintenance/medbay) "fxb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ dir = 4; @@ -71599,6 +71769,25 @@ icon_state = "freezerfloor2" }, /area/station/security/main) +"fJS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "fKb" = ( /obj/structure/curtain/open/shower/security, /obj/machinery/shower{ @@ -71630,13 +71819,16 @@ }, /area/station/engineering/engine) "fMb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/structure/table, +/obj/machinery/firealarm{ + pixel_y = 24 }, +/obj/item/weapon/storage/box/bodybags, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "warning" }, -/area/station/medical/reception) +/area/station/medical/cryo) "fMp" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -71663,12 +71855,10 @@ }, /area/station/bridge) "fNb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" - }, -/area/station/medical/cmo) +/obj/random/vending/cola, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood, +/area/station/civilian/library) "fNk" = ( /obj/machinery/atmospherics/components/binary/pump/on, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -71683,23 +71873,37 @@ icon_state = "dark" }, /area/station/ai_monitored/storage_secure) +"fNY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/stool/bed/chair/metal, +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = 28 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/station/maintenance/medbay) "fPb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/reception) +/turf/simulated/floor{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/station/medical/genetics) "fPM" = ( -/obj/structure/bookcase/manuals/engineering, -/obj/structure/sign/poster/random{ - pixel_x = -32 +/obj/structure/table/woodentable, +/obj/item/device/tagger/shop, +/turf/simulated/floor{ + icon_state = "cult" }, -/turf/simulated/floor/wood, /area/station/civilian/library) "fQb" = ( /obj/item/clothing/mask/breath, @@ -71709,10 +71913,10 @@ /turf/simulated/floor/plating, /area/station/maintenance/disposal) "fRb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood{ - icon_state = "wood-broken4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/simulated/floor/carpet/green, /area/station/civilian/library) "fRf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -71727,16 +71931,25 @@ /turf/environment/space, /area/shuttle/escape_pod4/station) "fRZ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/wood, -/area/station/civilian/library) -"fSb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor{ dir = 8; - icon_state = "barber" + icon_state = "whiteblue" }, -/area/station/medical/cmo) +/area/station/medical/hallway) +"fSb" = ( +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = -28 + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "yellow" + }, +/area/station/maintenance/medbay) "fSs" = ( /obj/machinery/door/firedoor, /turf/simulated/floor{ @@ -71745,22 +71958,18 @@ }, /area/station/engineering/engine) "fTb" = ( -/obj/structure/stool/bed/chair/office/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/machinery/camera{ - c_tag = "Medbay Foyer South"; - dir = 4; - network = list("SS13","Medical") +/obj/structure/sign/poster/official/help_others{ + pixel_x = 32 }, -/obj/effect/landmark/start/medical_doctor, /turf/simulated/floor{ - dir = 8; - icon_state = "blue" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/reception) +/area/station/medical/reception_hall) "fTn" = ( /obj/structure/closet/secure_closet/usp_cartridges, /turf/simulated/floor{ @@ -71768,14 +71977,18 @@ }, /area/station/bridge/cmf_room) "fUb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor{ + icon_state = "whiteblue" }, -/turf/simulated/floor, -/area/station/medical/reception) +/area/station/medical/genetics) "fUg" = ( /obj/machinery/newscaster{ pixel_y = -28 @@ -71792,16 +72005,19 @@ }, /area/station/civilian/chapel/altar) "fVb" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/rig/medical/cmo, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/rig/medical/cmo, +/obj/machinery/alarm{ + pixel_y = 28 }, /turf/simulated/floor{ - icon_state = "dark" + dir = 8; + icon_state = "barber" }, -/area/station/medical/morgue) +/area/station/medical/cmo) "fVd" = ( /obj/structure/stool/bed/chair/comfy/black{ dir = 4 @@ -71811,31 +72027,17 @@ }, /area/station/maintenance/cargo) "fWb" = ( -/obj/structure/stool/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/paramedic, -/obj/machinery/door_control{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyerOut"; - name = "Medbay Doors Control"; - pixel_x = 26; - pixel_y = -1; - req_access = list(5) - }, -/obj/machinery/door_control{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyerIn"; - name = "Medbay Doors Control"; - pixel_x = 26; - pixel_y = 12; - req_access = list(5) +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/simulated/floor{ - dir = 4; - icon_state = "blue" +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/reception) +/turf/simulated/floor/plating, +/area/station/medical/cryo) "fWB" = ( /obj/structure/table, /obj/item/weapon/folder/yellow, @@ -71851,6 +72053,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/station/maintenance/cargo) +"fXM" = ( +/obj/structure/curtain/medical, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/therapist) "fXV" = ( /obj/structure/stool/bed/chair/comfy/black, /turf/simulated/floor/carpet/black, @@ -71862,6 +72068,14 @@ }, /turf/simulated/floor, /area/station/engineering/atmos) +"fYe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/surgeryobs) "fZb" = ( /obj/machinery/firealarm{ dir = 8; @@ -71872,36 +72086,65 @@ icon_state = "bot" }, /area/station/rnd/tox_launch) +"fZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + name = "Morgue"; + sortType = "Morgue"; + dir = 8 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "darkyellow" + }, +/area/station/medical/morgue) "gab" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(1) +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, /obj/machinery/door/firedoor, -/turf/simulated/floor{ - dir = 9; - icon_state = "redfull" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/station/medical/reception) -"gbb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Psychiatry"; + name = "Privacy Shutters"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/station/medical/psych) +"gbb" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, /turf/simulated/floor{ - icon_state = "white" + dir = 1; + icon_state = "warning" }, -/area/station/medical/reception) +/area/station/medical/cryo) "gcb" = ( -/obj/structure/stool/bed/roller, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/mob/living/carbon/monkey{ - name = "Stanley" +/turf/simulated/floor{ + icon_state = "dark" }, -/turf/simulated/floor/grass, -/area/station/medical/genetics) +/area/station/medical/morgue) "gdb" = ( /obj/structure/cable{ d1 = 4; @@ -71955,13 +72198,27 @@ /turf/simulated/floor, /area/station/cargo/storage) "ghb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/simulated/floor{ - icon_state = "dark" + dir = 8; + icon_state = "vault" }, /area/station/medical/morgue) +"ghR" = ( +/obj/structure/stool/bed/chair/schair/wagon/bench{ + icon_state = "bench_2" + }, +/obj/effect/landmark/start/medical_intern, +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/station/medical/hallway) "ghX" = ( /obj/structure/rack, /obj/item/weapon/storage/box, @@ -72044,6 +72301,16 @@ icon_state = "green" }, /area/station/civilian/hydroponics) +"goT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/random/foods/food_trash, +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "gpb" = ( /obj/structure/table/reinforced, /obj/item/weapon/rcd, @@ -72291,6 +72558,22 @@ icon_state = "darkyellow" }, /area/station/engineering/chiefs_office) +"gDn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor{ + icon_state = "yellow" + }, +/area/station/hallway/primary/starboard) "gDs" = ( /obj/machinery/power/rad_collector{ anchored = 1 @@ -72373,12 +72656,34 @@ }, /turf/simulated/floor/plating, /area/station/engineering/engine) +"gHO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/station/hallway/primary/starboard) "gIb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor, /area/station/engineering/engine) +"gJr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/staff_hallway) "gKb" = ( /obj/structure/table, /obj/item/weapon/book/manual/wiki/guide_to_robotics{ @@ -72430,18 +72735,17 @@ }, /area/station/civilian/kitchen) "gMb" = ( -/obj/structure/table/reinforced, +/obj/structure/grille, /obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - pixel_x = 3 + dir = 1 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/station/medical/reception) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/medical/cryo) "gMs" = ( /obj/effect/landmark/start/technical_assistant, /turf/simulated/floor{ @@ -72508,6 +72812,15 @@ }, /turf/environment/space, /area/space) +"gPL" = ( +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "whitehall" + }, +/area/station/medical/infectious_disease_ward) "gPR" = ( /obj/machinery/computer/atmos_alert, /obj/structure/cable{ @@ -72546,12 +72859,10 @@ }, /area/station/civilian/kitchen) "gRb" = ( -/obj/structure/closet/secure_closet/security, -/turf/simulated/floor{ - dir = 10; - icon_state = "red" - }, -/area/station/medical/reception) +/obj/effect/decal/cleanable/generic, +/obj/random/scrap/safe_even, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "gRB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -72596,15 +72907,23 @@ /turf/simulated/floor, /area/station/cargo/office) "gTb" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access = list(45) + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 }, /turf/simulated/floor{ - dir = 8; - icon_state = "barber" + dir = 4; + icon_state = "whiteyellowfull" }, -/area/station/medical/cmo) +/area/station/medical/surgery2) "gTo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -72691,14 +73010,13 @@ /turf/simulated/floor/plating, /area/station/civilian/kitchen) "gWp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/door/airlock{ + name = "Toilet" }, /turf/simulated/floor{ - dir = 4; - icon_state = "bluecorner" + icon_state = "freezerfloor" }, -/area/station/hallway/primary/central) +/area/station/medical/medbreak) "gWz" = ( /obj/item/weapon/flora/pottedplant{ icon_state = "plant-21" @@ -72738,14 +73056,48 @@ /turf/simulated/floor, /area/station/civilian/locker) "gYb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/table/glass, +/obj/item/weapon/folder/white{ + pixel_x = -8 + }, +/obj/item/weapon/pen{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = 3 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + level = 4; + name = "Medbay Reception APC"; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Medbay Foyer South"; + dir = 4; + network = list("SS13","Medical") + }, +/obj/item/weapon/reagent_containers/food/drinks/britcup{ + pixel_x = -4 }, +/obj/item/weapon/reagent_containers/glass/beaker/teapot{ + pixel_y = 12; + pixel_x = 2 + }, +/obj/machinery/light, /turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" + dir = 10; + icon_state = "blue" }, -/area/station/medical/hallway) +/area/station/medical/reception) "gYf" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -72908,6 +73260,18 @@ icon_state = "cafeteria" }, /area/station/civilian/kitchen) +"hhP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "hib" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -72930,22 +73294,24 @@ }, /area/shuttle/mining/station) "hlb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bookcase/manuals/medical, +/turf/simulated/floor/wood, +/area/station/civilian/library) +"hly" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor{ - dir = 1; - icon_state = "greencorner" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/area/station/civilian/garden) +/turf/simulated/floor/wood, +/area/station/civilian/library) +"hlE" = ( +/obj/structure/stool/bed/chair/metal{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "hlV" = ( /obj/structure/cable{ d1 = 4; @@ -73021,49 +73387,23 @@ }, /area/station/civilian/fitness) "hqb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - name = "Library"; - sortType = "Library" +/obj/item/weapon/cigbutt{ + pixel_y = -10 }, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/turf/simulated/floor{ + dir = 1; + icon_state = "yellowcorner" }, -/area/station/storage/emergency) +/area/station/maintenance/medbay) "hqc" = ( /obj/item/clothing/suit/nerdshirt, /obj/item/weapon/beach_ball/holoball, /turf/simulated/floor/plating, /area/station/maintenance/engineering) "hrb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_one_access = list(12,37) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/civilian/library) +/turf/simulated/floor, +/area/station/maintenance/medbay) "hsb" = ( /obj/structure/stool/bed/chair/schair/wagon{ dir = 4 @@ -73073,6 +73413,18 @@ icon_state = "4-3" }, /area/shuttle/mining/station) +"huo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/reception) "hvb" = ( /turf/simulated/floor{ dir = 8; @@ -73093,26 +73445,37 @@ /turf/simulated/floor, /area/station/cargo/storage) "hwb" = ( -/obj/structure/rack, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/storage/belt/utility, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/plating, -/area/station/storage/emergency) -"hxb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/turf/simulated/floor{ + dir = 4; + icon_state = "whiteyellowfull" }, -/turf/simulated/floor/wood{ - icon_state = "wood-broken" +/area/station/maintenance/medbay) +"hxb" = ( +/obj/machinery/door/airlock{ + name = "Firefighting equipment" }, -/area/station/civilian/library) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "hxf" = ( /obj/item/weapon/lipstick, /obj/structure/table/woodentable, @@ -73131,20 +73494,10 @@ }, /area/station/aisat/ai_chamber) "hyb" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Library" - }, -/obj/structure/window/reinforced/polarized{ - id = "Library" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Library" +/turf/simulated/floor{ + icon_state = "Stairs2_wide"; + dir = 1 }, -/turf/simulated/floor/plating, /area/station/civilian/library) "hyd" = ( /obj/machinery/meter, @@ -73177,11 +73530,11 @@ }, /area/station/rnd/xenobiology) "hBb" = ( -/obj/machinery/hologram/holopad, +/obj/machinery/door/firedoor, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitehall" }, -/area/station/medical/reception) +/area/station/medical/reception_hall) "hBN" = ( /obj/structure/cable{ d1 = 1; @@ -73192,8 +73545,9 @@ /area/station/maintenance/cargo) "hFb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/simulated/floor{ icon_state = "dark" @@ -73244,6 +73598,11 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/incinerator) +"hGF" = ( +/obj/structure/stool/bed/chair/comfy/brown, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/station/civilian/library) "hHb" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 1 @@ -73340,13 +73699,11 @@ /turf/simulated/wall, /area/station/cargo/office) "hKb" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor{ - icon_state = "white" - }, -/area/station/medical/hallway) +/obj/machinery/door/firedoor, +/obj/item/weapon/flora/pottedplant/dead, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/station/maintenance/medbay) "hLb" = ( /obj/machinery/gateway/center/station, /turf/simulated/floor{ @@ -73420,8 +73777,13 @@ }, /area/station/hallway/secondary/exit) "hRb" = ( -/obj/structure/stool/bed/chair/comfy/black{ - dir = 1 +/obj/machinery/door/window/northright{ + dir = 4; + name = "Library Desk Door"; + req_access = list(37) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/wood, /area/station/civilian/library) @@ -73537,15 +73899,37 @@ /turf/simulated/wall/r_wall, /area/station/hallway/secondary/entry) "hVJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/wood, /area/station/civilian/library) "hWb" = ( -/obj/item/weapon/flora/pottedplant/stoutbush, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, /area/station/civilian/library) +"hWS" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/infectious_disease_ward) "hXb" = ( /obj/structure/closet/emcloset, /obj/machinery/camera{ @@ -73698,16 +74082,16 @@ /turf/simulated/floor/plating, /area/station/engineering/atmos) "idb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/libraryscanner, +/obj/item/weapon/paper_bin{ + pixel_y = 8; + pixel_x = -5 }, -/turf/simulated/floor/carpet, +/obj/structure/window/reinforced, +/turf/simulated/floor/wood, /area/station/civilian/library) "idy" = ( /obj/structure/cable/yellow{ @@ -73728,25 +74112,19 @@ }, /area/station/engineering/engine) "ieb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candle{ + pixel_y = 5 }, -/turf/simulated/floor/carpet, -/area/station/civilian/library) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "ifb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/stool/bed/chair/comfy/black, +/obj/machinery/newscaster{ + pixel_y = 32 }, -/turf/simulated/floor/carpet, -/area/station/civilian/library) +/turf/simulated/floor/carpet/black, +/area/station/civilian/garden) "igb" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -73853,21 +74231,13 @@ /turf/simulated/floor/plating, /area/station/maintenance/cargo) "ilb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/obj/structure/table/woodentable, +/obj/random/misc/book, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, /area/station/civilian/library) "inb" = ( -/obj/structure/closet/wardrobe/grey, -/obj/item/clothing/shoes/boxing/pink, -/obj/item/clothing/mask/luchador/pink, -/obj/item/clothing/gloves/wrestling/pink, -/obj/item/clothing/under/boxing/pink, +/obj/item/weapon/minihoe, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "inL" = ( @@ -73936,22 +74306,32 @@ }, /area/station/hallway/primary/port) "itb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Reception"; - req_access = list(5) +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, +/obj/machinery/life_assist/artificial_ventilation, /turf/simulated/floor{ - icon_state = "whitebluefull" + dir = 8; + icon_state = "warning" }, -/area/station/medical/reception) +/area/station/medical/cryo) +"its" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/medical/reception_hall) "itt" = ( /obj/item/weapon/table_parts/wood/fancy, /obj/effect/decal/cleanable/blood/oil, @@ -74126,6 +74506,12 @@ icon_state = "green" }, /area/station/civilian/hydroponics) +"iAQ" = ( +/turf/simulated/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/station/medical/surgeryobs) "iAY" = ( /obj/effect/decal/cleanable/generic, /obj/structure/disposalpipe/segment{ @@ -74221,38 +74607,20 @@ /turf/simulated/floor/plating, /area/station/maintenance/medbay) "iGb" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/alarm{ - pixel_y = 23 +/obj/structure/stool/bed/chair/comfy/brown, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/carpet, /area/station/civilian/library) "iHb" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = -32 - }, -/obj/machinery/airlock_sensor{ - id_tag = "toxin_test_sensor"; - pixel_y = 25; - req_one_access = list(13,45,1) - }, -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "toxin_test_pump"; - name = "Toxin Test Large Air Vent" +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) }, -/turf/simulated/floor/plating{ - icon_state = "platebotc" +/turf/simulated/floor{ + dir = 4; + icon_state = "whiteyellowfull" }, /area/station/maintenance/medbay) "iHp" = ( @@ -74271,18 +74639,19 @@ /turf/simulated/floor, /area/station/cargo/storage) "iJb" = ( -/obj/machinery/embedded_controller/radio/airlock_controller{ - id_tag = "toxin_test_airlock"; - pixel_y = 25; - req_one_access = list(13,45,1); - tag_airpump = "toxin_test_pump"; - tag_chamber_sensor = "toxin_test_sensor"; - tag_exterior_door = "toxin_test_outer"; - tag_interior_door = "toxin_test_inner" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/light/small, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/reception) "iJB" = ( /obj/structure/table/reinforced, /turf/simulated/floor{ @@ -74345,6 +74714,13 @@ }, /turf/simulated/floor/engine, /area/station/rnd/xenobiology) +"iNs" = ( +/obj/structure/stool/bed/chair/metal{ + dir = 4 + }, +/obj/item/weapon/storage/pill_bottle/happy, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "iPb" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -74442,17 +74818,29 @@ }, /turf/simulated/floor, /area/station/cargo/office) +"iSV" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor, +/area/station/maintenance/atmos) "iTb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/window/reinforced, +/obj/structure/table/woodentable, +/obj/item/device/paicard{ + pixel_x = -10; + pixel_y = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/device/taperecorder{ + pixel_x = -1; + pixel_y = 6 }, -/turf/simulated/floor/carpet, +/turf/simulated/floor/wood, /area/station/civilian/library) "iTp" = ( /obj/structure/cable{ @@ -74474,13 +74862,15 @@ }, /area/station/bridge/hop_office) "iUb" = ( -/obj/structure/morgue{ - dir = 8 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor{ - icon_state = "dark" +/obj/item/weapon/shard{ + icon_state = "small" }, -/area/station/medical/morgue) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "iUt" = ( /obj/machinery/light, /turf/simulated/floor{ @@ -74488,17 +74878,22 @@ }, /area/station/engineering/break_room) "iUO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /obj/structure/cable{ - d1 = 4; + d1 = 1; d2 = 8; - icon_state = "4-8" + icon_state = "1-8" }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 +/obj/random/scrap/moderate_weighted, +/turf/simulated/floor/plating{ + icon_state = "platingdmg1" }, -/turf/simulated/floor/plating, -/area/station/storage/emergency3) +/area/station/maintenance/medbay) "iVS" = ( /obj/machinery/power/grounding_rod, /obj/structure/cable{ @@ -74511,18 +74906,20 @@ }, /area/station/engineering/singularity) "iWb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/station/civilian/library) +/turf/simulated/floor{ + dir = 4; + icon_state = "Stairs_wide" + }, +/area/station/maintenance/medbay) "iYb" = ( /obj/machinery/light, /obj/structure/sign/nanotrasen{ @@ -74581,15 +74978,19 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/cargo) +"iZo" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor{ + icon_state = "purple" + }, +/area/station/hallway/primary/starboard) "jab" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor/wood, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, /area/station/civilian/library) "jal" = ( /obj/machinery/door/airlock/engineering{ @@ -74624,17 +75025,18 @@ }, /area/station/cargo/storage) "jbb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor{ - dir = 8; - icon_state = "green" +/obj/random/misc/book, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = -4 }, -/area/station/civilian/garden) +/turf/simulated/floor/carpet, +/area/station/civilian/library) "jbH" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4 @@ -74644,34 +75046,17 @@ /turf/simulated/floor, /area/station/engineering/atmos) "jcb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/station/civilian/garden) +/obj/item/weapon/flora/pottedplant/stoutbush, +/turf/simulated/floor/wood, +/area/station/civilian/library) "jdb" = ( -/obj/item/weapon/storage/box/bodybags{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/item/weapon/pen, -/obj/structure/table/glass, -/obj/machinery/requests_console/genetics{ - pixel_y = 30 +/obj/structure/sign/poster/random{ + pixel_y = -32 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "vault" +/turf/simulated/floor/wood{ + icon_state = "wood-broken7" }, -/area/station/medical/genetics) +/area/station/civilian/library) "jdu" = ( /obj/machinery/atmospherics/components/trinary/mixer/m_mixer{ dir = 8 @@ -74703,19 +75088,22 @@ }, /area/station/hallway/primary/central) "jfb" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera{ + c_tag = "Garden West"; + dir = 8; + pixel_y = -22 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "green" + }, +/area/station/civilian/garden) "jgb" = ( -/obj/structure/table, -/obj/item/weapon/folder, -/obj/item/weapon/pen, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/lens/nude, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/structure/table/woodentable/poker, +/obj/item/toy/cards, +/turf/simulated/floor/carpet/black, +/area/station/civilian/library) "jhb" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, @@ -74764,14 +75152,11 @@ }, /area/station/engineering/engine) "jlb" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating{ - icon_state = "platebotc" +/obj/item/weapon/cigbutt{ + pixel_y = -10 }, -/area/station/maintenance/medbay) +/turf/simulated/floor, +/area/station/maintenance/atmos) "jli" = ( /obj/machinery/light{ dir = 4 @@ -74876,27 +75261,20 @@ /turf/simulated/floor/plating, /area/station/cargo/recycleroffice) "jqb" = ( -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/reagent_containers/pill/methylphenidate, -/obj/item/weapon/reagent_containers/pill/citalopram, -/obj/item/weapon/reagent_containers/pill/citalopram, -/obj/item/weapon/reagent_containers/pill/methylphenidate, -/obj/item/weapon/reagent_containers/glass/bottle/stoxin, -/obj/item/clothing/suit/straight_jacket, -/obj/structure/closet/secure_closet{ - name = "Psychiatrist's Locker"; - req_access = list(64) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/weapon/storage/box/cups, -/obj/machinery/camera{ - c_tag = "Psychiatric Office"; - dir = 8; - network = list("SS13","Medical"); - pixel_y = -22 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/item/toy/plushie/tuxedo_cat, -/turf/simulated/floor/carpet/green, -/area/station/medical/psych) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "jrS" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -74955,9 +75333,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/medbay) "jub" = ( -/obj/structure/stool, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, +/turf/simulated/floor{ + icon_state = "Stairs2_wide" + }, /area/station/maintenance/medbay) "juo" = ( /obj/item/weapon/flora/random, @@ -74967,19 +75345,22 @@ }, /area/station/civilian/chapel) "jvb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/station/civilian/library) +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/machinery/light/small, +/turf/simulated/floor{ + icon_state = "dark" + }, +/area/station/medical/morgue) "jwb" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Shrubbery"; - req_access = list(9) +/obj/machinery/computer/med_data{ + dir = 4 }, -/turf/simulated/floor/grass, -/area/station/medical/genetics) +/turf/simulated/floor{ + dir = 1; + icon_state = "warnwhite" + }, +/area/station/medical/morgue) "jwo" = ( /obj/item/weapon/flora/random, /turf/simulated/floor, @@ -75027,13 +75408,11 @@ }, /area/station/hallway/secondary/entry) "jzb" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ywflowers, -/mob/living/carbon/monkey/tajara{ - name = "Kyle" +/turf/simulated/floor{ + dir = 5; + icon_state = "warnwhite" }, -/turf/simulated/floor/grass, -/area/station/medical/genetics) +/area/station/medical/morgue) "jzM" = ( /obj/structure/sign/warning/securearea{ pixel_x = -32 @@ -75063,8 +75442,7 @@ pixel_y = -8 }, /turf/simulated/floor{ - dir = 4; - icon_state = "neutralcorner" + icon_state = "bluecorner" }, /area/station/hallway/primary/central) "jBb" = ( @@ -75099,28 +75477,33 @@ /turf/simulated/floor/plating, /area/station/engineering/engine) "jCb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/machinery/power/apc{ + dir = 8; + name = "Genetics APC"; + pixel_x = -25 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" }, +/obj/item/weapon/flora/random, /turf/simulated/floor{ - dir = 8; - icon_state = "red" + icon_state = "white" }, -/area/station/medical/reception) +/area/station/medical/genetics) "jDb" = ( -/obj/item/weapon/reagent_containers/dropper/precision, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/structure/table/glass, -/obj/item/clothing/glasses/science{ - pixel_y = 1 +/obj/structure/window/reinforced{ + dir = 1 }, +/obj/machinery/computer/crew, /turf/simulated/floor{ - icon_state = "warning" + dir = 1; + icon_state = "blue" }, -/area/station/medical/chemistry) +/area/station/medical/reception) "jDi" = ( /obj/structure/cable{ d1 = 1; @@ -75130,14 +75513,10 @@ /turf/simulated/floor, /area/station/security/lobby) "jEb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/carpet, +/obj/structure/window/reinforced, +/obj/structure/table/woodentable, +/obj/machinery/computer/libraryconsole/bookmanagement/old, +/turf/simulated/floor/wood, /area/station/civilian/library) "jFb" = ( /obj/effect/spawner/lootdrop/maintenance, @@ -75171,27 +75550,40 @@ /turf/simulated/floor/plating, /area/station/maintenance/medbay) "jHb" = ( -/obj/structure/table, +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/wiki/security_space_law{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/weapon/folder/red{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + dir = 9; + icon_state = "red" }, -/area/station/medical/reception) +/area/station/security/medbay_checkpoint) "jIb" = ( -/obj/structure/stool/bed/chair/comfy/teal{ - dir = 8 +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -8 }, -/obj/machinery/firealarm{ - pixel_y = 24 +/obj/item/weapon/pen{ + pixel_y = 10 }, -/obj/machinery/light{ - dir = 1 +/obj/item/device/radio/off{ + pixel_x = 8; + pixel_y = 4 }, /turf/simulated/floor{ dir = 1; - icon_state = "whiteblue" + icon_state = "red" }, -/area/station/medical/reception) +/area/station/security/medbay_checkpoint) "jIX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -75205,23 +75597,28 @@ }, /area/station/engineering/engine) "jJb" = ( -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom{ - pixel_y = 25 +/obj/machinery/disposal, +/obj/structure/sign/warning/morgue_disposal{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, /turf/simulated/floor{ - dir = 9; - icon_state = "red" + dir = 4; + icon_state = "whitepurplecorner" }, -/area/station/medical/reception) +/area/station/medical/genetics) "jKb" = ( -/obj/structure/table, -/obj/item/ashtray/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/storage) "jKg" = ( /obj/structure/table, /obj/item/weapon/storage/briefcase/inflatable{ @@ -75235,7 +75632,11 @@ /turf/simulated/floor, /area/station/engineering/break_room) "jLb" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "jMb" = ( @@ -75251,9 +75652,12 @@ }, /area/station/cargo/office) "jNb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/simulated/floor, -/area/station/medical/reception) +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/simulated/floor{ + dir = 9; + icon_state = "warning" + }, +/area/station/medical/cryo) "jOb" = ( /obj/structure/sign/warning/detailed{ pixel_y = 32 @@ -75284,25 +75688,14 @@ /turf/simulated/floor/plating/airless, /area/station/engineering/singularity) "jPb" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/bell{ - pixel_x = 4 - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Medbay Reception" - }, -/obj/item/weapon/paper_bin{ - pixel_x = -5 - }, -/obj/item/weapon/pen{ - pixel_x = -5 +/obj/item/weapon/flora/pottedplant/smallcactus, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, /turf/simulated/floor{ - dir = 5; - icon_state = "blue" + icon_state = "red" }, -/area/station/medical/reception) +/area/station/security/medbay_checkpoint) "jPv" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ @@ -75322,13 +75715,16 @@ /turf/simulated/floor/plating, /area/station/engineering/engine) "jQb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 }, +/obj/machinery/recharger, /turf/simulated/floor{ - icon_state = "white" + dir = 6; + icon_state = "red" }, -/area/station/medical/reception) +/area/station/security/medbay_checkpoint) "jQu" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /turf/simulated/floor{ @@ -75337,19 +75733,30 @@ }, /area/station/civilian/kitchen) "jRb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 +/obj/structure/table/glass, +/obj/item/weapon/book/manual/wiki/medical_genetics{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/weapon/reagent_containers/syringe{ + pixel_x = 5 + }, +/obj/item/device/flashlight/pen{ + pixel_y = 5 }, +/obj/item/device/flashlight/pen{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/device/radio/headset/headset_medsci, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/reception) +/area/station/medical/genetics) "jTb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/rack, +/obj/item/weapon/reagent_containers/spray/extinguisher, +/obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "jTr" = ( @@ -75428,14 +75835,13 @@ }, /area/station/maintenance/incinerator) "jXb" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/folder/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor{ - dir = 8; - icon_state = "red" + icon_state = "white" }, -/area/station/medical/reception) +/area/station/medical/genetics) "jXv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -75467,7 +75873,18 @@ }, /area/station/engineering/engine) "kab" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor{ @@ -75475,8 +75892,17 @@ }, /area/station/medical/morgue) "kbb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor{ icon_state = "dark" @@ -75489,15 +75915,14 @@ }, /area/station/engineering/singularity) "kcb" = ( -/obj/structure/window/reinforced{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 }, -/obj/machinery/photocopier, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 1; + icon_state = "bot" }, -/area/station/medical/reception) +/area/station/medical/cryo) "kcN" = ( /obj/structure/grille, /obj/structure/cable{ @@ -75511,28 +75936,36 @@ }, /area/station/engineering/singularity) "kda" = ( -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage" +/obj/structure/table, +/obj/item/weapon/storage/box/lights/mixed{ + pixel_x = 8; + pixel_y = 9 }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/item/weapon/storage/box/lights/mixed{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/spray/extinguisher{ + pixel_x = -7; + pixel_y = 14 + }, +/turf/simulated/floor{ + dir = 5; + icon_state = "warning" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, /area/station/storage/emergency) "kdb" = ( -/obj/item/weapon/crowbar, -/obj/item/weapon/screwdriver, -/turf/simulated/floor{ - dir = 6; - icon_state = "red" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/station/medical/reception) +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/genetics_cloning) "kdQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -75549,29 +75982,18 @@ /turf/simulated/floor/wood, /area/station/security/vacantoffice) "keb" = ( -/obj/structure/table/glass, -/obj/machinery/power/apc{ - dir = 8; - level = 4; - name = "Chemistry APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" +/obj/structure/stool/bed/chair/office/light{ + dir = 1 }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; - name = "Chemistry Cleaner" +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/obj/item/weapon/packageWrap, -/obj/item/weapon/airlock_painter, -/obj/item/device/tagger/shop, +/obj/effect/landmark/start/paramedic, /turf/simulated/floor{ - dir = 10; - icon_state = "whiteyellow" + dir = 8; + icon_state = "blue" }, -/area/station/medical/chemistry) +/area/station/medical/reception) "keh" = ( /obj/structure/grille, /obj/structure/cable{ @@ -75610,6 +76032,14 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/cargo) +"kgE" = ( +/obj/item/stack/sheet/wood{ + amount = 20; + pixel_x = 5; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "khw" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -75674,15 +76104,11 @@ }, /area/station/maintenance/dormitory) "kkb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor{ - icon_state = "whiteyellow" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/area/station/medical/chemistry) +/turf/simulated/floor, +/area/station/medical/reception) "kkB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/shop_scanner{ @@ -75693,28 +76119,11 @@ }, /area/station/cargo/storage) "klb" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/power/apc{ - dir = 8; - level = 4; - name = "Medbay Reception APC"; - pixel_x = -24 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, /turf/simulated/floor{ - dir = 10; - icon_state = "blue" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/reception) +/area/station/medical/reception_hall) "klI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -75725,38 +76134,21 @@ }, /area/station/cargo/storage) "kmb" = ( -/obj/structure/stool/bed/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark/start/paramedic, -/turf/simulated/floor{ - icon_state = "blue" - }, -/area/station/medical/reception) +/obj/structure/closet/crate, +/obj/item/roller, +/obj/item/device/healthanalyzer, +/obj/effect/decal/cleanable/dirt, +/obj/random/scrap/safe_even, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "knb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/ambrosiavulgarisseed, +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" }, -/area/station/medical/genetics) +/area/station/maintenance/medbay) "kob" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plating, @@ -75779,14 +76171,15 @@ /turf/simulated/floor/plating, /area/station/maintenance/chapel) "kpb" = ( -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/table/glass, +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = 28 + }, +/obj/structure/stool/bed/chair/schair/wagon/bench, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/genetics) +/area/station/medical/hallway) "kpu" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; @@ -75800,11 +76193,15 @@ }, /area/station/cargo/storage) "kqb" = ( -/turf/simulated/floor{ - dir = 8; - icon_state = "whiteblue" +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 }, -/area/station/medical/genetics) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/station/medical/psych) "krf" = ( /obj/machinery/power/emitter, /turf/simulated/floor/plating, @@ -75867,25 +76264,24 @@ /turf/simulated/floor, /area/station/engineering/engine) "ktb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/machinery/recharger/wallcharger{ + pixel_x = -24; + pixel_y = -6 }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 }, /turf/simulated/floor{ - icon_state = "blue" + dir = 8; + icon_state = "warning" }, -/area/station/medical/reception) +/area/station/medical/cryo) "kub" = ( -/obj/machinery/light{ - dir = 4 +/turf/simulated/floor{ + dir = 4; + icon_state = "warnwhite" }, -/turf/simulated/floor/grass, -/area/station/medical/genetics) +/area/station/medical/morgue) "kvF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor, @@ -75982,17 +76378,25 @@ /turf/simulated/floor, /area/station/cargo/office) "kzb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/station/storage/emergency) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking/circle{ + pixel_y = -28 + }, +/turf/simulated/floor, +/area/station/maintenance/medbay) "kAe" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -76032,9 +76436,24 @@ }, /area/station/engineering/engine) "kBb" = ( -/obj/structure/sign/warning/nosmoking/circle, -/turf/simulated/wall, -/area/station/medical/sleeper) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/hallway) "kBA" = ( /obj/machinery/atmospherics/components/unary/portables_connector{ dir = 4 @@ -76049,12 +76468,12 @@ }, /area/station/engineering/atmos) "kCb" = ( -/obj/structure/table, -/obj/item/weapon/cigbutt/cigarbutt, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor, +/turf/simulated/floor/plating, /area/station/maintenance/medbay) "kDm" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ @@ -76076,9 +76495,16 @@ /turf/simulated/floor, /area/station/engineering/atmos) "kEb" = ( -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/structure/table, +/obj/item/weapon/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/dropper/precision, +/turf/simulated/floor{ + dir = 8; + icon_state = "warning" + }, +/area/station/medical/chemistry) "kED" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -76130,21 +76556,15 @@ /turf/simulated/wall, /area/station/storage/emergency2) "kHb" = ( -/obj/structure/stool/bed/chair/office/light{ +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/effect/landmark/start/geneticist, -/turf/simulated/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/station/medical/genetics) +/turf/simulated/floor, +/area/station/civilian/garden) "kIb" = ( -/turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/station/medical/genetics) +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/simulated/floor/carpet/green, +/area/station/medical/psych) "kKb" = ( /obj/structure/cable{ d1 = 1; @@ -76158,11 +76578,23 @@ }, /area/station/security/brig) "kLb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "panelscorched" +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/area/station/storage/emergency) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/station/maintenance/medbay) "kLc" = ( /obj/structure/mirror{ pixel_x = 28 @@ -76216,6 +76648,15 @@ icon_state = "bluecorner" }, /area/station/hallway/primary/central) +"kPs" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas/coloured, +/obj/item/clothing/gloves/black, +/obj/item/weapon/crowbar, +/turf/simulated/floor/plating{ + icon_state = "warnplate" + }, +/area/station/maintenance/medbay) "kPR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -76264,14 +76705,26 @@ }, /area/station/engineering/engine) "kTb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/structure/stool/bed/chair/comfy/brown, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 11 }, -/turf/simulated/floor{ - dir = 1; - icon_state = "whitebluecorner" +/obj/machinery/door_control{ + id = "Medical_Psychiatry_2"; + name = "Window Shutters"; + pixel_x = 25; + pixel_y = 1 }, -/area/station/medical/genetics) +/obj/machinery/door_control{ + id = "Medical_Psychiatry"; + name = "Privacy Shutters"; + pixel_x = 25; + pixel_y = -10 + }, +/obj/effect/landmark/start/psychiatrist, +/turf/simulated/floor/carpet/green, +/area/station/medical/psych) "kTw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -76281,23 +76734,15 @@ }, /area/station/cargo/storage) "kUb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - name = "Genetics Lab"; - sortType = "Genetics Lab" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor{ - dir = 5; - icon_state = "whiteblue" +/obj/structure/window/reinforced{ + dir = 4 }, -/area/station/medical/genetics) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "kUt" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor{ @@ -76445,21 +76890,16 @@ /turf/simulated/floor/plating/airless, /area/station/engineering/singularity) "ldb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + req_access = list(5); + name = "Cryo Lab" }, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor{ - icon_state = "whitebluecorner" + icon_state = "whitebluefull" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "lga" = ( /obj/item/weapon/reagent_containers/food/snacks/soap/nanotrasen, /obj/structure/dryer{ @@ -76568,17 +77008,12 @@ }, /area/station/civilian/locker) "llb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/mark{ - icon_state = "fdn"; - pixel_y = 22 - }, +/obj/machinery/iv_drip, +/obj/structure/stool/bed/roller, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "warning" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "lmg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -76586,17 +77021,32 @@ /turf/simulated/floor/plating, /area/station/construction/assembly_line) "lob" = ( -/obj/structure/rack, -/obj/item/weapon/reagent_containers/spray/extinguisher, -/obj/item/clothing/mask/gas/coloured, -/obj/effect/spawner/lootdrop/maintenance, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(9,12,47) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/station/medical/infectious_disease_ward) "lpb" = ( +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "white" + icon_state = "Stairs_wide" }, -/area/station/medical/morgue) +/area/station/maintenance/atmos) "lpD" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, @@ -76692,12 +77142,12 @@ }, /area/station/engineering/break_room) "lwb" = ( -/obj/item/weapon/flora/random, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor{ - dir = 10; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/genetics) +/area/station/medical/reception_hall) "lwd" = ( /obj/machinery/atmospherics/components/binary/sampler/stock{ dir = 4; @@ -76744,14 +77194,8 @@ /turf/simulated/floor, /area/station/engineering/engine) "lyb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/window/reinforced, -/turf/simulated/floor/grass, -/area/station/medical/genetics) +/turf/simulated/floor/wood, +/area/station/maintenance/medbay) "lzb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -76777,24 +77221,52 @@ icon_state = "brown" }, /area/station/cargo/office) +"lzT" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor{ + icon_state = "dark" + }, +/area/station/medical/morgue) "lAb" = ( -/obj/structure/morgue, -/obj/machinery/camera{ - c_tag = "Medbay Morgue"; - dir = 4; - network = list("SS13","Medical") +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor{ icon_state = "dark" }, /area/station/medical/morgue) "lBb" = ( -/obj/item/clothing/gloves/boxing/yellow, -/obj/item/clothing/gloves/boxing, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + dir = 8; + name = "Medbay Storage"; + req_access = list(72) + }, +/turf/simulated/floor{ + icon_state = "delivery" + }, +/area/station/medical/storage) "lBj" = ( /obj/structure/rack, /obj/item/clothing/shoes/magboots, @@ -76827,14 +77299,22 @@ /turf/simulated/floor/plating, /area/station/maintenance/medbay) "lDb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + name = "Library"; + sortType = "Library" + }, +/turf/simulated/floor{ + dir = 9; + icon_state = "yellow" }, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) "lDp" = ( /obj/structure/cable{ @@ -76913,39 +77393,57 @@ }, /area/station/civilian/hydroponics) "lGb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, +/obj/structure/grille, /turf/simulated/floor/plating, /area/station/maintenance/medbay) -"lHb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +"lGF" = ( +/obj/structure/stool/bed, +/obj/item/device/camera/oldcamera{ + pixel_x = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/item/weapon/bedsheet, +/turf/simulated/floor/wood{ + icon_state = "wood-broken4" }, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) -"lIb" = ( +"lHb" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/stool/bed/chair/schair/wagon/bench, /turf/simulated/floor{ dir = 1; - icon_state = "whitebluecorner" + icon_state = "whiteblue" }, /area/station/medical/hallway) -"lJb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/mark{ - icon_state = "fdn"; - pixel_y = 6 +"lIb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/turf/simulated/floor{ - icon_state = "whiteblue" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/area/station/medical/reception) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Medbay Storage"; + sortType = "Medbay Storage" + }, +/obj/random/scrap/safe_even, +/turf/simulated/floor/plating, +/area/station/maintenance/atmos) +"lJb" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor, +/area/station/medical/cryo) "lJr" = ( /obj/structure/cable{ d1 = 4; @@ -76983,15 +77481,28 @@ /turf/simulated/floor/bluegrid, /area/station/bridge/cmf_room) "lKb" = ( -/turf/simulated/floor{ - dir = 4; - icon_state = "whiteredcorner" +/obj/effect/decal/cleanable/generic, +/obj/random/scrap/safe_even, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplate" }, -/area/station/medical/hallway) +/area/station/maintenance/medbay) "lKl" = ( /obj/machinery/field_generator, /turf/simulated/floor/plating, /area/station/engineering/engine) +"lKr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "lLb" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor{ @@ -77018,22 +77529,19 @@ /turf/simulated/floor, /area/station/engineering/engine) "lMb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/stool/bed/chair/metal/blue{ - dir = 4 +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/under/patient_gown, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/door_control{ + id = "Medical_Room1"; + name = "Privacy Shutters"; + pixel_y = 25 }, /turf/simulated/floor{ dir = 8; - icon_state = "barber" + icon_state = "whitegreen" }, -/area/station/medical/cmo) +/area/station/medical/patient_a) "lMr" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -77054,20 +77562,33 @@ }, /area/station/civilian/locker) "lNb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) +/obj/structure/stool/bed/chair/schair/wagon/bench{ + dir = 1 + }, +/obj/effect/landmark/start/medical_intern, +/turf/simulated/floor{ + icon_state = "whiteblue" + }, +/area/station/medical/hallway) +"lNo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor{ + icon_state = "white" }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/hallway) "lNB" = ( /obj/structure/grille, /obj/structure/window/reinforced, @@ -77083,17 +77604,22 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/station/cargo/qm) +"lNI" = ( +/obj/machinery/vending/chinese, +/turf/simulated/floor/wood, +/area/station/civilian/garden) "lOb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor, +/area/station/civilian/garden) "lOr" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor{ @@ -77111,30 +77637,31 @@ /turf/simulated/floor/plating/airless, /area/station/ai_monitored/storage_secure) "lPb" = ( -/obj/structure/stool/bed/chair/metal, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/camera{ + c_tag = "Medbay Mid"; + network = list("SS13","Medical") }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/newscaster{ + pixel_y = 30 }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) -"lQb" = ( -/obj/structure/stool/bed/chair/metal, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/structure/stool/bed/chair/schair/wagon/bench, +/obj/effect/landmark/start/medical_intern, +/turf/simulated/floor{ + dir = 1; + icon_state = "whitebluecorner" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/area/station/medical/hallway) +"lPo" = ( +/obj/structure/sign/warning/moving_parts, +/turf/simulated/wall, +/area/station/storage/emergency3) +"lQb" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/turf/simulated/floor/plating{ + icon_state = "platingdmg3" }, -/mob/living/simple_animal/mouse, -/turf/simulated/floor/plating, /area/station/maintenance/medbay) "lRb" = ( /obj/structure/sign/warning/securearea, @@ -77154,40 +77681,48 @@ /turf/simulated/floor, /area/station/engineering/break_room) "lSb" = ( -/obj/structure/table/glass, -/obj/item/weapon/cartridge/medical{ - pixel_x = -4; - pixel_y = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/weapon/cartridge/medical, -/obj/item/weapon/cartridge/chemistry{ - pixel_x = 4; - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/station/medical/cmo) +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "lTb" = ( -/obj/structure/spider/stickyweb, -/obj/machinery/chem_dispenser/old, +/obj/structure/rack, +/obj/item/weapon/stock_parts/cell{ + maxcharge = 2000 + }, +/obj/item/weapon/storage/belt/utility, +/obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "lUb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ +/obj/machinery/power/apc{ + dir = 4; + name = "Genetics Cloning APC"; + pixel_x = 25 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/computer/cloning{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/floor{ + icon_state = "white" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/medical/hallway) +/area/station/medical/genetics_cloning) "lUd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -77210,64 +77745,72 @@ /turf/simulated/floor/plating, /area/station/maintenance/incinerator) "lWb" = ( -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "Morgue APC"; + pixel_y = -24 }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "darkyellowcorners" }, /area/station/medical/morgue) "lXb" = ( -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/table/glass, +/obj/structure/stool/bed, +/obj/item/weapon/bedsheet/medical, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/light_switch{ + pixel_x = 27; + pixel_y = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/patient_a) +"lYb" = ( +/obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 9 }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + name = "Library"; + sortType = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/black, +/area/station/civilian/library) +"lZb" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" - }, -/area/station/medical/cmo) -"lYb" = ( -/obj/structure/rack, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen/ghost, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) -"lZb" = ( -/obj/item/weapon/folder/white, -/obj/structure/table/glass, -/obj/item/weapon/stamp/cmo, -/obj/item/clothing/accessory/stethoscope, -/obj/item/weapon/book/manual/wiki/possible_threats, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" - }, -/area/station/medical/cmo) +/turf/simulated/floor/carpet, +/area/station/civilian/library) "lZM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/simulated/floor, /area/station/hallway/secondary/arrival) "mab" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the department."; - dir = 1; - name = "Medical Monitor"; - network = list("Medical"); - pixel_y = -28 +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_one_access = list(12,37) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/machinery/door/firedoor, /turf/simulated/floor{ - dir = 6; - icon_state = "blue" + dir = 4; + icon_state = "whiteyellowfull" }, -/area/station/medical/reception) +/area/station/civilian/library) "mah" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -77289,20 +77832,8 @@ }, /area/station/cargo/office) "mbb" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/megaphone, -/obj/item/weapon/defibrillator/compact/loaded, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" - }, -/area/station/medical/cmo) +/turf/simulated/floor, +/area/station/civilian/garden) "mcb" = ( /obj/structure/rack, /obj/item/weapon/reagent_containers/spray/extinguisher, @@ -77320,35 +77851,25 @@ /turf/simulated/floor, /area/station/cargo/office) "mdb" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen/blue{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 +/obj/machinery/camera{ + c_tag = "Medbay East"; + network = list("SS13","Medical") }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/morgue) +/area/station/medical/hallway) "meb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/turf/simulated/floor/carpet/black, +/area/station/civilian/library) "meU" = ( /obj/structure/grille, /obj/structure/cable{ @@ -77361,13 +77882,11 @@ }, /area/station/engineering/singularity) "mfb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "whitebluecorner" }, -/area/station/medical/storage) +/area/station/medical/staff_hallway) "mfD" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor{ @@ -77379,13 +77898,15 @@ /turf/simulated/floor/plating, /area/station/engineering/engine) "mgb" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 }, /turf/simulated/floor{ - icon_state = "white" + dir = 6; + icon_state = "warning" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "mhb" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'VACUUM'"; @@ -77400,15 +77921,14 @@ }, /area/station/maintenance/engineering) "mib" = ( -/obj/structure/stool/bed/roller, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 }, /turf/simulated/floor{ - icon_state = "white" + dir = 4; + icon_state = "warningcorner" }, -/area/station/medical/reception) +/area/station/medical/cryo) "mjb" = ( /obj/machinery/door/airlock{ name = "Unit 2" @@ -77434,20 +77954,20 @@ }, /area/space) "mlb" = ( -/obj/structure/rack, -/obj/item/seeds/ambrosiavulgarisseed, -/obj/item/seeds/cornseed, -/obj/item/seeds/cabbageseed, -/obj/item/seeds/grassseed, -/obj/item/seeds/chiliseed, -/obj/item/weapon/minihoe, -/obj/item/weapon/shovel/spade, -/obj/item/device/plant_analyzer, -/turf/simulated/floor/plating{ - dir = 8; - icon_state = "warnplate" +/obj/machinery/light{ + dir = 8 }, -/area/station/maintenance/atmos) +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/medical/surgery2) "mlh" = ( /obj/structure/grille, /obj/structure/cable{ @@ -77539,28 +78059,29 @@ }, /area/space) "mqb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/table, +/obj/item/weapon/phone{ + pixel_x = 8; + pixel_y = -1 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Genetics Lab"; - req_access = list(5,9) +/obj/item/weapon/storage/box/cups{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/structure/sign/poster/official/soft_cap_pop_art{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - icon_state = "whitebluefull" + icon_state = "white" }, -/area/station/medical/genetics) +/area/station/medical/hallway) "mrb" = ( -/obj/structure/stool/bed/chair/comfy/brown{ - dir = 8 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/carpet, +/turf/simulated/floor/wood, /area/station/civilian/library) "msb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -77596,11 +78117,23 @@ }, /area/station/civilian/locker) "mtb" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/stool/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, /area/station/civilian/library) "mty" = ( /obj/structure/window/reinforced{ @@ -77625,13 +78158,20 @@ }, /area/station/cargo/recycleroffice) "mub" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/shower/free{ + dir = 4 + }, +/obj/structure/drain{ + drainage = 2 + }, +/obj/structure/curtain/open/shower, /turf/simulated/floor{ - dir = 1; - icon_state = "whitered" + icon_state = "dark" }, -/area/station/medical/hallway) +/area/station/medical/genetics_cloning) "mwb" = ( /obj/machinery/camera{ c_tag = "Atmospherics North West"; @@ -77693,6 +78233,17 @@ /obj/structure/sign/warning/docking, /turf/simulated/wall, /area/station/cargo/storage) +"mzu" = ( +/obj/structure/sign/departments/chemistry, +/turf/simulated/wall/r_wall, +/area/station/medical/chemistry) +"mzv" = ( +/obj/machinery/chem_master, +/turf/simulated/floor{ + dir = 6; + icon_state = "warning" + }, +/area/station/medical/chemistry) "mzF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/hologram/holopad, @@ -77711,6 +78262,19 @@ icon_state = "platebotc" }, /area/station/maintenance/medbay) +"mBC" = ( +/obj/machinery/airlock_sensor{ + id_tag = "toxin_test_sensor"; + pixel_y = 25; + req_one_access = list(13,45,1) + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/plating{ + icon_state = "platebotc" + }, +/area/station/maintenance/medbay) "mCb" = ( /obj/structure/sign/departments/science{ icon_state = "xenobio3" @@ -77753,52 +78317,61 @@ /turf/environment/space, /area/space) "mEb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/meter, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor{ + icon_state = "Stairs2_wide" + }, /area/station/maintenance/atmos) +"mEK" = ( +/obj/item/device/camera, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "mFb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 2; + layer = 2.9; + name = "Chemistry Desk"; + req_access = list(33) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/weapon/paper_bin{ + pixel_x = -8 }, -/turf/simulated/floor{ - icon_state = "whiteblue" +/obj/item/weapon/pen{ + pixel_y = 10 }, -/area/station/medical/hallway) -"mGb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/item/weapon/bell{ + pixel_x = 4 + }, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Chem"; + name = "Chemistry Shutters"; + opacity = 0 }, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/genetics) +/area/station/medical/chemistry) +"mGb" = ( +/obj/structure/stool, +/obj/item/trash/semki, +/turf/simulated/floor/wood, +/area/station/maintenance/medbay) "mHb" = ( /obj/structure/closet/toolcloset, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "mIb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/scrap/dense_even, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "mIn" = ( @@ -77808,10 +78381,10 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/closet/firecloset, +/obj/machinery/space_heater, +/obj/machinery/space_heater, /turf/simulated/floor{ - dir = 8; - icon_state = "caution" + icon_state = "bot" }, /area/station/engineering/atmos) "mJb" = ( @@ -77875,6 +78448,16 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/station/security/brig) +"mKT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "warning" + }, +/area/station/medical/chemistry) "mLb" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, @@ -77938,11 +78521,12 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "mPb" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor{ - icon_state = "white" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/area/station/medical/genetics) +/turf/simulated/floor/carpet/green, +/area/station/medical/psych) "mPD" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -77960,18 +78544,29 @@ /turf/simulated/floor, /area/station/engineering/engine) "mQb" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/station/medical/sleeper) -"mTb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/random/foods/food_trash, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/surgeryobs) +"mTb" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 5 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = -12 + }, +/turf/simulated/floor{ + icon_state = "dark" + }, +/area/station/medical/morgue) "mTm" = ( /turf/simulated/floor/plating/airless{ dir = 10; @@ -78001,29 +78596,35 @@ /turf/environment/space, /area/space) "mVb" = ( -/obj/structure/sign/mark{ - icon_state = "fup"; - pixel_y = -4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 }, +/obj/machinery/iv_drip, +/obj/structure/stool/bed/roller, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "warning" }, -/area/station/medical/hallway) +/area/station/medical/cryo) "mWb" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/pill_bottle/dylovene, -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/reagent_containers/glass/bottle/antitoxin, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/paper_bin{ + pixel_x = 5 + }, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/weapon/pen/blue{ + pixel_y = 2 }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 4; + icon_state = "warnwhite" }, -/area/station/medical/genetics) +/area/station/medical/morgue) "mWi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -78039,12 +78640,9 @@ /turf/simulated/floor/plating, /area/station/maintenance/chapel) "mXb" = ( -/obj/machinery/biogenerator, -/turf/simulated/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/station/maintenance/atmos) +/obj/random/vending/snack, +/turf/simulated/floor, +/area/station/hallway/primary/central) "mXO" = ( /obj/machinery/door/airlock/glass{ autoclose = 0; @@ -78062,24 +78660,31 @@ }, /area/station/maintenance/incinerator) "mYb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor{ - dir = 6; - icon_state = "whiteblue" +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, /area/station/medical/genetics) "mZb" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/structure/table/woodentable, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/item/device/camera{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/station/civilian/library) "nab" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 5 @@ -78124,27 +78729,52 @@ icon_state = "platebotc" }, /area/station/rnd/tox_launch) -"neb" = ( +"ndI" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medical Supplies"; + req_access = list(72) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/turf/simulated/floor{ + icon_state = "whitebluefull" + }, +/area/station/medical/storage) +"neb" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /obj/structure/cable{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 8; + icon_state = "2-8" }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) +"nec" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/airless, +/area/space) "neo" = ( /obj/machinery/camera{ c_tag = "Bar North" @@ -78183,23 +78813,26 @@ }, /area/station/civilian/chapel) "nhb" = ( -/obj/structure/table/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the department."; +/obj/machinery/power/apc{ dir = 1; - name = "Medical Monitor"; - network = list("Medical"); - pixel_y = -28 + level = 4; + name = "Patient Room One APC"; + pixel_y = 26 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" }, -/obj/machinery/computer/skills, /turf/simulated/floor{ - dir = 8; - icon_state = "barber" + icon_state = "white" }, -/area/station/medical/cmo) +/area/station/medical/patient_a) "njb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -78226,21 +78859,29 @@ /turf/simulated/floor/plating, /area/station/maintenance/medbay) "nmb" = ( -/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) -"nnb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/turf/simulated/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/station/medical/infectious_disease_ward) +"nnb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/window/reinforced, +/obj/item/weapon/shard, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "nob" = ( @@ -78336,24 +78977,24 @@ }, /area/station/aisat/ai_chamber) "nsb" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Genetics Cloning APC"; - pixel_x = 25 - }, /obj/structure/cable{ + d1 = 4; d2 = 8; - icon_state = "0-8" + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "white" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) "nsx" = ( /obj/machinery/power/emitter{ anchored = 1; @@ -78374,24 +79015,21 @@ }, /area/station/engineering/singularity) "ntb" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32 +/obj/machinery/life_assist/cardiopulmonary_bypass, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "virology_inner"; - locked = 1; - name = "Engineering External Access"; - req_one_access = list(13,45,1) +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/turf/simulated/floor{ + dir = 1; + icon_state = "whitehall" + }, +/area/station/medical/surgery2) "nub" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -78414,10 +79052,41 @@ /turf/simulated/floor, /area/station/hallway/primary/central) "nwb" = ( +/obj/machinery/door/airlock/command/glass{ + id_tag = "CMO_door"; + name = "Chief Medical Officer"; + req_access = list(40) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor{ - icon_state = "whitehall" + dir = 8; + icon_state = "barber" }, -/area/station/medical/hallway) +/area/station/medical/cmo) "nws" = ( /obj/structure/cable{ d1 = 1; @@ -78431,6 +79100,16 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/cargo) +"nwY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor{ + icon_state = "whiteblue" + }, +/area/station/medical/staff_hallway) "nxV" = ( /obj/machinery/shield_capacitor, /turf/simulated/floor/plating, @@ -78479,11 +79158,14 @@ /turf/simulated/floor/plating, /area/station/engineering/break_room) "nAb" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, /turf/simulated/floor{ dir = 1; - icon_state = "whiteblue" + icon_state = "red" }, -/area/station/medical/reception) +/area/station/security/medbay_checkpoint) "nAY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -78533,13 +79215,15 @@ /turf/simulated/floor/wood, /area/station/civilian/bar) "nDb" = ( -/obj/structure/window/reinforced, -/obj/structure/stool/bed/roller, -/mob/living/carbon/monkey{ - name = "Butters" +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28 }, -/turf/simulated/floor/grass, -/area/station/medical/genetics) +/turf/simulated/floor{ + dir = 10; + icon_state = "green" + }, +/area/station/civilian/garden) "nDR" = ( /obj/structure/cable{ d1 = 4; @@ -78664,18 +79348,30 @@ /turf/simulated/floor, /area/station/cargo/storage) "nNb" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(1) +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 5 }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/door_control{ + id = "Genetics"; + name = "Genetics"; + pixel_x = -22; + pixel_y = -5 + }, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + dir = 9; + icon_state = "whiteblue" }, -/area/station/medical/reception) +/area/station/medical/genetics_cloning) "nNV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -78789,14 +79485,24 @@ }, /area/station/civilian/fitness) "nWb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor{ - dir = 1; - icon_state = "whiteblue" + icon_state = "white" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) "nXb" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; @@ -78811,6 +79517,18 @@ icon_state = "platebotc" }, /area/station/maintenance/portsolar) +"nXe" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/medical/surgery) "nXs" = ( /mob/living/carbon/monkey, /turf/simulated/floor/engine, @@ -78835,14 +79553,12 @@ }, /area/space) "nZb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access = list(5) +/obj/item/weapon/flora/pottedplant/unusual, +/turf/simulated/floor{ + dir = 10; + icon_state = "whitegreen" }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/station/medical/hallway) +/area/station/medical/infectious_disease_ward) "nZG" = ( /obj/structure/table, /obj/item/weapon/storage/belt/utility, @@ -78946,6 +79662,10 @@ icon_state = "yellow" }, /area/station/engineering/break_room) +"ocE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/station/maintenance/medbay) "odb" = ( /obj/machinery/camera{ c_tag = "Atmospherics South West"; @@ -79116,6 +79836,28 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/station/maintenance/incinerator) +"omR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/table/glass, +/obj/item/toy/cards, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/infectious_disease_ward) "onb" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/wall/r_wall, @@ -79167,6 +79909,26 @@ }, /turf/simulated/floor/plating, /area/station/civilian/hydroponics) +"oqh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor{ + icon_state = "Stairs_alone"; + dir = 4 + }, +/area/station/maintenance/medbay) "orb" = ( /obj/machinery/door/airlock/external{ frequency = 1379; @@ -79269,6 +80031,10 @@ }, /turf/simulated/wall/r_wall, /area/station/engineering/singularity) +"oxq" = ( +/mob/living/simple_animal/mouse/white, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "oxG" = ( /obj/machinery/alarm{ dir = 8; @@ -79292,6 +80058,22 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass, /area/station/civilian/hydroponics) +"oyy" = ( +/obj/machinery/life_assist/cardiopulmonary_bypass, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = -28 + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "whitehall" + }, +/area/station/medical/surgery) "oyN" = ( /turf/simulated/floor{ dir = 5; @@ -79325,41 +80107,30 @@ }, /area/station/aisat/antechamber) "oBb" = ( -/obj/structure/stool/bed/chair/office/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door_control{ - id = "CMO_door"; - name = "CMO door-control"; - pixel_x = -24; - pixel_y = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/turf/simulated/floor/carpet/black, +/area/station/civilian/library) +"oBl" = ( +/obj/machinery/telescience_jammer, +/turf/simulated/floor, +/area/station/ai_monitored/eva) +"oCb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 8 }, -/obj/effect/landmark/start/chief_medical_officer, +/obj/machinery/atmospherics/pipe/simple/visible, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" - }, -/area/station/medical/cmo) -"oBl" = ( -/obj/machinery/telescience_jammer, /turf/simulated/floor, -/area/station/ai_monitored/eva) -"oCb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/mob/living/simple_animal/cat/dusty, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" - }, -/area/station/medical/cmo) +/area/station/medical/cryo) "oCv" = ( /turf/simulated/floor/plating/airless{ dir = 10; @@ -79433,19 +80204,47 @@ }, /area/station/civilian/gym) "oKb" = ( -/obj/item/weapon/flora/pottedplant/tropicalfern, -/turf/simulated/floor{ - dir = 8; - icon_state = "green" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/station/civilian/garden) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/station/civilian/library) "oLb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille{ - destroyed = 1 +/obj/machinery/light/small{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/item/weapon/crowbar, +/obj/item/weapon/screwdriver, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "Medbay Checkpoint APC"; + pixel_x = 25; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Security Checkpoint"; + dir = 8; + network = list("SS13","Medical","Security") + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "red" + }, +/area/station/security/medbay_checkpoint) "oMb" = ( /obj/structure/cable{ d1 = 2; @@ -79476,15 +80275,20 @@ /turf/simulated/floor/plating, /area/station/engineering/engine) "oMJ" = ( -/obj/machinery/hologram/holopad, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/station/civilian/garden) +/obj/machinery/power/apc{ + name = "Treatment Center APC"; + pixel_x = 25; + dir = 4 + }, +/obj/machinery/vending/medical, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/sleeper) "oMQ" = ( /obj/machinery/smartfridge, /obj/machinery/door/firedoor, @@ -79498,6 +80302,10 @@ dir = 8; pixel_x = -24 }, +/obj/structure/closet/firecloset, +/obj/structure/window/reinforced{ + dir = 1 + }, /turf/simulated/floor{ dir = 8; icon_state = "caution" @@ -79622,6 +80430,16 @@ icon_state = "red" }, /area/station/hallway/primary/central) +"oZQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "paj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79726,9 +80544,30 @@ }, /area/station/hallway/secondary/entry) "pib" = ( -/obj/item/seeds/tomatoseed, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/chemistry) +"piV" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/flora/deskfern, +/turf/simulated/floor{ + dir = 5; + icon_state = "blue" + }, +/area/station/medical/reception) "piY" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor{ @@ -79736,13 +80575,14 @@ }, /area/station/rnd/xenobiology) "pjb" = ( -/obj/item/seeds/watermelonseed, -/obj/machinery/seed_extractor, -/turf/simulated/floor/plating{ - dir = 8; - icon_state = "warnplate" +/obj/structure/stool/bed/chair/metal/blue{ + dir = 8 }, -/area/station/maintenance/atmos) +/turf/simulated/floor{ + dir = 6; + icon_state = "yellow" + }, +/area/station/hallway/primary/central) "pjk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79808,16 +80648,11 @@ /turf/simulated/floor, /area/station/engineering/break_room) "pqb" = ( -/obj/machinery/camera{ - c_tag = "Chief Medical Office"; - network = list("SS13","Medical") - }, -/obj/structure/closet/secure_closet/CMO, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" +/obj/structure/stool/bed/chair/metal{ + dir = 4 }, -/area/station/medical/cmo) +/turf/simulated/floor, +/area/station/maintenance/medbay) "prb" = ( /obj/structure/rack, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass, @@ -79938,41 +80773,24 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "pyb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/keycard_auth{ - dir = 4; - pixel_x = 24; - pixel_y = -3 - }, -/obj/machinery/computer/med_data{ +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/stool/bed/chair/metal{ dir = 8 }, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" +/obj/item/weapon/pen, +/obj/item/weapon/haircomb{ + pixel_y = -6 }, -/area/station/medical/cmo) +/obj/item/clothing/glasses/regular, +/turf/simulated/floor/plating, +/area/station/civilian/library) "pzb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/weapon/storage/secure/safe{ - pixel_x = 32 - }, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/simulated/floor{ - dir = 8; - icon_state = "barber" +/obj/random/scrap/safe_even, +/turf/simulated/floor/plating{ + dir = 1; + icon_state = "warnplate" }, -/area/station/medical/cmo) +/area/station/maintenance/medbay) "pAb" = ( /obj/machinery/light/small{ dir = 1 @@ -80023,20 +80841,11 @@ /turf/simulated/floor/plating/airless, /area/station/maintenance/incinerator) "pBb" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "CM Office APC"; - pixel_x = 28 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, /turf/simulated/floor{ dir = 8; - icon_state = "barber" + icon_state = "Stairs_wide" }, -/area/station/medical/cmo) +/area/station/maintenance/medbay) "pBZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/stool/bed/chair/metal/black{ @@ -80047,22 +80856,11 @@ }, /area/station/civilian/chapel/mass_driver) "pCb" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/rig/medical/cmo, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/rig/medical/cmo, -/obj/machinery/requests_console/cmo{ - pixel_x = 32 - }, -/obj/machinery/alarm{ - pixel_y = 23 - }, /turf/simulated/floor{ dir = 8; - icon_state = "barber" + icon_state = "Stairs2_wide" }, -/area/station/medical/cmo) +/area/station/maintenance/medbay) "pCu" = ( /obj/machinery/computer/station_alert, /obj/machinery/door_control{ @@ -80117,12 +80915,25 @@ icon_state = "dark" }, /area/station/civilian/hydroponics) +"pFh" = ( +/obj/item/seeds/grapeseed, +/turf/simulated/floor/plating{ + icon_state = "platingdmg1" + }, +/area/station/maintenance/medbay) "pGd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor, /area/station/cargo/storage) +"pGY" = ( +/obj/machinery/life_assist/artificial_ventilation, +/turf/simulated/floor{ + dir = 1; + icon_state = "whitehall" + }, +/area/station/medical/surgery2) "pIL" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -80208,11 +81019,18 @@ }, /area/station/bridge/hop_office) "pRb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteyellow" + icon_state = "white" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "pRn" = ( /obj/machinery/firealarm{ dir = 4; @@ -80277,6 +81095,21 @@ }, /turf/simulated/floor/plating, /area/station/civilian/chapel/altar) +"pTu" = ( +/obj/machinery/embedded_controller/radio/airlock_controller{ + id_tag = "toxin_test_airlock"; + pixel_y = 25; + req_one_access = list(13,45,1); + tag_airpump = "toxin_test_pump"; + tag_chamber_sensor = "toxin_test_sensor"; + tag_exterior_door = "toxin_test_outer"; + tag_interior_door = "toxin_test_inner" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "pTX" = ( /obj/structure/grille, /turf/simulated/floor/plating/airless{ @@ -80312,6 +81145,15 @@ }, /turf/simulated/floor/wood, /area/station/maintenance/cargo) +"pWt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/virology) "pXY" = ( /obj/structure/window/reinforced, /obj/item/weapon/flora/random, @@ -80395,6 +81237,15 @@ icon_state = "blue" }, /area/station/bridge/hop_office) +"qef" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor{ + icon_state = "neutralcorner" + }, +/area/station/hallway/primary/central) "qex" = ( /obj/structure/flora/junglebush, /turf/simulated/floor/grass, @@ -80456,18 +81307,22 @@ }, /area/station/maintenance/incinerator) "qib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) +/turf/simulated/floor{ + dir = 4; + icon_state = "whitered" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/reception_hall) "qix" = ( /obj/item/weapon/screwdriver, /turf/simulated/floor/plating/airless{ @@ -80488,101 +81343,52 @@ /turf/simulated/floor/plating, /area/station/storage/emergency2) "qjb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/camera{ - c_tag = "Medbay North"; - network = list("SS13","Medical") +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door_control{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyerOut"; - name = "Medbay Doors Control"; - pixel_y = 28 +/turf/simulated/floor{ + icon_state = "warning" + }, +/area/station/medical/cryo) +"qjY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor{ - dir = 1; - icon_state = "whitebluecorner" + icon_state = "white" }, -/area/station/medical/hallway) +/area/station/medical/reception_hall) "qkb" = ( -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, +/obj/structure/stool/bed/chair/schair/wagon/bench, /turf/simulated/floor{ - dir = 5; - icon_state = "warning" + dir = 1; + icon_state = "whiteblue" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "qla" = ( /obj/structure/sign/warning/moving_parts, /turf/simulated/wall, /area/station/maintenance/cargo) "qlb" = ( -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/grenade/chem_grenade{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/grenade/chem_grenade{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/grenade/chem_grenade{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/grenade/chem_grenade{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/table/glass, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteyellow" + icon_state = "white" }, -/area/station/medical/chemistry) +/area/station/medical/reception_hall) "qlZ" = ( /turf/simulated/wall, /area/station/cargo/qm) "qmb" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Starboard Solar Access"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/scrap/dense_weighted, /turf/simulated/floor/plating, -/area/station/maintenance/starboardsolar) +/area/station/maintenance/medbay) "qmd" = ( /obj/structure/grille, /obj/structure/cable{ @@ -80610,9 +81416,13 @@ /turf/simulated/floor, /area/station/cargo/storage) "qob" = ( -/obj/item/seeds/potatoseed, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/carrotseed, +/turf/simulated/floor/plating{ + dir = 5; + icon_state = "warnplate" + }, +/area/station/maintenance/medbay) "qoN" = ( /obj/machinery/light, /obj/structure/closet, @@ -80640,25 +81450,16 @@ /turf/simulated/floor/plating, /area/station/maintenance/science) "qpb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/machinery/dna_scannernew, +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 }, /turf/simulated/floor{ - icon_state = "whitehall" + icon_state = "whiteblue" }, -/area/station/medical/hallway) +/area/station/medical/genetics) "qpr" = ( /obj/structure/cable{ d1 = 2; @@ -80671,29 +81472,33 @@ }, /area/station/engineering/singularity) "qrb" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/turf/simulated/floor, -/area/station/medical/cryo) -"qsb" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 1; - layer = 2.9; - name = "Chemistry Desk"; - req_access = list(33) +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/door/poddoor/shutters{ - density = 0; - icon_state = "shutter0"; - id = "Chem"; - name = "Chemistry Shutters"; - opacity = 0 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/station/medical/chemistry) +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/disposalpipe/sortjunction{ + name = "Medbay Break Room"; + sortType = "Medbay Break Room" + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/sleeper) +"qsb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/station/medical/reception) "qsv" = ( /obj/structure/table/woodentable, /turf/simulated/floor{ @@ -80718,30 +81523,17 @@ /turf/simulated/floor, /area/station/hallway/secondary/entry) "qub" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/stool/bed/chair/comfy/teal{ + dir = 8 }, +/turf/simulated/floor/carpet/blue2, +/area/station/medical/infectious_disease_ward) +"qvb" = ( +/obj/structure/disposalpipe/segment, /turf/simulated/floor{ - dir = 4; - icon_state = "whiteblue" + icon_state = "whiteyellow" }, -/area/station/medical/hallway) -"qvb" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/medical/chemistry) "qvh" = ( /obj/structure/transit_tube{ icon_state = "D-NE" @@ -80803,12 +81595,24 @@ }, /area/space) "qBb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/station/hallway/primary/central) +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/o2{ + pixel_y = 9 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_y = -5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/station/medical/storage) "qCp" = ( /obj/structure/cable, /obj/machinery/power/apc{ @@ -80842,6 +81646,19 @@ icon_state = "yellowcorner" }, /area/station/engineering/engine) +"qDS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{ + dir = 1; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + name = "(OUT) Space Large Air Vent" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/airless, +/area/space) "qEb" = ( /obj/machinery/door/airlock/glass{ name = "Central Access" @@ -80989,22 +81806,22 @@ }, /area/station/engineering/singularity) "qMb" = ( -/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/generic, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"qNb" = ( +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor{ - dir = 4; icon_state = "bluecorner" }, /area/station/hallway/primary/central) -"qNb" = ( -/obj/machinery/smartfridge/chemistry, -/obj/machinery/door/window/eastright{ - dir = 2; - layer = 2.9; - name = "Chemistry Storage"; - req_access = list(5) - }, -/turf/simulated/wall/r_wall, -/area/station/medical/chemistry) "qNK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/simulated/floor{ @@ -81013,11 +81830,17 @@ }, /area/station/hallway/secondary/arrival) "qPb" = ( -/turf/simulated/floor{ - dir = 6; - icon_state = "whiteblue" +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/station/medical/sleeper) +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/surgeryobs) "qPE" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/light/small{ @@ -81036,22 +81859,14 @@ }, /area/station/engineering/singularity) "qQb" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/item/weapon/pen, -/obj/item/device/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 +/obj/machinery/status_display{ + layer = 3.3; + pixel_y = -32 }, /turf/simulated/floor{ - dir = 5; - icon_state = "vault" + icon_state = "white" }, -/area/station/medical/genetics_cloning) +/area/station/medical/hallway) "qRb" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -81110,16 +81925,13 @@ }, /area/station/cargo/recycleroffice) "qUb" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/storage/box/syringes, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor{ + icon_state = "whitehall" }, -/obj/structure/spider/stickyweb, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/reception_hall) "qUx" = ( /obj/structure/cable{ d1 = 1; @@ -81137,11 +81949,24 @@ /turf/simulated/floor, /area/station/hallway/secondary/entry) "qVb" = ( -/obj/random/meds/chemical_bottle, -/turf/simulated/floor/plating{ - icon_state = "platingdmg1" +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/station/maintenance/medbay) +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Emergency Storage APC"; + pixel_y = 24 + }, +/turf/simulated/floor{ + dir = 9; + icon_state = "warning" + }, +/area/station/storage/emergency) "qVc" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -81160,13 +81985,13 @@ "qWb" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 8 + dir = 1 }, /turf/simulated/floor{ - dir = 1; - icon_state = "whitecorner" + dir = 8; + icon_state = "barber" }, -/area/station/medical/hallway) +/area/station/medical/cmo) "qWt" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -81179,14 +82004,12 @@ }, /area/space) "qXb" = ( -/obj/machinery/door/morgue{ - dir = 4; - name = "Librarian"; - req_access = list(37) +/obj/machinery/door/airlock/glass{ + name = "Library" }, -/obj/machinery/door/firedoor, /turf/simulated/floor{ - icon_state = "cult" + dir = 5; + icon_state = "vault" }, /area/station/civilian/library) "qXi" = ( @@ -81211,16 +82034,19 @@ /turf/simulated/floor, /area/station/cargo/office) "qZb" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyerOut"; - name = "Medbay"; - req_access = list(5) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor{ - icon_state = "whitebluefull" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/area/station/medical/reception) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/station/medical/cryo) "rbb" = ( /obj/structure/table/glass, /obj/item/weapon/game_kit/orange, @@ -81244,6 +82070,23 @@ icon_state = "brown" }, /area/station/cargo/office) +"rbV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "green" + }, +/area/station/medical/infectious_disease_ward) "rcb" = ( /obj/structure/sign/warning/nosmoking{ pixel_y = 32 @@ -81306,6 +82149,29 @@ }, /turf/simulated/floor/plating, /area/station/engineering/break_room) +"reJ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/cdeathalarm_kit{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/weapon/storage/box/syringes{ + pixel_y = 10; + pixel_x = -8 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 8; + pixel_y = 11 + }, +/turf/simulated/floor{ + dir = 9; + icon_state = "whiteblue" + }, +/area/station/medical/storage) "reM" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 @@ -81539,19 +82405,13 @@ }, /area/station/medical/virology) "rqb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 23 +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/landmark/start/medical_doctor, +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteblue" }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/storage) "rrb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -81586,16 +82446,38 @@ }, /area/station/engineering/atmos) "rsb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 2; + icon_state = "left"; + name = "Chemistry Desk"; + req_access = list(33) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/item/weapon/pen{ + pixel_y = 10 }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/obj/item/weapon/paper_bin{ + pixel_x = -8 + }, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -32 + }, +/obj/item/weapon/bell{ + pixel_x = 4 + }, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Chem"; + name = "Chemistry Shutters"; + opacity = 0 + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/chemistry) "rsM" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/radio/intercom{ @@ -81657,31 +82539,42 @@ }, /area/station/medical/virology) "rwb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor{ icon_state = "white" }, /area/station/medical/virology) "rxb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /turf/simulated/floor{ dir = 4; - icon_state = "whitegreen" + icon_state = "whitebluecorner" }, -/area/station/medical/virology) +/area/station/medical/staff_hallway) "rxg" = ( /mob/living/carbon/monkey, /obj/machinery/light/small, @@ -81723,32 +82616,13 @@ /turf/simulated/floor, /area/station/engineering/engine) "rAb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/simulated/floor{ icon_state = "white" }, -/area/station/medical/hallway) +/area/station/medical/surgeryobs) "rBb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/six, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "rBf" = ( @@ -81857,6 +82731,22 @@ icon_state = "whitegreen" }, /area/station/medical/virology) +"rFr" = ( +/obj/structure/grille{ + destroyed = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) +"rFu" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/simulated/floor{ + icon_state = "purplecorner" + }, +/area/station/hallway/primary/starboard) "rFw" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/alarm{ @@ -81867,6 +82757,15 @@ icon_state = "dark" }, /area/station/civilian/hydroponics) +"rGN" = ( +/obj/structure/table, +/obj/item/weapon/cigbutt/cigarbutt, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/camera/lomo, +/turf/simulated/floor, +/area/station/maintenance/medbay) "rHb" = ( /obj/structure/cable{ d1 = 1; @@ -81939,37 +82838,25 @@ }, /area/station/cargo/storage) "rMb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "rNb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/mob/living/simple_animal/mouse, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/three, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "rOb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/chem_dispenser, +/turf/simulated/floor{ + icon_state = "warning" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/station/maintenance/atmos) +/area/station/medical/chemistry) "rPb" = ( /obj/structure/cable{ d1 = 4; @@ -82267,6 +83154,12 @@ icon_state = "vault" }, /area/station/medical/virology) +"shs" = ( +/turf/simulated/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/station/maintenance/atmos) "shv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -82527,18 +83420,13 @@ }, /area/station/medical/virology) "stb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/on{ - dir = 1; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - name = "(OUT) Space Large Air Vent" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/tomatoseed, +/turf/simulated/floor/plating{ + dir = 5; + icon_state = "warnplate" }, -/turf/simulated/floor/plating/airless, -/area/station/medical/virology) +/area/station/maintenance/medbay) "stq" = ( /obj/structure/window/reinforced, /obj/item/weapon/flora/random, @@ -82558,12 +83446,13 @@ }, /area/station/civilian/chapel) "sub" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating/airless, -/area/station/medical/virology) +/obj/structure/closet, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/under/boxing, +/obj/item/clothing/mask/luchador/tecnicos, +/obj/item/clothing/shoes/boxing, +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "svp" = ( /obj/structure/cable{ d1 = 1; @@ -82580,14 +83469,14 @@ }, /area/station/maintenance/atmos) "sxb" = ( -/obj/item/seeds/ambrosiavulgarisseed, -/obj/item/seeds/carrotseed, -/obj/machinery/hydroponics/constructable, -/turf/simulated/floor/plating{ - dir = 4; - icon_state = "warnplate" +/obj/structure/stool/bed/chair/comfy/black{ + dir = 8 }, -/area/station/maintenance/atmos) +/turf/simulated/floor{ + dir = 5; + icon_state = "cafeteria" + }, +/area/station/medical/staff_hallway) "sxr" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -82607,6 +83496,13 @@ icon_state = "dark" }, /area/station/ai_monitored/storage_secure) +"sxC" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/storage) "syb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -82637,26 +83533,46 @@ }, /area/station/maintenance/incinerator) "sAb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor{ - dir = 8; - icon_state = "whitebluecorner" + icon_state = "white" }, /area/station/medical/hallway) "sBb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor{ - dir = 5; - icon_state = "cafeteria" +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/area/station/medical/medbreak) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "sCb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -82724,22 +83640,33 @@ icon_state = "freezerfloor" }, /area/station/medical/virology) +"sFG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + req_access = list(5) + }, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 + }, +/turf/simulated/floor{ + icon_state = "whitebluefull" + }, +/area/station/medical/staff_hallway) "sGb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/light{ - dir = 8 - }, /turf/simulated/floor{ dir = 1; - icon_state = "whitebluecorner" + icon_state = "whiteblue" }, -/area/station/medical/hallway) +/area/station/medical/surgeryobs) "sGv" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -82778,13 +83705,21 @@ }, /area/station/medical/virology) "sJb" = ( -/obj/structure/stool/bed/chair/comfy/teal{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor{ - icon_state = "white" + icon_state = "whitehall" }, -/area/station/medical/hallway) +/area/station/medical/infectious_disease_ward) "sJr" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green{ @@ -82799,20 +83734,26 @@ /turf/simulated/floor/wood, /area/station/civilian/theatre) "sKb" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Operating 1 APC"; - pixel_x = 25 +/obj/machinery/door/airlock/virology{ + name = "Patient Room Three" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/cable{ + d1 = 4; d2 = 8; - icon_state = "0-8" + icon_state = "4-8" }, /turf/simulated/floor{ - dir = 8; - icon_state = "whitehall" + dir = 4; + icon_state = "whitegreenfull" }, -/area/station/medical/surgery) +/area/station/medical/patient_c) "sKk" = ( /obj/effect/decal/cleanable/cobweb2, /obj/machinery/light/small{ @@ -83071,11 +84012,8 @@ }, /area/station/cargo/recycleroffice) "sWb" = ( -/turf/simulated/floor{ - dir = 8; - icon_state = "whitehall" - }, -/area/station/medical/surgery2) +/turf/simulated/floor/plating, +/area/space) "sWE" = ( /obj/structure/cable{ d1 = 1; @@ -83339,13 +84277,12 @@ }, /area/station/bridge/captain_quarters) "tob" = ( -/obj/structure/morgue, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 }, /turf/simulated/floor{ - icon_state = "dark" + dir = 8; + icon_state = "darkbluecorners" }, /area/station/medical/morgue) "tou" = ( @@ -83395,13 +84332,8 @@ }, /area/station/engineering/engine) "tyb" = ( -/obj/structure/stool/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor{ - dir = 1; - icon_state = "blue" - }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, /area/station/medical/genetics) "tzb" = ( /obj/structure/stool/bed/chair/metal{ @@ -83431,6 +84363,21 @@ icon_state = "warnplate" }, /area/station/engineering/singularity) +"tCk" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/stool/bed/chair/schair/wagon/bench{ + icon_state = "bench_2" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor{ + dir = 5; + icon_state = "whiteblue" + }, +/area/station/medical/hallway) "tCO" = ( /obj/structure/cable{ d1 = 1; @@ -83442,14 +84389,17 @@ }, /area/station/maintenance/engineering) "tDb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 4; + name = "Starboard Emergency Storage APC"; + pixel_x = 24 + }, /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "0-8" }, -/turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/turf/simulated/floor, +/area/station/storage/emergency3) "tEw" = ( /obj/effect/decal/remains/robot, /turf/simulated/floor/plating, @@ -83648,17 +84598,46 @@ }, /turf/simulated/floor, /area/station/security/prison) +"tUH" = ( +/obj/structure/morgue, +/obj/machinery/camera{ + c_tag = "Medbay Morgue"; + dir = 4; + network = list("SS13","Medical") + }, +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = -28 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "black" + }, +/area/station/medical/morgue) "tVb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "op2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "op2" + }, +/obj/structure/window/reinforced/polarized{ + id = "op2" + }, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Medical_Surgery2"; + name = "Surgery Shutters"; + opacity = 0 }, /turf/simulated/floor/plating, -/area/station/maintenance/medbay) +/area/station/medical/surgery2) "tWb" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -83682,30 +84661,25 @@ /turf/simulated/floor, /area/station/hallway/secondary/exit) "ubb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 }, /turf/simulated/floor/plating, /area/station/maintenance/medbay) "ucb" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor{ - dir = 10; - icon_state = "blue" +/obj/structure/flora/ausbushes/grassybush, +/obj/machinery/camera{ + c_tag = "Genetics Research"; + dir = 1; + network = list("SS13","Research") }, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Shrubbery"; + req_access = list(9) + }, +/turf/simulated/floor/grass, /area/station/medical/genetics) "udb" = ( /obj/structure/grille, @@ -83762,14 +84736,11 @@ /turf/simulated/floor, /area/station/engineering/atmos) "ueK" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 5"; - dir = 1 - }, -/turf/simulated/floor{ - icon_state = "neutralcorner" +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating{ + icon_state = "platebotc" }, -/area/station/hallway/primary/starboard) +/area/station/maintenance/medbay) "ufb" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -83804,11 +84775,8 @@ /turf/simulated/floor/plating, /area/station/maintenance/engineering) "uhb" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/turf/simulated/floor{ - icon_state = "blue" - }, +/obj/structure/flora/junglebush/b, +/turf/simulated/floor/grass, /area/station/medical/genetics) "uhJ" = ( /obj/structure/closet, @@ -83857,15 +84825,18 @@ /turf/simulated/floor/plating, /area/station/civilian/chapel/altar) "unb" = ( -/obj/structure/table/woodentable, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/windowtint{ + id = "Library"; + pixel_y = 28 }, -/obj/item/device/paicard{ - pixel_x = 4 +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/item/device/tagger/shop, -/turf/simulated/floor/wood, +/turf/simulated/floor/carpet/green, /area/station/civilian/library) "uns" = ( /obj/effect/decal/cleanable/generic, @@ -83898,6 +84869,16 @@ /obj/structure/cryofeed, /turf/simulated/floor/plating, /area/station/security/prison) +"uqu" = ( +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor{ + icon_state = "purplecorner" + }, +/area/station/hallway/primary/starboard) "uqD" = ( /obj/structure/cable{ d1 = 1; @@ -83955,8 +84936,18 @@ }, /area/station/civilian/chapel) "uuT" = ( -/obj/structure/stool/bed/chair/office/dark, -/turf/simulated/floor/carpet/green, +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/cups{ + pixel_y = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Library North"; + dir = 6 + }, +/turf/simulated/floor/wood, /area/station/civilian/library) "uuX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -83998,6 +84989,14 @@ }, /turf/simulated/floor/plating, /area/station/maintenance/cargo) +"uCl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor{ + icon_state = "bluecorner" + }, +/area/station/hallway/primary/central) "uCp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -84188,6 +85187,17 @@ icon_state = "vault" }, /area/station/security/armoury) +"uVv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "uXR" = ( /obj/machinery/atmospherics/components/unary/portables_connector{ dir = 8 @@ -84205,14 +85215,12 @@ }, /area/station/civilian/garden) "uZG" = ( -/obj/structure/stool/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/librarian, +/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor{ - icon_state = "cult" + dir = 1; + icon_state = "whiteblue" }, -/area/station/civilian/library) +/area/station/medical/hallway) "vaa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -84289,6 +85297,17 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/simulated/floor/plating, /area/station/maintenance/engineering) +"voO" = ( +/obj/structure/barricade/wooden{ + layer = 2.8; + name = "doorway barricade" + }, +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "vsv" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -84320,6 +85339,11 @@ icon_state = "chapel" }, /area/station/civilian/chapel/mass_driver) +"vyY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/station/maintenance/medbay) "vyZ" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 8 @@ -84362,17 +85386,17 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plating, /area/station/maintenance/atmos) "vGq" = ( @@ -84418,6 +85442,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor, /area/station/cargo/qm) +"vIF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/station/civilian/library) "vJB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -84426,6 +85456,13 @@ }, /turf/simulated/floor/plating, /area/station/engineering/chiefs_office) +"vLG" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor, +/area/station/maintenance/atmos) "vNR" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 9 @@ -84435,6 +85472,12 @@ icon_state = "caution" }, /area/station/engineering/atmos) +"vOR" = ( +/obj/structure/stool/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/station/civilian/library) "vPG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -84526,15 +85569,30 @@ }, /area/station/engineering/engine) "vYc" = ( -/obj/item/weapon/flora/pottedplant/ficus, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/machinery/computer/libraryconsole/old, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood{ + icon_state = "wood-broken6" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet/green, /area/station/civilian/library) +"wbf" = ( +/obj/item/device/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_y = -28 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "whitehall" + }, +/area/station/medical/infectious_disease_ward) +"wbQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/station/maintenance/medbay) "wcU" = ( /obj/structure/cable{ d1 = 4; @@ -84563,6 +85621,31 @@ icon_state = "yellow" }, /area/station/engineering/engine) +"wdT" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access = list(5,33) + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + density = 0; + icon_state = "pdoor0"; + id = "Medbay_Quarantine"; + name = "Quarantine Shutter"; + opacity = 0 + }, +/obj/machinery/door/poddoor/shutters{ + density = 0; + icon_state = "shutter0"; + id = "Chem"; + name = "Chemistry Shutters"; + opacity = 0 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/station/medical/chemistry) "wfg" = ( /obj/structure/table/woodentable, /obj/item/device/tagger/shop, @@ -84666,6 +85749,16 @@ icon_state = "vault" }, /area/station/civilian/chapel/mass_driver) +"wkS" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/station/medical/reception_hall) "wld" = ( /obj/machinery/biogenerator, /turf/simulated/floor{ @@ -84818,6 +85911,18 @@ icon_state = "platebot" }, /area/station/maintenance/incinerator) +"wwQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "virology_inner"; + locked = 1; + name = "Engineering External Access"; + req_one_access = list(13,45,1) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/station/storage/emergency3) "wxr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -84868,15 +85973,12 @@ /turf/simulated/floor/plating, /area/station/maintenance/cargo) "wER" = ( -/obj/structure/stool/bed/chair/comfy/brown{ - dir = 1 +/obj/machinery/light/small{ + dir = 8 }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28; - pixel_y = -4 +/turf/simulated/floor{ + icon_state = "cult" }, -/turf/simulated/floor/wood, /area/station/civilian/library) "wET" = ( /obj/machinery/door/firedoor, @@ -85080,6 +86182,18 @@ /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/station/maintenance/cargo) +"wZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/storage) "xat" = ( /obj/structure/stool/bed/chair/pew/right, /obj/effect/decal/cleanable/dirt, @@ -85109,6 +86223,15 @@ }, /turf/simulated/floor/wood, /area/station/security/vacantoffice) +"xfD" = ( +/obj/structure/stool/bed/chair/metal/blue{ + dir = 4 + }, +/turf/simulated/floor{ + dir = 8; + icon_state = "barber" + }, +/area/station/medical/cmo) "xiQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -85231,6 +86354,42 @@ /obj/effect/landmark/start/station_engineer, /turf/simulated/floor, /area/station/engineering/break_room) +"xCC" = ( +/obj/structure/table/glass, +/obj/item/weapon/gun/syringe{ + pixel_y = 6; + pixel_x = 9 + }, +/obj/item/weapon/medical/teleporter{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/item/weapon/medical/teleporter{ + pixel_y = -3; + pixel_x = 4 + }, +/obj/item/weapon/medical/teleporter{ + pixel_y = -3; + pixel_x = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/weapon/packageWrap{ + pixel_x = -5 + }, +/obj/item/weapon/pen{ + pixel_y = 1; + pixel_x = -10 + }, +/obj/item/device/tagger/shop{ + pixel_y = 7; + pixel_x = -6 + }, +/turf/simulated/floor{ + icon_state = "white" + }, +/area/station/medical/staff_hallway) "xDn" = ( /turf/simulated/floor/plating/airless{ icon_state = "platebot" @@ -85242,6 +86401,19 @@ }, /turf/simulated/floor/wood, /area/station/maintenance/cargo) +"xEi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/flora/pottedplant/flower, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/station/medical/chemistry) "xFm" = ( /obj/structure/closet/wardrobe/engineering_yellow, /turf/simulated/floor{ @@ -85380,6 +86552,18 @@ icon_state = "yellow" }, /area/station/engineering/engine) +"xOu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/station/medical/reception_hall) "xQr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -85425,11 +86609,8 @@ "xTO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Chemistry Lab"; - sortType = "Chemistry Lab" - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, /turf/simulated/floor, /area/station/hallway/primary/central) "xWb" = ( @@ -118604,7 +119785,7 @@ bJe bJe bJe bEY -amR +bKP bJU cgh cdF @@ -118853,9 +120034,9 @@ bAb bAb byE cxt -aKx -bXt -cdA +cLN +bXS +dlb bCU bCc bKX @@ -119112,17 +120293,17 @@ byE cxi byd aDp -bzU +cdA bAN mEb bGz bKD -bLN -bNT -aMV -bKq -bIB -bBb +cce +cce +cha +cce +cce +cJB bSV myb bZQ @@ -119369,15 +120550,15 @@ byE aPG ovb aEV -cdA -cdA -cdA -cdA -cdA -cdA -cdA -cdA -cdA +aMR +aMR +aMR +bkE +bkE +bkE +bkE +bkE +bkE cdH vFP mpb @@ -119626,15 +120807,15 @@ byE aIR ovb bht -cdA +bSW aHq aIu -sxb -cdA +bkE +dvP aJV aKa aNe -cdA +bkE amR bHM bMl @@ -119873,8 +121054,8 @@ bXu cah aML aML -bDK aML +bDK aRR bst jzM @@ -119882,22 +121063,22 @@ aTR aIR aIR ovb -bht -cdA -qob -cce -cce +aRR +bDW +aMM +aHk +rsb bJd cdE -cce +cwO qvb -cdA +bff cdP bLt bSV -bSo -chw -czX +cJQ +cJQ +cbX bVA cfs bWM @@ -120125,12 +121306,12 @@ aKt bcX aXb cro -cro +bPw bgY +osZ cro cro cro -qBb xTO cro bsq @@ -120139,21 +121320,21 @@ cro cro osZ bye -bht -cdA -swb +aRR +bDW +aMM aHk -cce -cce +wdT +bDA pib -oLb -cce -cdA -cdP -bLt +bfV +bmh +bkE +shs +cJB bSV -cJQ -cJQ +bNO +bNO cbX bSV akB @@ -120375,42 +121556,42 @@ bfA bfA bfA bhN -bfA +qef jeb aPE aKx -bfA +bbo jAb -bWl -aPE +bbo +bbo bXR -aPE -aPE -aPE -qMb -gWp -aMN -aMN -aMN -aPE -aPE +uCl +qNb +bbo +bbo +aGs +ciW +bYh +bbo +bbo +bbo cxv bME cMQ -cdA +aMR mXb pjb -mlb -cdA +bTt +bdh aEq kEb aIA -cdA -cLk -bLt +bkE +cha +cJB bSV -bNO -bNO +cdZ +cdZ cKs bRc coz @@ -120636,38 +121817,38 @@ bjy bjy bFG aKz -bEd -bkE -bkE -bkE -bkE -bkE -bkE -bkE -bkE -fwb -bjO -bxi -aRD -aMS +aGs +aaR +aaR +caL +caL +cIK +bDE +iJb +huo +bjk +bjk +bAo +bAo +bAo bAo bAf -bIS -bIS -bIS -bIS -bIS -bIS -cdA -cdA -cdS -cdA -cdA -cLn -geb +sFG +bAo +bAo +bAo +aPj +mzu +xEi +bLD +boa +czB +bkE +cce +cJB bSV -cdZ -cdZ +cik +cik cKr bSV cMM @@ -120894,37 +122075,37 @@ bjy bev bOQ bfe -bkE +aaR bjm bmg -bHG -dub +qlb +eWb bpB keb ePb gYb -bzo +bjk aPH -bIS -bIS -bIS -bIS -bIS +bAy +xCC +aXP +bDS +bhm bPi bQd bSh bXv bTt -cha -aJP -cce -cce -kEb +bdh +mKT +bGS +cLk +bkE cLm bPY bSV -cik -cik +bSV +bSV cKt bRd coF @@ -121151,36 +122332,36 @@ bjy bFL bOR bMu -bkE +aaR bkD -bmf -bmG +qjY +qlb bmf jDb kkb qsb bvF -bFh +aZk bKf -bIS +gJr bLS bCa bIU bwO -aIB +bwO bQc aVI bbE bUb -bIB +ewN bIB boa rOb -rOb -rOb +bkE +jlb bSq -bSV -bSV +bGR +cwJ bSV bSV bSV @@ -121407,35 +122588,35 @@ bId bLo byZ bbG -bSs -bkE +cpX +xOu qkb -bmj -cvd +pRb +qlb bmj bmN -boj -bkE +cwC +cNd aFZ -bFh +buE aPT aRS bul bxo mfb -bMO -bxo +mfb +mfb aHv -bSv +bSy cCV -aQL -cdF +mFb +cuP acC bof -kEb -cce -cce -bLw +mzv +bkE +iSV +coQ bTw bGb bPd @@ -121664,38 +122845,38 @@ bIg bjy auA bbG -bMv -bkE +cpX +its bbi -bfV -cvk -cwO -cwO +pRb +qlb +eWb +piV blx bmr bnZ -aOL +bjk aPj btS -aUQ -bDT +aPj +bAo bHy -bLs +bNN bLs bQe bSv -cCg -bLF -bLF -bLF +bIS +cuu +cuu +czO ayH -bLF -bLF -bLF -cdA -cdA -cdA -cce +bER +cuu +bIS +bIS +bIS +vLG +jlb cvh bSV bVO @@ -121921,19 +123102,19 @@ bjy bjy byZ bbG -bMv -bkE -cvj +cpX +hBb +qlb pRb qlb eWb -biy bEe -qNb +bEe +bEe cGz ajC aQW -aRS +fRZ bNw bvv bIb @@ -121942,17 +123123,17 @@ bPm bQg bTs bha -bLF +reJ cAb bTz bKt btc bwR -bLF +qBb cGI -cLj +bIS cdA -cce +aUp bQa bSV bQQ @@ -122177,40 +123358,40 @@ bFl bIh bLq bLG -bbG +cEh cqK -bkE -bkE +qUb +lwb eAb -ePb -bkE -bkE -bkE -bkE +cGq +bWp +bMO +bMO +bWk aGI btU -bxi -bIS -bIS -bFM -bIS -bIS -bIS -bIS -bIS -bIS -bLF +eSb aqU +bza +byn +sxb +sxb +bQV +rxb +nwY +ndI +cEB +bKH bKH bKy bNZ bgw -bLF +bgw bSc -cce +bIS cdS cce -bPY +cJB bSV bTq cli @@ -122436,38 +123617,38 @@ bLG bcb bbG cpX -bjk +hBb biS -bkH +qib czZ fTb bnS klb -bjk +wkS cNh bAQ -bjl -aRc -bKI +cew +bFh +bza byn bxw -bkV +bxw bQV bRV bUi aVe -bLF +rqb bSO -aHm -ckl -ckt +sxC +jKb bPz -bLF +bPz +bKA cdR -cdE -cdA +bIS +bVC cyG -bgk +cJB cdA aah aah @@ -122694,37 +123875,37 @@ bcb bbG cpX bVa -bjo +czt bkH czt -cwC -cwC -kmb -cry -bTK -btU +bkV +bkV +bkV +bkV +bkV +bkV bsu btT -aUp +bza bwP bxu -bkV +cGY aQd bzV bVN -bAG -bLF +bha +cBh bQx -aHm +caT bMB -aHm +bRh bfQ -bLF -cdA -cdA -cdA +wZg +cAx +aQL +amR cce -bPY +aHR cdA aah bVI @@ -122952,36 +124133,36 @@ bbG cpX bVg jHb -bkH +bAP czz -cwC +bkV jNb ktb itb aHi -btg +aId aRA aUa bAA -bAP -bKP -bkV -bkV -bkV +bjl +bjl +bjl +bjl +aSm bTc -bkV -bLF -bkd -aHm -sWb -bur +bjl +bjl +bhM +bhM +bhM +bhM bfR -bLF +cuk bTD -cdA -cce -cce -bLt +bhw +lpb +bDT +lIb cdA aah bVI @@ -123207,38 +124388,38 @@ bLL aTZ bbG cpX -bjk +bIk jIb cxy jPb fWb czg -mab -bjk +bAT +bkX aHu bte -bjl -aTh -bzh -bAS +lFb +aUa +lNb +bgs aip -bkV +cbx bFm aRI bEX bLC -bLF -bpq +bLE +bhM bpp bpP -bLF -bLF -bLF -bQR -bQR -bQR -bQR -cAi +bhM +cHo +aRD +lBb +aFe +bYX +cce +cJB cdA aah bVI @@ -123471,31 +124652,31 @@ ejb gMb dxb kcb -bjk +oCb bHX ldb -bjl +uZG byr -bzh -bAS +bKa +bkd bKZ -bkV -bDg -qrb +cvj +bKZ +cCb bFe bAX -bJo +avz bhM bnq bpW -bpD -cKF -bpX -bzb -acw -aaR -bQR -bLt +bhM +bhM +bhM +bTx +bTx +bTx +aJP +bhb cdA aah bVI @@ -123722,24 +124903,24 @@ bNd bic cpX ctJ -bkH -bkH +bRK +oLb jQb -bGO +bkV gbb lJb bfa llb aId -mQb -bAp +aRA +cHY bzh bAO bdJ bFf -bCW +bFf qrb -bFd +bBA bBA biw bSD @@ -123747,12 +124928,12 @@ cAf bpu bgn bix -qhb -qhb +coo +bTx bUh -aaS -bQR -bLt +bTx +bTx +cJB cdA aah bVI @@ -123977,60 +125158,60 @@ bjt bjt bNd bbM -cpX -ctJ -bkH -bHP -ccu -hBb +ctO +bVg +bVg +bVg +bVg +bkV cbb bAT cry -lFb -bth -mQb +llb +bkV +bKQ +kBb +bza +aFC bAp -bAR -bAS -bdJ -bFf +bNR bCW bHb bIV -bKO +bAS bkC bSf bfL -bPf +eMb +bpQ bpQ -bnn bSe -cgs +bTx bUg auk -cGd +bTx cJB cdA -aaa -aaa +bkI +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah aah -aaa -aaa aah -aaa -aaa aah -aaa -aaa -aaa -aaa aah -aaa aah -aaa aah aah -aaa aah aaa aaa @@ -124234,59 +125415,59 @@ bIt bjt bNd bcb -cpX -ctJ -bkH -bkH +bRF +jBb +mYb +bMp jRb -bkH +bkV fMb -caT +bAT qZb mVb -mFb -mQb -bAp +aId +aRA +kBb byM bBX -bdJ -bFf -bCW -qrb -bIW -bKQ -bLv -cNc +ava +bAS +bAS +oMJ +bQR +bQR +bQR +bQR bob bPf bvx -qhb -qhb -ciT +cvT +wbf +bTx bUl abp -bQR -bLt -cdA -cdA +bTx +cJB +cha cdA cdA -aaa -aaa -aah -aaa -aaa aah aaa -aaa ckA ckA +cfJ ckA cfJ ckA ckA ckA -aah +ckA +cfJ +ckA +ckA +ckA +aaa +aaa aaa aah aaa @@ -124491,51 +125672,50 @@ bIu bjt bNe bcb -cpX -cwD +bRF +bjd eGb bmt dab -eSb -cbx +bkV +aIg mib -bjk +aYB qjb btK -bjl +ato bAr bAt -bAy +bJo bKe -bkV -bDj -qrb -aiD +bOU +bKe +bQR +bQR bLA -bJo -bmh -bfW -bta +nXe +bQR bQR +bta +hWS bol bro bTx sKb abI -bQR +bTx bLw cKD -cKU cdF cdA +aah aaa -aaa -ckA -ckA -cfJ -ckA -cfJ ckA +rhb +rub +rEb +rQb +rYb ckA slb syb @@ -124545,6 +125725,7 @@ slb ckA aaa aaa +aaa aah aaa aaa @@ -124748,51 +125929,50 @@ bIE bjt bNd bcb -coo -bjk -cwJ +bRF +bqm +bqm fPb eDb -gab -bjk -bjk -bjk +bkV +bkV +bOc +cuq mgb -bti -bjl +aId +aRA aVi btj qPb bCV -bkV -aIg +iAQ +aIB aRQ bpo bRO -bJo -bJo -bJo -bMX -bQR -bQR -bQR -bQR -bQR -bQR +cgs +oyy bQR -cdA -cdA -cKT +bhM +bhM +bfW +bNQ +gPL +nmb +nZb +bhM +bIr +bhM ckA ckA ckA ckA ckA -rhb -rub -rEb -rQb -rYb +rib +rvb +rFb +rRb +rZb sib smb szb @@ -124802,6 +125982,7 @@ smb ckA aaa aaa +aaa aah aaa aaa @@ -125005,51 +126186,50 @@ bIL bjt bNd bcb -cpX -bjk +bRF +bqm jJb jXb eKb jCb -gRb -cry +bvR +bvR aCW -lKb -aIq -bjl +bvR +bvR +lPb kBb bza mQb -bjl -bkV -bkV +bfk +fYe +bLQ bpn bJg -bkV -bxi +qhb +erH boJ bfY bzo -lIb +bhM byp buC acm sJb -cJS -cHZ -bxi +cEK +bhM +bgh cKX -cLJ ckA nHb bgl nUb ckA -rib -rvb -rFb -rRb -rZb +rjb +cmW +sSb +cmW +sab ckA ckA sib @@ -125059,6 +126239,7 @@ ckA ckA aaa aaa +aaa aah aaa aaa @@ -125260,23 +126441,23 @@ bCx bGF bJf bjt -bNd -bcb +bur +gHO cpi -bjk +caY bjp cwM -cwC +cGE fUb ftb nNb aDe mub -cNd +bvR cNg sAb -bJu -bCF +aRW +bCg sGb bFi bID @@ -125285,28 +126466,27 @@ aif bKg bPx bTY -bga -aFY +bQR aFY +bhM bSQ -aFY -aFY +omR +csA aaM cCh cGn cJT cKz -bkI bEh +ctK bFI aeb -bff -ckA -rjb -cmW -sSb -cmW -sab +afx +rkb +pWt +cao +rSb +sbb sib snb rFb @@ -125328,6 +126508,7 @@ aah aah aah aah +aah agm aaa cBm @@ -125517,53 +126698,52 @@ cqg bGG bjt bjt -bNd -bcb -cpX -bjk +bNu +awA +iZo +bqm bkq bmv bnR bqb kdb -cry +bAG bnm cNe -bFh +cLp aSQ -bFh -bFh -bAZ -bFh +nWb +bza +bKe +bZa rAb -bFh -bRh -bYG -bFh -cNf -bUB -bYG -bFh -aSW +biA +bQR +bQR +bQR +bQR +bQR +bQR +cya +bhM qub bTK bUF bRs cEK -cHZ -bxi +bhM +aZp cLH -cKy ckA +ctu bhl bhU -bfk -afx -rkb +ckA +cEm +boj rwb -bLQ -rSb -sbb +cmW +aUQ sjb sob bhn @@ -125573,6 +126753,7 @@ tcb cfJ aaa aaa +aaa aah aaa aaa @@ -125775,49 +126956,48 @@ bGH bJl bjd bNd -bcb +bPo bRF -bjk -bjk -bjk -bjk -bjk -bjk -bjk +bqm +bQH +bGi +ccL +qpb +bCj +bGA lUb aEF -aOO +bvR bxi bzp -bAW +aRW bCg -bxi +sGb bwg bzl -bKc -bKc -bKc -bKc -bJm -flb +arA +cAi +eAV +mlb +cil +bLF eUb -dMb +bhM cAX -bJm -bJm +rbV +aUU bUz cEe -bMF -bMF -bMF -acZ +bhM +lob +bhM ckA ckA ckA ckA ckA rlb -rxb +eyb bKs rTb scb @@ -125830,6 +127010,7 @@ sUb ckA aaa aaa +aaa aah aaa aaa @@ -126032,43 +127213,42 @@ bGJ bJn jBb bNd -bcb -cpX -jBb -bvD +bPo +rFu +bqm +bMA cvx ucb bqm -jdb -bIR -kpb -cGB -mWb -bqm bvR -bsz bvR bvR +bvR +bvR +kpb +lNo +bza +qPb +bRN aIt -aRW +aIB bAw bCZ -bGA +aHm bIc -bJm +pGY gTb fSb -fNb +bxt axa aXk -bJm +bKc bUy -bdh -bzn +bAq +bKc bpS -bMF -bBy -cES +bAZ +cFs bFo aaa aaa @@ -126087,6 +127267,7 @@ sib ckA aaa aaa +aaa aah aaa aaa @@ -126289,43 +127470,42 @@ bGT bxJ bxJ bNm -bcb -cpX -bjd -bXr +bPo +bRF +aOL +eJb tyb eEb -bvD +biY blb -kHb +bEi kqb buc -blb -bqm -buE -bvz -cFY -bvR +gab +ghR +nWb +bza +mQb +aSs bMw bvt -bAq +tVb bCf bFb -aiH -bJm -lSb -bKW -bVC +ckl +ntb +bLF +bCl +bxt lMb aXy -bJm +bKc bWV bdk -cao +bKc ccM -bMF -bBy -cak +kMb +mJb bFo aaa aaa @@ -126354,6 +127534,7 @@ aah aah aah aah +aah agm aaa aaa @@ -126545,45 +127726,44 @@ bmF bGU bJs bxJ -bNu +bNd bPo -bJB -bqm -bqm +bRF +cul +aTq dYb uhb -bqm +bMy bon kIb mPb bNW blh -bqm +cKi buj bvG -bwV -bvR -bDE -cNh -bxt -bxt -bxt +bJo +bJo +bJo +bJo +bLF +bLF +auG +bFd +bLF +bLF +hrb bxt -bJm -mbb -bKW -lZb lXb aVd -bJm +bKc bVy bEt -bEt -cKK -bMF -bBy -cGq -cGF +bKc +bhk +aGu +gRb +bFo aaa aaa ckA @@ -126601,6 +127781,7 @@ srb ckA aaa aaa +aaa aah aaa aaa @@ -126804,43 +127985,42 @@ bGV bLT bNv bPr -cpX -bqm +bRF +cul bKM cyE eJb -bvD +bjO bMo kTb bAC bNV -lwb +bMF bvD nWb aMr bjI bsz aRC -aSW +fXM aUS -bGi -bFj -bIk -bJm +bLF +bLF +bLF +bLF pqb -oDb -oCb -oBb +bJR +bxt +bxt nhb -bJm +bKc bWr -bEi -bEi -cJn -bMF +bKc +bKc +bhk +cak bBy -bMp -cGF +bFo aaa aaa cfJ @@ -126858,6 +128038,7 @@ ssb ckA aaa aaa +aaa aah aaa aaa @@ -127061,42 +128242,41 @@ bJt bxJ bNx ctS -cpX +bRF cul bin biC bkU -bSN -kUb -knb -mGb -aIa -mYb +bMF +bMF +bMF +bMF +bMF +bMF mqb neb aPo aFN aHp aLD -aRW +cGB bFn -bCe +bAB bGP -bIr -bJm +bNq +bFo pCb pBb pzb -pyb -aXy -bJm -bXS -cEm +bxt +bxt +bKc +bKc +bKc caK jqb -bMF -bBy -cLu +cAz +bFo bFo aah aah @@ -127115,6 +128295,7 @@ ckA ckA aaa aaa +aaa aah aaa aaa @@ -127318,43 +128499,42 @@ bJv bLU bNF ctS -auG -bqm -ctu +bRF +cLG +cGM biB bkK -bqm +bJi bMq jwb bge bia -lyb -bqm +bJi +bXr bcs cLq -caY -bsz +bAB +bBb aNc aSk -bxt -bxt -bxt -bxt -bJm -bJm -bJm -bJm -bJm -bJm -bJm -bMF -bMF -bMF -bMF -bMF -cFU +drb +bAB +bgt +bNE +bFo cak +cak +cak +cGP +kmb +bFo bFo +cIF +cxW +bhk +aGu +bMQ +aaa aaa aaa ckA @@ -127364,13 +128544,14 @@ bNf bNj shb skb -stb -aaa +qDS +aah +aah +aah +aah +aah +aah aah -aaa -aaa -aaa -aaa aaa aah aaa @@ -127575,43 +128756,42 @@ bJw bLV bNJ bPt -bSs -bqm -biu -biM -bkX -bqm +uqu +bJi +bJi +bJi +bJi +bJi gcb jzb kub -cGM -nDb -bqm +mWb +ctM +mdb nsb qQb bAB -bvR -aOK -aSW -aTq -bCj -bGR -bIq -bKa -bMm -bDV -lTb -qUb +bAB +bAB +bAB +bAB +bAB +bMk +bFo bFo cak -biA -bgB +cLu +cak +cak +kMb +cak +mUb bgB +bFo bhk -bgB -bhm cak -bFo +bMQ +aaa aaa aaa ckA @@ -127621,7 +128801,7 @@ ckA ckA ckA ckA -sub +nec bNl bNl bNl @@ -127639,6 +128819,7 @@ aah aah aah aah +aah agm aah cFJ @@ -127833,42 +129014,41 @@ bxJ bNd csv cuJ -bVh -bJi bJi +cfD +cfD dkb -bJi -bJi -bJi -bJi -bJi -bJi -bJi -bvR -bvR -bvR -bvR +tUH +lzT +bzU +cLJ +aIq +bIq +bCF +eJC +aSW +bIw +cLC aOM -aRW +cES bFq -bCl -bGS -bLg -bLg -bMm +bHY +bFo +bFo +bFP +cak bDV -cAz -cLu -bRK -bYh -cAa -bST -caL -cIF +bFP +auV cak -cFU -cLs -bFo +cak +mUb +cak +cak +bhk +cak +bMQ +aaa aaa aaa aah @@ -127877,6 +129057,7 @@ aaa aaa aaa aaa +aaa aah aaa aaa @@ -128090,41 +129271,40 @@ bJJ ccr cuB bMv -ctK bJi -cyD -dlb cFR -aZp -lAb cFR +cFR +cFR +gcb +lAb +bNS tob -aZp bJi +lHb bum bcu bFZ -bxi +cKU bCk aTL bAx bLg bFt -bLg -bLg -bNN -bDV +cak +cak +cak +jhb +bFo +bFo +voO +bFo +bFo bFP -qVb +aGu +bhk +jhb bFo -cDf -cAa -bHY -bHY -bHY -cGc -cEh -cLl bFo aaa aaa @@ -128134,6 +129314,7 @@ aaa aaa aaa aaa +aaa aah aaa aaa @@ -128348,40 +129529,39 @@ bNe bPu bMv ctM -bJi -cyM -eMb bNS bNS -kab bNS bNS +gcb +kab bNS +jvb bJi +tCk aRy bAi -bHg +bHY bMD -bMy -bFh +cBO +btg bGf -bDN +bHY bGZ -bJR -bLB +cak +cak bMm -bDV -qSb +kUb +bFo aHZ -bHY -bHY -cAx -bHY +lCb +bIW +bFo +bFo ccD -bHY -bBy -cak +bhk cak +aNa bFo aaa aaa @@ -128391,6 +129571,7 @@ aaa aaa aaa aaa +aaa aah aaa aaa @@ -128602,49 +129783,49 @@ bOz bOz bJJ bNd -bPu -bPg +cLz +bOl bVh -bJi +cyN cyN dmb bTL hFb kbb bNS -bNS -bNS +mTb +bJm boy nwb -bFh -bII -bMC +aIa +bJm +bJm anG -hKb -bHY -bHY -bHY -bHY -bHY -bHY -bHY -bHY -bHY bHY -bgc -bgh -cGE -bZH +gWp bHY -bBy +jhb cak +cak +kMb +bho bFo +aRc +hlE +cak +qSb bFo +bZH +bhk +kMb +cNc bFo -bFo -bFo -ceQ -ceQ +aaa +aaa +aah +aaa +aaa +aaa aaa aaa aaa @@ -128860,48 +130041,48 @@ bJy bJJ ced cuD -bOl -cuq +bPg +bJi +bXM bXM -cuv eQb -bNS +bXM ghb -bNS +fZO lWb -lpb -mdb -bJi +bJm +bJm +bMX aSh bAm qWb -bxi +bJm bOV -bFh +bHY aTt -bDS +bHY bGe -bJV -bLE -bNR -bIw -bCm +cak +cak +cak +bFP +bFo chb -bHY +cak bgd bgg -bHY -bHY -bHY +bFo +cak +jqb cKZ -cLp -cLw -cyS -ntb -bWp -cHq -bfm -ceQ +bFo +bFo +bFo +bMQ +aah +aah +aah +aah aah aah aah @@ -129118,47 +130299,47 @@ bJJ bNd bPA bMv -cvT bJi -bgq -drb -fVb -iUb +bJi +bJi +bJi +bJi +bJi bfX -bgt -bhb -beR bJi -bxi -bxi -bxi -bxi +bJm +beR +oDb +bMC +xfD +cHZ +bJm anW -aSm +bHY cBv -bDW -bGh -bKN -aoF -bLD -aoF -bKN -bKN -bSn -cBO -cKP -cLt -cHo bHY -bBy -cLo -cFs -bTr bFo -cHb +ubb +mUb +mUb +aoF bFo -bfK -ceQ +bFo +bFo +bFo +bFo +bFo +mUb +bNT +bFo +bFo +bgk +bTr +bMQ +bMQ +aaa +aaa +aaa aaa aaa aaa @@ -129372,50 +130553,50 @@ bOz bFT bOz bJJ -bNu +cLl cuI cqi -bVh -bJi -bJi +cvD +qVb +cFU bqH -bJi -bJi -bJi -bJi -bJi -bJi -bJi -bGB +bDg +bFo +lDb +cHq +bJm +bII +bKW +aHG cAc -arD -nZb -qpb -aFe -aUU -bDl +bLB +bJm +bHY +bHY +bHY +bHY bGg -bKu -bKu -sBb +ieb +cak +cak bKu bQi bRt -bHY +flb bTh cLg -bHY -bgs -bHY -cLG -bFo -bFo -bFo -bFo bFo +cak +bhk bFo -aah -aah +bti +cak +cak +qob +bMQ +aaa +aaa +aaa aaa aaa aaa @@ -129631,49 +130812,49 @@ bJJ bJJ azQ bPB -bcb +gDn bjB -cvD -czB +bCp +dsb dsb bnb hwb bsh kLb -bho -bFo +bJm +fVb bgo -cak +cyD cDG cJo -bxi -bOc +bJm +aDu aSl -bHY -bER +cLs +bFo bHQ -bKA -aSj +aGu +cak bNU -bPv -bRN +cak +aGu bMH -bHY -bHY -bHY -bHY -bHY -bHY -bBy +cAa +dcP +lyb +aOO +cak +bhk bFo +cGF +pFh +lCb +aiH +bMQ aaa aaa aaa aaa -aah -aaa -aaa -aaa aaa aaa aaa @@ -129887,50 +131068,50 @@ aAL aye aup azW -bPw +bPA cuM -bWj +cvD kda cpS dtb cxm -cpS +bFo hqb kzb -awA -meb +bJm +bJm bJj cBy cCp -nOb -bxi -bxi -bxi -bHY -bHY -bHY -bHY -bHY -bHY -bHY -bHY -bHY -bHY -bej +bJm +bJm +ocE +aGl +avs +bFo +bMm cak -cGc -cac -cac -bDL bFo +bFo +bFo +bFo +acZ +bth +cJS +cIQ +lQb +cak +bhk +mMb +lGb +cak +cak +bFM +bMQ aaa aaa aaa aaa -aah -aaa -aaa -aaa aaa aaa aaa @@ -130146,48 +131327,48 @@ azN bOb bPC ctz -aKs -aKs -aKs -aKs -aKs -aKs -hrb -aKs -aKs -aKs -cIA +cvD +cvD +cvD +cvD +cvD +bFo +bFo +oqh +lKb +bJm +bJm +bJm +bJm +bJm +cIk +bFo cak -cGP -bsA -rBb -bDA -rBb -rBb -rBb -rBb -rBb -rBb +bFo +bFo +mUb +mUb +bFo rBb rNb -rBb -rBb +bFo +mGb bSp bew -rBb -cGe -aHG -cIQ -jhb +lGF +cYi +cak +bhk bFo +lCb +cKy +cak +bSd +bMQ aaa aaa aaa aaa -aah -aaa -aaa -aaa aaa aaa aaa @@ -130403,46 +131584,46 @@ aup azm bPu bMv -cjY +aKs bXV -cbR +aKs cxk wER fPM -aSq -cBk -aSo aKs -cLy +cBk +cak +bFo +bGe cak bhA -aKs -aKs -aKs -aKs -aKs -aEZ -aHR +aNq +bjo +bFo +bFo +bFo +bIe +cak cak -jhb bFo +lTb +cak +mMb +mUb +hKb bFo bFo bFo +mUb +bNT bFo -aGG +bYe +lGb cak -cbz -cbz -cbz -cbz -cbz -aaa -aaa +stb +bMQ aaa aaa -aah -aaa aaa aaa aaa @@ -130660,45 +131841,45 @@ aIU bab bPL bSA -cjs -aLQ -aSp -aSp -ecb -aSp -iTb -aVk -aSs aKs +pyb aKs +aEZ +cLE +dwb aKs +aVk +cak +bFo +jLb +cGc bhD -aKs -asq +bhD +qMb auU bLp -aKs +bGB +cak +cak +bFP bFo bFo -mUb bFo bFo -jGb -mKb cak -bFo -ubb baG -csA -cAL -cBh -cuo -bSY -aaa -aaa -aaa +ubb +bej +bFP +cak +jqb +bFo +bST +cak +inb +bIW +bMQ aaa -aah aaa aaa aaa @@ -130916,46 +132097,46 @@ plH aIU cjG bPE -bSy -bWk +bMv +aKs jab -dZb +aKs ciD -bYl -bYl -iWb +ccq +ebb +aKs cBl bHv asn -aKs -baH +bUB +cGe cJF -arH -bxR -aHI -awk -aKs -cak -cak -cak -bGB bFo -kCb -lub cak -bFo -lOb -cak -cbz -cKv +bJB +kCb +kCb +kCb +kCb +kCb +kCb +kCb +kCb +asn +kCb +cLt +kCb +cNf +ccK +ccK iUO -cEB +bFo bSY -aah -aah -aah -aah -aah +cak +kMb +aQi +bMQ +aaa aaa aaa aaa @@ -131173,46 +132354,46 @@ bJA aIU bHE bPu -bMv -cjY +bSs +aKs coN -czO -coQ +aKs +aKs aVj -fRZ -hxb -aQi +aKs +aKs +bFo asm bYr -aKs -bYe +arD +arD cLD -asl -asE -avU -bQH -aKs -lBb +cKT +arD +bpq +cak +kgE +cak cak cHy -bIe -bFo -cFs cak +aGu +aGu +mUb +cak +cLu +cak +lSb cak -bFo -lOb -cbz -cbz cEy -cfB -cil -cbz -aaa -aaa -aah +bFo +bFo +bFo +bFo +knb +bMQ +bMQ aaa -aah aaa aaa aaa @@ -131430,44 +132611,44 @@ aIU aIU bOp bPu -coK +ixe +aKs aKs aKs -cbT unb edb aGc idb -arG -awi -jvb -bSB -jvb -cLE -asl -atl -avU -awB aKs -kob -cak -cak -cak +aKs +aKs +aKs +aKs +aKs +kPs +atl +bIR +pzb +aYz bFo -bLK +iUb +lCb cak -bTA bFo -lOb -cbz -cKi -cer -cfC +bFo +bFo +bFo +bFo +aGu +lSb +cLu +bGB +bFo bkt -cbz -aah -aah -aah +aMV +bFo +bFo +bMQ aah aah aah @@ -131690,46 +132871,46 @@ bPu bMv coM coS -ctO +cxo eQZ bdx fRb jEb -cBA -aSp -aSu -aKs +bDl +bKO +jbb +dZb cLA -cLz -asl -atn -avU -awD aKs -bFo -bFo -bFo +aKs +fwb +awi +aKs +aKs +aKs +aKs +aKs cak +kob bFo +jGb +mKb bFo -mMb +cak +lSb +cKh +cFs bFo +cak +cak bFo -lOb -cbz -cKh -cer -cfB -cer -cbz -aaa -aaa aah aaa -aah aaa aaa aaa +aah +aaa aaa aaa aah @@ -131946,47 +133127,47 @@ bOs bPu bMv coO -bYC -cuu +bYS +aKs uuT -eeb +cIA hRb iTb -nLb -aSp +bHG +hGF cID +vOR +aSp +bYl aKs -cLC -bOT -bNL -cBM -aLQ -aBR aKs +mab +aKs +asq mZb -jub -bFo -cak -jLb -cak +eeb +aKs cak +bFo +bFo +rGN +lub +bFo cak -mUb -lOb +lSb +cbz +cbz +cbz +cbz cbz -ccR -cew -cfD -cya cbz -aaa -aaa aah aaa -aah aaa aaa aaa +aah +aaa aaa aaa aah @@ -132201,48 +133382,48 @@ bsd bMb bcb foN -bMv +bcb hyb bYK -ccK +cxo vYc elw hVJ -ieb +aLQ mrb -ecb +aLQ aXN +bWm +ecb +cLy aKs +baH +hly +arH +bxR +aHI +awk aKs -aKs -aKs -bNQ -avY -aKs -aKs -aFA -jLb -bFo -bFo -bFo -bFo -bFo +mUb bFo +cFs +cak +cak bFo -lOb +cak +emF cbz +sub +etR +cFY +bDL cbz cbz cbz cbz +lPo cbz -aaa -aaa -aah -aaa -aah -aaa -aaa +ceQ aaa aaa aaa @@ -132458,48 +133639,48 @@ bsd tMB bcb aUj -ixe -aKs -aKs +bcb +cfC +bYK qXb -aKs -aKs +aLQ +bCm hWb -ifb -aSp ecb -aXP -ato -ccq +lZb +aLQ +aLQ +aLQ +ecb bNG aKs +bSn +oBb +asl +asE +avU +jdb aKs -aKs -aKs -aDu -jfb -kMb -bFo -mBb -mBb -aNa +cak bFo -tVb -tDb -aFC -bFP +bLK +cak +bTA bFo -aah -aah -aah -aah -aah -aah -aah -aaa -aah -aaa -aaa +cak +fJS +hxb +oZQ +hhP +uVv +bmG +aSj +cGd +wwQ +cJn +aYp +cbT +bfm aaa aaa aaa @@ -132715,48 +133896,48 @@ xbF tMB uEB iKb -ueK -aKs +bcb +cfC bYL -uZG -dwb aKs +bgq +cKP iGb ilb mtb cGV cIE -aKs +cKF cLF -ary -aKs -bMk -bNq -bFo +cLF +bCe +cLF +lYb +asl jgb -aGl +avU +awB +aKs cak bFo -mTb -lvb -nab bFo -lOb -cak -bFP -cak +mMb bFo -aaa -aaa -aaa -aaa -aaa -aaa -aah -aaa -aah -aaa -aaa +bFo +mUb +sBb +cbz +bzb +cKv +cuo +ccR +bvz +bpX +cbz +cCg +cLj +cbz +bfK aaa aaa aaa @@ -132973,50 +134154,50 @@ aTs aTw aUT bhQ -aKs +ckt bYM cvy -ebb -aKs -aKs +cbR +dub +bGh bSC cjY -cjs -aKs -aKs +aLQ +aLQ +vIF cIu -arA +aSu aKs bNp -bNE -bFo -jKb -aGu +meb +asl +atn +avU +awD +aKs cak -bFo -mHb -mHb -ngb -bFo -bOU +cjs +bIW cak +mUb +lCb cak -bFP -bMQ -aaa -aaa -aaa -aaa -aaa -aaa +rrb +cbz +cbz +cer +bSB +cHb +cbz +cbz +cbz +cbz +cbz +cbz +aah +aah aah -aaa aah -aaa -aaa -aaa -aaa -aaa aah aaa aaa @@ -133228,47 +134409,47 @@ buQ aQk uHk bcb -bPu -bMA -aKs -aKs -aKs -aKs -aKs +bcb +bcb +acw +bYK +cxo +ccu +aLQ bWm -jbb +aLQ oKb -aHr -bhw -aKs -aKs +aLQ +ecb +cBA +ecb +bRw aKs +bzn +bOT +coK +cBM +aLQ +aBR aKs +cak bFo bFo bFo bFo bFo -bFo -bFo -bFo -bFo -nkb -bFo -bOU -cES -cak -jtb -bMQ -aaa -aaa -aaa +aGu +rrb +jTb +cbz +ccN +cfB +bFj +cbz aaa aaa aaa -aah aaa -aah aaa aaa aaa @@ -133485,47 +134666,47 @@ aIU enu str bOs -aUW -cuk +bcb +bMv cvS bYS -ccL +aKs bqS -bCp +aLQ hlb jcb -oMJ -aNq -aZk -axd -cLN +oKb +aLQ +aSp +nLb +aSp dyb -aun -bWu -auV -avs -avX -bFo -mcb -nOb +aKs +aKs +aKs +aKs +fNb +avY +aKs +aKs +rFr bFo -cFs -nlb +mBb +mBb +aNa bFo -lOb cak -bFP -cFs -bFo -aah -aaa -aaa +rrb +nOb +cbz +bKN +tDb +cbz +cbz aaa aaa aaa -aah aaa -aah aaa aaa aaa @@ -133743,37 +134924,41 @@ juo pXY bOs bcb -bhQ -cuP -bYX -ccN +bMv +coM +coS +aKs bwn cwQ cxS cxn -ccN -cGY +oKb +aLQ cIH cyo ckM dzb -bYX +aKs aut -auX -auX -auX -biY +cwD +aKs +aKs +aKs +aKs cak cak -mUb -cJo -nlb -bFo -rqb -jLb -bFo bFo +goT +lvb +nab bFo +cak +bSN +bHg +cbz +cbz +cbz +cbz aah aah aah @@ -133815,10 +135000,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cCX cCX cCX @@ -133998,36 +135179,40 @@ bsf aQa aQa aQa -byZ -bcb -bhQ -bWu -bZa -ccO -ckW -cvo -cxW +aHf +bQA +chw +aKs +aKs +aKs +aKs +aKs +aKs cxo ccO ckW -cIK -cCb cxo -ccO -eyb -bWu -ava -avz -awe -bFo +aKs +aKs +aKs +aKs +aKs +aKs +aKs +bFP +bWl awC -lCb +cak +cak bFo -jhb -nlb +mHb +mHb +ngb bFo +kMb rrb -mJb +bFP +bFP bFo aaa aaa @@ -134072,10 +135257,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cCX cCX cCX @@ -134255,37 +135436,41 @@ rDM bnd fUg aQa -aHf -bQA -bSW +bOw +bOw +bOw bWu -bZb -ccQ -ckX -cwP -cxc -ckX -cdc -ckX -cIN -cCf -ckX -ccQ -bZp -bFo -bFo -bFo -bFo +ifb +aUX +avX +bga +bnn +bpD +bPv +bJu +biy +bDN +aHr +nDb bFo +fNY +bJV cak -lDb +aGu +cak +cak +cak +bYG bFo bFo -nmb +czX +nkb bFo +jtb rrb +auV bFP -bFo +bMQ aaa aaa aaa @@ -134329,10 +135514,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cCX cCX cCX @@ -134512,37 +135693,41 @@ edk sWV bna aQa -bOw -bOw -bOw -bWu -bZc -ccX -cdn -cvq -cpE -cxp -cdb -aRK -cuE -cCt -bdn -bZb -bZc -bFo -bAM -jib +aaa +aaa +aaa +bZq +auX +auX +auX +aFA +bYC +mbb +lOb +kHb +mbb +mbb +cyS +bAW +iHb +bGO +jub +cLu jTb -jib -jib +cak +cak lGb -cIk -bFo -nlb -bFo -rrb +bSo +nnb bFP -bFo +vyY +bsA +cak +cak +rrb +bKI +oxq +bMQ aah aah aah @@ -134581,10 +135766,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cCX cCX cCX @@ -134772,33 +135953,37 @@ aQa aaa aaa aaa -bWu -bZb -cdb -aRK -cwW -cpE -aUc -ccX -bas -cxs -cCt -cxp -cdb -bZp +bZq +lNI +bNL +aun +aGG +aTh +biu +cyM +biM +biM +jfb +cvk +aOK +bFo bFo -iwb -lob bFo +bFo +bFo +bTX +kMb cak -aYp -lHb -mIb -mIb -nnb -qib -rsb -jLb +cak +cak +cak +mUb +nlb +cak +cak +axd +cLu +bFP bFo aaa aaa @@ -134841,10 +136026,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cCX cCX cCX @@ -135030,31 +136211,35 @@ aaa aaa aaa bWu -bZd -cdc -aRK -cvq -cxl -cxp -cdd -cdn -cuE -cCt -aUM -ccX -cdc -bFo -iCb -bFo -aVF -aVJ -aVF -lNb -bFo -bFo -bFP +bWu +bWu +bWu +bWu +bWu +cwP +cxc +aiD +bgc +cAL +cIN +cCf +ckX +ccQ +bZp bFo -bFP +bAM +jib +jib +jib +jib +jib +jib +cLw +cvd +bwV +bLv +lKr +aUW bFP bFo aaa @@ -135100,10 +136285,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cCX cCX cCX @@ -135287,29 +136468,34 @@ aah aah aah bWu -bZk -cdd -aRO -uYg +bKq +bWu +bZc +ccX +bLN +cvq cpE -aUc -cdc -baC -cxu -cCJ -cLR -bfj -eNb +cxp +cdb +aRK +cuE +cCt +bdn +bZb +bZc bFo -iFb -jlb -aVF -aXV -aVF +iwb +cak +jtb aYz -aYB -bFo +aGu +aGu +gRb +mcb bFo +iWb +bDj +bWj ctP ctP ctP @@ -135319,7 +136505,6 @@ aah aah aah aah -aah aaa cBa cBC @@ -135361,10 +136546,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cCX cCX cCX @@ -135544,29 +136725,34 @@ aaa aaa aaa bWu -bZn -bZp -aTf -cxu -cpE -cxp +bWu +bWu +bZb cdb aRK -cuE +cwW +cpE +aUc +ccX +bas +cxs cCt -cMn cxp -bZn +cdb +bZp bFo -aCK -aVF -aVF -aYn +iCb +cak +cFs aVF +aVJ aVF -lPb -cak -inb +lCb +jLb +bFo +cDf +aSq +cvo ctP cuQ cvE @@ -135575,7 +136761,6 @@ aXA aXA aXA aaa -aaa aah aaa aah @@ -135620,10 +136805,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cCX cCX cCX @@ -135800,31 +136981,36 @@ aaa aaa aaa aaa +aaa +aaa bWu -bZp -aQb -cla +bZd +cdc +aRK +cvq +cxl +cxp +cdd +cdn cuE -cpE +cCt aUM -aXG -cHi -cuE -cCK -bdq -cdb ccX +cdc bFo -iHb +iFb +cLn +ueK aVF -bAJ -blC -bJh +aXV aVF -lQb -mIb mIb qmb +bFo +aaS +wbQ +arG +cLo rPb tOb ceD @@ -135844,7 +137030,6 @@ czD czD czD czD -czD cDz cDK cDK @@ -135923,269 +137108,12 @@ aaa aaa aaa aaa +"} +(197,1,1) = {" aaa aaa aaa aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajm -ajK -akA -aaa -ajm -ajK -akA -aaa -ajm -ajK -akA -aah -aah -aaa -aah -aah -aah -aah -aah -awx -awL -aAe -aAU -awx -aaa -aEd -aZS -bch -bsJ -aEd -aTV -aup -aaa -aaa -oRh -bHd -pBZ -csp -bdp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aah -aah -aah -aaa -aaa -bWu -bWu -aQl -clb -cuE -cpE -cxs -cxs -cxs -cxu -cuE -bdw -bZp -bWu -bFo -iJb -aVF -bAn -bFu -bIH -aVF -lYb -cak -bSd -nTb -cuS -cvG -oab -aXA -aXA -aXA -aaa -aaa -aah -aaa -aah -cBE -aaa -aaa -aah -cBE -aah -aaa -aah -cBE -aaa -aah -aaa -aah -aaa -cAd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cFI -cFI -cFI -cFI -cFI -cFI -cFI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" aaa aaa aaa @@ -136246,12 +137174,6 @@ aac aac aac aac -aac -aac -aac -aac -aac -aac aaa aaa aaa @@ -136260,46 +137182,48 @@ aaa aaa aaa aaa -agm -aah +aaa +aaa +aaa +aaa ajm ajK akA -aah +aaa ajm ajK akA -aah +aaa ajm ajK akA +aah +aah aaa aah aah aah -aaa -aaa -aaa -aaa -awx -awx -awx +aah +aah awx +awL +aAe +aAU awx aaa aEd -aZu -biH -bqL +aZS +bch +bsJ aEd -bDh +aTV aup aaa aaa oRh -bIx -aXK -wOM +bHd +pBZ +csp bdp aaa aaa @@ -136309,62 +137233,66 @@ aaa aaa aaa aaa +aah +aah +aah aaa aaa aaa aaa -aaa -aaa -bZq -cdn -clU -cwV -cxz -cuE -avn -cuE -cuN -cuE -bdE -bZb -bZq +bWu +bZk +cdd +aRO +uYg +cpE +aUc +cdc +baC +cxu +cCJ +cLR +bfj +eNb +bFo +aCK bFo -aCV aVF -bDe -bFK -bJq aVF -bRw -cak -bTX -ctP -ctP -ctP -ctP +aYn +aVF +aVF +bFo +bFo +eXF +aSq +ary +nTb +cuS +cvG +oab aXA +aXA +aXA +aaa aah +aaa aah +cBE +aaa +aaa aah +cBE aah +aaa aah +cBE +aaa aah -cBa -cBF -cCa -aah -cBa -cBF -cCa -aah -cBa -cBF -cCa aaa +aah aaa cAd -cAd -cAd aaa aaa aaa @@ -136376,9 +137304,6 @@ aaa aaa aaa aaa -aag -aaa -aaa aaa aaa aaa @@ -136401,8 +137326,7 @@ cFI cFI cFI cFI -cFI -cFI +aaa aaa aaa aaa @@ -136442,7 +137366,9 @@ aaa aaa aaa "} -(199,1,1) = {" +(198,1,1) = {" +aaa +aaa aaa aaa aaa @@ -136491,8 +137417,6 @@ aaa aaa aaa aaa -aac -aac aac aac aac @@ -136522,42 +137446,42 @@ aah ajm ajK akA -aaa +aah ajm ajK akA -aaa +aah ajm ajK akA aaa aah aah +aah aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa +awx +awx +awx +awx +awx aaa aEd -bae -bnF -buF -bvP -bxO -bvP +aZu +biH +bqL +aEd +bDh +aup aaa aaa oRh -bJD -wAu -bjs -dQH +bIx +aXK +wOM +bdp aaa aaa aaa @@ -136572,36 +137496,40 @@ aaa aaa aaa aaa -bZq -bZq -bZq -aTX -cuN +aaa +bWu +bZn +bZp +aTf cxu +cpE +cxp +cdb +aRK cuE -cuE -cuE -bcq -bZq -bZq -bZq -cak -aUX -cak -bqR -bFz -bqV -aVF -bMQ -bFo +cCt +cMn +cxp +bZn bFo +mBC +cac +aVF +bAJ +blC +bJh +aVF +iNs bFo -aaa -aah -aah -aah +bAR +aSq +cuv +ctP +ctP +ctP +ctP +aXA aah -aaa aah aah aah @@ -136609,16 +137537,19 @@ aah cBa cBF cCa -aaa +aah cBa cBF cCa -aaa +aah cBa cBF cCa aaa aaa +cAd +cAd +cAd aaa aaa aaa @@ -136626,6 +137557,8 @@ aaa aaa aaa aaa +aag +aaa aaa aaa aaa @@ -136641,17 +137574,7 @@ aaa aaa aaa aaa -cFI -cFI aaa -cFI -cFI -cFI -cFI -cFI -cFI -cFI -cFI cFI cFI cFI @@ -136698,8 +137621,12 @@ aaa aaa aaa aaa +aaa "} -(200,1,1) = {" +(199,1,1) = {" +aaa +aaa +aaa aaa aaa aaa @@ -136745,10 +137672,6 @@ aaa aaa aaa aaa -aac -aac -aac -aac aac aac aac @@ -136774,22 +137697,23 @@ aaa aaa aaa aaa -agn aaa +agm +aah ajm -ajL +ajK akA aaa ajm -ajL +ajK akA aaa ajm -ajL +ajK akA -aah -agm aaa +aah +aah aaa aaa aaa @@ -136801,21 +137725,20 @@ aaa aaa aaa aaa -aah -aZZ -bcJ -bor -aah -aah -aah +aEd +bae +bnF +buF +bvP +bxO +bvP aaa aaa -wLi -oRh -oRh oRh -wLi -aah +bJD +wAu +bjs +dQH aaa aaa aaa @@ -136831,52 +137754,54 @@ aaa aaa aaa aaa -bZq -bZq -aUb -aWJ -aXM -baN -bbj -bZq -bZq -aaa -aaa +bWu +bZp +aQb +cla +cuE +cpE +aUM +aXG +cHi +cuE +cCK +bdq +cdb +ccX +bFo +pTu +awe +aVF +bAn +bFu +bIH +aVF +mEK +bFo +dMb +aSo +bFo +bFo +aah aah aah aah -aaa -aaa -aaa aah -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aaa aah aah -aaa aah -aaa cBa cBF cCa -aah +aaa cBa cBF cCa -aah +aaa cBa cBF cCa -aah -cAd -aaa aaa aaa aaa @@ -136897,10 +137822,9 @@ aaa aaa aaa aaa -aaa -cFI cFI cFI +aaa cFI cFI cFI @@ -136956,12 +137880,7 @@ aaa aaa aaa "} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa +(200,1,1) = {" aaa aaa aaa @@ -137024,6 +137943,11 @@ aac aac aac aac +aac +aac +aac +aac +aac aaa aaa aaa @@ -137033,18 +137957,18 @@ aaa aaa agn aaa -aah -aah -aah +ajm +ajL +akA aaa -aah -aah -aah +ajm +ajL +akA aaa +ajm +ajL +akA aah -aah -aaa -aaa agm aaa aaa @@ -137058,22 +137982,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aah +aZZ +bcJ +bor +aah +aah aah aaa aaa +wLi +oRh +oRh +oRh +wLi +aah aaa aaa aaa @@ -137088,28 +138011,33 @@ aaa aaa aaa aaa -aaa -bZq -bZq -bZq -bZq -bZq -bZq -bZq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +bWu +bWu +aQl +clb +cuE +cpE +cxs +cxs +cxs +cxu +cuE +bdw +bZp +bWu +bFo +aCV +bFo +aVF +bDe +bFK +bJq +aVF +bMQ +bFo +bMQ +bMQ +bFo aaa aaa aaa @@ -137117,13 +138045,13 @@ aaa aaa aaa aah -aaa +aah aah aaa cBa cBF cCa -aaa +aah cBa cBF cCa @@ -137151,10 +138079,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -cFI cFI cFI cFI @@ -137213,7 +138137,7 @@ aaa aaa aaa "} -(202,1,1) = {" +(201,1,1) = {" aaa aaa aaa @@ -137289,39 +138213,20 @@ aaa aaa aaa agn -agn -agm -agm -agm -agn -agm -agm -agm -agn -agm -agm -agN -agm -agm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aaa +aah +aah +aah aaa +aah +aah +aah aaa +aah +aah aaa aaa +agm aaa aaa aaa @@ -137347,6 +138252,7 @@ aaa aaa aaa aaa +aah aaa aaa aaa @@ -137363,6 +138269,29 @@ aaa aaa aaa aaa +bZq +cdn +clU +cwV +cxz +cuE +avn +cuE +cuN +cuE +bdE +bZb +bZq +sWb +ciT +sWb +aVF +bqR +bFz +bqV +cKK +aah +aah aaa aaa aaa @@ -137375,20 +138304,19 @@ aaa aaa aah aah -agN aaa cBa -cBG +cBF cCa -aah +aaa cBa -cBG +cBF cCa aah cBa -cBG +cBF cCa -aaa +aah cAd aaa aaa @@ -137407,11 +138335,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -cFI cFI cFI cFI @@ -137469,8 +138392,9 @@ aaa aaa aaa aaa +aaa "} -(203,1,1) = {" +(202,1,1) = {" aaa aaa aaa @@ -137545,6 +138469,28 @@ aaa aaa aaa aaa +agn +agn +agm +agm +agm +agn +agm +agm +agm +agn +agm +agm +agN +agm +agm +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -137580,9 +138526,26 @@ aaa aaa aaa aaa +bZq +bZq +aUb +aTX +cuN +cxu +cuE +cuE +cuE +bcq +bZb +bZq +bZq +aah +aah +aah aaa aaa aaa +aah aaa aaa aaa @@ -137596,12 +138559,61 @@ aaa aaa aaa aaa +aah +agN +aaa +cBa +cBG +cCa +aah +cBa +cBG +cCa +aah +cBa +cBG +cCa +aaa +cAd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa aaa aaa aaa +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI +cFI aaa aaa aaa @@ -137631,6 +138643,179 @@ aaa aaa aaa aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bZq +bZq +bZq +aUb +aWJ +aXM +baN +bbj +bZq +bZq +bZq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aah cAd aaa @@ -137665,10 +138850,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cFI cFI cFI @@ -137862,9 +139043,13 @@ aaa aaa aaa aaa -aaa -aaa -aaa +bZq +bZq +bZq +bZq +bZq +bZq +bZq aaa aaa aaa @@ -137921,10 +139106,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa cFI cFI cFI @@ -138124,7 +139305,7 @@ aaa aaa aaa aaa -aag +aaa aaa aaa aaa @@ -138641,7 +139822,7 @@ aaa aaa aaa aaa -aaa +aag aaa aaa aaa