aboutsummaryrefslogtreecommitdiff
path: root/engine/traits/values.ts
blob: 0d67d167e1733ccf2222b572fb11255a6a650ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * Values orientation. Each axis is 0–100 where 0 anchors the left-named
 * pole and 100 the right (e.g., tradition_vs_novelty: 0 = deeply traditional,
 * 100 = novelty-seeking). See docs/04-traits.md §"Layer 2".
 */
export interface ValuesOrientation {
  readonly tradition_vs_novelty: number
  readonly selfDirection_vs_conformity: number
  readonly hedonism_vs_duty: number
  readonly universalism_vs_ingroup: number
  readonly power_vs_egalitarian: number
}