Black Trigram (흑괘) - Korean Martial Arts Combat Simulator API - v0.3.13
    Preparing search index...

    Interface VitalPointHitResult

    Result of a vital point hit calculation Unified to resolve property name conflicts

    interface VitalPointHitResult {
        accuracy?: number;
        damage: number;
        effects: readonly StatusEffect[];
        hit: boolean;
        multiplier?: number;
        severity: VitalPointSeverity;
        vitalPoint?: VitalPoint;
        vitalPointHit?: VitalPoint;
    }
    Index

    Properties

    accuracy?: number

    Accuracy of the hit (0-1)

    damage: number

    Base damage from the vital point hit

    effects: readonly StatusEffect[]

    Status effects applied by the vital point hit

    hit: boolean

    Whether the vital point was successfully hit

    multiplier?: number

    Additional multiplier applied to damage

    Severity level of the vital point hit

    vitalPoint?: VitalPoint

    Legacy property name for backwards compatibility

    vitalPointHit?: VitalPoint

    The vital point that was hit (primary property name)