@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
12 lines (11 loc) • 498 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.js";
/**
* 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: number;
/** Number of new bodies discovered. */
Bodies: number;
}