@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
14 lines (13 loc) • 341 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.js";
export interface UpgradeSuit extends JournalEvent<"UpgradeSuit"> {
Name: string;
Name_Localised: string;
SuitID: number;
Class: number;
Cost: number;
Resources?: Array<{
Name: string;
Name_Localised?: string;
Count: number;
}>;
}