Get physical attributes for a specific archetype.
Korean: 원형 신체 속성 가져오기 (Get Archetype Physical Attributes)
Retrieves the physical attribute profile for the specified player archetype. Returns a readonly copy to prevent accidental mutations.
The player archetype to get attributes for
Physical attributes for the specified archetype
const musaAttrs = getArchetypePhysicalAttributes(PlayerArchetype.MUSA);console.log(`Musa weight: ${musaAttrs.weight}kg`);console.log(`Musa arm reach: ${musaAttrs.armLength}cm`); Copy
const musaAttrs = getArchetypePhysicalAttributes(PlayerArchetype.MUSA);console.log(`Musa weight: ${musaAttrs.weight}kg`);console.log(`Musa arm reach: ${musaAttrs.armLength}cm`);
원형신체가져오기
Get physical attributes for a specific archetype.
Korean: 원형 신체 속성 가져오기 (Get Archetype Physical Attributes)
Retrieves the physical attribute profile for the specified player archetype. Returns a readonly copy to prevent accidental mutations.