@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
22 lines (21 loc) • 669 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.js";
/**
* Written when landing on a planet surface.
*/
export interface Touchdown extends JournalEvent<"Touchdown"> {
Latitude?: number;
Longitude?: number;
StarSystem?: string;
SystemAddress?: number;
Body?: string;
BodyID?: number;
OnStation?: boolean;
OnPlanet?: boolean;
/** Included if within 50 km of a location listed in the nav panel. */
NearestDestination?: string;
NearestDestination_Localised?: string;
/** False if ship was recalled from SRV, true if player is landing. */
PlayerControlled?: boolean;
Taxi?: boolean;
Multicrew?: boolean;
}