-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatastore.js
72 lines (72 loc) · 1.7 KB
/
datastore.js
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const STORE = [
{
question: "1. Who scores points by lapping members of the opposing team?",
answers: [
'Jammo',
'Jammer',
'Boss',
'Madam'
],
correctAnswer: 'Jammer',
},
{
question: "2. What shape is on the jammer’s helmet?",
answers: [
'square',
'star',
'lightning bolt',
'heart'
],
correctAnswer: 'star',
},
{
question: "3. Which of the following is a legal body part to hit another player with?",
answers: [
'ELbow',
'Knee',
'Foot',
'Hip'
],
correctAnswer: 'Hip',
},
{
question: "4. How many players from the same team can be on the track at the same time?",
answers: [
'1',
'10',
'5',
'6'
],
correctAnswer: '5',
},
{
question: "5. What is a real derby move?",
answers: [
'The slap your mama',
'The apex jump',
'The shank',
'The ballerina ball jerk'
],
correctAnswer: 'The apex jump',
},
{
question: "6. What or who is a pivot?",
answers: [
'When a skater turns around *super* fast',
'The person who starts on the opposing team but switches sides halfway through',
'A foul',
'A blocker who can potentially become a jammer during a jam'
],
correctAnswer: 'A blocker who can potentially become a jammer during a jam',
},
{
question: "7. Who can play derby?",
answers: [
'Men',
'Women',
'Women with dark secrets',
'Everyone!'
],
correctAnswer: 'Everyone!',
},
]