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

    Interface TechniqueAnimation

    Complete technique animation configuration

    Korean: 기술 애니메이션 설정

    Defines all properties needed to execute a technique animation, including timing, impact frame, Korean terminology, and priority.

    const animation: TechniqueAnimation = {
    animationState: AnimationState.ATTACK,
    duration: 0.8,
    impactFrame: 12,
    recoveryFrames: 15,
    priority: 8,
    koreanName: '건괘 두부 강 타격',
    englishName: 'Heaven Stance Head Strike',
    };

    기술애니메이션

    interface TechniqueAnimation {
        animationState: AnimationState;
        duration: number;
        englishName: string;
        hipEngagement?: number;
        impactFrame: number;
        koreanName: string;
        powerModifier?: number;
        priority: AnimationPriority;
        recoveryFrames: number;
        torsoRotation?: number;
    }
    Index

    Properties

    animationState: AnimationState

    Animation state to play

    duration: number

    Duration in seconds

    englishName: string

    English technique name

    hipEngagement?: number

    Hip rotation engagement factor (0-1)

    Korean: 골반회전 참여도 (Golbanhwoejeon Chamyeodo)

    • 0.0: No hip engagement (isolated technique)
    • 0.3: Minimal hip involvement
    • 0.6: Moderate hip rotation
    • 1.0: Full hip engagement (maximum power)

    Contributes 10-30% damage bonus based on technique type

    골반회전도

    impactFrame: number

    Frame number where hit lands (0-indexed)

    koreanName: string

    Korean technique name

    powerModifier?: number

    Power modifier from hip rotation (calculated)

    Korean: 파워배율 (Pawo Baeyul)

    Multiplier applied to technique damage (1.0-1.3) Calculated from hipEngagement and techniqueType

    파워배율

    Animation priority for interrupt system

    recoveryFrames: number

    Number of recovery frames after impact

    torsoRotation?: number

    Torso rotation angle in radians relative to hips

    Korean: 허리회전 (Heorhwoejeon)

    Range: -π/2 to π/2 (-90° to 90°) Used for independent upper/lower body movement

    허리회전각도