UNPKG

@kayahr/ed-journal

Version:

Typescript library to read/watch the player journal of Frontier's game Elite Dangerous

22 lines (21 loc) 640 B
import type { JournalEvent } from "../../JournalEvent.ts"; import type { ID } from "../types/ID.ts"; /** * Written when taking off from planet surface. */ export interface Liftoff extends JournalEvent<"Liftoff"> { Latitude?: number; Longitude?: number; StarSystem?: string; SystemAddress?: ID; Body?: string; BodyID?: ID; 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; }