Interface ShipLocker

Lists the contents of the ship locker, eg at startup. The full list is written into the journal at startup (if in a ship) and when boarding a ship. For other updates the ship locker has to be watched separately.

interface ShipLocker {
    Components?: ShipLockerItem[];
    Consumables?: ShipLockerItem[];
    Data?: ShipLockerItem[];
    Items?: ShipLockerItem[];
    event: "ShipLocker";
    timestamp: string;
}

Hierarchy (view full)

Properties

Components?: ShipLockerItem[]
Consumables?: ShipLockerItem[]
Items?: ShipLockerItem[]
event: "ShipLocker"

The type of event.

timestamp: string

The time in GMT, ISO 8601.