docs(wiki): rename Hael to Naia Tamm, apply canonical full names, standardize shortcodes
Wave 0 wiki maintenance for Sprint 3: - #372: Rename Hael → Naia Tamm across 16 living wiki files (phonetic collision fix) - #371: Apply canonical full names to 11 single-name NPC headers and roster table - #375: Replace hub_m_ → terminal_m_ shortcodes, add shortcode reference table, situation overlap rules, and mood exclusivity rules to monologue guide Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -11,6 +11,60 @@ How to write tagged monologue and dialogue content for The Settled Reach. Read t
|
||||
|
||||
---
|
||||
|
||||
## Location Shortcodes
|
||||
|
||||
Canonical shortcodes for v0.1 Sova Transit District. Used in line IDs (`{shortcode}_{type}_{###}`) and file naming.
|
||||
|
||||
| Shortcode | Location | Full Name | D-036 Reference |
|
||||
|-----------|----------|-----------|-----------------|
|
||||
| `terminal` | Logistics Hub | The Terminal | Primary workplace social site |
|
||||
| `bar` | The Last Shift | Lera's (informal) | Social venue |
|
||||
| `corridor` | Maintenance corridors | Corridor B-7 (primary) | Smuggling/service spaces |
|
||||
|
||||
**File naming convention:** `{shortcode}-{character}.yaml` (e.g., `terminal-smuggler.yaml`, `bar-detective.yaml`)
|
||||
|
||||
**Line ID format:** `{shortcode}_{d|m|e}_{###}` where `d`=dialogue, `m`=monologue, `e`=environmental
|
||||
|
||||
---
|
||||
|
||||
## Situation Overlap Rules
|
||||
|
||||
A line can have multiple situations in its `situation` list. These rules define valid combinations.
|
||||
|
||||
**Mutually exclusive** (never co-occur):
|
||||
- `arrival` and `shift_end` — you can't be both arriving and leaving
|
||||
- `alone` and `social` — by definition
|
||||
- `emergency` and `routine` — emergency overrides routine
|
||||
- `confrontation` and `social` — confrontation replaces social context
|
||||
|
||||
**Common valid overlaps:**
|
||||
- `shift_start` + `routine` — beginning-of-shift routine observations
|
||||
- `bar_evening` + `social` — social interaction at the bar
|
||||
- `observation` + any non-exclusive situation — observation layers on top of context
|
||||
- `investigation` + `observation` — investigating by watching
|
||||
|
||||
**Default if empty:** `routine` (engine assumes routine context)
|
||||
|
||||
---
|
||||
|
||||
## Mood Exclusivity Rules
|
||||
|
||||
A line can have multiple moods, but some combinations are contradictory.
|
||||
|
||||
**Mutually exclusive** (never co-occur):
|
||||
- `fond` and `suspicious` — these are opposing orientations toward someone
|
||||
- `comfortable` and `worried` — opposing emotional states
|
||||
- `relieved` and `concerned` — resolved vs. unresolved tension
|
||||
|
||||
**Common valid overlaps:**
|
||||
- `analytical` + any mood — analytical is a cognitive mode that coexists with emotion
|
||||
- `conflicted` + `fond` or `concerned` — conflicted implies mixed feelings
|
||||
- `worried` + `suspicious` — worry about someone's behavior shading into suspicion
|
||||
|
||||
**Default if empty:** `comfortable` (engine assumes neutral emotional baseline)
|
||||
|
||||
---
|
||||
|
||||
## Core Principle
|
||||
|
||||
Internal monologue is **hard-partitioned by playable character** (D-032). The smuggler and detective have completely separate monologue pools. No shared lines. Same trigger, different pool. This is how mirror moments work without either pool knowing about the other.
|
||||
@@ -81,7 +135,7 @@ The `trigger` tag determines WHEN a monologue line fires. Each type maps to a ga
|
||||
Fires when the player enters a named area.
|
||||
|
||||
```yaml
|
||||
- id: hub_m_010
|
||||
- id: terminal_m_010
|
||||
text: "Morning shift. Recycled air and cargo lubricant. Home sweet home."
|
||||
character: smuggler
|
||||
trigger: enter_location
|
||||
@@ -91,7 +145,7 @@ Fires when the player enters a named area.
|
||||
```
|
||||
|
||||
```yaml
|
||||
- id: hub_m_011
|
||||
- id: terminal_m_011
|
||||
text: "Logistics hub. Standard prefab, heavy foot traffic. Let's see what the shift change tells me."
|
||||
character: detective
|
||||
trigger: enter_location
|
||||
@@ -111,7 +165,7 @@ Use for first impressions, atmosphere, returning-to-familiar-ground observations
|
||||
Fires when a known entity enters the player's line of sight.
|
||||
|
||||
```yaml
|
||||
- id: hub_m_020
|
||||
- id: terminal_m_020
|
||||
text: "Kael's here. Good — I was starting to worry."
|
||||
character: smuggler
|
||||
trigger: observe_npc
|
||||
@@ -122,7 +176,7 @@ Fires when a known entity enters the player's line of sight.
|
||||
```
|
||||
|
||||
```yaml
|
||||
- id: hub_m_021
|
||||
- id: terminal_m_021
|
||||
text: "Dock worker from the case file. Davan, K. Unremarkable on paper."
|
||||
character: detective
|
||||
trigger: observe_npc
|
||||
@@ -169,7 +223,7 @@ Audio triggers fire less frequently than visual ones. Make them count.
|
||||
Fires when the player observes something that contradicts expected state — a container in the wrong place, an NPC where they shouldn't be, a door that should be locked.
|
||||
|
||||
```yaml
|
||||
- id: hub_m_040
|
||||
- id: terminal_m_040
|
||||
text: "Kael's checking his lattice again. Third time in ten minutes. That's not normal."
|
||||
character: smuggler
|
||||
trigger: observe_anomaly
|
||||
@@ -180,7 +234,7 @@ Fires when the player observes something that contradicts expected state — a c
|
||||
```
|
||||
|
||||
```yaml
|
||||
- id: hub_m_041
|
||||
- id: terminal_m_041
|
||||
text: "Dock worker Davan — lattice activity spiked. Expecting a message? Or checking for surveillance?"
|
||||
character: detective
|
||||
trigger: observe_anomaly
|
||||
@@ -231,7 +285,7 @@ This is where character voice shines — the detective analyzes, the smuggler wo
|
||||
Fires when the player finds physical evidence — a document, object, or data point.
|
||||
|
||||
```yaml
|
||||
- id: hub_m_060
|
||||
- id: terminal_m_060
|
||||
text: "Container 4471. Manifest says 240 kilos. That crate is closer to 310."
|
||||
character: detective
|
||||
trigger: discover_evidence
|
||||
@@ -242,7 +296,7 @@ Fires when the player finds physical evidence — a document, object, or data po
|
||||
```
|
||||
|
||||
```yaml
|
||||
- id: hub_m_061
|
||||
- id: terminal_m_061
|
||||
text: "4471's still in temp. Kael routed it there during transition. Standard. Nothing to worry about."
|
||||
character: smuggler
|
||||
trigger: discover_evidence
|
||||
@@ -506,7 +560,7 @@ How each character relates to key NPCs:
|
||||
| Sera (THE FRIEND) | `public` (Commission, wary) | `peer` → `authority` (post-contradiction) |
|
||||
| Voss | `insider` (colleague) | `authority` |
|
||||
| Lera | `insider` (bar regular) | `public` → `peer` (repeat visits) |
|
||||
| Hael | `peer` (through Kael) | `public` → `peer` (through Sera) |
|
||||
| Naia | `peer` (through Kael) | `public` → `peer` (through Sera) |
|
||||
| Torek | `insider` or `peer` | `public` |
|
||||
| Maret | `insider` (hub colleague) | `authority` |
|
||||
| Drin | `insider` (hub colleague) | `authority` |
|
||||
@@ -526,7 +580,7 @@ A tell observation monologue line should:
|
||||
3. **Map to an attribute** — note in `notes` which `known_attributes` key updates
|
||||
|
||||
```yaml
|
||||
- id: hub_m_100
|
||||
- id: terminal_m_100
|
||||
text: "Kael keeps checking his lattice. Waiting for something."
|
||||
character: smuggler
|
||||
trigger: observe_anomaly
|
||||
@@ -539,7 +593,7 @@ A tell observation monologue line should:
|
||||
```
|
||||
|
||||
```yaml
|
||||
- id: hub_m_101
|
||||
- id: terminal_m_101
|
||||
text: "Dock worker Davan — lattice activity spiked. Three pings in two minutes. Expecting a message? Or checking for surveillance?"
|
||||
character: detective
|
||||
trigger: observe_anomaly
|
||||
|
||||
@@ -108,7 +108,7 @@ The ring has been operating long enough that cracks are forming:
|
||||
|
||||
### Perception Differences
|
||||
|
||||
**Smuggler sees:** Family. Colleagues. The people who make the arrangement work. Each member has a name, a history, a reason for being involved. Voss has a daughter who needed lattice surgery. Kael's doing it for Hael. Renn needs the money. The ring isn't a criminal organization — it's mutual aid that happens to be illegal.
|
||||
**Smuggler sees:** Family. Colleagues. The people who make the arrangement work. Each member has a name, a history, a reason for being involved. Voss has a daughter who needed lattice surgery. Kael's doing it for Naia. Renn needs the money. The ring isn't a criminal organization — it's mutual aid that happens to be illegal.
|
||||
|
||||
**Detective sees:** A network. Nodes and connections. Behavioral patterns that suggest coordination. Manifest discrepancies that suggest doctoring. Financial anomalies that suggest supplemental income. The ring is a case — a puzzle to be solved, a structure to be mapped, evidence to be assembled.
|
||||
|
||||
|
||||
+1
-1
@@ -54,7 +54,7 @@ This wiki serves three audiences:
|
||||
- [Maret Korr](npcs/maret-korr.md) — Freight scheduler
|
||||
- [Resha](npcs/resha.md) — New hire
|
||||
- [Harek](npcs/harek.md) — Off-duty security
|
||||
- [Hael](npcs/hael.md) — Kael's partner (referenced)
|
||||
- [Naia Tamm](npcs/naia-tamm.md) — Kael's partner (referenced)
|
||||
- [Renn](npcs/renn.md) — Courier (ring + hub bridge)
|
||||
- [Pell](npcs/pell.md) — Wavering ring member
|
||||
- **Tier 3 (Flat NPCs):**
|
||||
|
||||
@@ -218,14 +218,14 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to
|
||||
|
||||
---
|
||||
|
||||
### `relationship.kael_hael_connection`
|
||||
### `relationship.kael_naia_connection`
|
||||
|
||||
**Suspects**: "Kael mentions a partner. Someone named Hael."
|
||||
**KnowsOf**: "Kael's partner is Hael, a teacher. They're worried about Kael's late nights."
|
||||
**KnowsDetails**: "Hael confides in Sera Venn. Sera knows something is wrong but hasn't reported it. The worry is contaminating Kael's operational security."
|
||||
**Suspects**: "Kael mentions a partner. Someone named Naia."
|
||||
**KnowsOf**: "Kael's partner is Naia, a teacher. They're worried about Kael's late nights."
|
||||
**KnowsDetails**: "Naia confides in Sera Venn. Sera knows something is wrong but hasn't reported it. The worry is contaminating Kael's operational security."
|
||||
**Direct**: N/A (relationship knowledge)
|
||||
|
||||
**Mechanical Purpose**: Emotional leverage. Detective can use Hael as pressure point. Smuggler (if Kael's friend) must protect Hael from knowledge.
|
||||
**Mechanical Purpose**: Emotional leverage. Detective can use Naia as pressure point. Smuggler (if Kael's friend) must protect Naia from knowledge.
|
||||
|
||||
---
|
||||
|
||||
@@ -233,7 +233,7 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to
|
||||
|
||||
**Suspects**: "People here know each other. Tight social bonds."
|
||||
**KnowsOf**: "The ring depends on trust networks: Kael trusts Nils (sibling), Lera trusts the regulars, Drin is compromised by debt to Harek."
|
||||
**KnowsDetails**: "Trust map: Kael <-> Nils (blood), Kael <-> Hael (partnership), Hael <-> Sera (friendship), Sera <-> Detective (professional/personal), Drin -> Harek (debt), Voss -> Devra/Nils (financial)."
|
||||
**KnowsDetails**: "Trust map: Kael <-> Nils (blood), Kael <-> Naia (partnership), Naia <-> Sera (friendship), Sera <-> Detective (professional/personal), Drin -> Harek (debt), Voss -> Devra/Nils (financial)."
|
||||
**Direct**: N/A (social network knowledge)
|
||||
|
||||
**Mechanical Purpose**: Social manipulation mechanics. Detective at KnowsDetails can exploit trust fractures. Smuggler at KnowsDetails knows whom to protect.
|
||||
@@ -244,7 +244,7 @@ Canonical FactIds for the v0.1 vertical slice. All facts follow the `category.to
|
||||
|
||||
**Suspects**: "Some people here are Commission-aligned. Others resent the Commission."
|
||||
**KnowsOf**: "Sera is Commission. Torek Lintar is nominally Commission but lives here. The detective represents institutional authority. Everyone else is civilian."
|
||||
**KnowsDetails**: "Faction tensions: Commission (Sera, Torek, Detective) vs. ring (Kael, Nils, Kosse, Voss, Lera) vs. civilians (Hael, Maret, Drin, Resha). Drin is compromised between civilian and Commission."
|
||||
**KnowsDetails**: "Faction tensions: Commission (Sera, Torek, Detective) vs. ring (Kael, Nils, Kosse, Voss, Lera) vs. civilians (Naia, Maret, Drin, Resha). Drin is compromised between civilian and Commission."
|
||||
**Direct**: N/A (political knowledge)
|
||||
|
||||
**Mechanical Purpose**: Access tier logic. Explains why NPCs treat characters differently. Detective at KnowsDetails understands institutional barriers.
|
||||
|
||||
@@ -155,7 +155,7 @@ Friendly → PersonOfInterest → [resolution: Friendly-but-contaminated OR Host
|
||||
- Dialogue options change: confrontation unlocks, trust-tier content locks (Kael is evasive).
|
||||
|
||||
**Phase 4: Post-Confrontation**
|
||||
- **Path A (understanding)**: Smuggler confronts Kael gently. Kael confesses: trying to exit the ring to protect Hael. `RelationshipState` remains `PersonOfInterest` but monologue tone shifts to conflicted sympathy. Color stays amber (still a problem), but dialogue reflects empathy.
|
||||
- **Path A (understanding)**: Smuggler confronts Kael gently. Kael confesses: trying to exit the ring to protect Naia. `RelationshipState` remains `PersonOfInterest` but monologue tone shifts to conflicted sympathy. Color stays amber (still a problem), but dialogue reflects empathy.
|
||||
- **Path B (betrayal)**: Smuggler reports Kael to Nils or pressures Kael harshly. Kael turns defensive. `RelationshipState` → `Hostile`. Color → red. Kael avoids the smuggler, might actively obstruct.
|
||||
|
||||
**THE FRIEND pattern**: Friendly → PersonOfInterest is the emotional core. The player trusted Kael. Now Kael is amber. That color shift IS the narrative moment.
|
||||
@@ -189,7 +189,7 @@ Friendly → PersonOfInterest → [resolution: Friendly-but-contaminated OR Know
|
||||
- Dialogue options change: pressing questions unlock, casual warmth diminishes.
|
||||
|
||||
**Phase 4: Post-Confrontation**
|
||||
- **Path A (loyalty test)**: Detective confronts Sera about concealment. Sera confesses: sitting on evidence to protect Hael (friend of Sera, partner of Kael). Detective can choose: report Sera (Hostile), use the information without reporting her (PersonOfInterest → Known, relationship damaged), or protect Sera and accept the information gap (PersonOfInterest → Friendly-but-contaminated).
|
||||
- **Path A (loyalty test)**: Detective confronts Sera about concealment. Sera confesses: sitting on evidence to protect Naia (friend of Sera, partner of Kael). Detective can choose: report Sera (Hostile), use the information without reporting her (PersonOfInterest → Known, relationship damaged), or protect Sera and accept the information gap (PersonOfInterest → Friendly-but-contaminated).
|
||||
- **Path B (institutional)**: Detective reports Sera immediately. `RelationshipState` → `Hostile`. Sera is reprimanded or reassigned. Color → red. The detective loses their only local ally.
|
||||
|
||||
**THE FRIEND pattern**: The detective's trust in Sera is tested. Amber means "my friend is hiding something." The resolution determines whether the friendship survives.
|
||||
@@ -204,14 +204,14 @@ Both THE FRIEND NPCs follow the same structural arc, but the **nature of the con
|
||||
|-----------|--------------------------|---------------------------|
|
||||
| **Contradiction type** | Spatial deviation (meeting unknown contact) | Behavioral avoidance (leaving when Torek arrives) |
|
||||
| **Discovery method** | Direct observation in restricted area | Pattern recognition over multiple visits |
|
||||
| **What they're hiding** | Attempt to exit the ring (protect Hael) | Unreported evidence (protect Hael) |
|
||||
| **Sympathetic motivation** | Family protection (Hael is Kael's partner) | Friendship loyalty (Hael is Sera's friend) |
|
||||
| **Hael as connection** | Kael's personal life | Sera's social network |
|
||||
| **What they're hiding** | Attempt to exit the ring (protect Naia) | Unreported evidence (protect Naia) |
|
||||
| **Sympathetic motivation** | Family protection (Naia is Kael's partner) | Friendship loyalty (Naia is Sera's friend) |
|
||||
| **Naia as connection** | Kael's personal life | Sera's social network |
|
||||
| **Color shift timing** | Single observation event (immediate) | Third occurrence (cumulative) |
|
||||
| **Confrontation stakes** | Ring security vs. personal loyalty | Institutional duty vs. personal loyalty |
|
||||
| **Resolution spectrum** | Understanding ↔ Betrayal | Protect friend ↔ Report corruption |
|
||||
|
||||
**Common structure**: Both contradictions involve **Hael** as the emotional anchor. Hael is worried about Kael. Sera knows why (unreported evidence). Kael is trying to protect Hael (exit attempt). The smuggler and detective approach the same NPC web from opposite sides. THE FRIEND, in both cases, is the person caught in the middle trying to protect someone they care about.
|
||||
**Common structure**: Both contradictions involve **Naia** as the emotional anchor. Naia is worried about Kael. Sera knows why (unreported evidence). Kael is trying to protect Naia (exit attempt). The smuggler and detective approach the same NPC web from opposite sides. THE FRIEND, in both cases, is the person caught in the middle trying to protect someone they care about.
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -84,7 +84,7 @@ The bar is the district's social heart. Information flows through here faster th
|
||||
|-----|------|---------------|----------|
|
||||
| [Lera Sessik](../../npcs/lera-sessik.md) | Bar Owner | 13:30-02:00 (daily) | Social hub, observes everything, willful ignorance |
|
||||
| [Sera Venn](../../npcs/sera-venn.md) | Commission Field Tech (THE FRIEND) | Evenings, irregular | Detective's social anchor, bar regular |
|
||||
| [Hael](../../npcs/hael.md) | Teacher (Kael's partner) | Evenings, 2-3x/week | Worried, confides in Sera |
|
||||
| [Naia Tamm](../../npcs/naia-tamm.md) | Teacher (Kael's partner) | Evenings, 2-3x/week | Worried, confides in Sera |
|
||||
| [Sess](../../npcs/sess.md) | Bartender | 14:00-02:00 (shifts with Lera) | Flat, observant, discreet |
|
||||
| [Olin](../../npcs/olin.md) | Drifter / New Arrival | Irregular, evenings | Ambiguous intent, asks questions |
|
||||
|
||||
@@ -96,7 +96,7 @@ The bar is the district's social heart. Information flows through here faster th
|
||||
| [Harek](../../npcs/harek.md) | The Last Shift / [The Terminal](the-terminal.md) | Off-duty security, card games | Sees things in both contexts, holds debt leverage on Drin |
|
||||
| [Maret Korr](../../npcs/maret-korr.md) | [The Terminal](the-terminal.md) | Occasional visitor | Worried, processes what she's seen at work |
|
||||
| [Devra](../../npcs/devra.md) | Smuggling Ring | Corner booth meetings | Legitimate front conceals ring coordination |
|
||||
| [Kael Davan](../../npcs/kael-davan.md) | [The Terminal](the-terminal.md) | After-shift regular | Ring member unwinding, partner Hael sometimes present |
|
||||
| [Kael Davan](../../npcs/kael-davan.md) | [The Terminal](the-terminal.md) | After-shift regular | Ring member unwinding, partner Naia sometimes present |
|
||||
|
||||
**Total NPC presence:** Up to 10 at peak (5 regulars + 5 bridge), minimum 2-3 (Lera, Sess, and a straggler)
|
||||
|
||||
@@ -117,7 +117,7 @@ The bar is the district's social heart. Information flows through here faster th
|
||||
|
||||
**Evening Peak (18:00-22:00)**
|
||||
- Swing shift workers arrive. The bar fills. Both shifts overlap. This is the social peak — maximum information exchange, maximum observation opportunity.
|
||||
- Card games run in the corner. Devra might appear for a "friendly drink" that involves a quiet conversation in the booth. Sera Venn drops in for an evening drink and might end up talking to Hael, who's worried about Kael's late nights.
|
||||
- Card games run in the corner. Devra might appear for a "friendly drink" that involves a quiet conversation in the booth. Sera Venn drops in for an evening drink and might end up talking to Naia, who's worried about Kael's late nights.
|
||||
- Mood: lively, loud enough for private conversations to go unheard. The smuggler's comfort zone. The detective's observation window.
|
||||
|
||||
**Late Night (22:00-02:00)**
|
||||
@@ -163,7 +163,7 @@ The bar is the district's social heart. Information flows through here faster th
|
||||
- Smuggler: Concern (exposure risk — Torek's spending is visible)
|
||||
- Detective: Financial anomaly flag (income doesn't match lifestyle)
|
||||
|
||||
**On overhearing Hael confide in Sera:**
|
||||
**On overhearing Naia confide in Sera:**
|
||||
- Smuggler: Guilt (knows why Kael is absent, can't say)
|
||||
- Detective: Potential lead (partner's worry suggests concealment behavior)
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Devra
|
||||
# Devra Talsen
|
||||
|
||||
**Tier 2 NPC** | Smuggling Ring + The Last Shift (Bar) | Entangled
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
## Core Identity
|
||||
|
||||
**Name**: Devra
|
||||
**Name**: Devra Talsen
|
||||
**Age**: 38
|
||||
**Role**: Ring coordinator (manages external contacts, logistics planning); publicly, a freelance supply broker with a regular seat at The Last Shift
|
||||
**System Origin**: Krenn System, born off-station (Orbital Manufacturing Platform 3), relocated to Sova 5 years ago
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Drin
|
||||
# Drin Rosta
|
||||
|
||||
**Tier 3 NPC** | Logistics Hub (The Terminal) | Flat
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Harek
|
||||
# Harek Valde
|
||||
|
||||
**Tier 2 NPC** | The Last Shift (Bar) + Logistics Hub | Mundane
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
## Core Identity
|
||||
|
||||
**Name**: Harek
|
||||
**Name**: Harek Valde
|
||||
**Age**: 44
|
||||
**Role**: Station Security officer (off-duty at bar, on-duty at hub perimeter)
|
||||
**System Origin**: Krenn System, Station Sova
|
||||
|
||||
+26
-24
@@ -1,6 +1,6 @@
|
||||
# NPC Roster — Sova Transit District
|
||||
|
||||
17 NPCs across 3 social sites (Logistics Hub, The Last Shift, Smuggling Ring). Tier 1 = full production depth (THE FRIEND), Tier 2 = working profile, Tier 3 = sketch.
|
||||
18 NPCs across 3 social sites (Logistics Hub, The Last Shift, Smuggling Ring). Tier 1 = full production depth (THE FRIEND), Tier 2 = working profile, Tier 3 = sketch, Off-Stage = present through mediated references only.
|
||||
|
||||
## Roster Table
|
||||
|
||||
@@ -8,28 +8,30 @@
|
||||
|---|------|------|-------------|------|--------------|-----------|
|
||||
| 1 | **Kael Davan** | Dock Worker | Hub + Ring | **Tier 1 (FRIEND)** | Entangled | Hub Power, Worried Partner |
|
||||
| 2 | **Sera Venn** | Commission Field Tech | Bar | **Tier 1 (FRIEND)** | Mundane | Worried Partner |
|
||||
| 3 | Voss | Shift Supervisor | Hub | Tier 2 | Mundane | Hub Power, Worried Knowledge |
|
||||
| 3 | Arvo Voss | Shift Supervisor | Hub | Tier 2 | Mundane | Hub Power, Worried Knowledge |
|
||||
| 4 | Lera Sessik | Bar Owner | Bar | Tier 2 | Mundane | Bar Tensions |
|
||||
| 5 | Torek Lintar | Dock Worker / Bar Regular | Bar + Hub | Tier 2 | Mundane | Bar Tensions |
|
||||
| 6 | Devra | Ring Coordinator | Ring + Bar | Tier 2 | Entangled | (Referenced, not triangle member in v0.1) |
|
||||
| 6 | Devra Talsen | Ring Coordinator | Ring + Bar | Tier 2 | Entangled | (Referenced, not triangle member in v0.1) |
|
||||
| 7 | Maret Korr | Freight Scheduler | Hub | Tier 2 | Mundane | Worried Knowledge |
|
||||
| 8 | Resha | New Hire Dock Worker | Hub | Tier 2 | Mundane | (Background tension, not formal triangle) |
|
||||
| 9 | Hael | Teacher (Kael's Partner) | Bar | Tier 2 | Mundane | Worried Partner |
|
||||
| 10 | Drin | Maintenance Tech | Hub | Tier 3 | Flat | Worried Knowledge, Informant Question |
|
||||
| 11 | Sess | Bartender | Bar | Tier 3 | Flat | None |
|
||||
| 12 | Olin | Drifter / New Arrival | Bar | Tier 3 | Flat | Bar Tensions |
|
||||
| 13 | Renn | Courier | Ring + Hub | Tier 2 | Entangled | Informant Question |
|
||||
| 14 | Pell | Wavering Ring Member | Ring | Tier 2 | Entangled | Informant Question |
|
||||
| 15 | Harek | Off-Duty Security | Bar + Hub | Tier 2 | Mundane | None (external pressure on Triangle 2) |
|
||||
| 16 | Sabel | Off-Station Fence | Ring (off-station) | Tier 3 | Flat | None (off-station) |
|
||||
| 17 | Tav | Lookout | Ring + Hub | Tier 3 | Flat | None |
|
||||
| 8 | Resha Neven | New Hire Dock Worker | Hub | Tier 2 | Mundane | (Background tension, not formal triangle) |
|
||||
| 9 | Naia Tamm | Teacher (Kael's Partner) | Bar | Tier 2 | Mundane | Worried Partner |
|
||||
| 10 | Drin Rosta | Maintenance Tech | Hub | Tier 3 | Flat | Worried Knowledge, Informant Question |
|
||||
| 11 | Sess Kolvur | Bartender | Bar | Tier 3 | Flat | None |
|
||||
| 12 | Olin Tavren | Drifter / New Arrival | Bar | Tier 3 | Flat | Bar Tensions |
|
||||
| 13 | Renn Harsk | Courier | Ring + Hub | Tier 2 | Entangled | Informant Question |
|
||||
| 14 | Pell Torssen | Wavering Ring Member | Ring | Tier 2 | Entangled | Informant Question |
|
||||
| 15 | Harek Valde | Off-Duty Security | Bar + Hub | Tier 2 | Mundane | None (external pressure on Triangle 2) |
|
||||
| 16 | Sabel Hersk | Off-Station Fence | Ring (off-station) | Tier 3 | Flat | None (off-station) |
|
||||
| 17 | Tav Merik | Lookout | Ring + Hub | Tier 3 | Flat | None |
|
||||
| 18 | Nils Davan | Ring Coordinator (Off-Stage) | Ring (off-station) | Off-Stage | Entangled | Hub Power |
|
||||
|
||||
**Entanglement breakdown**:
|
||||
- **Tier 1 (THE FRIEND)**: 2 NPCs (Kael, Sera) — 1 entangled, 1 mundane
|
||||
- **Tier 2**: 10 NPCs — 3 entangled (Devra, Renn, Pell), 7 mundane
|
||||
- **Tier 3**: 5 NPCs (Drin, Sess, Olin, Sabel, Tav) — all flat
|
||||
- **Off-Stage**: 1 NPC (Nils) — entangled
|
||||
|
||||
**Total**: 4 entangled (24%), 8 mundane (47%), 5 flat (29%). Closer to D-029 entanglement target (20%) with Tier 3 additions.
|
||||
**Total**: 5 entangled (28%), 8 mundane (44%), 5 flat (28%). Off-stage NPC (Nils) adds entanglement without on-screen presence.
|
||||
|
||||
---
|
||||
|
||||
@@ -107,26 +109,26 @@
|
||||
|
||||
---
|
||||
|
||||
### Triangle 4: The Worried Partner (Hael - Kael - Sera)
|
||||
### Triangle 4: The Worried Partner (Naia - Kael - Sera)
|
||||
|
||||
```
|
||||
Hael (Teacher, Kael's Partner)
|
||||
Naia (Teacher, Kael's Partner)
|
||||
/ \
|
||||
worried about confides in friend
|
||||
Kael's late nights, |
|
||||
evasive answers |
|
||||
| |
|
||||
Kael (Dock Worker) <--friendship--> Sera (Commission Field Tech)
|
||||
oblivious to anxiety hears Hael's worries,
|
||||
oblivious to anxiety hears Naia's worries,
|
||||
he's causing at home connects to investigation?,
|
||||
loyalty vs. duty
|
||||
```
|
||||
|
||||
**Tension**: Hael's loyalty to Kael vs. growing suspicion. Sera's friendship with Hael vs. institutional duty (Sera is Commission, sitting on unreported evidence). Kael is oblivious to the anxiety he's causing. If Hael asks the smuggler (if smuggler is Kael's friend) about Kael's behavior, there's no good answer. If the detective asks Sera about Hael, Sera faces a loyalty test.
|
||||
**Tension**: Naia's loyalty to Kael vs. growing suspicion. Sera's friendship with Naia vs. institutional duty (Sera is Commission, sitting on unreported evidence). Kael is oblivious to the anxiety he's causing. If Naia asks the smuggler (if smuggler is Kael's friend) about Kael's behavior, there's no good answer. If the detective asks Sera about Naia, Sera faces a loyalty test.
|
||||
|
||||
**Player relevance**:
|
||||
- **Smuggler**: Most emotionally loaded triangle. Kael is THE FRIEND. Hael is Kael's partner. The smuggler knows why Kael is busy and can't say. Protecting Kael means lying to Hael.
|
||||
- **Detective**: Sera is THE FRIEND. Hael is a potential source (partner who suspects something). If the detective asks Sera about Hael, Sera must choose: friend or duty.
|
||||
- **Smuggler**: Most emotionally loaded triangle. Kael is THE FRIEND. Naia is Kael's partner. The smuggler knows why Kael is busy and can't say. Protecting Kael means lying to Naia.
|
||||
- **Detective**: Sera is THE FRIEND. Naia is a potential source (partner who suspects something). If the detective asks Sera about Naia, Sera must choose: friend or duty.
|
||||
|
||||
**THE FRIEND integration**: Both FRIEND NPCs (Kael, Sera) are nodes in this triangle. The triangle *is* the contradiction structure.
|
||||
|
||||
@@ -183,7 +185,7 @@ information if Pell turns loyal to ring
|
||||
|
||||
- Lera Sessik (Bar Owner) — knows everyone, willful ignorance
|
||||
- Sera Venn (Commission Field Tech, THE FRIEND) — detective's anchor
|
||||
- Hael (Teacher) — Kael's partner, worried
|
||||
- Naia (Teacher) — Kael's partner, worried
|
||||
- Torek Lintar (Regular) — spending beyond means
|
||||
- Harek (Off-duty Security) — card games, debt holder
|
||||
- Sess (Bartender) — flat, observant, discreet
|
||||
@@ -196,14 +198,14 @@ information if Pell turns loyal to ring
|
||||
### Smuggling Ring (The Arrangement)
|
||||
|
||||
- Devra (Ring Coordinator) — legitimate business front at bar, criminal operations
|
||||
- Nils Davan (Kael's older sibling, off-stage in v0.1) — gives orders, referenced not instantiated
|
||||
- [Nils Davan](nils-davan.md) (Kael's older sibling, off-stage in v0.1) — gives orders via lattice messages and intermediaries, never physically present
|
||||
- Kael Davan (bridge to hub) — handles cargo
|
||||
- Renn (Courier, bridge to hub) — moves product
|
||||
- Pell (Wavering Member) — considering cooperation, cracking under tolerance threshold
|
||||
- Sabel (Off-station fence) — external supplier, mostly off-stage, 1-2 brief visits in v0.1
|
||||
- Tav (Lookout) — watches entry points during corridor operations
|
||||
|
||||
**Total**: 7 NPCs (2 primary ring-only, 3 bridge, 2 peripheral)
|
||||
**Total**: 7 NPCs (1 primary ring-only, 1 off-stage, 3 bridge, 2 peripheral)
|
||||
|
||||
---
|
||||
|
||||
@@ -240,7 +242,7 @@ information if Pell turns loyal to ring
|
||||
|
||||
---
|
||||
|
||||
### Tier 2 (Working Profile — Voss, Lera, Torek, Devra, Maret, Resha, Hael, Renn, Pell, Harek)
|
||||
### Tier 2 (Working Profile — Voss, Lera, Torek, Devra, Maret, Resha, Naia Tamm, Renn, Pell, Harek)
|
||||
|
||||
**Per NPC**:
|
||||
- 10-axis data (all axes populated)
|
||||
|
||||
@@ -24,9 +24,9 @@
|
||||
|
||||
Kael didn't join the ring for ideology or ambition. He joined because Nils (his older sibling) asked, because the money helped, and because it felt manageable. Two years in, Kael is good at it — efficient, careful, reliable. But the operation is escalating (higher volume, tighter margins, more risk), and Kael's Want is shifting from "keep things running" to "keep people safe."
|
||||
|
||||
**Secondary**: Protect Hael (partner) from the truth and the consequences.
|
||||
**Secondary**: Protect Naia (partner) from the truth and the consequences.
|
||||
|
||||
Hael doesn't know about the smuggling. Kael's late nights and evasive answers are creating anxiety at home. Kael Wants to shield Hael from danger, but the shielding itself is the danger.
|
||||
Naia doesn't know about the smuggling. Kael's late nights and evasive answers are creating anxiety at home. Kael Wants to shield Naia from danger, but the shielding itself is the danger.
|
||||
|
||||
---
|
||||
|
||||
@@ -34,7 +34,7 @@ Hael doesn't know about the smuggling. Kael's late nights and evasive answers ar
|
||||
|
||||
**Surface secret** (smuggler knows, detective suspects): Ring member. Handles physical cargo — routing flagged containers, managing dock-side handoffs.
|
||||
|
||||
**Deep secret** (nobody knows except the unknown contact): Kael is trying to **exit the ring**. Hael's worry has become unbearable. Kael contacted someone from a different district (not Sabel, not anyone the ring knows) who's offered to help Kael get out — for a price. The unknown contact is leverage (they know Kael is in the ring), extraction support (they have connections), and a massive security breach (unauthorized contact is grounds for ring elimination).
|
||||
**Deep secret** (nobody knows except the unknown contact): Kael is trying to **exit the ring**. Naia's worry has become unbearable. Kael contacted someone from a different district (not Sabel, not anyone the ring knows) who's offered to help Kael get out — for a price. The unknown contact is leverage (they know Kael is in the ring), extraction support (they have connections), and a massive security breach (unauthorized contact is grounds for ring elimination).
|
||||
|
||||
**Vulnerability**: The exit attempt. If Nils finds out, Kael is out — violently. If the smuggler (if playing ring-member path) finds out, trust collapses. If the detective finds out, Kael is the perfect informant (desperate, motivated, already halfway to cooperation).
|
||||
|
||||
@@ -48,11 +48,11 @@ Hael doesn't know about the smuggling. Kael's late nights and evasive answers ar
|
||||
- **Current tension**: Nils is pushing for higher volume. Kael thinks it's too fast, too risky. Kael can't say no to Nils (family), but resents being pushed.
|
||||
- **Mechanical relevance**: If Kael's exit attempt is discovered, Nils is the primary threat.
|
||||
|
||||
**Relationship 2: Hael** (partner, teacher, civilian)
|
||||
**Relationship 2: Naia** (partner, teacher, civilian)
|
||||
- **Type**: Domestic partnership, 6 years
|
||||
- **History**: Met at a community event. Hael teaches station kids, represents ordinary life, stability, the future Kael wants but smuggling threatens.
|
||||
- **Current tension**: Hael knows something's wrong. The late nights, the evasive answers, the money that doesn't quite track. Hael has confided in Sera (friend, Commission field tech). Kael is oblivious to how much anxiety he's causing.
|
||||
- **Mechanical relevance**: Hael is Kael's emotional anchor and his vulnerability. Threaten Hael, Kael breaks.
|
||||
- **History**: Met at a community event. Naia teaches station kids, represents ordinary life, stability, the future Kael wants but smuggling threatens.
|
||||
- **Current tension**: Naia knows something's wrong. The late nights, the evasive answers, the money that doesn't quite track. Naia has confided in Sera (friend, Commission field tech). Kael is oblivious to how much anxiety he's causing.
|
||||
- **Mechanical relevance**: Naia is Kael's emotional anchor and his vulnerability. Threaten Naia, Kael breaks.
|
||||
|
||||
**Relationship 3: The Smuggler** (if smuggler is playing ring-member path)
|
||||
- **Type**: Close colleague, trusted friend, shared risk
|
||||
@@ -69,15 +69,15 @@ Hael doesn't know about the smuggling. Kael's late nights and evasive answers ar
|
||||
**What Kael tolerates**:
|
||||
- Routine smuggling operations (manageable risk)
|
||||
- Voss's resentment and Nils's demands (family and operational necessity)
|
||||
- Lying to Hael (hates it, but does it to protect)
|
||||
- Lying to Naia (hates it, but does it to protect)
|
||||
|
||||
**What pushes Kael toward breaking**:
|
||||
- Escalating volume (feels like the operation is spiraling)
|
||||
- Hael's increasing worry (guilt accumulation)
|
||||
- Naia's increasing worry (guilt accumulation)
|
||||
- The detective's investigation (paranoia about exposure)
|
||||
|
||||
**What breaks Kael**:
|
||||
- Direct threat to Hael (if the ring or the detective uses Hael as leverage, Kael flips immediately)
|
||||
- Direct threat to Naia (if the ring or the detective uses Naia as leverage, Kael flips immediately)
|
||||
- Nils discovering the exit attempt (Kael either runs or fights, no middle ground)
|
||||
|
||||
---
|
||||
@@ -90,13 +90,13 @@ Hael doesn't know about the smuggling. Kael's late nights and evasive answers ar
|
||||
**11:00 - 14:00**: Afternoon shift
|
||||
**14:00 - 14:30**: Shift end, sometimes lingers for "overtime" (ring operations during transition window)
|
||||
**14:30 - 16:00**: Off-shift, heads home or to The Last Shift (bar)
|
||||
**16:00 - 22:00**: Home with Hael, or occasional ring coordination meetings (Corridor B-7, back room)
|
||||
**16:00 - 22:00**: Home with Naia, or occasional ring coordination meetings (Corridor B-7, back room)
|
||||
**22:00+**: Late-night ring operations (1-2x per week, during night shift transition)
|
||||
|
||||
**Routine deviations** (tells):
|
||||
- Increased lattice checking (nervous, expecting contact from exit coordinator)
|
||||
- Shortened social interactions (distracted, avoiding prolonged conversation)
|
||||
- Late arrivals home (Hael notices, worries)
|
||||
- Late arrivals home (Naia notices, worries)
|
||||
- Unauthorized presence in Corridor B-7 (the contradiction discovery moment for smuggler)
|
||||
|
||||
---
|
||||
@@ -109,11 +109,11 @@ Hael doesn't know about the smuggling. Kael's late nights and evasive answers ar
|
||||
- Shift schedules and coverage gaps (operational knowledge)
|
||||
- Manifest doctoring process (Maret processes, Voss approves)
|
||||
- Drin's compromise (gambling debt to Harek, looks away during inspections)
|
||||
- Hael's worry (knows Hael suspects something, doesn't know Hael talked to Sera)
|
||||
- Naia's worry (knows Naia suspects something, doesn't know Naia talked to Sera)
|
||||
|
||||
**Doesn't know**:
|
||||
- The detective is investigating (unless playing detective path and Kael has been flagged)
|
||||
- Sera is sitting on unreported evidence about Kael's manifest discrepancies (protects Hael by not reporting)
|
||||
- Sera is sitting on unreported evidence about Kael's manifest discrepancies (protects Naia by not reporting)
|
||||
- Pell is considering turning informant (internal ring threat)
|
||||
- The full supply chain (Kael knows cargo comes from Sabel off-station, doesn't know upstream Syndic sources)
|
||||
|
||||
@@ -123,17 +123,17 @@ Hael doesn't know about the smuggling. Kael's late nights and evasive answers ar
|
||||
|
||||
**Moderate-low** (D-024 thematic axis).
|
||||
|
||||
Kael is *comfortable enough to function* but not happy. The smuggling pays well, the work is manageable, the team (Nils, smuggler, Renn) is solid. But the guilt about lying to Hael is corrosive. The escalating volume makes every shift feel riskier. The exit attempt is itself a contentment signal: Kael wants out because "enough" isn't enough anymore — the cost is too high.
|
||||
Kael is *comfortable enough to function* but not happy. The smuggling pays well, the work is manageable, the team (Nils, smuggler, Renn) is solid. But the guilt about lying to Naia is corrosive. The escalating volume makes every shift feel riskier. The exit attempt is itself a contentment signal: Kael wants out because "enough" isn't enough anymore — the cost is too high.
|
||||
|
||||
**Contentment trajectory**: Declining. Two years ago, Kael was moderate (the operation was stable, Hael didn't suspect). Now, Kael is low and falling. The exit attempt is a desperate grab for a future that doesn't involve looking over his shoulder.
|
||||
**Contentment trajectory**: Declining. Two years ago, Kael was moderate (the operation was stable, Naia didn't suspect). Now, Kael is low and falling. The exit attempt is a desperate grab for a future that doesn't involve looking over his shoulder.
|
||||
|
||||
---
|
||||
|
||||
### 8. Personality Traits
|
||||
|
||||
**Primary: Loyal** — to people, not institutions. Kael's loyalty is personal (Nils, Hael, the smuggler) and situational (the ring, because the people he cares about are in it). If forced to choose between the ring and a person, Kael chooses the person.
|
||||
**Primary: Loyal** — to people, not institutions. Kael's loyalty is personal (Nils, Naia, the smuggler) and situational (the ring, because the people he cares about are in it). If forced to choose between the ring and a person, Kael chooses the person.
|
||||
|
||||
**Secondary: Protective** — defaults to shielding others from consequences. Lies to Hael to protect. Tries to exit the ring to protect Hael from future fallout. Would cover for the smuggler even at personal cost.
|
||||
**Secondary: Protective** — defaults to shielding others from consequences. Lies to Naia to protect. Tries to exit the ring to protect Naia from future fallout. Would cover for the smuggler even at personal cost.
|
||||
|
||||
**Tertiary: Pragmatic** — doesn't waste words, doesn't dramatize. Handles problems as they arise. The exit attempt is Kael being pragmatic: "This situation is unsustainable. I need a way out. I'll find one."
|
||||
|
||||
@@ -146,7 +146,7 @@ Kael is *comfortable enough to function* but not happy. The smuggling pays well,
|
||||
| Tell | Trigger | Observable To | Mechanical Flag |
|
||||
|------|---------|---------------|-----------------|
|
||||
| **Increased lattice checking** | Expecting contact from exit coordinator | Smuggler (if observant), Detective (if tracking behavioral patterns) | `behavior_flags: lattice_checking` |
|
||||
| **Shortened social interactions** | Distracted, avoiding prolonged conversation where lies might surface | Smuggler, Hael, bar regulars | `behavior_flags: distracted,evasive` |
|
||||
| **Shortened social interactions** | Distracted, avoiding prolonged conversation where lies might surface | Smuggler, Naia, bar regulars | `behavior_flags: distracted,evasive` |
|
||||
| **Looks left before answering** | Lying or deflecting (Kael's personal tell, smuggler knows this from history) | Smuggler (recognizes the tell from experience) | `tell_observed: looks_left_when_lying` |
|
||||
| **Unauthorized spatial presence** | Meeting unknown contact in Corridor B-7 (restricted area, not part of normal routine) | Smuggler (direct observation), Detective (if surveillance active) | `contradiction_flagged: meeting_unknown_contact` |
|
||||
|
||||
@@ -172,7 +172,7 @@ Kael is *comfortable enough to function* but not happy. The smuggling pays well,
|
||||
|
||||
## Backstory
|
||||
|
||||
Born on Station Sova. Grew up in the freight district — child of logistics workers, pragmatic Krenn System upbringing. Joined Sova Logistics Consortium at 22, worked the docks for a decade before Nils (older sibling, always more ambitious) brought him into the ring. "It's just moving containers, Kael. You're good at this. We take care of our own." Two years in, Kael is good at it — efficient, careful, trusted. But the operation is escalating, Hael is worried, and Kael realizes he's in deeper than he intended. The exit attempt is Kael trying to reclaim a future that doesn't end in a cell or worse.
|
||||
Born on Station Sova. Grew up in the freight district — child of logistics workers, pragmatic Krenn System upbringing. Joined Sova Logistics Consortium at 22, worked the docks for a decade before Nils (older sibling, always more ambitious) brought him into the ring. "It's just moving containers, Kael. You're good at this. We take care of our own." Two years in, Kael is good at it — efficient, careful, trusted. But the operation is escalating, Naia is worried, and Kael realizes he's in deeper than he intended. The exit attempt is Kael trying to reclaim a future that doesn't end in a cell or worse.
|
||||
|
||||
---
|
||||
|
||||
@@ -181,8 +181,8 @@ Born on Station Sova. Grew up in the freight district — child of logistics wor
|
||||
**Mood: Casual (baseline, smuggler interaction)**
|
||||
- *"Shift's looking smooth today. Freight's on schedule, no surprises. Let's keep it that way."*
|
||||
|
||||
**Mood: Protective (deflecting Hael's worry)**
|
||||
- *"I'm fine, Hael. Just work stuff. Long shifts, you know how it is. Don't worry about me."*
|
||||
**Mood: Protective (deflecting Naia's worry)**
|
||||
- *"I'm fine, Naia. Just work stuff. Long shifts, you know how it is. Don't worry about me."*
|
||||
|
||||
**Mood: Evasive (post-contradiction, smuggler pressing)**
|
||||
- *"It's nothing. Just a thing. Don't worry about it."* [Looks left before answering — the tell]
|
||||
@@ -207,7 +207,7 @@ Born on Station Sova. Grew up in the freight district — child of logistics wor
|
||||
|
||||
**Monologue tone (post-contradiction)**: Conflicted, analytical. *"Kael's lying to me. I know his tells. What are you hiding?"*
|
||||
|
||||
**What the smuggler knows that the detective doesn't**: Kael is a ring member (if smuggler is also in the ring). Kael's personal tell (looks left when lying). Kael's relationship with Hael. The unauthorized meeting is a *betrayal of operational security*, not just suspicious behavior.
|
||||
**What the smuggler knows that the detective doesn't**: Kael is a ring member (if smuggler is also in the ring). Kael's personal tell (looks left when lying). Kael's relationship with Naia. The unauthorized meeting is a *betrayal of operational security*, not just suspicious behavior.
|
||||
|
||||
**Emotional weight**: Maximum. Kael is THE FRIEND. The color shift from green to amber is the moment the smuggler realizes trust has been compromised.
|
||||
|
||||
@@ -223,7 +223,7 @@ Born on Station Sova. Grew up in the freight district — child of logistics wor
|
||||
|
||||
**Monologue tone (post-tells)**: Analytical suspicion. *"Davan's nervous. Lattice activity spiked. Behavioral pattern suggests concealment."*
|
||||
|
||||
**What the detective knows that the smuggler doesn't**: Manifest discrepancies tied to Kael's shifts (if Sera has shared or detective has analyzed logs). Hael's worry (if detective talks to Hael or Sera). Kael as a pressure point — partner at risk, potential informant.
|
||||
**What the detective knows that the smuggler doesn't**: Manifest discrepancies tied to Kael's shifts (if Sera has shared or detective has analyzed logs). Naia's worry (if detective talks to Naia or Sera). Kael as a pressure point — partner at risk, potential informant.
|
||||
|
||||
**Emotional weight**: Low initially (just another dock worker). High if Kael becomes the key to cracking the ring (the detective's professional satisfaction vs. Kael's desperation creates tension, but not personal betrayal).
|
||||
|
||||
@@ -241,13 +241,13 @@ Born on Station Sova. Grew up in the freight district — child of logistics wor
|
||||
|
||||
---
|
||||
|
||||
### Triangle 4: The Worried Partner (Hael - Kael - Sera)
|
||||
### Triangle 4: The Worried Partner (Naia - Kael - Sera)
|
||||
|
||||
**Kael's function**: The oblivious cause. Kael's smuggling (late nights, evasive answers) is making Hael worried. Hael confides in Sera. Sera knows enough to connect Kael to the investigation but hasn't reported (loyalty to Hael). Kael doesn't know Hael talked to Sera.
|
||||
**Kael's function**: The oblivious cause. Kael's smuggling (late nights, evasive answers) is making Naia worried. Naia confides in Sera. Sera knows enough to connect Kael to the investigation but hasn't reported (loyalty to Naia). Kael doesn't know Naia talked to Sera.
|
||||
|
||||
**Pressure**: Hael's worry is escalating. If Hael confronts Kael directly, Kael has to lie or confess. If Sera reports, Hael's life explodes. Kael is trying to exit the ring to stop the worry, but the exit attempt is itself creating more risk.
|
||||
**Pressure**: Naia's worry is escalating. If Naia confronts Kael directly, Kael has to lie or confess. If Sera reports, Naia's life explodes. Kael is trying to exit the ring to stop the worry, but the exit attempt is itself creating more risk.
|
||||
|
||||
**Player relevance**: Smuggler (if Kael's friend) knows why Kael is busy, can't tell Hael. Detective (if Sera's friend) might hear about Hael's worry from Sera, creating a path to Kael.
|
||||
**Player relevance**: Smuggler (if Kael's friend) knows why Kael is busy, can't tell Naia. Detective (if Sera's friend) might hear about Naia's worry from Sera, creating a path to Kael.
|
||||
|
||||
---
|
||||
|
||||
@@ -261,13 +261,13 @@ Born on Station Sova. Grew up in the freight district — child of logistics wor
|
||||
|
||||
**What Kael is hiding**: The exit attempt. Unauthorized contact with someone outside the ring who's offered extraction help.
|
||||
|
||||
**From whom**: Everyone. Nils, the smuggler, Hael (Hael doesn't even know about the ring), Sera, the detective.
|
||||
**From whom**: Everyone. Nils, the smuggler, Naia (Naia doesn't even know about the ring), Sera, the detective.
|
||||
|
||||
**Consequences if exposed**:
|
||||
- **Nils finds out**: Kael is eliminated (violently or expelled, either way gone).
|
||||
- **Smuggler finds out**: Trust collapses. If smuggler reports to Nils, Kael is done. If smuggler protects Kael, smuggler is complicit in a security breach.
|
||||
- **Detective finds out**: Kael becomes the perfect informant. Desperate, already trying to leave, motivated by protecting Hael. Detective can offer protection in exchange for cooperation.
|
||||
- **Hael finds out**: Emotional devastation. Hael learns (1) Kael is a smuggler, (2) Kael has been lying for two years, (3) Kael is in danger trying to exit. Trust in the relationship is destroyed, even if Hael understands the motive.
|
||||
- **Detective finds out**: Kael becomes the perfect informant. Desperate, already trying to leave, motivated by protecting Naia. Detective can offer protection in exchange for cooperation.
|
||||
- **Naia finds out**: Emotional devastation. Naia learns (1) Kael is a smuggler, (2) Kael has been lying for two years, (3) Kael is in danger trying to exit. Trust in the relationship is destroyed, even if Naia understands the motive.
|
||||
|
||||
---
|
||||
|
||||
@@ -358,7 +358,7 @@ Born on Station Sova. Grew up in the freight district — child of logistics wor
|
||||
**Monologue (smuggler)**: *"Same old Kael. Laughing at the same jokes. ...What are you not telling me?"*
|
||||
|
||||
**Dialogue options**:
|
||||
- **Path A (understanding)**: Smuggler confronts gently: *"Kael, if you're in trouble, I can help."* Kael might confess (exit attempt, protecting Hael). `RelationshipState` remains `PersonOfInterest` (still a problem), but tone shifts to sympathetic. Player gains information, can choose to help Kael exit or report to Nils.
|
||||
- **Path A (understanding)**: Smuggler confronts gently: *"Kael, if you're in trouble, I can help."* Kael might confess (exit attempt, protecting Naia). `RelationshipState` remains `PersonOfInterest` (still a problem), but tone shifts to sympathetic. Player gains information, can choose to help Kael exit or report to Nils.
|
||||
- **Path B (betrayal)**: Smuggler reports to Nils or pressures Kael harshly: *"You broke protocol. Unauthorized contact is grounds for elimination."* Kael turns defensive. `RelationshipState` → `Hostile`. Kael avoids smuggler, might actively obstruct or flee.
|
||||
- **Path C (observation)**: Smuggler doesn't confront, just watches. Accumulate more evidence, decide later. `RelationshipState` remains `PersonOfInterest`. Tension simmers.
|
||||
|
||||
@@ -387,7 +387,7 @@ Born on Station Sova. Grew up in the freight district — child of logistics wor
|
||||
|
||||
- **Kael's voice**: Direct, practical, short sentences. Doesn't waste words. Uses first names. Warm to people he trusts, evasive when hiding something.
|
||||
- **The tell** (looks left when lying) must be established early in casual dialogue so the smuggler (and player) recognize it during the contradiction.
|
||||
- **Hael references**: Kael mentions Hael in casual conversation ("Hael's got a school event tonight, so I'm heading home early"). Establishes the relationship before it becomes load-bearing.
|
||||
- **Naia references**: Kael mentions Naia in casual conversation ("Naia's got a school event tonight, so I'm heading home early"). Establishes the relationship before it becomes load-bearing.
|
||||
- **Ring operations dialogue** (if smuggler is in ring): Matter-of-fact, operational. "Container 4471 is flagged. I'll reroute it during shift transition." No drama, no theatrics.
|
||||
- **Deflection dialogue** (post-contradiction): Kael doesn't lie outright (too risky). Kael deflects: "It's handled." "Don't worry about it." "Just work stuff." The evasion itself is the tell.
|
||||
- **Dual-lens discipline**: Every Kael line must work for BOTH the smuggler (who knows Kael personally) AND the detective (who reads Kael analytically). The same sentence lands differently per character.
|
||||
|
||||
@@ -57,7 +57,7 @@ Lera has been behind this bar for 18 years. She's watched people come and go, re
|
||||
|
||||
### 6. Information Inventory
|
||||
|
||||
**Knows**: Who drinks with whom, who avoids whom, who's spending more than they should, who's been fighting, who's worried. Social intelligence that no one else in the district possesses. The back room is used for meetings she doesn't attend. Torek's spending pattern. Sera's avoidance of Torek. Hael's worry about Kael.
|
||||
**Knows**: Who drinks with whom, who avoids whom, who's spending more than they should, who's been fighting, who's worried. Social intelligence that no one else in the district possesses. The back room is used for meetings she doesn't attend. Torek's spending pattern. Sera's avoidance of Torek. Naia's worry about Kael.
|
||||
|
||||
**Doesn't know**: Ring structure, cargo details, manifest discrepancies, the detective's specific mandate. Lera knows something is going on. She doesn't know what, and she's been careful not to learn.
|
||||
|
||||
@@ -114,4 +114,4 @@ Lera has been behind this bar for 18 years. She's watched people come and go, re
|
||||
|
||||
---
|
||||
|
||||
**Cross-References:** [Torek Lintar](torek-lintar.md), [Harek](harek.md), [Sera Venn](sera-venn.md), [Hael](hael.md), [Olin](olin.md)
|
||||
**Cross-References:** [Torek Lintar](torek-lintar.md), [Harek](harek.md), [Sera Venn](sera-venn.md), [Naia Tamm](naia-tamm.md), [Olin](olin.md)
|
||||
|
||||
@@ -52,7 +52,7 @@ Maret didn't ask to see the discrepancies. She sees them because that's her job.
|
||||
**06:00 - 14:00**: Day shift — freight scheduling, manifest reconciliation, bay allocation
|
||||
**10:30 - 11:00**: Break room. Maret eats alone or with Resha. Avoids Voss during breaks.
|
||||
**14:00 - 15:00**: Post-shift, reviews next day's gate schedule
|
||||
**15:00 - 17:00**: Home or occasional bar visit (not a regular — Maret goes for Hael's company sometimes)
|
||||
**15:00 - 17:00**: Home or occasional bar visit (not a regular — Maret goes for Naia's company sometimes)
|
||||
**After hours**: Reviews her private discrepancy log. Adds entries. Worries.
|
||||
|
||||
### 6. Information Inventory
|
||||
@@ -114,4 +114,4 @@ Maret didn't ask to see the discrepancies. She sees them because that's her job.
|
||||
|
||||
---
|
||||
|
||||
**Cross-References:** [Voss](voss.md), [Drin](drin.md), [Resha](resha.md), [Hael](hael.md)
|
||||
**Cross-References:** [Voss](voss.md), [Drin](drin.md), [Resha](resha.md), [Naia Tamm](naia-tamm.md)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Hael
|
||||
# Naia Tamm
|
||||
|
||||
**Tier 2 NPC** | The Last Shift (Bar) | Mundane
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
## Core Identity
|
||||
|
||||
**Name**: Hael
|
||||
**Name**: Naia Tamm
|
||||
**Age**: 33
|
||||
**Role**: Teacher, Station Sova community school (Residential Radial A)
|
||||
**System Origin**: Krenn System, Krenn Prime (surface), relocated to Station Sova 8 years ago
|
||||
@@ -21,31 +21,31 @@
|
||||
|
||||
**Primary**: Understand what's happening with Kael.
|
||||
|
||||
Hael and Kael have been together 6 years. It was good — stable, warm, predictable. Then Kael started coming home late. Evasive answers. Money that didn't match the hours. Stress that Kael won't explain. Hael doesn't know about the ring. Hael knows that the person they share a life with is hiding something, and the not-knowing is worse than almost any truth.
|
||||
Naia and Kael have been together 6 years. It was good — stable, warm, predictable. Then Kael started coming home late. Evasive answers. Money that didn't match the hours. Stress that Kael won't explain. Naia doesn't know about the ring. Naia knows that the person they share a life with is hiding something, and the not-knowing is worse than almost any truth.
|
||||
|
||||
**Secondary**: Protect the life they've built.
|
||||
|
||||
Hael teaches station kids. Has a community, a reputation, a daily rhythm. Whatever Kael is hiding, Hael wants it resolved without destroying everything — the home, the relationship, the stability that took years to build. This is why Hael confides in Sera instead of confronting Kael directly: Hael wants advice, not a fight.
|
||||
Naia teaches station kids. Has a community, a reputation, a daily rhythm. Whatever Kael is hiding, Naia wants it resolved without destroying everything — the home, the relationship, the stability that took years to build. This is why Naia confides in Sera instead of confronting Kael directly: Naia wants advice, not a fight.
|
||||
|
||||
### 2. Secret / Vulnerability
|
||||
|
||||
**Surface secret**: Worried about Kael. Visible to anyone who sees Hael's stress — Sera, bar regulars, anyone paying attention.
|
||||
**Surface secret**: Worried about Kael. Visible to anyone who sees Naia's stress — Sera, bar regulars, anyone paying attention.
|
||||
|
||||
**Deep secret**: Hael confided in Sera about Kael's behavior. This is the action that set Sera's compliance check in motion, though Hael doesn't know that. Hael shared a personal worry with a trusted friend. That trusted friend had institutional access.
|
||||
**Deep secret**: Naia confided in Sera about Kael's behavior. This is the action that set Sera's compliance check in motion, though Naia doesn't know that. Naia shared a personal worry with a trusted friend. That trusted friend had institutional access.
|
||||
|
||||
**Vulnerability**: Emotional exposure. Hael's worry is genuine, visible, and exploitable. The detective can cultivate Hael as a source by being sympathetic. The smuggler (if Kael's friend) feels guilt seeing Hael's distress. Hael is the emotional center of Triangle 4 — the person everyone wants to protect and nobody can protect without making it worse.
|
||||
**Vulnerability**: Emotional exposure. Naia's worry is genuine, visible, and exploitable. The detective can cultivate Naia as a source by being sympathetic. The smuggler (if Kael's friend) feels guilt seeing Naia's distress. Naia is the emotional center of Triangle 4 — the person everyone wants to protect and nobody can protect without making it worse.
|
||||
|
||||
### 3. Relationships
|
||||
|
||||
**Kael Davan**: Partner, 6 years. Deep love, growing anxiety. Hael doesn't question Kael's character — just Kael's honesty. The relationship is the strongest bond in Hael's life and the source of the greatest stress.
|
||||
**Kael Davan**: Partner, 6 years. Deep love, growing anxiety. Naia doesn't question Kael's character — just Kael's honesty. The relationship is the strongest bond in Naia's life and the source of the greatest stress.
|
||||
|
||||
**Sera Venn**: Close friend, 10 months. Met at the bar after Sera transferred. Genuine friendship — Sera is smart, calm, from outside the district's close-knit social web. Hael trusts Sera as someone who can give perspective without gossip.
|
||||
**Sera Venn**: Close friend, 10 months. Met at the bar after Sera transferred. Genuine friendship — Sera is smart, calm, from outside the district's close-knit social web. Naia trusts Sera as someone who can give perspective without gossip.
|
||||
|
||||
**Lera Sessik**: Bar acquaintance. Hael isn't a heavy drinker but comes to The Last Shift for the social environment. Lera is warm to Hael — the kind of protective attention a good bartender gives to someone who's visibly struggling.
|
||||
**Lera Sessik**: Bar acquaintance. Naia isn't a heavy drinker but comes to The Last Shift for the social environment. Lera is warm to Naia — the kind of protective attention a good bartender gives to someone who's visibly struggling.
|
||||
|
||||
### 4. Tolerance Threshold
|
||||
|
||||
**Moderate**. Hael is patient — teaching station kids requires it. But the patience is fraying. Every evasive answer from Kael, every late night, every "it's just work" chips at Hael's tolerance. If pushed to a breaking point, Hael confronts Kael directly — which could trigger Kael's crisis, force Sera's hand, or give the detective an opening.
|
||||
**Moderate**. Naia is patient — teaching station kids requires it. But the patience is fraying. Every evasive answer from Kael, every late night, every "it's just work" chips at Naia's tolerance. If pushed to a breaking point, Naia confronts Kael directly — which could trigger Kael's crisis, force Sera's hand, or give the detective an opening.
|
||||
|
||||
### 5. Daily Routine
|
||||
|
||||
@@ -59,17 +59,17 @@ Hael teaches station kids. Has a community, a reputation, a daily rhythm. Whatev
|
||||
|
||||
**Knows**: Kael's normal routine (6 years of partnership). Kael's recent deviations (late nights, evasive answers, unexplained stress). Sera's Commission role (knows Sera is a tech, not an investigator). Bar social dynamics from Sera's descriptions. The school community, kids' families, education bureaucracy.
|
||||
|
||||
**Doesn't know**: Ring, smuggling, Kael's membership, manifest discrepancies, Sera's compliance check, the detective's investigation. Hael lives in the civilian layer of the district where none of this is visible — until it becomes personal.
|
||||
**Doesn't know**: Ring, smuggling, Kael's membership, manifest discrepancies, Sera's compliance check, the detective's investigation. Naia lives in the civilian layer of the district where none of this is visible — until it becomes personal.
|
||||
|
||||
### 7. Contentment
|
||||
|
||||
**Low** — and declining. Hael was content: stable job, loving partner, community. Now the relationship anxiety is coloring everything. Teaching is harder when you're distracted. The bar visits are tinged with worry. Home is where the absence lives. Hael's contentment trajectory mirrors Kael's — both declining, for connected but different reasons.
|
||||
**Low** — and declining. Naia was content: stable job, loving partner, community. Now the relationship anxiety is coloring everything. Teaching is harder when you're distracted. The bar visits are tinged with worry. Home is where the absence lives. Naia's contentment trajectory mirrors Kael's — both declining, for connected but different reasons.
|
||||
|
||||
### 8. Personality Traits
|
||||
|
||||
**Primary: Caring** — genuinely invested in other people's wellbeing (students, Kael, Sera).
|
||||
**Secondary: Patient** — tolerates uncertainty longer than most, but not indefinitely.
|
||||
**Tertiary: Perceptive** — reads emotional states well. Knows when Kael is lying even if Hael can't prove it.
|
||||
**Tertiary: Perceptive** — reads emotional states well. Knows when Kael is lying even if Naia can't prove it.
|
||||
|
||||
### 9. Tell System
|
||||
|
||||
@@ -82,7 +82,7 @@ Hael teaches station kids. Has a community, a reputation, a daily rhythm. Whatev
|
||||
### 10. Skill Set
|
||||
|
||||
**Occupational**: Teaching, community engagement, youth education, curriculum management.
|
||||
**Combat tag**: **No**. Hael is entirely civilian.
|
||||
**Combat tag**: **No**. Naia is entirely civilian.
|
||||
**Lattice capability**: Baseline.
|
||||
|
||||
---
|
||||
@@ -102,15 +102,15 @@ Hael teaches station kids. Has a community, a reputation, a daily rhythm. Whatev
|
||||
|
||||
## Dual-Lens Notes
|
||||
|
||||
**Smuggler**: Hael is emotional collateral. The smuggler knows why Kael is busy and can't say. Seeing Hael's worry creates guilt — especially if the smuggler is Kael's friend. If Hael asks the smuggler about Kael, there's no good answer. *"Hael's at the bar again. Alone. Looking at the door every time it opens. I know where Kael is. I can't say."*
|
||||
**Smuggler**: Naia is emotional collateral. The smuggler knows why Kael is busy and can't say. Seeing Naia's worry creates guilt — especially if the smuggler is Kael's friend. If Naia asks the smuggler about Kael, there's no good answer. *"Naia's at the bar again. Alone. Looking at the door every time it opens. I know where Kael is. I can't say."*
|
||||
|
||||
**Detective**: Hael is a potential source. A partner who suspects their loved one is hiding something is a classic entry point for investigation. The detective can cultivate Hael's trust by being sympathetic — listen, validate, gently probe. Hael might not know specifics, but Hael knows Kael's routine, habits, and recent changes better than anyone. *"The partner — Hael. Teacher. Visibly stressed. Keeps looking at the door. If Davan is involved, this partner knows something changed, even if they don't know what."*
|
||||
**Detective**: Naia is a potential source. A partner who suspects their loved one is hiding something is a classic entry point for investigation. The detective can cultivate Naia's trust by being sympathetic — listen, validate, gently probe. Naia might not know specifics, but Naia knows Kael's routine, habits, and recent changes better than anyone. *"The partner — Naia Tamm. Teacher. Visibly stressed. Keeps looking at the door. If Davan is involved, this partner knows something changed, even if they don't know what."*
|
||||
|
||||
---
|
||||
|
||||
## Triangle Roles
|
||||
|
||||
**Triangle 4: Worried Partner (Hael - Kael - Sera)** — The emotional center. Hael's worry about Kael triggered Sera's investigation. Hael's trust in Sera makes Sera's concealment more painful. Hael connects the detective's investigation to Kael's personal life — through Sera, through Hael's own observations, through the simple fact that a worried partner is the best witness to behavioral change.
|
||||
**Triangle 4: Worried Partner (Naia - Kael - Sera)** — The emotional center. Naia's worry about Kael triggered Sera's investigation. Naia's trust in Sera makes Sera's concealment more painful. Naia connects the detective's investigation to Kael's personal life — through Sera, through Naia's own observations, through the simple fact that a worried partner is the best witness to behavioral change.
|
||||
|
||||
---
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Olin
|
||||
# Olin Tavren
|
||||
|
||||
**Tier 3 NPC** | The Last Shift (Bar) | Flat
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Pell
|
||||
# Pell Torssen
|
||||
|
||||
**Tier 2 NPC** | Smuggling Ring | Entangled
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
## Core Identity
|
||||
|
||||
**Name**: Pell
|
||||
**Name**: Pell Torssen
|
||||
**Age**: 35
|
||||
**Role**: Ring member (handles inventory tracking and distribution scheduling for smuggled goods)
|
||||
**System Origin**: Krenn System, Orbital Manufacturing Platform 3 (relocated to Sova 4 years ago)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Renn
|
||||
# Renn Harsk
|
||||
|
||||
**Tier 2 NPC** | Smuggling Ring + Logistics Hub | Entangled
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
## Core Identity
|
||||
|
||||
**Name**: Renn
|
||||
**Name**: Renn Harsk
|
||||
**Age**: 26
|
||||
**Role**: Courier, Sova Transit District (moves contraband between freight bay, storage, and handoff points)
|
||||
**System Origin**: Krenn System, Station Sova
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Resha
|
||||
# Resha Neven
|
||||
|
||||
**Tier 2 NPC** | Logistics Hub (The Terminal) | Mundane
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
## Core Identity
|
||||
|
||||
**Name**: Resha
|
||||
**Name**: Resha Neven
|
||||
**Age**: 23
|
||||
**Role**: Dock worker (new hire, 3 months), Sova Transit District Logistics Hub
|
||||
**System Origin**: Krenn System, Residential Radial B (Station Sova — short-term housing district)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Sabel
|
||||
# Sabel Hersk
|
||||
|
||||
**Tier 3 NPC** | Smuggling Ring (Off-Station) | Flat
|
||||
|
||||
|
||||
+36
-36
@@ -24,9 +24,9 @@
|
||||
|
||||
Sera transferred to Sova after a stressful posting on a border-system relay station — too many compliance violations, too many confrontations with people running unlicensed lattice modifications. Sova was supposed to be quiet. Routine calibration checks, scheduled inspections, paperwork. A posting where nobody yells at you and you go home at a reasonable hour. For 12 months, it was exactly that.
|
||||
|
||||
**Secondary**: Protect Hael from the consequences of what Sera has discovered.
|
||||
**Secondary**: Protect Naia from the consequences of what Sera has discovered.
|
||||
|
||||
Hael is Sera's closest friend on the station. When Hael started confiding worry about Kael's late nights and evasive behavior, Sera did what a Commission tech can do that a civilian can't — she ran an unofficial diagnostic on Kael's work patterns through the compliance system. What she found (manifest discrepancies tied to Kael's shifts) pointed to something she didn't want to see. Reporting it would mean Kael gets investigated, possibly arrested, and Hael's life falls apart. Not reporting it means Sera is sitting on evidence. The quiet life she wanted is gone.
|
||||
Naia is Sera's closest friend on the station. When Naia started confiding worry about Kael's late nights and evasive behavior, Sera did what a Commission tech can do that a civilian can't — she ran an unofficial diagnostic on Kael's work patterns through the compliance system. What she found (manifest discrepancies tied to Kael's shifts) pointed to something she didn't want to see. Reporting it would mean Kael gets investigated, possibly arrested, and Naia's life falls apart. Not reporting it means Sera is sitting on evidence. The quiet life she wanted is gone.
|
||||
|
||||
---
|
||||
|
||||
@@ -34,9 +34,9 @@ Hael is Sera's closest friend on the station. When Hael started confiding worry
|
||||
|
||||
**Surface secret** (detective eventually suspects, smuggler may notice): Sera is a Commission employee who socializes at the bar but avoids certain people — specifically Torek Lintar. Her avoidance pattern is visible to anyone paying attention.
|
||||
|
||||
**Deep secret** (nobody knows except Sera): Sera ran an unauthorized compliance check on Kael Davan's freight handling records after Hael confided worry about Kael's behavior. She found manifest discrepancies — containers logged by Kael's shifts that don't reconcile with incoming freight manifests. This is reportable evidence. Sera has not reported it. She has been sitting on this information for approximately 6 weeks, protecting Hael from the consequences of her partner being investigated.
|
||||
**Deep secret** (nobody knows except Sera): Sera ran an unauthorized compliance check on Kael Davan's freight handling records after Naia confided worry about Kael's behavior. She found manifest discrepancies — containers logged by Kael's shifts that don't reconcile with incoming freight manifests. This is reportable evidence. Sera has not reported it. She has been sitting on this information for approximately 6 weeks, protecting Naia from the consequences of her partner being investigated.
|
||||
|
||||
**Vulnerability**: The unreported evidence. If the detective discovers Sera's concealment, Sera faces institutional consequences (dereliction of duty, obstruction). If the ring discovers that a Commission employee has their manifests flagged, Sera becomes a target. If Hael discovers Sera investigated Kael behind their back, the friendship is damaged regardless of Sera's motivation.
|
||||
**Vulnerability**: The unreported evidence. If the detective discovers Sera's concealment, Sera faces institutional consequences (dereliction of duty, obstruction). If the ring discovers that a Commission employee has their manifests flagged, Sera becomes a target. If Naia discovers Sera investigated Kael behind their back, the friendship is damaged regardless of Sera's motivation.
|
||||
|
||||
---
|
||||
|
||||
@@ -48,11 +48,11 @@ Hael is Sera's closest friend on the station. When Hael started confiding worry
|
||||
- **Current tension**: Sera is now keeping evidence from the detective. Every helpful tip, every piece of background she shares, is contaminated by the thing she's NOT sharing. The detective trusts Sera completely, which makes the concealment worse.
|
||||
- **Mechanical relevance**: THE FRIEND. The relationship phase arc (trust > pattern observation > confrontation > contaminated trust) plays out here.
|
||||
|
||||
**Relationship 2: Hael** (close friend, civilian)
|
||||
**Relationship 2: Naia** (close friend, civilian)
|
||||
- **Type**: Personal friendship, 10 months. Met at the bar shortly after Sera's transfer.
|
||||
- **History**: Hael teaches station kids, represents the community Sera embedded herself in. They drink together after Hael's school day and Sera's shift, swap complaints about work, talk about Hael's relationship with Kael. Hael is the reason Sova feels like home instead of just another posting.
|
||||
- **Current tension**: Hael confided in Sera about Kael's behavior (late nights, evasion, unexplained stress). This is what triggered Sera's unofficial compliance check. Sera now knows more about Kael's situation than Hael does — and can't share it without destroying everything.
|
||||
- **Mechanical relevance**: Hael is the emotional anchor that makes Sera's concealment sympathetic. Sera isn't hiding evidence to protect a criminal. She's hiding evidence to protect her friend's partner.
|
||||
- **History**: Naia teaches station kids, represents the community Sera embedded herself in. They drink together after Naia's school day and Sera's shift, swap complaints about work, talk about Naia's relationship with Kael. Naia is the reason Sova feels like home instead of just another posting.
|
||||
- **Current tension**: Naia confided in Sera about Kael's behavior (late nights, evasion, unexplained stress). This is what triggered Sera's unofficial compliance check. Sera now knows more about Kael's situation than Naia does — and can't share it without destroying everything.
|
||||
- **Mechanical relevance**: Naia is the emotional anchor that makes Sera's concealment sympathetic. Sera isn't hiding evidence to protect a criminal. She's hiding evidence to protect her friend's partner.
|
||||
|
||||
**Relationship 3: Torek Lintar** (avoidance target, unintentional connection)
|
||||
- **Type**: Avoidance. Sera doesn't have a relationship with Torek — she has an anti-relationship.
|
||||
@@ -73,12 +73,12 @@ Hael is Sera's closest friend on the station. When Hael started confiding worry
|
||||
|
||||
**What pushes Sera toward breaking**:
|
||||
- The detective asking specifically about manifest discrepancies (too close to what Sera already knows)
|
||||
- Hael's worry escalating into direct action (if Hael confronts Kael, or asks the detective for help)
|
||||
- Naia's worry escalating into direct action (if Naia confronts Kael, or asks the detective for help)
|
||||
- Torek behaving in ways that make Sera's concealment feel more dangerous (if Torek's spending becomes even more visible, the investigation will reach him, and Sera's connection becomes harder to deny)
|
||||
|
||||
**What breaks Sera**:
|
||||
- Direct confrontation from the detective with evidence of the concealment (Sera can't lie to the detective's face — she'll deflect, but she won't fabricate)
|
||||
- Hael being hurt by the consequences Sera was trying to prevent (if Kael is arrested and Hael blames Sera for not warning them)
|
||||
- Naia being hurt by the consequences Sera was trying to prevent (if Kael is arrested and Naia blames Sera for not warning them)
|
||||
- Institutional pressure from Commission (if a superior notices the compliance check was run but never filed)
|
||||
|
||||
---
|
||||
@@ -90,7 +90,7 @@ Hael is Sera's closest friend on the station. When Hael started confiding worry
|
||||
**12:00 - 13:00**: Lunch, usually at a vendor near the logistics hub
|
||||
**13:00 - 15:00**: Afternoon rounds or report filing at Commission kiosk
|
||||
**15:00 - 15:30**: Off-shift. Returns to residential pod briefly.
|
||||
**15:30 - 18:00**: Bar (The Last Shift). Sera is an early-evening regular. Meets Hael here most days. Occupies the same corner booth.
|
||||
**15:30 - 18:00**: Bar (The Last Shift). Sera is an early-evening regular. Meets Naia here most days. Occupies the same corner booth.
|
||||
**18:00 - 22:00**: Home or occasional return to bar for quieter late-evening drink.
|
||||
|
||||
**Routine deviations** (tells):
|
||||
@@ -106,7 +106,7 @@ Hael is Sera's closest friend on the station. When Hael started confiding worry
|
||||
**Knows** (KnowsDetails or Direct):
|
||||
- Manifest discrepancies tied to Kael Davan's shifts (unauthorized compliance check, 6 weeks ago)
|
||||
- Torek Lintar's inspection shifts correlate with manifest irregularities (pattern analysis from same check)
|
||||
- Hael is worried about Kael's behavior (direct confidence from Hael, multiple conversations)
|
||||
- Naia is worried about Kael's behavior (direct confidence from Naia, multiple conversations)
|
||||
- The Commission kiosk on Level 3 has diagnostic access to freight manifest systems (institutional knowledge — standard for her role)
|
||||
- The district's Commission presence is minimal (she's the only Commission employee in the district most days)
|
||||
- Detective's background (professional history, approach, institutional reputation — pre-existing relationship)
|
||||
@@ -125,9 +125,9 @@ Hael is Sera's closest friend on the station. When Hael started confiding worry
|
||||
|
||||
**Moderate** (D-024 thematic axis) — declining.
|
||||
|
||||
Sera was content. Sova was the calm posting she needed after the stressful border station. She had a routine, a friend (Hael), a social life at the bar, competent work that didn't demand too much. For her first 10 months, contentment was high.
|
||||
Sera was content. Sova was the calm posting she needed after the stressful border station. She had a routine, a friend (Naia), a social life at the bar, competent work that didn't demand too much. For her first 10 months, contentment was high.
|
||||
|
||||
Now it's eroding. The compliance check changed everything. Sera can't un-know what she found. Every evening at the bar is shadowed by the evidence she's concealing. Every conversation with Hael is a reminder of why she's concealing it. Every interaction with the detective is a test of how much longer she can sustain the concealment without being caught.
|
||||
Now it's eroding. The compliance check changed everything. Sera can't un-know what she found. Every evening at the bar is shadowed by the evidence she's concealing. Every conversation with Naia is a reminder of why she's concealing it. Every interaction with the detective is a test of how much longer she can sustain the concealment without being caught.
|
||||
|
||||
**Contentment trajectory**: Declining. Before the compliance check: high. After the check: moderate. After the detective arrives and starts asking questions: moderate-low and falling. Sera is experiencing the slow erosion of a life she built specifically to be calm — and she did it to herself.
|
||||
|
||||
@@ -137,7 +137,7 @@ Now it's eroding. The compliance check changed everything. Sera can't un-know wh
|
||||
|
||||
**Primary: Competent** — Sera is good at her job. She runs clean diagnostics, files thorough reports (when she files them), and understands Commission systems at a technical level most field techs don't bother with. This competence is what enabled the unofficial check — and what makes the concealment so damaging. She found the discrepancies because she's good. She's hiding them because she's human.
|
||||
|
||||
**Secondary: Loyal** — to people, not institutions. Sera joined the Commission because it was stable work with good benefits, not because she believes in regulatory perfection. Her loyalty to Hael outweighs her institutional obligation. This surprises even Sera — she thought she was a by-the-book person until she had to choose between the book and a friend.
|
||||
**Secondary: Loyal** — to people, not institutions. Sera joined the Commission because it was stable work with good benefits, not because she believes in regulatory perfection. Her loyalty to Naia outweighs her institutional obligation. This surprises even Sera — she thought she was a by-the-book person until she had to choose between the book and a friend.
|
||||
|
||||
**Tertiary: Controlled** — Sera manages her presentation carefully. She doesn't panic, doesn't raise her voice, doesn't show stress visibly. This control is professional training (Commission field techs deal with hostile communities regularly) and personal temperament. It makes her excellent at deflection — and makes the avoidance pattern (leaving when Torek arrives) more striking precisely because it breaks her usual composure.
|
||||
|
||||
@@ -149,14 +149,14 @@ Now it's eroding. The compliance check changed everything. Sera can't un-know wh
|
||||
|
||||
| Tell | Trigger | Observable To | Mechanical Flag |
|
||||
|------|---------|---------------|-----------------|
|
||||
| **Avoidance of Torek Lintar** | Torek enters the bar. Sera makes an excuse and leaves within 2-3 minutes. | Detective (pattern recognition across 3 occurrences), Hael (if paying attention), bar regulars | `behavior_flags: avoidance_pattern` |
|
||||
| **Avoidance of Torek Lintar** | Torek enters the bar. Sera makes an excuse and leaves within 2-3 minutes. | Detective (pattern recognition across 3 occurrences), Naia (if paying attention), bar regulars | `behavior_flags: avoidance_pattern` |
|
||||
| **Increased helpfulness** | Detective asks about the district. Sera volunteers extra information, background context, names and routines of regulars. | Detective (might read as genuine helpfulness OR overcompensation) | `behavior_flags: overcompensating` |
|
||||
| **Topic deflection on manifests** | Anyone mentions freight, manifests, compliance, or cargo irregularities. Sera changes the subject smoothly. | Detective (if tracking topic avoidances), Hael (might notice Sera steering away from Kael-adjacent topics) | `behavior_flags: topic_avoidance` |
|
||||
| **Topic deflection on manifests** | Anyone mentions freight, manifests, compliance, or cargo irregularities. Sera changes the subject smoothly. | Detective (if tracking topic avoidances), Naia (might notice Sera steering away from Kael-adjacent topics) | `behavior_flags: topic_avoidance` |
|
||||
| **Extended kiosk time** | Sera spends longer at the Commission kiosk than her duties require. Visible to hub workers. | Detective (if tracking Sera's routine), Voss or Maret (if observant about who's at the kiosk) | `tell_observed: extended_kiosk_access` |
|
||||
|
||||
**Tell progression** (detective's perspective):
|
||||
1. **Visit 1-2** (baseline): Sera is warm, informative, comfortable. A welcome familiar face. Detective monologue: "Good to see Sera. She always was the reliable one."
|
||||
2. **Visit 2-3** (background data): Sera mentions Hael as "a friend from the district." Hael joins them once. Sera and Hael have obvious genuine rapport. Detective notes Sera is socially connected — useful.
|
||||
2. **Visit 2-3** (background data): Sera mentions Naia as "a friend from the district." Naia joins them once. Sera and Naia have obvious genuine rapport. Detective notes Sera is socially connected — useful.
|
||||
3. **Visit 3** (first avoidance): Torek enters. Sera says "Early shift tomorrow." Leaves. Detective barely notices. Monologue: "Sera headed out. Long day, probably."
|
||||
4. **Visit 4** (second avoidance): Torek enters. Sera says "Headache. Going to lie down." Detective notes it but doesn't flag it. Monologue: "Sera left again. She's been tired lately."
|
||||
5. **Visit 5** (third avoidance — the pattern): Torek enters. Sera says "Need to check on something at the kiosk." Detective's training fires. Monologue: "That's the third time. Sera leaves when Torek arrives. Three different excuses. That's not coincidence."
|
||||
@@ -177,14 +177,14 @@ Now it's eroding. The compliance check changed everything. Sera can't un-know wh
|
||||
|
||||
## Backstory
|
||||
|
||||
Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commission maintained a regional office — lattice infrastructure was part of daily life, and the people who maintained it were respected, ordinary workers. Sera joined the Commission at 21 as a field technician trainee, graduated to full field tech at 23. Spent 6 years on various postings — mostly routine, one stressful border-system relay where unlicensed lattice modifications were endemic and the local population viewed Commission as an occupying force. That posting burned Sera out. She requested a transfer to a quiet logistics hub. Station Sova, Krenn System. Home territory. Routine calibration checks, minimal confrontation. For 10 months, it was exactly what she needed. Then Hael started talking about Kael, and Sera's competence made her curious, and her curiosity made her compromised.
|
||||
Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commission maintained a regional office — lattice infrastructure was part of daily life, and the people who maintained it were respected, ordinary workers. Sera joined the Commission at 21 as a field technician trainee, graduated to full field tech at 23. Spent 6 years on various postings — mostly routine, one stressful border-system relay where unlicensed lattice modifications were endemic and the local population viewed Commission as an occupying force. That posting burned Sera out. She requested a transfer to a quiet logistics hub. Station Sova, Krenn System. Home territory. Routine calibration checks, minimal confrontation. For 10 months, it was exactly what she needed. Then Naia started talking about Kael, and Sera's competence made her curious, and her curiosity made her compromised.
|
||||
|
||||
---
|
||||
|
||||
## Voice Sample
|
||||
|
||||
**Mood: Casual (baseline, detective interaction at bar)**
|
||||
- *"There you are. Grab a seat — Hael was here earlier, you just missed them. Lera's doing that thing with the grain spirit again. Don't ask, just trust me and order the ale."*
|
||||
- *"There you are. Grab a seat — Naia was here earlier, you just missed them. Lera's doing that thing with the grain spirit again. Don't ask, just trust me and order the ale."*
|
||||
|
||||
**Mood: Informative (sharing district knowledge)**
|
||||
- *"Voss runs the day shift at the hub. Tight schedule, doesn't like surprises. Maret does the freight scheduling — she's sharp, notices things. If you need a way into the hub's operations, Maret's the one who understands the paperwork."*
|
||||
@@ -195,7 +195,7 @@ Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commiss
|
||||
**Mood: Stressed (post-contradiction, detective pressing)**
|
||||
- *"I don't know what you're looking for. I told you everything I know about the district. If you're asking whether I'm hiding something — I'm a field tech, not an analyst. I maintain calibration equipment. That's my job."* [Defensive but not aggressive — Sera retreats into institutional role]
|
||||
|
||||
**Mood: Warm (to Hael, early game)**
|
||||
**Mood: Warm (to Naia, early game)**
|
||||
- *"You look tired. How are the kids doing with the new curriculum? No — sit. Let me get us something. You've been running all day."* [Genuine care, attentive, protective]
|
||||
|
||||
---
|
||||
@@ -236,21 +236,21 @@ Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commiss
|
||||
|
||||
## Triangle Roles
|
||||
|
||||
### Triangle 4: The Worried Partner (Hael - Kael - Sera)
|
||||
### Triangle 4: The Worried Partner (Naia - Kael - Sera)
|
||||
|
||||
**Sera's function**: The confidante who knows too much. Sera is the person Hael confides in. She's also the person who, because of her institutional access, turned that confidence into concrete knowledge she can't safely act on.
|
||||
**Sera's function**: The confidante who knows too much. Sera is the person Naia confides in. She's also the person who, because of her institutional access, turned that confidence into concrete knowledge she can't safely act on.
|
||||
|
||||
**Pressure**: Hael's worry is escalating. Every bar conversation where Hael mentions Kael's late nights or evasion tightens the vice on Sera. Sera can't tell Hael what she found (that would reveal the unofficial check and potentially endanger Hael further). She can't report it (that destroys Hael's life). She can't un-know it (competence doesn't have an undo function). Every interaction with Hael is Sera managing a conversation while hiding a time bomb.
|
||||
**Pressure**: Naia's worry is escalating. Every bar conversation where Naia mentions Kael's late nights or evasion tightens the vice on Sera. Sera can't tell Naia what she found (that would reveal the unofficial check and potentially endanger Naia further). She can't report it (that destroys Naia's life). She can't un-know it (competence doesn't have an undo function). Every interaction with Naia is Sera managing a conversation while hiding a time bomb.
|
||||
|
||||
**Player relevance**:
|
||||
- **Detective** (if Sera's friend): Hears about Hael through Sera. May eventually meet Hael directly. The detective who follows the Hael thread back to Kael's behavior follows it directly through Sera's concealment.
|
||||
- **Smuggler** (if Kael's friend): Knows why Kael is busy, knows Hael is worried, may see Sera and Hael together at the bar and think nothing of it. On replay, the smuggler player understands that Sera was the connective tissue between the detective's investigation and Kael's vulnerability.
|
||||
- **Detective** (if Sera's friend): Hears about Naia through Sera. May eventually meet Naia directly. The detective who follows the Naia thread back to Kael's behavior follows it directly through Sera's concealment.
|
||||
- **Smuggler** (if Kael's friend): Knows why Kael is busy, knows Naia is worried, may see Sera and Naia together at the bar and think nothing of it. On replay, the smuggler player understands that Sera was the connective tissue between the detective's investigation and Kael's vulnerability.
|
||||
|
||||
---
|
||||
|
||||
### Cross-Template Connections
|
||||
|
||||
**Sera has no formal triangle membership beyond Triangle 4.** Her significance is structural: she's the bridge between the detective's institutional world and the district's social fabric. She connects the investigation to the personal — Hael's worry to Kael's behavior to the manifest discrepancies to the ring's operations. Every thread passes through Sera, even though Sera herself isn't part of the conspiracy.
|
||||
**Sera has no formal triangle membership beyond Triangle 4.** Her significance is structural: she's the bridge between the detective's institutional world and the district's social fabric. She connects the investigation to the personal — Naia's worry to Kael's behavior to the manifest discrepancies to the ring's operations. Every thread passes through Sera, even though Sera herself isn't part of the conspiracy.
|
||||
|
||||
**Institutional bridge**: Sera is the only Commission employee who regularly socializes in the district. This makes her the detective's guide to a world the detective doesn't understand — and simultaneously makes her the person most positioned to conceal evidence from the detective.
|
||||
|
||||
@@ -258,13 +258,13 @@ Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commiss
|
||||
|
||||
## Secret
|
||||
|
||||
**What Sera is hiding**: Unreported evidence. Manifest discrepancies tied to Kael Davan's shifts, discovered through an unauthorized compliance check, concealed for approximately 6 weeks to protect Hael.
|
||||
**What Sera is hiding**: Unreported evidence. Manifest discrepancies tied to Kael Davan's shifts, discovered through an unauthorized compliance check, concealed for approximately 6 weeks to protect Naia.
|
||||
|
||||
**From whom**: Everyone. The detective (the person with the most right to know), Hael (who doesn't know Sera investigated Kael), Kael (who doesn't know he's been flagged in Commission systems), her own institution (which would view the unauthorized check and non-reporting as disciplinary offenses).
|
||||
**From whom**: Everyone. The detective (the person with the most right to know), Naia (who doesn't know Sera investigated Kael), Kael (who doesn't know he's been flagged in Commission systems), her own institution (which would view the unauthorized check and non-reporting as disciplinary offenses).
|
||||
|
||||
**Consequences if exposed**:
|
||||
- **Detective finds out**: Trust is shattered. Sera's help has been contaminated from the start. The detective can: use the evidence and report Sera (institutional response — Sera is reprimanded, possibly reassigned, the friendship is destroyed), use the evidence without reporting Sera (pragmatic — maintains the ally but the relationship is forever changed), or protect Sera and accept the information gap (loyal — but the detective's investigation is compromised). No clean option.
|
||||
- **Hael finds out**: Complicated devastation. Sera investigated Kael without asking Hael. Even though Sera's motive was protective, the unauthorized check feels like betrayal — Sera went behind Hael's back, used institutional access against Hael's partner, and then hid it. Hael learns (1) Kael is involved in something illegal, (2) Sera knew and didn't say, (3) Sera used Commission systems to investigate Hael's partner. The friendship survives only if Hael believes Sera's silence was protection, not self-interest.
|
||||
- **Naia finds out**: Complicated devastation. Sera investigated Kael without asking Naia. Even though Sera's motive was protective, the unauthorized check feels like betrayal — Sera went behind Naia's back, used institutional access against Naia's partner, and then hid it. Naia learns (1) Kael is involved in something illegal, (2) Sera knew and didn't say, (3) Sera used Commission systems to investigate Naia's partner. The friendship survives only if Naia believes Sera's silence was protection, not self-interest.
|
||||
- **Ring finds out**: Sera becomes a target. A Commission employee sitting on evidence is either an asset to recruit or a threat to eliminate. If Devra or Nils learn that a Commission tech has flagged their manifests, Sera is in physical danger.
|
||||
- **Commission finds out**: Disciplinary action. The unauthorized compliance check is a protocol violation. The non-reporting is dereliction. At minimum, Sera is reprimanded and transferred. At maximum, she's suspended and investigated herself.
|
||||
|
||||
@@ -276,7 +276,7 @@ Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commiss
|
||||
|
||||
**Timing**: 0-10 minutes (detective's first bar visits)
|
||||
|
||||
**Observable behavior**: Sera is warm, competent, available. Waves the detective over to her corner booth. Shares district background freely — who the regulars are, what shifts run when, which maintenance corridors are shortcuts. Introduces Hael on the second visit. Orders the detective a drink. Feels like the one genuine relationship in an unfamiliar place.
|
||||
**Observable behavior**: Sera is warm, competent, available. Waves the detective over to her corner booth. Shares district background freely — who the regulars are, what shifts run when, which maintenance corridors are shortcuts. Introduces Naia on the second visit. Orders the detective a drink. Feels like the one genuine relationship in an unfamiliar place.
|
||||
|
||||
**Monologue (detective)**: *"Good to see Sera. She always was the reliable one. At least someone in this district speaks my language."*
|
||||
|
||||
@@ -292,7 +292,7 @@ Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commiss
|
||||
|
||||
**Timing**: 10-15 minutes
|
||||
|
||||
**Observable behavior**: Sera mentions Hael. "A friend from the district — you'd like them. They teach the station kids." Hael joins them at the bar once. Sera and Hael have easy, genuine rapport — inside jokes, comfortable silences, the shorthand of actual friendship. Sera also mentions running compliance checks as part of her routine. "It's mostly calibration. Boring stuff. But it keeps the systems honest."
|
||||
**Observable behavior**: Sera mentions Naia. "A friend from the district — you'd like them. They teach the station kids." Naia joins them at the bar once. Sera and Naia have easy, genuine rapport — inside jokes, comfortable silences, the shorthand of actual friendship. Sera also mentions running compliance checks as part of her routine. "It's mostly calibration. Boring stuff. But it keeps the systems honest."
|
||||
|
||||
**Monologue (detective)**: *"Sera's connected here. Good. She knows the locals. And she's got diagnostic access — useful if I need to cross-reference anything."*
|
||||
|
||||
@@ -358,13 +358,13 @@ Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commiss
|
||||
**Monologue (detective)**: *"Still the same Sera. Still reliable. Shares everything I ask about — names, routines, connections. ...Everything except whatever she's not telling me about Torek. What are you protecting, Sera?"*
|
||||
|
||||
**Dialogue options**:
|
||||
- **Path A (trust test)**: Detective confronts Sera directly, not about Torek but about the concealment itself: *"Sera, I've known you long enough to know when you're holding something back. What did you find?"* Sera may confess: the unauthorized compliance check, the manifest discrepancies, Hael, all of it. `RelationshipState` remains `PersonOfInterest` (still a problem), but tone shifts to conflicted understanding. Player gains critical evidence. Must decide what to do with Sera.
|
||||
- **Path A (trust test)**: Detective confronts Sera directly, not about Torek but about the concealment itself: *"Sera, I've known you long enough to know when you're holding something back. What did you find?"* Sera may confess: the unauthorized compliance check, the manifest discrepancies, Naia, all of it. `RelationshipState` remains `PersonOfInterest` (still a problem), but tone shifts to conflicted understanding. Player gains critical evidence. Must decide what to do with Sera.
|
||||
- **Path B (institutional)**: Detective reports Sera's suspicious behavior through Commission channels: *"I need to flag a potential conflict of interest with a local Commission employee."* Sera is formally investigated. `RelationshipState` → `Hostile`. Sera is reprimanded, possibly reassigned. The detective loses their only local ally. The evidence is obtained through institutional channels — slower, but clean.
|
||||
- **Path C (observation)**: Detective doesn't confront, just watches. Tracks Sera's movements, cross-references her kiosk access times, builds a parallel case. `RelationshipState` remains `PersonOfInterest`. Eventually, the evidence chain leads to the same place — but the detective has more leverage when they finally ask.
|
||||
|
||||
**Color**: Amber (paths A/C) or Red (path B).
|
||||
|
||||
**Emotional payload**: Every piece of helpful information Sera shared in Phase 1 is now recontextualized. Was she being genuinely helpful, or was she steering the detective away from the manifests? Was introducing Hael friendship, or preemptive framing? The trust from the first 10 minutes is **retroactively contaminated**. That's the FRIEND arc — it doesn't just change the present, it changes the past.
|
||||
**Emotional payload**: Every piece of helpful information Sera shared in Phase 1 is now recontextualized. Was she being genuinely helpful, or was she steering the detective away from the manifests? Was introducing Naia friendship, or preemptive framing? The trust from the first 10 minutes is **retroactively contaminated**. That's the FRIEND arc — it doesn't just change the present, it changes the past.
|
||||
|
||||
---
|
||||
|
||||
@@ -372,7 +372,7 @@ Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commiss
|
||||
|
||||
**~70-100 authored lines total** (no generation expansion):
|
||||
|
||||
- **25-35 dialogue lines**: Bar greetings (5), district orientation/background sharing (8-10), Hael-related conversation (4-5), institutional/Commission discussion (3-4), deflection/evasion about Torek (5-6), confrontation responses (3-5)
|
||||
- **25-35 dialogue lines**: Bar greetings (5), district orientation/background sharing (8-10), Naia-related conversation (4-5), institutional/Commission discussion (3-4), deflection/evasion about Torek (5-6), confrontation responses (3-5)
|
||||
- **15-20 trust-gated lines**: Peer-tier (institutional background, compliance schedules, Commission access details), secret-tier (if detective earns deep trust pre-contradiction — Sera's genuine feelings about the concealment, hints about what she found)
|
||||
- **5-8 unprompted lines**: Sera volunteers district background (early), introduces topics or people (mid), steers conversations away from sensitive areas (late)
|
||||
- **10-15 monologue lines per character**:
|
||||
@@ -387,7 +387,7 @@ Born on Krenn Prime surface. Grew up in a mid-sized settlement where the Commiss
|
||||
|
||||
- **Sera's voice**: Competent, slightly wry, conversational but precise. Uses complete sentences. Doesn't waste words but isn't as terse as Kael — Sera explains things, provides context, frames information. Professional warmth, not casual warmth. When deflecting, Sera doesn't go silent — she redirects. The redirect itself is the tell.
|
||||
- **The avoidance pattern** must be established through THREE observed departures, not one. The detective's training recognizes patterns, not anomalies. One departure is nothing. Two is coincidence. Three is data. The pacing must allow all three departures within the vertical slice timeframe.
|
||||
- **Hael references**: Sera mentions Hael naturally, warmly, frequently. "Hael says the kids are doing better with the new curriculum." "Hael's worried about something at home — didn't want to pry." This establishes the friendship's depth before it becomes load-bearing.
|
||||
- **Naia references**: Sera mentions Naia naturally, warmly, frequently. "Naia says the kids are doing better with the new curriculum." "Naia's worried about something at home — didn't want to pry." This establishes the friendship's depth before it becomes load-bearing.
|
||||
- **Commission background**: Sera shares institutional details casually — compliance schedules, liaison rotation, kiosk access patterns. This is helpful (gives the detective real information) AND establishes Sera's access level (the detective later realizes Sera COULD have found what she found).
|
||||
- **Deflection dialogue** (post-contradiction): Sera doesn't lie outright. She deflects: "He's just loud." "I don't like that crowd." "It's nothing." The deflections are plausible. The detective's training is what elevates them from excuses to tells.
|
||||
- **Dual-lens discipline**: Every Sera line must work for BOTH the detective (who sees a trusted friend and institutional ally) AND the smuggler (who sees a Commission employee in the social landscape). The same sentence lands differently per character. When Sera says "I ran the usual calibration checks today," the detective hears routine work. The smuggler hears "Commission is still active in the district."
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Sess
|
||||
# Sess Kolvur
|
||||
|
||||
**Tier 3 NPC** | The Last Shift (Bar) | Flat
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Tav
|
||||
# Tav Merik
|
||||
|
||||
**Tier 3 NPC** | Smuggling Ring + Logistics Hub | Flat
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Voss
|
||||
# Arvo Voss
|
||||
|
||||
**Tier 2 NPC** | Logistics Hub (The Terminal) | Mundane
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
## Core Identity
|
||||
|
||||
**Name**: Voss
|
||||
**Name**: Arvo Voss
|
||||
**Age**: 46
|
||||
**Role**: Shift supervisor, Sova Transit District Logistics Hub
|
||||
**System Origin**: Krenn System, Station Sova (born and raised)
|
||||
|
||||
@@ -54,7 +54,7 @@ The Commission's presence in Krenn is intermittent by design: established enough
|
||||
|
||||
**Cultural Profile:** Working-class pragmatic. Values reliability, minding your business, and not asking questions that aren't your concern.
|
||||
|
||||
**Naming Conventions:** Compact, consonant-heavy, first-name-primary in social contexts. Surnames used formally or with authority figures. Examples: Kael, Voss, Lera, Torek, Drin, Maret, Hael, Sera, Nils, Kosse, Naia.
|
||||
**Naming Conventions:** Compact, consonant-heavy, first-name-primary in social contexts. Surnames used formally or with authority figures. Examples: Kael, Voss, Lera, Torek, Drin, Maret, Naia, Sera, Nils, Kosse, Naia.
|
||||
|
||||
**Social Texture:**
|
||||
- First names signal peer relationships; surname usage signals hierarchy
|
||||
|
||||
@@ -173,7 +173,7 @@ This is why the community tolerates the ring: everyone benefits indirectly. The
|
||||
**Population Distribution (D-029 Entanglement Ratio: 30/50/20):**
|
||||
- **Flat NPCs (3, ~18%):** [Drin](../npcs/drin.md), [Sess](../npcs/sess.md), [Olin](../npcs/olin.md) — routines, greetings, atmosphere
|
||||
- **Triangle NPCs, Mundane (7, ~41%):** [Voss](../npcs/voss.md), [Maret Korr](../npcs/maret-korr.md), [Torek Lintar](../npcs/torek-lintar.md), [Lera Sessik](../npcs/lera-sessik.md), [Harek](../npcs/harek.md), [Resha](../npcs/resha.md), [Sera Venn](../npcs/sera-venn.md)
|
||||
- **Triangle NPCs, Entangled (7, ~41%):** [Kael Davan](../npcs/kael-davan.md), [Devra](../npcs/devra.md), [Renn](../npcs/renn.md), [Pell](../npcs/pell.md), [Sabel](../npcs/sabel.md), [Tav](../npcs/tav.md), [Hael](../npcs/hael.md) (referenced)
|
||||
- **Triangle NPCs, Entangled (7, ~41%):** [Kael Davan](../npcs/kael-davan.md), [Devra](../npcs/devra.md), [Renn](../npcs/renn.md), [Pell](../npcs/pell.md), [Sabel](../npcs/sabel.md), [Tav](../npcs/tav.md), [Naia Tamm](../npcs/naia-tamm.md) (referenced)
|
||||
|
||||
**The Five Triangles:** See [NPC Index](../npcs/index.md) for full triangle diagram.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user