@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
17 lines (16 loc) • 554 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.ts";
/**
* Written when selling exploration data in Cartographics.
*/
export interface SellExplorationData extends JournalEvent<"SellExplorationData"> {
/** System names. */
Systems: string[];
/** Discovered bodies. */
Discovered: string[];
/** Value of systems. */
BaseValue: number;
/** Bonus for first discoveries. */
Bonus: number;
/** Total credits received (including for example the 200% bonus if rank 5 with Li Yong Rui) */
TotalEarnings?: number;
}