UNPKG

@kayahr/ed-journal

Version:

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

18 lines (17 loc) 533 B
import type { JournalEvent } from "../../JournalEvent.js"; /** * Written when scanning a body of a binary pair. YOu will now get an event detailing the orbital parameters of their * barycenter. */ export interface ScanBaryCentre extends JournalEvent<"ScanBaryCentre"> { StarSystem: string; SystemAddress: number; BodyID: number; SemiMajorAxis: number; Eccentricity: number; OrbitalInclination: number; Periapsis: number; OrbitalPeriod: number; AscendingNode: number; MeanAnomaly: number; }