Const
Archetype physical attributes lookup map.
Korean: 원형 신체 속성 맵 (Archetype Physical Attributes Map)
Provides quick access to physical attribute profiles by archetype. Used by combat system to retrieve realistic body dimensions and composition for calculations.
const playerArchetype = PlayerArchetype.MUSA;const physicalAttrs = ARCHETYPE_PHYSICAL_ATTRIBUTES[playerArchetype];const kickRange = calculateKickRange(physicalAttrs.legLength); Copy
const playerArchetype = PlayerArchetype.MUSA;const physicalAttrs = ARCHETYPE_PHYSICAL_ATTRIBUTES[playerArchetype];const kickRange = calculateKickRange(physicalAttrs.legLength);
원형신체맵
Archetype physical attributes lookup map.
Korean: 원형 신체 속성 맵 (Archetype Physical Attributes Map)
Provides quick access to physical attribute profiles by archetype. Used by combat system to retrieve realistic body dimensions and composition for calculations.