@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
21 lines (20 loc) • 606 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.js";
/**
* Written when taking off from planet surface.
*/
export interface Liftoff extends JournalEvent<"Liftoff"> {
Latitude?: number;
Longitude?: number;
StarSystem?: string;
SystemAddress?: number;
Body?: string;
BodyID?: number;
OnStation?: boolean;
OnPlanet?: boolean;
NearestDestination?: string;
NearestDestination_Localised?: string;
/** False if ship dismissed when player is in SRV, true if player is taking off. */
PlayerControlled?: boolean;
Taxi?: boolean;
Multicrew?: boolean;
}