diff --git a/devTools/types/FC.d.ts b/devTools/types/FC.d.ts
index c07da2681e6fc84f0866d17933d9b0beb277e290..227fea3ae2599e1c87fb2610b41b3ec43dff8aac 100644
--- a/devTools/types/FC.d.ts
+++ b/devTools/types/FC.d.ts
@@ -604,14 +604,22 @@ declare global {
 
 		namespace Facilities {
 			interface Pit {
+				/** Defaults to "the Pit" if not otherwise set. */
 				name: string;
 
+				/** Has a slave fight an animal if not null. */
 				animal: Animal;
+				/** The type of audience the Pit has. */
 				audience: "none" | "free" | "paid";
+				/** Whether or not the bodyguard is fighting this week. */
 				bodyguardFights: boolean;
+				/** An array of the IDs of slaves assigned to the Pit. */
 				fighterIDs: number[];
+				/** Whether or not a fight has taken place during the week. */
 				fought: boolean;
+				/** Whether or not the fights in the Pit are lethal. */
 				lethal: boolean;
+				/** The ID of the slave fighting the bodyguard for their life. */
 				slaveFightingBodyguard: number;
 				/** The virginities of the loser allowed to be taken. */
 				virginities: "neither" | "vaginal" | "anal" | "all"