@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
19 lines (18 loc) • 567 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.ts";
import type { ID } from "../types/ID.ts";
/**
* 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: ID;
BodyID: ID;
SemiMajorAxis: number;
Eccentricity: number;
OrbitalInclination: number;
Periapsis: number;
OrbitalPeriod: number;
AscendingNode: number;
MeanAnomaly: number;
}