@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
28 lines (24 loc) • 612 B
text/typescript
/*
* Copyright (C) 2022 Klaus Reimer <k@ailis.de>
* See LICENSE.md for licensing information.
*/
import type { JournalEvent } from "../../JournalEvent.js";
/**
* Written when accessing the outfitting menu.
*/
export interface Outfitting extends JournalEvent<"Outfitting"> {
MarketID: number;
StarSystem: string;
StationName: string;
}
/**
* Extended outfitting info written to separate 'Outfitting.json' file.
*/
export interface ExtendedOutfitting extends Outfitting {
Horizons: boolean;
Items: Array<{
id: number;
Name: string;
BuyPrice: number;
}>;
}