Skip to content
KoCity (Modding)
GitHubDiscord

Contract List

Structure

type ContractList = {
  /**
   * The GUID of the Object.
   */
  $guid: GUID;
  /**
   * The name of the Object.
   */
  $name?: string;
  /**
   * The VTable reference.
   */
  vtable: GUID;
  /**
   * The path to the file this Object is located in.
   *
   * Example: /data/catch/contracts/season_05/seasonal/s05_cd.contract_list
   */
  path: `${string}.contract_list`;
  /**
   * List of contracts references contained in this Contract List.
   *
   * See: Contract
   */
  contracts: GUID[];
};