-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
70 lines (70 loc) · 2.41 KB
/
db.json
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
{
"games": [
{
"id": 1,
"name": "5th Grade Math Fun!",
"description": "Let's have some fun by going on a hunt! Solve these math problems and earn points along the way!",
"photo": "math_fun_game.png"
},
{
"id": 2,
"name": "Toronto landmark hunt",
"description": "This interactive quiz tour will take you to all the major landmarks and attractions the city has to offer!",
"location": "Toronto, ON",
"photo": "toronto_game.png"
}
],
"missions": [
{
"id": 1,
"game_id": 1,
"name": "Barrels on Board",
"description": "The Mayflower was one of the largest ships of her time. It could carry about 180 large barrels on board. If The pilgrims put the barrels in 15 rows, how many barrels would have been in each row?",
"points": 100,
"category": "text",
"accepted_answers": [
"12",
"twelve"
]
},
{
"id": 2,
"game_id": 1,
"name": "If you Sailed on the Mayflower",
"description": "Use the book \"...If You Sailed on the Mayflower in 1620\" or \"Don't Know Much About the Pilgrims\" and find one fact that your group didn't know and finds interesting. Make a short video explaining the fun fact.",
"points": 500,
"category": "photo+video"
},
{
"id": 3,
"game_id": 1,
"name": "Groovy Potatoes",
"description": "What good is Groovy Gravy without mashed potatoes? It takes 23 potatoes to make a batch of Grandma's Groovy Mashed Potatoes. If there is a shipment of 3,569 potatoes, how many batches of potatoes can be made?",
"points": 200,
"category": "text",
"accepted_answers": [
"155",
"one hundred and fifty five"
]
},
{
"id": 4,
"game_id": 2,
"name": "The tallest tower",
"description": "This building stands above all others downtown and gives a view for miles on its observation deck. You'll need to get within 100m of this tower to complete this mission.",
"points": 200,
"category": "gps",
"latitude": "43.6532",
"longitude": "-79.3832",
"location": "Toronto, ON"
},
{
"id": 5,
"game_id": 2,
"name": "Trash Pandas",
"description": "Raccoons are some of the city's feistiest residents! Snap a picture of an elusive trash panda to secure these points",
"points": 200,
"category": "photo+video"
}
]
}