Skip to content

Commit

Permalink
Refine docs a little
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxWilson committed Dec 5, 2023
1 parent e6057e4 commit d12aaeb
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions docs/DFRPG_Chargen.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,20 @@ stateDiagram-v2
Save: Save character
Save --> [*]
}
state Gameplay {
[*] --> KillMonsters
Explore --> KillMonsters
Explore --> Rewards
Explore --> Traps
Explore --> NPCs
NPCs --> Explore
Traps --> Rewards
KillMonsters --> Rewards
Rewards --> Explore
Explore --> [*]
Rewards: Get treasure, gain XP
KillMonsters: Kill monsters (or parlay, etc.)
}
state "Advancement" as Advancement {
Save2: Save character2
[*] --> AddToTemplate
Expand All @@ -38,8 +52,15 @@ stateDiagram-v2
SaveAgain: Save changes
BuyMoreEquipment: Spend cash, buy more stuff
}
SaveOnExit: Save before exiting?
state if_SaveGame <<choice>>
[*] --> Chargen
Chargen --> Advancement
Advancement --> Advancement
Advancement --> [*]
Chargen --> Gameplay
Gameplay --> SaveOnExit
SaveOnExit --> if_SaveGame
if_SaveGame --> [*] : Quit without saving
if_SaveGame --> SaveAndQuit : Save
SaveAndQuit --> [*]
Gameplay --> Advancement
Advancement --> Gameplay
```

0 comments on commit d12aaeb

Please sign in to comment.