-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPokemon (Basic).json
More file actions
118 lines (118 loc) · 3.07 KB
/
Copy pathPokemon (Basic).json
File metadata and controls
118 lines (118 loc) · 3.07 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"title": "Pokémon Basics Quiz",
"defaultTimeLimitSeconds": 20,
"questions": [
{
"id": "q1",
"text": "Which Pokémon is the mascot of the franchise?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Pikachu" },
{ "id": "b", "label": "Charmander" }
],
"correctOptionIds": ["a"]
},
{
"id": "q2",
"text": "Which type is Bulbasaur?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Fire" },
{ "id": "b", "label": "Grass/Poison" }
],
"correctOptionIds": ["b"]
},
{
"id": "q3",
"text": "Which Pokémon evolves into Charizard?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Charmander" },
{ "id": "b", "label": "Squirtle" },
{ "id": "c", "label": "Bulbasaur" }
],
"correctOptionIds": ["a"]
},
{
"id": "q4",
"text": "Which Pokémon is known for sleeping a lot?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Snorlax" },
{ "id": "b", "label": "Machop" }
],
"correctOptionIds": ["a"]
},
{
"id": "q5",
"text": "Which Pokémon is a water type?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Squirtle" },
{ "id": "b", "label": "Charmander" },
{ "id": "c", "label": "Pidgey" }
],
"correctOptionIds": ["a"]
},
{
"id": "q6",
"text": "Which item is used to catch Pokémon?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Potion" },
{ "id": "b", "label": "Poké Ball" }
],
"correctOptionIds": ["b"]
},
{
"id": "q7",
"text": "Which Pokémon is known for electricity?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Pikachu" },
{ "id": "b", "label": "Geodude" }
],
"correctOptionIds": ["a"]
},
{
"id": "q8",
"text": "Which Pokémon evolves into Butterfree?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Caterpie" },
{ "id": "b", "label": "Weedle" }
],
"correctOptionIds": ["a"]
},
{
"id": "q9",
"text": "Which Pokémon is a flying type?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Pidgey" },
{ "id": "b", "label": "Diglett" }
],
"correctOptionIds": ["a"]
},
{
"id": "q10",
"text": "Which Pokémon is known for its singing?",
"imageUrl": "",
"timeLimitSeconds": 20,
"options": [
{ "id": "a", "label": "Jigglypuff" },
{ "id": "b", "label": "Meowth" }
],
"correctOptionIds": ["a"]
}
]
}