@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
31 lines (25 loc) • 774 B
text/typescript
/*
* Copyright (C) 2022 Klaus Reimer <k@ailis.de>
* See LICENSE.md for licensing information.
*/
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;
}