From 7719bf9c162cca419019bde07a626e3f875e4d24 Mon Sep 17 00:00:00 2001 From: DCoded <dcoded@live.com> Date: Thu, 1 Oct 2020 19:21:08 -0400 Subject: [PATCH] Added more documentation to the Pit --- devTools/types/FC.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/devTools/types/FC.d.ts b/devTools/types/FC.d.ts index c07da2681e6..227fea3ae25 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" -- GitLab