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