aboutsummaryrefslogtreecommitdiff
path: root/engine/traits/core-beliefs.ts
diff options
context:
space:
mode:
Diffstat (limited to 'engine/traits/core-beliefs.ts')
-rw-r--r--engine/traits/core-beliefs.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/engine/traits/core-beliefs.ts b/engine/traits/core-beliefs.ts
new file mode 100644
index 0000000..4e3b85a
--- /dev/null
+++ b/engine/traits/core-beliefs.ts
@@ -0,0 +1,10 @@
+/**
+ * Core beliefs shape how adult events are interpreted (docs/04-traits.md
+ * §"Layer 2"). Each 0–100. Formed in early childhood, harder to shift after.
+ */
+export interface CoreBeliefs {
+ readonly selfWorth: number
+ readonly worldSafety: number
+ readonly othersTrustworthy: number
+ readonly agency: number
+}