a webgame to play wheel of fortune with friends
sounds | ||
tests | ||
.eslintrc.js | ||
.gitignore | ||
arrow-down-bold.png | ||
assignedNames.json | ||
clipboard.svg | ||
clipboardCheckmark.svg | ||
index.html | ||
LICENSE | ||
mflx.min.css | ||
package-lock.json | ||
package.json | ||
puzzles2.json | ||
puzzles.json | ||
README.md | ||
server.js | ||
thingstotest.txt |
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:
{
"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:
{
"given": ["a", "b", "r"],
"answer": "Amerimutt",
"category": "alternative names"
}