-
Notifications
You must be signed in to change notification settings - Fork 0
/
_db.js
1857 lines (1853 loc) · 40.9 KB
/
_db.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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { constants } from "./constants.js";
let games = [
{
id: "1",
title: "The Elder Scrolls V: Skyrim",
description:
"The Elder Scrolls V: Skyrim is an action role-playing game developed by Bethesda Game Studios. Released in 2011, it is the fifth main installment in the Elder Scrolls series. The game is set in the fictional province of Skyrim, in the frozen wilderness of the Tamriel continent. Players take on the role of the Dragonborn, a hero born with the power to absorb the souls of dragons and use their abilities. The game features an enormous open world, allowing players to explore, complete quests, master magical spells, and engage in combat with various enemies, including the legendary dragons. Skyrim has been released on multiple platforms, including PC, PS4, Xbox One, Nintendo Switch, Xbox 360, PS3, and even VR, ensuring its enduring popularity.",
platforms: [
"PC",
"PS4",
"Xbox One",
"Nintendo Switch",
"Xbox 360",
"PS3",
"VR",
],
price: 19.99,
genres: ["Action", "RPG", "Adventure"],
isAdminLiked: true,
image: "https://i.ibb.co/TK7SpV6/the-elder-scrolls-v-skyrim.webp",
},
{
id: "2",
title: "Minecraft",
description:
"Minecraft is a sandbox video game developed by Mojang Studios. First released in 2011, it has become one of the most popular and influential games of all time. Players are dropped into a procedurally generated world made up of blocks, which can be mined for resources such as wood, stone, and minerals. The game offers various modes, including Creative, Survival, and Hardcore, each providing a unique experience. In Survival mode, players must gather resources, build structures, and fend off hostile mobs that come out at night. Minecraft’s creative freedom and educational value have made it a favorite among both children and adults, available on a wide range of platforms including PC, PS4, Xbox One, Nintendo Switch, PS3, Xbox 360, iOS, Android, and PS Vita.",
platforms: [
"PC",
"PS4",
"Xbox One",
"Nintendo Switch",
"PS3",
"Xbox 360",
"iOS",
"Android",
"PS Vita",
],
price: 29.99,
genres: ["Sandbox", "Survival", "Adventure"],
isAdminLiked: false,
image:
"https://i.ibb.co/XXqfnTb/pixlr-image-generator-3d9f8b96-41db-41e3-af1b-6b0f42f4c9ca.webp",
},
{
id: "3",
title: "Batman: Arkham Knight",
description:
"Batman: Arkham Knight is an action-adventure game developed by Rocksteady Studios and released in 2015. It is the final installment in the Batman: Arkham series and follows Batman as he faces off against the Scarecrow and other villains in Gotham City. The game introduces the Batmobile as a central gameplay mechanic, allowing players to drive and engage in combat with the vehicle. The game features a large open world, improved combat mechanics, and a rich narrative that concludes the Arkham series. Available on PC, PS4, and Xbox One, Arkham Knight is praised for its engaging storyline, advanced graphics, and immersive gameplay.",
platforms: ["PC", "PS4", "Xbox One"],
price: 24.99,
genres: ["Action", "Adventure"],
isAdminLiked: false,
image: "https://i.ibb.co/Xk21bHG/batman-arkham-knight.webp",
},
{
id: "4",
title: "Doom",
description:
'Doom is a first-person shooter game developed by id Software and released in 2016. It is a reboot of the classic Doom series and returns to the fast-paced, action-packed gameplay that defined the originals. Players take on the role of the Doom Marine, fighting against hordes of demons from Hell that have invaded Mars. The game is known for its intense combat, fast movement, and the ability to execute gruesome finishing moves called "glory kills." Available on PC, PS4, Xbox One, and Nintendo Switch, Doom has been praised for its high-energy gameplay and faithful return to the series’ roots.',
platforms: ["PC", "PS4", "Xbox One", "Nintendo Switch"],
price: 18.99,
genres: ["First-Person Shooter", "Action"],
isAdminLiked: true,
image: "https://i.ibb.co/Y3P2Bfm/doom.webp",
},
{
id: "5",
title: "PUBG: BATTLEGROUNDS",
description:
'PUBG: BATTLEGROUNDS is a battle royale game developed by PUBG Corporation. In this game, 100 players are dropped from a plane onto an 8km x 8km map, where they must scavenge for weapons, armor, and other supplies to survive. The game features a shrinking play area, known as the "Blue Zone," which forces players to move closer together, increasing the intensity of encounters. Players can choose to play solo, in duos, or in squads of up to four players. The game is known for its realistic gameplay, large maps, and strategic depth, requiring players to manage resources, use vehicles, and employ tactical skills to be the last one or team standing. PUBG: BATTLEGROUNDS is available on multiple platforms, including PC, PS4, Xbox One, Android, and iOS.',
platforms: ["PC", "PS4", "Xbox One", "Android", "iOS"],
price: 14.99,
genres: ["Battle Royale", "Survival", "Action"],
isAdminLiked: true,
image: "https://i.ibb.co/hFvwGyg/pubg.webp",
},
{
id: "6",
title: "Rocket League",
description:
"Rocket League is a physics-based sports game developed by Psyonix and released in 2015. The game combines elements of soccer with high-speed vehicles, where players control cars and try to score goals in a soccer-like game. Known for its addictive gameplay and strong focus on multiplayer, Rocket League requires a combination of driving skills and teamwork to succeed. Available on PC, PlayStation 4, Xbox One, and other platforms, it has become a favorite among gamers for its unique blend of sports and racing.",
platforms: ["PC", "PlayStation 4", "Xbox One"],
price: 19.59,
genres: ["Sports", "Racing", "Multiplayer"],
isAdminLiked: false,
image: "https://i.ibb.co/5cxM8SH/rocket-league.webp",
},
{
id: "7",
title: "Assassin’s Creed IV: Black Flag",
description:
"Assassin’s Creed IV: Black Flag is an action-adventure game developed by Ubisoft and released in 2013. Set in the early 18th century, the game follows the story of Edward Kenway, a pirate and the grandfather of Connor Kenway from Assassin’s Creed III. Players explore the open seas, engage in naval combat, and interact with historical figures. The game is praised for its historical authenticity, engaging storyline, and the freedom to explore the Caribbean seas. Available on PC, PlayStation 4, Xbox One, and other platforms.",
platforms: ["PC", "PlayStation 4", "Xbox One"],
price: 24.99,
genres: ["Action", "Adventure", "Historical"],
isAdminLiked: false,
image: "https://i.ibb.co/D53n9x7/assassins-creed.webp",
},
{
id: "8",
title: "Counter-Strike 2",
description:
"Counter-Strike 2 is a multiplayer tactical first-person shooter developed by Valve Corporation. Released in 2023, it is the successor to Counter-Strike: Global Offensive. The game pits two teams, the Counter-Terrorists and the Terrorists, against each other in various objective-based game modes. The primary game modes include Competitive and Premier, where teams compete to complete objectives such as defusing bombs or rescuing hostages. The game features significant technical improvements, including a move to the Source 2 engine, enhanced graphics, and new gameplay mechanics like volumetric smoke physics. Players can purchase weapons and equipment between rounds, and the game emphasizes strategic team play and quick reflexes. Available on PC, Counter-Strike 2 offers a fast-paced and responsive gameplay experience.",
platforms: ["PC"],
price: 0.0,
genres: ["First-Person Shooter", "Tactical", "Multiplayer"],
isAdminLiked: true,
image: "https://i.ibb.co/8BzqDqM/cs2.webp",
},
{
id: "9",
title: "The Sims",
description:
"The Sims is a life simulation game developed by Maxis and published by Electronic Arts, first released in 2000. Players create and control virtual characters, known as Sims, and manage their daily lives, including building homes, forming relationships, and pursuing careers. The game offers a sandbox experience where players can explore various aspects of life in a virtual world. With its addictive gameplay and endless possibilities, The Sims has become one of the most successful and influential game series of all time, available on PC, PlayStation 2, Xbox, and other platforms.",
platforms: ["PC", "PlayStation 2", "Xbox"],
price: 29.49,
genres: ["Life Simulation", "Sandbox"],
isAdminLiked: false,
image: "https://i.ibb.co/XFbY6DZ/sims.webp",
},
{
id: "10",
title: "Dota 2",
description:
"Dota 2 is a multiplayer online battle arena (MOBA) game developed and published by Valve Corporation, released in 2013. Players control a hero with unique abilities and battle against another team in a strategic and competitive environment. The game is known for its deep strategic gameplay, a vast array of heroes and items, and regular updates that add new characters and balance changes. Dota 2 is one of the most popular games in the MOBA genres and a major player in the esports scene, available exclusively on PC.",
platforms: ["PC"],
price: 0.0,
genres: ["Strategy", "Multiplayer"],
isAdminLiked: false,
image: "https://i.ibb.co/F5cMgGw/dota2.webp",
},
{
id: "11",
title: "Metal Gear Solid V: The Phantom Pain",
description:
"Metal Gear Solid V: The Phantom Pain is an action-adventure game developed by Kojima Productions and published by Konami, released in 2015. The game follows the story of Big Boss (also known as Venom Snake) as he builds a private military company in the 1980s. Known for its open-world design, complex storyline, and innovative gameplay mechanics, The Phantom Pain is the final main installment in the Metal Gear Solid series. Available on PC, PlayStation 4, Xbox One, and other platforms, it has received critical acclaim for its storytelling and gameplay.",
platforms: ["PC", "PlayStation 4", "Xbox One"],
price: 24.99,
genres: ["Action", "Adventure", "Stealth"],
isAdminLiked: true,
image: "https://i.ibb.co/FbmHmbh/metal-gear-solid.webp",
},
{
id: "12",
title: "System Shock 2",
description:
"System Shock 2 is a first-person role-playing game with elements of horror, developed by Irrational Games and Looking Glass Studios, released in 1999. The game is set in a dystopian future where players must navigate a spaceship overrun by mutants and an artificial intelligence known as SHODAN. Known for its engaging storyline, challenging gameplay, and atmospheric setting, System Shock 2 has become a cult classic and is still remembered fondly by many gamers. Available on PC and Dreamcast.",
platforms: ["PC", "Dreamcast"],
price: 8.99,
genres: ["RPG", "First-Person Shooter", "Horror"],
isAdminLiked: true,
image: "https://i.ibb.co/TvkvQ5P/system-shock2.webp",
},
];
let users = [
{
id: constants.adminId,
username: "ADMIN",
isVerified: true,
avatar: "https://i.ibb.co/NLBsZqr/ADMIN.webp",
},
{
id: "1",
username: "Ivan Ivanov",
isVerified: true,
avatar: "https://i.ibb.co/zf3JN7j/1.webp",
},
{
id: "2",
username: "killer1408",
isVerified: false,
avatar: "https://i.ibb.co/m9XW0Mm/2.webp",
},
{
id: "3",
username: "Maria Petrova",
isVerified: true,
avatar: "https://i.ibb.co/SNvwXP8/3.webp",
},
{
id: "4",
username: "hunter",
isVerified: false,
avatar: "https://i.ibb.co/CJg4zqH/4.webp",
},
{
id: "5",
username: "Sergey Kuznetsov",
isVerified: true,
avatar: "https://i.ibb.co/3YmkwHT/5.webp",
},
{
id: "6",
username: "ghost",
isVerified: false,
avatar: "https://i.ibb.co/3pw8Z6x/6.webp",
},
{
id: "7",
username: "Olga Sokolova",
isVerified: true,
avatar: "https://i.ibb.co/p1QMWcc/7.webp",
},
{
id: "8",
username: "CREEP",
isVerified: false,
avatar: "https://i.ibb.co/BGys4g3/8.webp",
},
{
id: "9",
username: "Natalia Ivanova",
isVerified: true,
avatar: "https://i.ibb.co/s5WvQDQ/9.webp",
},
{
id: "10",
username: "NinjaAssassin",
isVerified: false,
avatar: "https://i.ibb.co/K5bVSqF/10.webp",
},
{
id: "11",
username: "Elena Kuznetsova",
isVerified: true,
avatar: "https://i.ibb.co/VN0k73g/11.webp",
},
{
id: "12",
username: "Frostbite",
isVerified: false,
avatar: "https://i.ibb.co/5BV2kqD/12.webp",
},
{
id: "13",
username: "Tatiana Petrova",
isVerified: true,
avatar: "https://i.ibb.co/pZsyBH5/13.webp",
},
{
id: "14",
username: "ShadowStriker",
isVerified: false,
avatar: "https://i.ibb.co/kgQK7B8/14.webp",
},
{
id: "15",
username: "Anastasia Sokolova",
isVerified: true,
avatar: "https://i.ibb.co/L5rm6hh/15.webp",
},
{
id: "16",
username: "Viper",
isVerified: false,
avatar: "https://i.ibb.co/tLhnhHm/16.webp",
},
{
id: "17",
username: "Ivanov",
isVerified: true,
avatar: "https://i.ibb.co/s2r9LJG/17.webp",
},
{
id: "18",
username: "DarkKnight",
isVerified: false,
avatar: "https://i.ibb.co/YkRRjHS/18.webp",
},
{
id: "19",
username: "Anna Kuznetsova",
isVerified: true,
avatar: "https://i.ibb.co/R26jWCY/19.webp",
},
{
id: "20",
username: "Phantom",
isVerified: false,
avatar: "https://i.ibb.co/CJ0rJgk/20.webp",
},
{
id: "21",
username: "Victoria Petrova",
isVerified: true,
avatar: "https://i.ibb.co/KhGHkwK/21.webp",
},
{
id: "22",
username: "Warlock",
isVerified: false,
avatar: "https://i.ibb.co/GxsVz1z/22.webp",
},
{
id: "23",
username: "Sofia Sokolova",
isVerified: true,
avatar: "https://i.ibb.co/tCVn3ZS/23.webp",
},
{
id: "24",
username: "Reaper",
isVerified: false,
avatar: "https://i.ibb.co/YZSWwyZ/24.webp",
},
{
id: "25",
username: "Alex Hunter",
isVerified: true,
avatar: "https://i.ibb.co/VCZGF5M/25.webp",
},
{
id: "26",
username: "VengefulSpirit",
isVerified: false,
avatar: "https://i.ibb.co/NywS0yt/26.webp",
},
{
id: "27",
username: "Max TOP AWP",
isVerified: true,
avatar: "https://i.ibb.co/SyRjz4p/27.webp",
},
{
id: "28",
username: "DragonFly",
isVerified: false,
avatar: "https://i.ibb.co/NZdN7Lg/28.webp",
},
{
id: "29",
username: "Ivan Pro",
isVerified: true,
avatar: "https://i.ibb.co/rMb6VFB/29.webp",
},
{
id: "30",
username: "ShadowWalker",
isVerified: false,
avatar: "https://i.ibb.co/1Ljnf2Z/30.webp",
},
{
id: "31",
username: "Sergey Ninja",
isVerified: true,
avatar: "https://i.ibb.co/Q9Ykyqs/31.webp",
},
{
id: "32",
username: "DarkPhoenix",
isVerified: false,
avatar: "https://i.ibb.co/zQ8N5Fg/32.webp",
},
{
id: "33",
username: "Michael Mage",
isVerified: true,
avatar: "https://i.ibb.co/jgStTFQ/33.webp",
},
{
id: "34",
username: "Natalia Archer",
isVerified: false,
avatar: "https://i.ibb.co/zn84mGc/34.webp",
},
{
id: "35",
username: "James Rogue",
isVerified: true,
avatar: "https://i.ibb.co/CV59njx/35.webp",
},
{
id: "36",
username: "StormBringer",
isVerified: false,
avatar: "https://i.ibb.co/SVjbDfz/36.webp",
},
{
id: "37",
username: "Robert Tank",
isVerified: true,
avatar: "https://i.ibb.co/XxQ9m4S/37.webp",
},
{
id: "38",
username: "Anastasia Assassin",
isVerified: false,
avatar: "https://i.ibb.co/BwXrP1d/38.webp",
},
{
id: "39",
username: "Richard Paladin",
isVerified: true,
avatar: "https://i.ibb.co/B3DdNqr/39.webp",
},
{
id: "40",
username: "Ekaterina Druid",
isVerified: false,
avatar: "https://i.ibb.co/McyK2F9/40.webp",
},
{
id: "41",
username: "Charles Shaman",
isVerified: true,
avatar: "https://i.ibb.co/TtmM1F5/41.webp",
},
{
id: "42",
username: "Anna Bard",
isVerified: false,
avatar: "https://i.ibb.co/5kZZrSN/42.webp",
},
{
id: "43",
username: "Joseph Warlock",
isVerified: true,
avatar: "https://i.ibb.co/DQNSn7V/43.webp",
},
{
id: "44",
username: "Victoria Monk",
isVerified: false,
avatar: "https://i.ibb.co/2K0LZyW/44.webp",
},
{
id: "45",
username: "Thomas Priest",
isVerified: true,
avatar: "https://i.ibb.co/SvZJgTg/45.webp",
},
{
id: "46",
username: "Sofia DeathKnight",
isVerified: false,
avatar: "https://i.ibb.co/wCRgR0D/46.webp",
},
{
id: "47",
username: "Christopher DemonHunter",
isVerified: true,
avatar: "https://i.ibb.co/2N2R8J4/47.webp",
},
{
id: "48",
username: "Alex Hunter",
isVerified: false,
avatar: "https://i.ibb.co/LSNGVdS/48.webp",
},
];
let reviews = [
{
id: "1",
rating: 2,
content: "Это худшая игра, которую я когда-либо играл.",
user_id: "6",
game_id: "5",
},
{
id: "2",
rating: 1,
content: "Это худшая игра, которую я когда-либо играл.",
user_id: "12",
game_id: "5",
},
{
id: "3",
rating: 4,
content: "Good but not perfect.",
user_id: "22",
game_id: "6",
},
{
id: "4",
rating: 5,
content: "Игра просто фантастика!",
user_id: "32",
game_id: "11",
},
{
id: "5",
rating: 5,
content: "Очень крутая графика!",
user_id: "5",
game_id: "3",
},
{
id: "6",
rating: 1,
content: "Worst game ever played.",
user_id: "25",
game_id: "10",
},
{
id: "7",
rating: 1,
content: "Not worth playing.",
user_id: "30",
game_id: "12",
},
{
id: "8",
rating: 5,
content: "Best experience ever!",
user_id: "4",
game_id: "10",
},
{
id: "9",
rating: 2,
content: "Terrible gameplay.",
user_id: "23",
game_id: "5",
},
{
id: "10",
rating: 2,
content: "Do not waste your time on this game.",
user_id: "31",
game_id: "7",
},
{
id: "11",
rating: 5,
content: "Очень крутая графика!",
user_id: "44",
game_id: "6",
},
{
id: "12",
rating: 4,
content: "Great for families.",
user_id: "5",
game_id: "11",
},
{
id: "13",
rating: 2,
content: "Avoid this game at all costs.",
user_id: "35",
game_id: "2",
},
{
id: "14",
rating: 1,
content: "Bad game, would not recommend.",
user_id: "14",
game_id: "5",
},
{
id: "15",
rating: 5,
content: "Игра просто фантастика!",
user_id: "7",
game_id: "3",
},
{
id: "16",
rating: 4,
content: "Great game for kids and adults.",
user_id: "40",
game_id: "1",
},
{
id: "17",
rating: 5,
content: "Игра просто фантастика!",
user_id: "1",
game_id: "10",
},
{
id: "18",
rating: 1,
content: "Это худшая игра, которую я когда-либо играл.",
user_id: "12",
game_id: "7",
},
{
id: "19",
rating: 3,
content: "Nothing to complain about, but nothing to praise either.",
user_id: "10",
game_id: "7",
},
{
id: "20",
rating: 5,
content: "Игра просто фантастика!",
user_id: "5",
game_id: "5",
},
{
id: "21",
rating: 2,
content: "Too many bugs and glitches.",
user_id: "18",
game_id: "10",
},
{
id: "22",
rating: 1,
content: "Это худшая игра, которую я когда-либо играл.",
user_id: "45",
game_id: "11",
},
{
id: "23",
rating: 5,
content: "Очень крутая графика!",
user_id: "43",
game_id: "2",
},
{
id: "24",
rating: 1,
content: "Not worth playing.",
user_id: "26",
game_id: "3",
},
{
id: "25",
rating: 3,
content: "Nothing to complain about, but nothing to praise either.",
user_id: "16",
game_id: "5",
},
{
id: "26",
rating: 2,
content: "Too many bugs and glitches.",
user_id: "30",
game_id: "9",
},
{
id: "27",
rating: 3,
content: "Just an average game.",
user_id: "38",
game_id: "2",
},
{
id: "28",
rating: 5,
content: "Игра просто идеальна!",
user_id: "19",
game_id: "8",
},
{
id: "29",
rating: 4,
content: "Not bad, but could be better.",
user_id: "42",
game_id: "7",
},
{
id: "30",
rating: 2,
content: "Terrible gameplay.",
user_id: "44",
game_id: "1",
},
{
id: "31",
rating: 1,
content: "Very disappointing experience.",
user_id: "27",
game_id: "6",
},
{
id: "32",
rating: 4,
content: "Great for families.",
user_id: "7",
game_id: "11",
},
{
id: "33",
rating: 5,
content: "Это лучшая игра, которую я когда-либо играл!",
user_id: "19",
game_id: "6",
},
{
id: "34",
rating: 1,
content: "Do not waste your time on this game.",
user_id: "40",
game_id: "3",
},
{
id: "35",
rating: 1,
content: "Not worth playing.",
user_id: "23",
game_id: "6",
},
{
id: "36",
rating: 3,
content: "Decent, but not impressive.",
user_id: "30",
game_id: "9",
},
{
id: "37",
rating: 1,
content: "Worst game ever played.",
user_id: "14",
game_id: "7",
},
{
id: "38",
rating: 1,
content: "Это худшая игра, которую я когда-либо играл.",
user_id: "8",
game_id: "11",
},
{
id: "39",
rating: 2,
content: "Terrible gameplay.",
user_id: "41",
game_id: "7",
},
{
id: "40",
rating: 4,
content: "Good but could improve.",
user_id: "31",
game_id: "4",
},
{
id: "41",
rating: 4,
content: "Good gameplay, some bugs.",
user_id: "30",
game_id: "3",
},
{
id: "42",
rating: 5,
content: "Awesome gameplay!",
user_id: "26",
game_id: "5",
},
{
id: "43",
rating: 3,
content: "Some minor bugs, but playable.",
user_id: "24",
game_id: "11",
},
{
id: "44",
rating: 1,
content: "Terrible gameplay.",
user_id: "36",
game_id: "1",
},
{
id: "45",
rating: 3,
content: "Decent, but not impressive.",
user_id: "4",
game_id: "11",
},
{
id: "46",
rating: 5,
content: "Очень крутая графика!",
user_id: "42",
game_id: "3",
},
{
id: "47",
rating: 2,
content: "Bad game, would not recommend.",
user_id: "34",
game_id: "7",
},
{
id: "48",
rating: 5,
content: "Это лучшая игра, которую я когда-либо играл!",
user_id: "46",
game_id: "7",
},
{
id: "49",
rating: 5,
content: "A must-play game!",
user_id: "19",
game_id: "7",
},
{
id: "50",
rating: 5,
content: "Awesome gameplay!",
user_id: "4",
game_id: "5",
},
{
id: "51",
rating: 1,
content: "Too many bugs and glitches.",
user_id: "9",
game_id: "1",
},
{
id: "52",
rating: 4,
content: "Some minor issues, but overall good.",
user_id: "22",
game_id: "1",
},
{
id: "53",
rating: 4,
content: "Good but not perfect.",
user_id: "7",
game_id: "12",
},
{
id: "54",
rating: 5,
content: "Masterpiece of gaming!",
user_id: "2",
game_id: "12",
},
{
id: "55",
rating: 3,
content: "Not great, but not bad either.",
user_id: "31",
game_id: "3",
},
{
id: "56",
rating: 1,
content: "Not worth playing.",
user_id: "9",
game_id: "9",
},
{
id: "57",
rating: 3,
content: "Just an average game.",
user_id: "8",
game_id: "8",
},
{
id: "58",
rating: 4,
content: "Good gameplay, some bugs.",
user_id: "24",
game_id: "3",
},
{
id: "59",
rating: 1,
content: "Very disappointing experience.",
user_id: "10",
game_id: "5",
},
{
id: "60",
rating: 3,
content: "Middle of the road game.",
user_id: "7",
game_id: "8",
},
{
id: "61",
rating: 3,
content: "Decent, but not impressive.",
user_id: "5",
game_id: "6",
},
{
id: "62",
rating: 5,
content: "Очень крутая графика!",
user_id: "38",
game_id: "10",
},
{
id: "63",
rating: 4,
content: "Some minor issues, but overall good.",
user_id: "15",
game_id: "6",
},
{
id: "64",
rating: 3,
content: "Decent, but not impressive.",
user_id: "13",
game_id: "7",
},
{
id: "65",
rating: 2,
content: "Terrible gameplay.",
user_id: "37",
game_id: "8",
},
{
id: "66",
rating: 4,
content: "Challenging and rewarding.",
user_id: "44",
game_id: "10",
},
{
id: "67",
rating: 3,
content: "Some minor bugs, but playable.",
user_id: "25",
game_id: "5",
},
{
id: "68",
rating: 5,
content: "Игра просто идеальна!",
user_id: "30",
game_id: "12",
},
{
id: "69",
rating: 5,
content: "Best game I've ever played!",
user_id: "2",
game_id: "4",
},
{
id: "70",
rating: 2,
content: "Worst game ever played.",
user_id: "12",
game_id: "2",
},
{
id: "71",
rating: 3,
content: "Some minor bugs, but playable.",
user_id: "24",
game_id: "6",
},
{
id: "72",
rating: 1,
content: "Not worth playing.",
user_id: "21",
game_id: "5",
},
{
id: "73",
rating: 5,
content: "Best experience ever!",
user_id: "40",
game_id: "7",
},
{
id: "74",
rating: 1,
content: "Worst game ever played.",
user_id: "13",
game_id: "7",
},
{
id: "75",
rating: 3,
content: "Average game, nothing special.",
user_id: "7",
game_id: "8",
},
{
id: "76",
rating: 3,
content: "Middle of the road game.",
user_id: "16",
game_id: "7",
},
{
id: "77",
rating: 5,
content: "Love the story!",
user_id: "29",
game_id: "4",
},
{
id: "78",
rating: 1,
content: "Bad game, would not recommend.",
user_id: "26",
game_id: "5",
},