UNPKG

@kayahr/ed-journal

Version:

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

29 lines (28 loc) 846 B
import type { JournalEvent } from "../../JournalEvent.ts"; import type { ID } from "../types/ID.ts"; import type { StationService } from "../types/StationService.ts"; export interface ApproachSettlement extends JournalEvent<"ApproachSettlement"> { MarketID?: ID; Name: string; Name_Localised?: string; Latitude?: number; Longitude?: number; SystemAddress?: ID; BodyID?: ID; BodyName?: string; StationFaction?: { Name: string; FactionState?: string; }; StationGovernment?: string; StationGovernment_Localised?: string; StationAllegiance?: string; StationServices?: StationService[]; StationEconomy?: string; StationEconomy_Localised?: string; StationEconomies?: Array<{ Name: string; Name_Localised?: string; Proportion: number; }>; }