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

    Interface InjuryLocation

    Individual injury location data.

    Korean: 부상 위치 데이터

    Records a single injury with its location, severity, and cumulative hit count. Used for progressive bruising visualization.

    부상위치

    interface InjuryLocation {
        bodyPart: BodyPart;
        bodyRegion: BodyRegion;
        hitCount: number;
        id: string;
        position: Vector3;
        severity: number;
        timestamp: number;
        type: InjuryType;
    }
    Index

    Properties

    bodyPart: BodyPart

    Body part affected

    bodyRegion: BodyRegion

    Body region for hit detection

    hitCount: number

    Number of hits to this location (for progressive bruising)

    id: string

    Unique identifier

    position: Vector3

    3D position relative to character center

    severity: number

    Damage severity (0-100)

    timestamp: number

    Timestamp when injury occurred

    Injury type