2024-11-07 10:56:53 +00:00
|
|
|
# WheelOfFortune
|
|
|
|
|
|
2025-01-05 10:32:57 +00:00
|
|
|
## 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"
|
|
|
|
|
}
|
|
|
|
|
```
|