Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions db/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,12 @@ VALUES
('modifier', 'clone any of your own cards, and give to someone else', '', 0, CURRENT_TIMESTAMP, TRUE, 'clone'),
('modifier', 'transfer any of your own cards to another player', '', 0, CURRENT_TIMESTAMP, TRUE, 'transfer'),
('prompt', 'name 10 green things', NULL, 0, CURRENT_TIMESTAMP, TRUE, NULL),
('prompt', 'name 10 red things', NULL, 0, CURRENT_TIMESTAMP, TRUE, NULL),
('prompt', 'name 10 yellow things', NULL, 0, CURRENT_TIMESTAMP, TRUE, NULL),
('prompt', 'name 10 blue things', NULL, 0, CURRENT_TIMESTAMP, TRUE, NULL),
('prompt', 'name 10 countries', NULL, 0, CURRENT_TIMESTAMP, TRUE, NULL),
('prompt', 'name 10 cheeses', NULL, 0, CURRENT_TIMESTAMP, TRUE, NULL),
('prompt', 'name 10 drinks', NULL, 0, CURRENT_TIMESTAMP, TRUE, NULL),
('prompt', 'spell your name backwards', NULL, 0, CURRENT_TIMESTAMP, TRUE, NULL),
('prompt', 'name 10 animals in alphabetical order', NULL, 0, CURRENT_TIMESTAMP, TRUE, NULL),
(
Expand Down
4 changes: 2 additions & 2 deletions static/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ <h3>rules</h3>
<ul class="help-list">
<li>Players start with 20 points.</li>
<li>Spin on your turn to acquire rules for yourself.</li>
<li>Accuse other players of breaking their rules.</li>
<li>Host decides point penalties.</li>
<li>Get rid of rules by completing prompts or accusing other players of breaking theirs.</li>
<li>Host decides prompt outcomes and rule accusations.</li>
</ul>
</div>
<form class="stack" action="/create" method="POST">
Expand Down
Loading