Interface Passengers

List of passengers in the ship. Written at startup when loading the saved game file.

interface Passengers {
    Manifest: {
        Count: number;
        MissionID: number;
        Type: string;
        VIP: boolean;
        Wanted: boolean;
    }[];
    event: "Passengers";
    timestamp: string;
}

Hierarchy (view full)

Properties

Manifest: {
    Count: number;
    MissionID: number;
    Type: string;
    VIP: boolean;
    Wanted: boolean;
}[]

Type declaration

  • Count: number
  • MissionID: number
  • Type: string
  • VIP: boolean
  • Wanted: boolean
event: "Passengers"

The type of event.

timestamp: string

The time in GMT, ISO 8601.