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

    Interface BodyPartHealthConfig

    Configuration for body part health system.

    Korean: 신체 부위 시스템 설정

    Defines thresholds, multipliers, and constants used by the body part health system for damage calculation and effect application.

    신체부위설정

    interface BodyPartHealthConfig {
        criticalThreshold: number;
        defaultMaxHealth: number;
        effectMultipliers: {
            critical: number;
            major: number;
            minor: number;
            severe: number;
        };
        majorPenaltyThreshold: number;
        minorPenaltyThreshold: number;
        severePenaltyThreshold: number;
    }
    Index

    Properties

    criticalThreshold: number

    Health threshold for critical status (percentage)

    defaultMaxHealth: number

    Default max health for all body parts

    effectMultipliers: {
        critical: number;
        major: number;
        minor: number;
        severe: number;
    }

    Effect multipliers for each threshold tier

    majorPenaltyThreshold: number

    Health threshold for major penalties (percentage)

    minorPenaltyThreshold: number

    Health threshold for minor penalties (percentage)

    severePenaltyThreshold: number

    Health threshold for severe penalties (percentage)