UNPKG

@kayahr/ed-journal

Version:

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

20 lines (19 loc) 605 B
import type { JournalEvent } from "../../JournalEvent.ts"; /** * Written when player was interdicted by player or NPC. */ export interface Interdicted extends JournalEvent<"Interdicted"> { /** Whether player submitted to the interdiction. */ Submitted: boolean; /** Interdicting pilot name. */ Interdictor: string; Interdictor_Localised?: string; /** Whether player or NPC. */ IsPlayer: boolean; /** Combat rank (if player). */ CombatRank?: number; /** Faction (if NPC). */ Faction?: string; /** The power if NPC working for one. */ Power?: string; }