All files / systems/trigram index.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59                                                                                                                     
/**
 * @module systems/trigram
 * @category Trigram System
 */
 
export * from "./KoreanCulture";
export * from "./KoreanTechniques";
export * from "./StanceManager";
export * from "./TransitionCalculator";
export * from "./TrigramCalculator";
export * from "./types";
 
// Export modular techniques selectively to avoid conflicts
export {
  // Configuration (not duplicated elsewhere)
  DAMAGE_TYPE_EFFECTIVENESS,
  // Dark Ops helpers
  DARK_OPS_TECHNIQUE_COUNT,
  // Stance technique arrays
  GAM_TECHNIQUES,
  // Stance-specific helpers
  GAM_TECHNIQUE_COUNT,
  GAN_TECHNIQUES,
  GAN_TECHNIQUE_COUNT,
  GEON_TECHNIQUES,
  GON_TECHNIQUES,
  GON_TECHNIQUE_COUNT,
  JIN_TECHNIQUES,
  KOREAN_TECHNIQUE_CATEGORIES,
  LI_TECHNIQUES,
  SON_TECHNIQUES,
  SON_TECHNIQUE_COUNT,
  TAE_TECHNIQUES,
  TECHNIQUE_DIFFICULTY_LEVELS,
  TECHNIQUE_MODIFIERS,
  TECHNIQUE_NAMING,
  TECHNIQUE_PROPERTIES,
  TRIGRAM_TECHNIQUE_PROPERTIES,
  calculateDamageEffectiveness,
  // Helper functions from techniques module
  getAllTechniques,
  getDarkOpsArchetypeBonus,
  getDarkOpsTechniqueById,
  getDarkOpsTechniquesByUnit,
  getGamTechniqueById,
  getGamTechniquesByType,
  getGanTechniqueById,
  getGanTechniquesByType,
  getGonTechniqueById,
  getGonTechniquesByType,
  getSonTechniqueById,
  getSonTechniquesByType,
  getTechniqueById,
  getTechniqueCountByStance,
  getTotalTechniqueCount,
  getTrigramKey,
  getTrigramProperties,
} from "./techniques/index";