@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
12 lines (11 loc) • 382 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.ts";
/**
* Written when hull health drops below a threshold (20% steps).
*/
export interface HullDamage extends JournalEvent<"HullDamage"> {
Health: number;
/** True if player is piloting the ship/fighter taking damage. */
PlayerPilot?: boolean;
/** True for ship-launched fighter. */
Fighter?: boolean;
}