Interface HullDamage

Written when hull health drops below a threshold (20% steps).

interface HullDamage {
    Fighter?: boolean;
    Health: number;
    PlayerPilot?: boolean;
    event: "HullDamage";
    timestamp: string;
}

Hierarchy (view full)

Properties

Fighter?: boolean

True for ship-launched fighter.

Health: number
PlayerPilot?: boolean

True if player is piloting the ship/fighter taking damage.

event: "HullDamage"

The type of event.

timestamp: string

The time in GMT, ISO 8601.