aboutsummaryrefslogtreecommitdiff
path: root/engine/entities/reputation.ts
diff options
context:
space:
mode:
Diffstat (limited to 'engine/entities/reputation.ts')
-rw-r--r--engine/entities/reputation.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/engine/entities/reputation.ts b/engine/entities/reputation.ts
new file mode 100644
index 0000000..07b747b
--- /dev/null
+++ b/engine/entities/reputation.ts
@@ -0,0 +1,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
+}