27 lines
599 B
Markdown
27 lines
599 B
Markdown
# WheelOfFortune
|
|
|
|
## a webgame to play wheel of fortune with friends
|
|
|
|
when creating puzzles make sure there are no words greater than 12 characters.
|
|
make sure you specify 4 slots on the answer property in array format like so:
|
|
|
|
```json
|
|
{
|
|
"given": ["a", "b", "r"],
|
|
"answer": ["", "Andy and", "the Backs", ""],
|
|
"category": "alternative names"
|
|
}
|
|
```
|
|
not doing this will give you an error.
|
|
|
|
you can see the format in puzzles.json
|
|
|
|
if you have a one line puzzle you can shorten it:
|
|
|
|
```json
|
|
{
|
|
"given": ["a", "b", "r"],
|
|
"answer": "Amerimutt",
|
|
"category": "alternative names"
|
|
}
|
|
``` |