@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
13 lines (12 loc) • 536 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.ts";
import type { ID } from "../types/ID.ts";
/**
* Written when using the discovery scanner, and new body discoveries are displayed in the cockpit info window.
* Note you can get two or three of these in a row, where some bodies are discovered by the automatic passive scan,
* before the active scan is complete.
*/
export interface DiscoveryScan extends JournalEvent<"DiscoveryScan"> {
SystemAddress: ID;
/** Number of new bodies discovered. */
Bodies: number;
}