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

    Interface CounterOpportunity

    Counter-attack opportunity during opponent's technique execution.

    Korean: 반격 기회

    Represents a window of opportunity to counter-attack when the opponent has exposed a limb during their technique execution.

    const counterOpportunity: CounterOpportunity = {
    exposedLimb: "right_leg",
    windowStart: 450, // ms into opponent's kick
    windowDuration: 300, // 300ms counter window
    vulnerabilityMultiplier: 2.0,
    allowsBreaking: true,
    recommendedCounters: ["ankle_break", "knee_strike", "leg_sweep"]
    };

    반격기회

    interface CounterOpportunity {
        allowsBreaking: boolean;
        exposedLimb: ExposedLimbType;
        recommendedCounters?: readonly string[];
        vulnerabilityMultiplier: number;
        windowDuration: number;
        windowStart: number;
    }
    Index

    Properties

    allowsBreaking: boolean

    Whether limb breaking techniques are effective during this window.

    파쇄기술가능

    exposedLimb: ExposedLimbType

    The exposed limb that can be targeted.

    노출된사지

    recommendedCounters?: readonly string[]

    Recommended counter-technique IDs for this opportunity.

    추천반격기술

    vulnerabilityMultiplier: number

    Vulnerability multiplier for damage during this window.

    취약성배수

    windowDuration: number

    Duration of counter window in milliseconds.

    반격지속시간

    windowStart: number

    Start time of counter window in milliseconds (from technique start).

    반격시작시간