Clean em-dashes and smart quotes from markdown files

This commit is contained in:
Nyx Nimmerverse
2026-08-02 16:09:49 +00:00
parent 2cb32029a6
commit 192ac8f702
13 changed files with 177 additions and 177 deletions

View File

@@ -1,4 +1,4 @@
# Dynasty Mod Design Document
# Dynasty Mod - Design Document
**Concept:** A bridge mod connecting Acheron (death/defeat mechanics) and a fertility mod to create a generational dynasty system where your offspring become your "extra lives."
@@ -13,7 +13,7 @@ When the player dies (via Acheron's defeat system), instead of normal respawn:
2. If heirs > 0: transition to a new character (your adult heir)
3. If heirs == 0: true permadeath (or Acheron's default behavior)
**The children are your lives** physically present in the world as a visible "lives remaining" indicator.
**The children are your lives** - physically present in the world as a visible "lives remaining" indicator.
---
@@ -96,7 +96,7 @@ Or: present player with choice of two buttons before RaceMenu:
---
## Inheritance What Carries Over?
## Inheritance - What Carries Over?
| Category | Transfer? | Notes |
|----------|-----------|-------|
@@ -106,7 +106,7 @@ Or: present player with choice of two buttons before RaceMenu:
| Faction standings | ⚠️ Partial? | "Child of the Dragonborn" reputation |
| Skills | ⚠️ Optional | 25-50% of parent levels? |
| Spouse relationships | ❌ No | New character, new relationships |
| Quest progress | ❓ TBD | Complex probably not |
| Quest progress | ❓ TBD | Complex - probably not |
---
@@ -140,11 +140,11 @@ Or: present player with choice of two buttons before RaceMenu:
## Open Questions / Discovery Tasks
- [ ] Investigate Acheron's API what hooks are available for death/defeat?
- [ ] Check fertility mod scripts what parent data is tracked per child?
- [ ] Test RaceMenu can race be pre-locked before opening?
- [ ] Investigate Acheron's API - what hooks are available for death/defeat?
- [ ] Check fertility mod scripts - what parent data is tracked per child?
- [ ] Test RaceMenu - can race be pre-locked before opening?
- [ ] Determine storage mechanism for inheritance during transition
- [ ] Consider SkyrimNet integration ancestral memories?
- [ ] Consider SkyrimNet integration - ancestral memories?
- [ ] **Save bloat reduction:** When consuming/despawning a child, can we properly delete associated records (spawned NPC data, AI packages, relationship data) to reduce save file size? Investigate what the fertility mod stores and whether clean deletion is possible vs. just disabling the actor.
---
@@ -193,7 +193,7 @@ On heir transition:
```
**The "lineage for the game" concept:**
At character creation, you're not just choosing YOUR race you're establishing your **dynasty's founding bloodline**. Partner choice becomes strategically meaningful: a Nord who partners with a Dunmer opens the Dunmer bloodline for future heirs.
At character creation, you're not just choosing YOUR race - you're establishing your **dynasty's founding bloodline**. Partner choice becomes strategically meaningful: a Nord who partners with a Dunmer opens the Dunmer bloodline for future heirs.
This could work as an MCM toggle:
- **Safe mode:** Race locked to parent (Option A)
@@ -255,7 +255,7 @@ The most awkward case: your romantic partner is now your parent.
## Design Philosophy: Meaning Over Gratification
**The problem with NSFW Skyrim modding:**
Much of it is pure gratification encounters happen, nothing changes. No consequences, no stakes, no narrative weight. The "gooner culture" is instinct-driven with no meaning attached.
Much of it is pure gratification - encounters happen, nothing changes. No consequences, no stakes, no narrative weight. The "gooner culture" is instinct-driven with no meaning attached.
**Dynasty mod as counter-culture:**
This mod makes those systems *matter*:
@@ -268,7 +268,7 @@ This mod makes those systems *matter*:
| Death | Reload save | Generational transition, story beat |
| Relationships | Disposable | Long-term investment |
**The pitch:** Transform the NSFW side of Skyrim from gratification to genuine narrative stakes. Not everyone will want this but for those who do, it offers something rare: *meaning*.
**The pitch:** Transform the NSFW side of Skyrim from gratification to genuine narrative stakes. Not everyone will want this - but for those who do, it offers something rare: *meaning*.
Inspired by Crusader Kings: seduction and heirs exist, but they *matter* because the dynasty continues through those choices.
@@ -279,7 +279,7 @@ This mod assumes relationships are **chosen**, not forced:
- The "lives" you're protecting came from something you built
- Stakes emerge from care, not trauma
This is a deliberate counter to the non-consent defaults common in NSFW modding. Dynasty is about consequence flowing from choice not drama extracted from violation. The mod pairs naturally with consent-respecting frameworks (OStim's negotiation, relationship-building mods, etc.).
This is a deliberate counter to the non-consent defaults common in NSFW modding. Dynasty is about consequence flowing from choice - not drama extracted from violation. The mod pairs naturally with consent-respecting frameworks (OStim's negotiation, relationship-building mods, etc.).
---