Skip to content

Commit

Permalink
feat: main story graph/flowchart
Browse files Browse the repository at this point in the history
  • Loading branch information
qthequartermasterman committed Apr 29, 2024
1 parent 0be5ff7 commit a55857d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
28 changes: 28 additions & 0 deletions docs/Story/outline.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Fallout: Houston Outline

## Quest Diagram

``` mermaid
flowchart LR
subgraph prologue["Prologue: Dawn of Tranquility"]
P1[Main Quest: Lunar Conspiracy Unveiled]
end
subgraph act1["Act 1: Rising Tensions"]
A1[Main Quest: Lost in the Bayou];
A2[Main Quest: Diplomatic Relations];
A3[Main Quest: Pirate's Plunder];
A4[Main Quest: Lone Star Ambitions];
A5[Main Quest: Visions of Betrayal];
A6[Main Quest: Unveiling the Conspiracy];
A1 --> A2;
A2 --> A3;
A2 --> A4;
A3 --> A5;
A4 --> A5;
A5 --> A6;
end
subgraph act2["Act 2: The Faction Game"]
end
subgraph act3["Act 3: The Battle for the Spaceport"]
end
prologue --> act1 --> act2 --> act3;
```

## Prologue: Dawn of Tranquility

### Plot Beats:
Expand Down
8 changes: 6 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ markdown_extensions:
permalink: true
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
Expand All @@ -121,7 +125,7 @@ plugins:
- autolinks

hooks:
- render_map/auto_populate/auto_populate_hooks.py
# - render_map/auto_populate/auto_populate_hooks.py
- render_map/plugin_hooks.py

extra:
Expand Down

0 comments on commit a55857d

Please sign in to comment.