aboutsummaryrefslogtreecommitdiff
path: root/engine/traits/attachment.ts
blob: eae77fac8d46b106b1494085c227328a97a95fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
 * Attachment is tracked as a distribution, not a single tag. Fractions sum
 * to 1.0; a character is rarely purely one style. Set by age 3 based on
 * caregiver behaviour, mostly fixed thereafter.
 */
export interface AttachmentDistribution {
  readonly secure: number
  readonly anxious: number
  readonly avoidant: number
  readonly disorganized: number
}