aboutsummaryrefslogtreecommitdiff
path: root/engine/entities/reputation.ts
blob: 07b747bd982cc483080cbdc7ee04507c4ce92a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
/**
 * Reputation at three scopes. Local = neighbourhood / small community.
 * Professional = workplace and industry. Broader = public / civic;
 * usually 0 for most characters and non-zero for notable figures.
 * Each -1 (disrepute) to 1 (esteem).
 */
export interface ReputationProfile {
  readonly local: number
  readonly professional: number
  readonly broader: number
}