-
Notifications
You must be signed in to change notification settings - Fork 93
/
rules.sql
30 lines (29 loc) · 2.58 KB
/
rules.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
select * FROM sqlpage_shell;
SELECT 'steps' as component,
1 as counter,
'cyan' as color,
'Game rules' as title;
SELECT 'Create game' as title,
'plus' as icon,
'Create a new game from the home page.' as description;
SELECT 'Add players' as title,
'user-plus' as icon,
'Add players by their name, and send them their own unique game URL.' as description;
SELECT 'Answer questions' as title,
'Answer trivia questions to get points. Don''t be fooled by the imposter.' as description,
'help-hexagon' as icon;
SELECT 'Trick the others' as title,
'When you become the imposter, try to trick the others into giving wrong answers.' as description,
'help-hexagon' as icon;
SELECT 'The smartest wins' as title,
'In the end, the game counts your points. You win if you tricked the others and did not get tricked.' as description,
'brain' as icon;
select 'card' as component, 1 as columns;
SELECT 'Objective' as title, 'As a team of genuine employees, your goal is to make accurate decisions based on challenging questions. The infiltrator''s objective is to sway you toward incorrect answers.' as description;
SELECT 'Gameplay' as title, 'Each turn, a question will be presented to the group. One player, secretly assigned as the infiltrator, will receive a specific wrong answer. They must cunningly lead others astray, while you must collaborate and deduce the correct answer. Every player will be the infiltrator once during the game.' as description;
SELECT 'Discussion Phase' as title, 'Engage in lively debates and exchange ideas to uncover the truth. Analyze arguments, question motives, and use your critical thinking skills to navigate the murky waters of corporate deception.' as description;
SELECT 'Hidden Votes' as title, 'After the discussion phase, all players simultaneously submit their individual answers privately, without revealing them to others. Votes will not be revealed until the end of the game.' as description;
SELECT 'Scoring System' as title, 'Points are awarded based on the proximity of each player''s answer to the true answer.
If a player''s answer is closer to the true answer than to the wrong answer provided by the saboteur, they earn one point.
Conversely, if a player''s answer is closer to the wrong answer, they inadvertently contribute one point to the saboteur''s score.' as description;
SELECT 'Continuing Gameplay' as title, 'The game progresses with new questions and role assignments, allowing each player to take turns as the infiltrator. The player with the highest score at the end of the predetermined number of rounds wins the game.' as description;