UNPKG

@kayahr/ed-journal

Version:

Typescript library to read/watch the player journal of Frontier's game Elite Dangerous

23 lines (22 loc) 745 B
import type { JournalEvent } from "../../JournalEvent.ts"; /** * Player's progress written at startup. */ export interface Progress extends JournalEvent<"Progress"> { /** Percent progress to next combat rank. */ Combat: number; /** Percent progress to next trade rank. */ Trade: number; /** Percent progress to next exploration rank. */ Explore: number; /** Percent progress to next empire rank. */ Empire: number; /** Percent progress to next federation rank. */ Federation: number; /** Percent progress to next CQC rank. */ CQC: number; /** Percent progress to next soldier rank. */ Soldier?: number; /** Percent progress to next exobiologist rank. */ Exobiologist?: number; }