diff options
| author | tradam <git.tradam.fyi> | 2021-08-22 16:42:14 -0400 |
|---|---|---|
| committer | tradam <git.tradam.fyi> | 2021-08-22 16:42:14 -0400 |
| commit | 27f3355ab6e0d69fb379b6d0a9812982162dc77a (patch) | |
| tree | 1595296f74509ee01ac0bffdebd74579c06d49ab | |
| parent | a808e00b09ea1b3993fb809a951e104206c63c8a (diff) | |
| download | Plore-Tabletop-Game-27f3355ab6e0d69fb379b6d0a9812982162dc77a.tar.gz Plore-Tabletop-Game-27f3355ab6e0d69fb379b6d0a9812982162dc77a.zip | |
.
| -rw-r--r-- | src/SUMMARY.md | 1 | ||||
| -rw-r--r-- | src/checks.mdown | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 52a4f15..716db2f 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -8,6 +8,7 @@ - [Spellcasting]() - [Running The Game]() + - [Checks](checks.mdown) - [Combat](./combat.mdown) - [Social]() - [Bartering]() diff --git a/src/checks.mdown b/src/checks.mdown new file mode 100644 index 0000000..145cf05 --- /dev/null +++ b/src/checks.mdown @@ -0,0 +1,26 @@ +# Resolving Checks + +Generally we have 3 different numbers that we could use: +- Card Draw +- Stats +- Dice Roll + +Here are some ways we can do that: + +### Stat into card into dice + +Stat is how many cards you draw, the highest card number you draw is how many dice your roll. +This system seems too multi-stepped and complex. + +### Stat into cards diceless variant 2 + +Stat is how many cards you draw. You can choose which card you want to use for your chosen ability. +Could be an interesting idea, you can have something buffed by an odd number for example so if you can draw something odd then it will be strengthened. + +### Hand of cards + +Players have some amount of cards in their hand. They can then play these cards toward abilities. +Gives interesting implications for users building the deck, making descisions between what abilities are better. +Issues: +- would need to determine how to resolve card draw and hand size. +- need to determine how stats play a role |
