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

    Function getAllGuardPoses

    • Get all 16 stance guard poses mapped by StanceWithSide key.

      Korean: 모든 자세 방어 포즈 (16개)

      Returns a map of all possible stance+laterality combinations. This is a cached operation - subsequent calls return the same Map instance.

      Map keys: "stance_laterality" (e.g., "geon_left", "tae_right")

      Returns Map<string, StanceGuardPose>

      Map of all 16 guard pose configurations

      const allPoses = getAllGuardPoses();
      const leftGeon = allPoses.get("geon_left");
      const rightTae = allPoses.get("tae_right");

      console.log(allPoses.size); // 16 (8 stances × 2 laterality)

      모든방어포즈가져오기