@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
25 lines (22 loc) • 669 B
text/typescript
/*
* Copyright (C) 2022 Klaus Reimer <k@ailis.de>
* See LICENSE.md for licensing information.
*/
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;
}