@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
20 lines (16 loc) • 639 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 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;
}