UNPKG

@kayahr/ed-journal

Version:

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

24 lines (21 loc) 635 B
/* * Copyright (C) 2022 Klaus Reimer <k@ailis.de> * See LICENSE.md for licensing information. */ 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; }