-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.js
More file actions
62 lines (62 loc) · 1.67 KB
/
games.js
File metadata and controls
62 lines (62 loc) · 1.67 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
exports.games = [
{
id:1,
name:"League of Legends",
genre:"Moba",
type:"Multiplayer",
rating:"4/5",
reviews:["Great game", "Toxic Teammates", "Pretty Characters"],
merating:"90/100",
img:"/imgs/lol.jpg"
},
{
id:2,
name:"Fortnite",
genre:"Battle Island",
type:"Multiplayer",
rating:"2/5",
reviews:["Alright game", "Bad Teammates", "Cool Characters"],
merating:"45/100",
img:"/imgs/fort.jpg"
},
{
id:3,
name:"Tetris",
genre:"Puzzle",
type:"Singleplayer",
rating:"5/5",
reviews:["Revolutionary game", "Very Relaxing", "I can't find any Line Blocks"],
merating:"97/100",
img:"/imgs/tetris.jpg"
},
{
id:4,
name:"Doodle Jump",
genre:"Survival",
type:"Singleplayer",
rating:"5/5",
reviews:["Classic game", "Very repetitive, but quick", "I like the little alien guy"],
merating:"80/100",
img:"/imgs/doogle.jpg"
},
{
id:5,
name:"Call of Duty",
genre:"Shooter",
type:"Multiplayer",
rating:"3/5",
reviews:["Fun game", "Opponents are cheaters!", "I didn't play single player"],
merating:"67/100",
img:"/imgs/call.jpg"
},
{
id:6,
name:"Persona 5",
genre:"RPG",
type:"Singleplayer",
rating:"5/5",
reviews:["A very long but fun game", "I don't like Ann", "The fighing is repetitive"],
merating:"91/100",
img:"/imgs/persona.jpg"
},
]