diff --git a/baystation12.dme b/baystation12.dme
index bf45a077a4..f6683c342f 100644
--- a/baystation12.dme
+++ b/baystation12.dme
@@ -964,6 +964,7 @@
#include "code\modules\examine\examine.dm"
#include "code\modules\examine\descriptions\atmospherics.dm"
#include "code\modules\examine\descriptions\engineering.dm"
+#include "code\modules\examine\descriptions\medical.dm"
#include "code\modules\examine\descriptions\mobs.dm"
#include "code\modules\examine\descriptions\stacks.dm"
#include "code\modules\examine\descriptions\structures.dm"
diff --git a/code/modules/examine/descriptions/medical.dm b/code/modules/examine/descriptions/medical.dm
new file mode 100644
index 0000000000..b3b01e9afb
--- /dev/null
+++ b/code/modules/examine/descriptions/medical.dm
@@ -0,0 +1,42 @@
+/obj/machinery/bodyscanner
+ description_info = "The advanced scanner detects and reports internal injuries such as bone fractures, internal bleeding, and organ damage. \
+ This is useful if you are about to perform surgery.
\
+
\
+ Click your target with Grab intent, then click on the scanner to place them in it. Click the red terminal to operate. \
+ Right-click the scanner and click 'Eject Occupant' to remove them. You can enter the scanner yourself in a similar way, using the 'Enter Body Scanner' \
+ verb."
+
+/obj/machinery/atmospherics/unary/cryo_cell
+ description_info = "The cryogenic chamber, or 'cryo', treats most damage types, most notably genetic damage. It also stabilizes patients \
+ in critical condition by placing them in stasis, so they can be treated at a later time.
\
+
\
+ In order for it to work, it must be loaded with chemicals, and the temperature of the solution must reach a certain point. Additionally, it \
+ requires a supply of pure oxygen, provided by canisters that are attached. The most commonly used chemicals in the chambers are Cryoxadone and \
+ Clonexadone. Clonexadone is more effective in treating all damage, including Genetic damage, but is otherwise functionally identical.
\
+
\
+ Activating the freezer nearby, and setting it to a temperature setting below 150, is recommended before operation! Further, any clothing the patient \
+ is wearing that act as an insulator will reduce its effectiveness, and should be removed.
\
+
\
+ Clicking the tube with a beaker full of chemicals in hand will place it in its storage to distribute when it is activated.
\
+
\
+ Click your target with Grab intent, then click on the tube, with an empty hand, to place them in it. Click the tube again to open the menu. \
+ Press the button on the menu to activate it. Once they have reached 100 health, right-click the cell and click 'Eject Occupant' to remove them. \
+ Remember to turn it off, once you've finished, to save power and chemicals!"
+
+/obj/machinery/optable
+ description_info = "Click your target with Grab intent, then click on the table with an empty hand, to place them on it."
+
+/obj/machinery/computer/operating
+ description_info = "This console gives information on the status of the patient on the adjacent operating table, notably their consciousness."
+
+/obj/machinery/sleeper
+ description_info = "The sleeper allows you to clean the blood by means of dialysis, and to administer medication in a controlled environment.
\
+
\
+ Click your target with Grab intent, then click on the sleeper to place them in it. Click the green console, with an empty hand, to open the menu. \
+ Click 'Start Dialysis' to begin filtering unwanted chemicals from the occupant's blood. The beaker contained will begin to fill with their \
+ contaminated blood, and will need to be emptied when full.
\
+
\
+ You can also inject common medicines directly into their bloodstream.\
+
\
+ Right-click the cell and click 'Eject Occupant' to remove them. You can enter the cell yourself by right clicking and selecting 'Enter Sleeper'. \
+ Note that you cannot control the sleeper while inside of it."
\ No newline at end of file
diff --git a/code/modules/examine/descriptions/structures.dm b/code/modules/examine/descriptions/structures.dm
index fa46c1501f..858653b094 100644
--- a/code/modules/examine/descriptions/structures.dm
+++ b/code/modules/examine/descriptions/structures.dm
@@ -13,3 +13,9 @@
/obj/structure/lattice
description_info = "Add a metal floor tile to build a floor on top of the lattice.
\
Lattices can be made by applying metal rods to a space tile."
+
+/obj/structure/bed
+ description_info = "Click and drag yourself (or anyone) to this to buckle in. Click on this with an empty hand to undo the buckles.
\
+
\
+ Anyone with restraints, such as handcuffs, will not be able to unbuckle themselves. They must use the Resist button, or verb, to break free of \
+ the buckles, instead."
\ No newline at end of file