blob: fff49c53e01ac02b60c9ae7db9e1b2f6e07ad1aa (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* Dark Triad profile. Each axis is 0–100. Distribution in the simulation
* skews low — most characters sit in the 20–40 range; a small minority
* above 60 drives specific life shapes.
*/
export interface DarkTriadProfile {
readonly narcissism: number
readonly machiavellianism: number
readonly psychopathy: number
}
|