@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
13 lines (12 loc) • 389 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.ts";
/**
* Written when the player has been rewarded for a capital ship combat.
*/
export interface CapShipBond extends JournalEvent<"CapShipBond"> {
/** Value of award. */
Reward: number;
AwardingFaction: string;
AwardingFaction_Localised?: string;
VictimFaction: string;
VictimFaction_Localised?: string;
}