-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgames.json
58 lines (58 loc) · 1.86 KB
/
games.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
{
"games": [
{
"id": 0,
"img": "./src/assets/img/00-math-game.webp",
"name": "Math Game",
"desc": "Solve math multiplication and test your speed on the timer with this educational game",
"tools": "html, css, js",
"cat": "educational",
"url": "./src/games/00-math-game/index.html"
},
{
"id": 1,
"img": "./src/assets/img/01-2048.webp",
"name": "2048",
"desc": "Simple puzzle game where you merge tiles with equal numbers. The goal is to form the number 2048.",
"tools": "html, css, js",
"cat": "puzzle",
"url": "./src/games/01-2048/index.html"
},
{
"id": 2,
"img": "./src/assets/img/02-fruit-ninja.webp",
"name": "Fruit Ninja",
"desc": "Attack the fruits and see how many points you get in this very addictive action game.",
"tools": "html, css, jquery",
"cat": "arcade",
"url": "./src/games/02-fruit-ninja/index.html"
},
{
"id": 3,
"img": "./src/assets/img/03-minesweeper.webp",
"name": "Minesweeper",
"desc": "Find and disable all the mines present in this classic game popularized by MS Windows.",
"tools": "html, css, js",
"cat": "puzzle",
"url": "./src/games/03-minesweeper/index.html"
},
{
"id": 4,
"img": "./src/assets/img/04-hangman.webp",
"name": "Hangman",
"desc": "Guess the word using the number of characters as a hint",
"tools": "html, css, js",
"cat": "puzzle",
"url": "./src/games/04-hangman/index.html"
},
{
"id": 5,
"img": "./src/assets/img/05-doodle-jump.webp",
"name": "Doodle Jump",
"desc": "Platform game where the objective is to get as high as possible and accumulate points.",
"tools": "html, css, js",
"cat": "arcade",
"url": "./src/games/05-doodle-jump/index.html"
}
]
}