about.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <div>
  2. <div class="page-header">
  3. <h1>About</h1>
  4. </div>
  5. <div class="row">
  6. <div class="span10">
  7. <h2>Taboo</h2>
  8. <p>
  9. Taboo is a party game for around 4 to 10 people split into 2 teams. Each
  10. round, a player from a team becomes the <em>giver</em> and the rest of the
  11. team become <em>guessers</em>. The opposing team act as <em>monitors</em>.
  12. </p>
  13. <p>
  14. The <em>giver</em> is given a card containing a word and 5 taboo words. The
  15. giver must somehow tell the <em>guessers</em> about the word without mentioning
  16. the word itself or any of the 5 taboo words. The <em>monitors</em> act as
  17. judges to see if any of the words said are not allowed.
  18. </p>
  19. <p>
  20. If a guesser gets the word right, the team earns a point. If the giver says
  21. any taboo word, the team loses a point. The giver may also choose to pass
  22. and the team also loses a point. The giver is then given another card and
  23. this continues until the round time runs out.
  24. </p>
  25. <h3>Additional notes</h3>
  26. <p>
  27. When there are enough players, the giver is announced and he can start the
  28. game by pressing the Start button. Normally, taboo rounds are 1 minute long,
  29. but we extend it to 2 minutes because of the time it takes to type things.
  30. </p>
  31. <p>
  32. The system can rudimentarily act as a monitor itself. If the giver types out
  33. any of the taboo words verbatim, the system immediately calls taboo on those.
  34. It can also check if the word was guessed correctly assuming it was spelled
  35. correctly. For all other cases, we will rely on the monitors and the giver
  36. to act in good faith.
  37. </p>
  38. <p>
  39. To facilitate faster playing, there are some command you can just type in:
  40. </p>
  41. <ul>
  42. <li><code>/s</code> - Start the round</li>
  43. <li><code>/p</code> - Pass</li>
  44. <li><code>/c</code> - Correct (someone got the word)</li>
  45. <li><code>/t</code> - Taboo</li>
  46. </ul>
  47. </div>
  48. <div class="span4" id="main">
  49. <h2>What is this?</h2>
  50. <p>
  51. Hi! This is just a side project I made where you can play Taboo online.
  52. I liked playing it with my friends during our Christmas party and I wanted
  53. to play a bit more.
  54. </p>
  55. <p>
  56. Feature-wise, it's a bit sparse. There's no score tracking beyond a single
  57. round, but it should at least have the core game mechanics ok. UI/UX could
  58. also use a lot of work. I'm also leaving the prospect of adding more games
  59. open. Like maybe Pinoy Henyo or whatever.
  60. </p>
  61. <p>
  62. There aren't that many words yet, and I'd greatly appreciate contributing
  63. some for the game. There's also an API for accessing the word list in case
  64. you want to build your own Taboo-like thing. <code>GET /cards</code> should
  65. give you the entire card list, while <code>GET /cards/random</code> will
  66. give you a random card each time.
  67. </p>
  68. </div>
  69. </div>
  70. </div>