@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
15 lines (14 loc) • 511 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.ts";
import type { ID } from "../types/ID.ts";
/**
* When dropping out of supercruise at a targeted destination.
*/
export interface SupercruiseDestinationDrop extends JournalEvent<"SupercruiseDestinationDrop"> {
/** The type fo destination being dropped into. */
Type: string;
Type_Localised?: string;
/** Threat level. */
Threat: number;
/** Optional market id of the destination if dropping at a market. */
MarketID?: ID;
}