-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconverted_data.json
More file actions
2493 lines (2493 loc) · 136 KB
/
converted_data.json
File metadata and controls
2493 lines (2493 loc) · 136 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
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
[
{
"pk": 1,
"model": "games.game",
"fields": {
"sku": "pp50011",
"name": "Super_Mario_64",
"friendly_name": "Super Mario 64",
"description": "The first three dimensional entry in the Mario franchise, Super Mario 64 follows Mario as he puts his broadened 3D movement arsenal to use in order to rescue Princess Peach from the clutches of his arch rival Bowser. Mario has to jump into worlds-within-paintings ornamenting the walls of Peach's castle, uncover secrets and hidden challenges and collect golden stars as reward for platforming trials.",
"price": 36.99,
"genre": [
1,
3
],
"rating": 4.1,
"video": "Super_Mario_64.mp4",
"image_url": "",
"image": "media/games/Super_Mario_64.webp",
"category": 3,
"release_year": "1996"
}
},
{
"pk": 2,
"model": "games.game",
"fields": {
"sku": "pp50012",
"name": "Final_Fantasy_VII",
"friendly_name": "Final Fantasy VII",
"description": "Final Fantasy VII is the seventh main installment in the Final Fantasy series, and was the first title to feature three-dimensional graphics, pre-rendered backgrounds and numerous full motion videos.\n \n\n The gameplay is a departure from previous entries in the series in many ways. Though it retains the Active Time Battle pseudo-turn based menu command system, FFVII features three party members rather than four. The Materia system allows the player to customize each party member's abilities to their liking, and the Limit system grants them unique combat skills.\n \n\n Though minigames had been a recurring feature, FFVII introduces numerous new ones, many of them playable in the theme park Gold Saucer varying from racing with Chocobos to snowboarding.",
"price": 23.99,
"genre": [
1,
7,
8
],
"rating": 4.2,
"video": "Final_Fantasy_VII.mp4",
"image_url": "",
"image": "media/games/Final_Fantasy_VII.webp",
"category": 3,
"release_year": "1997"
}
},
{
"pk": 3,
"model": "games.game",
"fields": {
"sku": "pp50013",
"name": "The_Legend_of_Zelda:_Ocarina_of_Time",
"friendly_name": "The Legend of Zelda: Ocarina of Time",
"description": "The Legend of Zelda: Ocarina of Time is the fifth main installment of The Legend of Zelda series and the first to be released for the Nintendo 64. It was one of the most highly anticipated games of its age, and is listed among the greatest video games ever created by numerous websites and magazines. The gameplay of Ocarina of Time was revolutionary for its time, it has arguably made more of an impact on later games in the series than any of its predecessors even though they had the same cores of exploration, dungeons, puzzles and item usage. Among the gameplay mechanics, one of the most noteworthy is the time-traveling system. The game begins with the player controlling the child Link, but later on an adult Link becomes a playable character as well and each of them has certain unique abilities. Ocarina of Time also introduces the use of music to solve puzzles: as new songs are learned, they can be used to solve puzzles, gain access to new areas and warp to different locations. Dungeon exploration is somewhat more puzzle-oriented than in earlier games but they are not too complex.",
"price": 28.99,
"genre": [
1,
7
],
"rating": 4.3,
"video": "The_Legend_of_Zelda:_Ocarina_of_Time.mp4",
"image_url": "",
"image": "media/games/The_Legend_of_Zelda:_Ocarina_of_Time.webp",
"category": 3,
"release_year": "1998"
}
},
{
"pk": 4,
"model": "games.game",
"fields": {
"sku": "pp50014",
"name": "Chrono_Trigger",
"friendly_name": "Chrono Trigger",
"description": "In this turn-based Japanese RPG, young Crono must travel through time through a misfunctioning teleporter to rescue his misfortunate companion and take part in an intricate web of past and present perils. The adventure that ensues soon unveils an evil force set to destroy the world, triggering Crono's race against time to change the course of history and bring about a brighter future.",
"price": 24.99,
"genre": [
1,
7
],
"rating": 4.5,
"video": "Chrono_Trigger.mp4",
"image_url": "",
"image": "media/games/Chrono_Trigger.webp",
"category": 3,
"release_year": "1995"
}
},
{
"pk": 5,
"model": "games.game",
"fields": {
"sku": "pp50015",
"name": "Super_Mario_World",
"friendly_name": "Super Mario World",
"description": "A 2D platformer and first entry on the SNES in the Super Mario franchise, Super Mario World follows Mario as he attempts to defeat Bowser's underlings and rescue Princess Peach from his clutches. The game features a save system, a less linear world map, an expanded movement arsenal and numerous new items for Mario, alongside new approaches to level design and art direction.",
"price": 24.99,
"genre": [
1,
3
],
"rating": 4.2,
"video": "Super_Mario_World.mp4",
"image_url": "",
"image": "media/games/Super_Mario_World.webp",
"category": 3,
"release_year": "1990"
}
},
{
"pk": 6,
"model": "games.game",
"fields": {
"sku": "pp50016",
"name": "EarthBound",
"friendly_name": "EarthBound",
"description": "A turn-based JRPG and sequel to then-Japan-only Earthbound Beginnings (1989) in which Ness, a young boy living in a land based on the USA, leaves home to go on an adventure through strange locations, get to know quirky characters and defeat an unknowable alien threat called Giygas while facing up to the realities of growing up and becoming familiar with the real world.",
"price": 40.99,
"genre": [
1,
7,
8
],
"rating": 4.2,
"video": "EarthBound.mp4",
"image_url": "",
"image": "media/games/EarthBound.webp",
"category": 3,
"release_year": "1994"
}
},
{
"pk": 7,
"model": "games.game",
"fields": {
"sku": "pp50017",
"name": "Castlevania:_Symphony_of_the_Night",
"friendly_name": "Castlevania: Symphony of the Night",
"description": "A seminal 2D metroidvania in which after the events of Castlevania: Rondo of Blood (1993), a man named Alucard arrives at Dracula's castle after it rises from the rubble, and seeks to defeat the evil contained within it once and for all by exploring, fighting its inhabitants and collecting the various weapons and abilities hidden in its depths.",
"price": 28.99,
"genre": [
1,
3,
7
],
"rating": 4.4,
"video": "Castlevania:_Symphony_of_the_Night.mp4",
"image_url": "",
"image": "media/games/Castlevania:_Symphony_of_the_Night.webp",
"category": 3,
"release_year": "1997"
}
},
{
"pk": 8,
"model": "games.game",
"fields": {
"sku": "pp50018",
"name": "Super_Metroid",
"friendly_name": "Super Metroid",
"description": "The Space Pirates, merciless agents of the evil Mother Brain, have stolen the last Metroid from a research station, and once again Mother Brain threatens the safety of the galaxy! Samus Aran must don her awesome array of high-tech weaponry to retrieve the deadly Metroid hidden deep within the cave-riddled planet Zebes. Super Metroid features excellent graphics, with a huge variety of enemies and worlds to explore. The side-view action will be familiar to many players, only now there are new weapons and items, including the Grappling Beam, which allows Samus to swing across large chasms, and the X-Ray Scope, which reveals secret passages.",
"price": 33.99,
"genre": [
1,
3,
4
],
"rating": 4.3,
"video": "Super_Metroid.mp4",
"image_url": "",
"image": "media/games/Super_Metroid.webp",
"category": 3,
"release_year": "1994"
}
},
{
"pk": 9,
"model": "games.game",
"fields": {
"sku": "pp50019",
"name": "Super_Mario_Bros.",
"friendly_name": "Super Mario Bros.",
"description": "A side scrolling 2D platformer and first entry in the Super Mario franchise, Super Mario Bros. follows Italian plumber Mario as he treks across many levels of platforming challenges featuring hostile enemies to rescue Princess Peach from the evil king Bowser.",
"price": 28.99,
"genre": [
1,
3
],
"rating": 3.5,
"video": "Super_Mario_Bros..mp4",
"image_url": "",
"image": "media/games/Super_Mario_Bros..webp",
"category": 3,
"release_year": "1985"
}
},
{
"pk": 10,
"model": "games.game",
"fields": {
"sku": "pp500110",
"name": "Half-Life",
"friendly_name": "Half-Life",
"description": "Dr. Gordon Freeman doesn't speak, but he's got a helluva story to tell. This first-person roller-coaster initiated a new era in the history of action games by combining engrossing gameplay, upgraded graphics, ingenious level design and a revolutionary story that may not be all that it seems, told not through cutscenes, but through the visual environment.",
"price": 39.99,
"genre": [
1,
11,
4
],
"rating": 4,
"video": "Half-Life.mp4",
"image_url": "",
"image": "media/games/Half-Life.webp",
"category": 3,
"release_year": "1998"
}
},
{
"pk": 11,
"model": "games.game",
"fields": {
"sku": "pp500111",
"name": "Super_Mario_Bros._3",
"friendly_name": "Super Mario Bros. 3",
"description": "Super Mario Bros. 3, the third entry in the Super Mario Bros. series and Super Mario franchise, sees Mario or Luigi navigate a nonlinear world map containing platforming levels and optional minigames and challenges. The game features more diverse movement options and new items alongside more complex level designs and boss battles.",
"price": 24.99,
"genre": [
3
],
"rating": 4,
"video": "Super_Mario_Bros._3.mp4",
"image_url": "",
"image": "media/games/Super_Mario_Bros._3.webp",
"category": 3,
"release_year": "1988"
}
},
{
"pk": 12,
"model": "games.game",
"fields": {
"sku": "pp500112",
"name": "Doom",
"friendly_name": "Doom",
"description": "In the future, humans have left Earth and settled throughout the galaxy. On Mars, the Union Aerospace Corporation has established a radioactive waste facility and allowed the military to conduct teleportation experiments on the nearby moons of Deimos and Phobos. Hours ago, the base on Mars began receiving incoherent distress messages from Phobos, while Deimos has disappeared completely. With all attempts to establish contact failing, you and your team have been dispatched to investigate. Upon arrival, you secure the perimeter as the rest of your team enters the facility. As you stand guard, your radio crackles with the sound of gunfire, cracking bones and blood-curdling screams and eventually falls silent. Alone, with no way off the planet or means to defend yourself other than your trusty pistol, there\u00e2\u0080\u0099s only one way out - into the complex of death and the horrors that await you within. If you plan to get out of here alive you must fend off the hordes of demonic imps, haunting spectres and your undead, former comrades waiting to tear you limb from limb. So, grab the nearest shotgun and blast your way out of this fragging madness!",
"price": 38.99,
"genre": [
4
],
"rating": 4,
"video": "Doom.mp4",
"image_url": "",
"image": "media/games/Doom.webp",
"category": 3,
"release_year": "1993"
}
},
{
"pk": 13,
"model": "games.game",
"fields": {
"sku": "pp500113",
"name": "Sonic_the_Hedgehog",
"friendly_name": "Sonic the Hedgehog",
"description": "Sonic the Hedgehog is a 2D, side-scrolling platformer, whose gameplay centers around Sonic's ability to run at high speed through levels incorporating springs, slopes, high falls, and loop-the-loops. The levels contain hazards in the form of robots (\"badniks\" in the Western game manuals) in which Dr. Robotnik has trapped animals. Although destroying a robot frees the animal within, this is not required to complete the game. The player must avoid rows of sharp spikes, falling into bottomless pits, being crushed by moving walls or platforms, and drowning (which can be avoided by breathing air bubbles periodically released from vents). Sonic's main attack is his spin, where he curls into a ball and rotates rapidly (damaging enemies and some obstacles). This can be performed by jumping in the air or rolling on the ground.\n \n\n Scattered around each level map are gold rings and collecting 100 rings rewards the player with an extra life. Rings are a layer of protection against hazards; if Sonic has at least one ring when he collides with an enemy, he will survive. However, all his rings will be scattered; they will flicker and disappear in a few seconds if they are not picked up again. If Sonic is hit without any rings, he loses a life. Although shields and temporary invincibility may be collected to provide additional protection, certain hazards (such as drowning, being crushed, falling down a bottomless pit or running out of time) will cost Sonic a life regardless of rings or other protection.\n \n\n The game is divided into six zones (Green Hill, Marble, Spring Yard, Labyrinth, Star Light, and Scrap Brain), each with its own visual style and enemies. A player must navigate through each zone (subdivided into three acts) to progress.\n \n\n At the end of each zone's third act, the player confronts Dr. Robotnik (who pilots a different vehicle each time) in a boss fight. After the sixth zone, the player continues directly to the Final Zone for a last encounter with Robotnik. They begin with three lives (power-ups and rings add more), which are lost when Sonic collides with hazardous enemies (or objects) without rings, falls off-screen or exceeds an act's ten-minute time limit. Lampposts acting as checkpoints allow Sonic to return to the most-recently activated post when he loses a life. If he loses a life as a result of time running out but has another life, the timer will reset to 0:00 when he returns to the checkpoint. If all lives are lost at any point in the game, the game over screen will appear (when the player can return to the beginning of the act with three lives, if they have any continues).\n \n\n When Sonic reaches the end of act one or act two of a zone with at least fifty rings, a large ring appears through which he can jump to enter a Special Stage (a \"Secret Zone\" in the original Genesis manual). In each of six Special Stages, Sonic bounces off the bumpers and walls of a rotating maze in spin attack. Although the player earns a continue with each 50 rings found, their main goal is to obtain the Chaos Emerald at the end of the maze without colliding with a \"goal block\" (which ends the level).",
"price": 36.99,
"genre": [
3
],
"rating": 3.1,
"video": "Sonic_the_Hedgehog.mp4",
"image_url": "",
"image": "media/games/Sonic_the_Hedgehog.webp",
"category": 3,
"release_year": "1991"
}
},
{
"pk": 14,
"model": "games.game",
"fields": {
"sku": "pp500114",
"name": "Donkey_Kong_Country",
"friendly_name": "Donkey Kong Country",
"description": "Donkey Kong Country is a side scrolling platformer by British developers Rare in 1994. It featured revolutionary pre-rendered 3D graphics that give the game a very unique look compared to most other games on consoles at the time. The two playable characters featured in the game are the titular character, Donkey Kong and his nephew, Diddy Kong. Together the two swing, climb, jump, swim, cartwheel, ride animals, and blast out of barrels on their way to recover their stolen bannanas from the evil King K. Rool and his Kremling army. The adventure takes you through a variety of different environments and levels that continually change up gameplay. Donkey Kong Country also provides plenty of opportunities for exploration with almost every level having a multitude of collectible, shortcuts, and hidden bonus areas.",
"price": 20.99,
"genre": [
1,
3
],
"rating": 3.9,
"video": "Donkey_Kong_Country.mp4",
"image_url": "",
"image": "media/games/Donkey_Kong_Country.webp",
"category": 3,
"release_year": "1994"
}
},
{
"pk": 15,
"model": "games.game",
"fields": {
"sku": "pp500115",
"name": "Final_Fantasy_VI",
"friendly_name": "Final Fantasy VI",
"description": "Final Fantasy VI is the sixth main installment in the Final Fantasy series, developed and published by Square. It was the final title in the series to feature two-dimensional graphics, and the first story that did not revolve around crystals.\n \n\n The game gives players up to fourteen playable characters, the largest cast in the series, and features the Active Time Battle pseudo-turn based menu command system. A party can consist of up to four characters, though some events require the player to assemble three different parties of up to four and switch between them.\n \n\n Each character has a unique command ability, such as Terra's Trance, Locke's Steal, Edgar's Tools or Sabin's Blitz, and can also learn Magic spells from earning AP from battles with magicite equipped. Each character's rare Desperation Attack will randomly activate after using the Attack command when at critical health.",
"price": 21.99,
"genre": [
1,
7
],
"rating": 4.4,
"video": "Final_Fantasy_VI.mp4",
"image_url": "",
"image": "media/games/Final_Fantasy_VI.webp",
"category": 3,
"release_year": "1994"
}
},
{
"pk": 16,
"model": "games.game",
"fields": {
"sku": "pp500116",
"name": "The_Legend_of_Zelda",
"friendly_name": "The Legend of Zelda",
"description": "The Legend of Zelda is the first title in the Zelda series, it has marked the history of video games particularly for it's game mechanics and universe. The player controls Link and must make his way through the forests, graveyards, plains and deserts of the Otherworld to find the secret entrances to the eight dungeons and try to restore the broken Triforce. Among the game's mechanics, it was the first time we saw a continuous world that could be freely explored, power-ups that permanently enhanced the main character's abilities and a battery save feature that allowed players to keep their progress instead of having to start over. The gameplay balanced action sequences with discovery, secrets and exploration.",
"price": 22.99,
"genre": [
1
],
"rating": 3.2,
"video": "The_Legend_of_Zelda.mp4",
"image_url": "",
"image": "media/games/The_Legend_of_Zelda.webp",
"category": 3,
"release_year": "1986"
}
},
{
"pk": 17,
"model": "games.game",
"fields": {
"sku": "pp500117",
"name": "Banjo-Kazooie",
"friendly_name": "Banjo-Kazooie",
"description": "In this 3D platformer, the heroic but naive bear Banjo enlists his cowardly bird buddy Kazooie to help rescue his younger sister from a vain, beauty-stealing witch. The player is tasked with exploring the witch's lair and the nine large, open levels within it, looking for tasks and challenges to complete. Along the way they meet a variety of characters who teach them new moves and transform them into different animals. Modeled after Super Mario 64, Banjo-Kazooie is distinguished by its cheeky and sarcastic sense of humor and by a large, varied, and novel moveset.",
"price": 33.99,
"genre": [
1,
3
],
"rating": 4,
"video": "Banjo-Kazooie.mp4",
"image_url": "",
"image": "media/games/Banjo-Kazooie.webp",
"category": 3,
"release_year": "1998"
}
},
{
"pk": 18,
"model": "games.game",
"fields": {
"sku": "pp500118",
"name": "Mega_Man_X",
"friendly_name": "Mega Man X",
"description": "Near the end of his life, Dr. Light succeeds in creating the first of a new series of robots which will change the world. Able to think and make decisions, this new robot holds great danger as well as great possibilities. Fearful of the possible consequences of unleashing his creation on the world, Dr. Light decides to seal him in a capsule and test his systems until they are totally reliable. The future will have to decide his fate...\n \n\n Released from the capsule by Dr. Cain, \"X\" is born into the world of the future where the robot rebellions are a thing of the past. But when Dr. Cain tries to implement Dr. Light's designs into a new series of Reploids, something goes hideously wrong. Now the future lies on the brink of destruction and a new Mega Man must emerge to face Sigma and his forces before the human race is wiped from the planet!",
"price": 39.99,
"genre": [
1,
3,
4
],
"rating": 4.1,
"video": "Mega_Man_X.mp4",
"image_url": "",
"image": "media/games/Mega_Man_X.webp",
"category": 3,
"release_year": "1993"
}
},
{
"pk": 19,
"model": "games.game",
"fields": {
"sku": "pp500119",
"name": "Tetris",
"friendly_name": "Tetris",
"description": "Tetris is a tile-matching puzzle video game. The goal is to place pieces made up of four tiles in a ten-by-twenty well, organizing them into complete rows, which then disappear. The main objective of each round is to clear 25 lines, after which the player moves on to the next round. If the stack reaches the top of the field, the player loses a life, and if all three lives are lost, the game is over.\n \n\n The game lets the player choose the starting stage and round, as well as one of three background tunes. Difficulty is increased throughout the stages by an increase in speed and the addition of garbage blocks in the well.",
"price": 29.99,
"genre": [
2,
11
],
"rating": 4.1,
"video": "Tetris.mp4",
"image_url": "",
"image": "media/games/Tetris.webp",
"category": 3,
"release_year": "1989"
}
},
{
"pk": 20,
"model": "games.game",
"fields": {
"sku": "pp500120",
"name": "Donkey_Kong_Country_2:_Diddy's_Kong_Quest",
"friendly_name": "Donkey Kong Country 2: Diddy's Kong Quest",
"description": "Donkey Kong Country 2: Diddy's Kong Quest is the sequel to Donkey Kong Country. It was developed by Rare and is one of the best selling Super Nintendo games.",
"price": 30.99,
"genre": [
1,
3
],
"rating": 4.2,
"video": "Donkey_Kong_Country_2:_Diddy's_Kong_Quest.mp4",
"image_url": "",
"image": "media/games/Donkey_Kong_Country_2:_Diddy's_Kong_Quest.webp",
"category": 3,
"release_year": "1995"
}
},
{
"pk": 21,
"model": "games.game",
"fields": {
"sku": "pp500121",
"name": "Kirby's_Adventure",
"friendly_name": "Kirby's Adventure",
"description": "Not everything is well in Dream Land. For some mysterious reason, the Dream Spring, a magical well that is the reservoir for all the dreams of the citizens of Dream Land, is no longer working. Everyone is being subjected to their worst nightmares every time they go to sleep. Upon reaching the Dream Spring, Kirby finds out that evil King Dedede has stolen the Star Rod, thus depriving Dream Land of the magical energy that feeds its spring. Using 20 unique tricks and your ability to steal your enemies' powers by swallowing them, you'll have to make your way through a horrific land filled with all kinds of nightmares. Recover the broken pieces of the Star Rod, and everyone in Dream Land will sleep peacefully once again. If you fail, the citizens of Dream Land will be subjected to a lifetime of terrible nightmares.",
"price": 22.99,
"genre": [
3
],
"rating": 3.6,
"video": "Kirby's_Adventure.mp4",
"image_url": "",
"image": "media/games/Kirby's_Adventure.webp",
"category": 3,
"release_year": "1993"
}
},
{
"pk": 22,
"model": "games.game",
"fields": {
"sku": "pp500122",
"name": "Super_Smash_Bros.",
"friendly_name": "Super Smash Bros.",
"description": "Super Smash Bros. is a crossover fighting video game between several different Nintendo franchises, and the first installment in the Super Smash Bros. series. Players must defeat their opponents multiple times in a fighting frenzy of items and power-ups. Super Smash Bros. is a departure from the general genre of fighting games: instead of depleting an opponent's life bar, the players seek to knock opposing characters off a stage. Each player has a damage total, represented by a percentage, which rises as the damage is taken.",
"price": 34.99,
"genre": [
12,
3
],
"rating": 3.4,
"video": "Super_Smash_Bros..mp4",
"image_url": "",
"image": "media/games/Super_Smash_Bros..webp",
"category": 3,
"release_year": "1999"
}
},
{
"pk": 23,
"model": "games.game",
"fields": {
"sku": "pp500123",
"name": "Mega_Man_2",
"friendly_name": "Mega Man 2",
"description": "In the year 200X, a super robot named Mega Man was created. Dr. Light created Mega Man to stop the evil desires of Dr. Wily. However, after his defeat, Dr. Wily created eight of his own robots to counter Mega Man.",
"price": 32.99,
"genre": [
1,
3
],
"rating": 3.6,
"video": "Mega_Man_2.mp4",
"image_url": "",
"image": "media/games/Mega_Man_2.webp",
"category": 3,
"release_year": "1989"
}
},
{
"pk": 24,
"model": "games.game",
"fields": {
"sku": "pp500124",
"name": "Klonoa:_Door_to_Phantomile",
"friendly_name": "Klonoa: Door to Phantomile",
"description": "Klonoa: Door to Phantomile is a side-scrolling platform game viewed from a \"2.5D\" perspective. The player moves the protagonist, Klonoa, along a path in a two-dimensional fashion, but the game is rendered in three dimensions. This allows the path followed to curve and for the player to interact with objects outside of the path.",
"price": 21.99,
"genre": [
3
],
"rating": 4.1,
"video": "Klonoa:_Door_to_Phantomile.mp4",
"image_url": "",
"image": "media/games/Klonoa:_Door_to_Phantomile.webp",
"category": 3,
"release_year": "1997"
}
},
{
"pk": 25,
"model": "games.game",
"fields": {
"sku": "pp500125",
"name": "Super_Mario_RPG:_Legend_of_the_Seven_Stars",
"friendly_name": "Super Mario RPG: Legend of the Seven Stars",
"description": "A JRPG entry in the Super Mario franchise in which Mario meets many unlikely allies in order to jump and fight his way through the Mushroom Kingdom and collect stars to repair the Star Road, the pathway that grants people's wishes, which was destroyed by Smithy, the otherworldly entity that hijacked Bowser's castle and threw the Kingdom into disarray.",
"price": 31.99,
"genre": [
1,
3,
7
],
"rating": 4,
"video": "Super_Mario_RPG:_Legend_of_the_Seven_Stars.mp4",
"image_url": "",
"image": "media/games/Super_Mario_RPG:_Legend_of_the_Seven_Stars.webp",
"category": 3,
"release_year": "1996"
}
},
{
"pk": 26,
"model": "games.game",
"fields": {
"sku": "pp500126",
"name": "Zelda_II:_The_Adventure_of_Link",
"friendly_name": "Zelda II: The Adventure of Link",
"description": "Zelda II: The Adventure of Link is the second major installment in The Legend of Zelda series and the direct sequel to the first game. Like its predecessor, it features dungeons that must be located in the overworld and searched for an item that will prove useful. However, the game presents many very important gameplay changes compared to the previous one, affecting especially the movements and the combat. Moving around the world map involves encounters with enemies that take place on a side-scrolling playfield rather than the top-down perspective for which the series became known.",
"price": 27.99,
"genre": [
1,
7
],
"rating": 2.6,
"video": "Zelda_II:_The_Adventure_of_Link.mp4",
"image_url": "",
"image": "media/games/Zelda_II:_The_Adventure_of_Link.webp",
"category": 3,
"release_year": "1987"
}
},
{
"pk": 27,
"model": "games.game",
"fields": {
"sku": "pp500127",
"name": "The_Legend_of_Zelda:_A_Link_to_the_Past",
"friendly_name": "The Legend of Zelda: A Link to the Past",
"description": "The Legend of Zelda: A Link to the Past is a top-down action game with puzzle-solving elements similar to the original The Legend of Zelda. After the side-scrolling and RPG-like gameplay of Zelda II: The Adventure of Link, the game is a return to the top-down view and gameplay style of the first installment. It introduces major new items to the series such as the Master Sword and the concept of two different worlds, which was revisited to some extent in Ocarina of Time with two distinct time periods rather than dark and light worlds.",
"price": 32.99,
"genre": [
1,
11,
7
],
"rating": 4.1,
"video": "The_Legend_of_Zelda:_A_Link_to_the_Past.mp4",
"image_url": "",
"image": "media/games/The_Legend_of_Zelda:_A_Link_to_the_Past.webp",
"category": 3,
"release_year": "1991"
}
},
{
"pk": 28,
"model": "games.game",
"fields": {
"sku": "pp500128",
"name": "Silent_Hill",
"friendly_name": "Silent Hill",
"description": "Silent Hill is the first installment in the Silent Hill series of psychological survival horror video games. Unlike earlier survival horror games that focused on protagonists with combat training, the main character Harry Mason is an average man. The gameplay consists of combat, exploration, and puzzle-solving. The controller vibration is used to indicate Harry's heartbeat and will vibrate on low health. The player must regularly enter an inventory screen to check Harry's health, use items, and equip different weapons.",
"price": 25.99,
"genre": [
1,
11
],
"rating": 4.1,
"video": "Silent_Hill.mp4",
"image_url": "",
"image": "media/games/Silent_Hill.webp",
"category": 3,
"release_year": "1999"
}
},
{
"pk": 29,
"model": "games.game",
"fields": {
"sku": "pp500129",
"name": "Sonic_the_Hedgehog_3_&_Knuckles",
"friendly_name": "Sonic the Hedgehog 3 & Knuckles",
"description": "Sonic the Hedgehog 3 & Knuckles (or simply Sonic 3 & Knuckles or Sonic 3 Complete Edition) is a platform video game which is the result of locking-on Sonic & Knuckles with Sonic the Hedgehog 3 using the former catridge's unique \"lock-on\" technology. It is essentially a large combined game of its two lock-on components and contains all Zones from the said games and also contains special features unique to this game. This would have been the original Sonic the Hedgehog 3 the developers intended but time constraints by Sega resulted in the game being split into two.",
"price": 23.99,
"genre": [
3
],
"rating": 4.2,
"video": "Sonic_the_Hedgehog_3_&_Knuckles.mp4",
"image_url": "",
"image": "media/games/Sonic_the_Hedgehog_3_&_Knuckles.webp",
"category": 3,
"release_year": "1994"
}
},
{
"pk": 30,
"model": "games.game",
"fields": {
"sku": "pp500130",
"name": "Resident_Evil_2",
"friendly_name": "Resident Evil 2",
"description": "Resident Evil 2 is a sequel to the first Resident Evil title. Like the previous game in the series, Resident Evil 2 is a 3D action-adventure using three-dimensional polygon characters over two-dimensional pre-rendered backgrounds, with the action viewed through a variety of cinematic fixed camera angles in each room. Players can choose to play as one of two possible characters, each goes through the same initial scenario but with differences in the type of weaponry they find and the people they meet along the way.",
"price": 33.99,
"genre": [
1,
4
],
"rating": 4.2,
"video": "Resident_Evil_2.mp4",
"image_url": "",
"image": "media/games/Resident_Evil_2.webp",
"category": 3,
"release_year": "1998"
}
},
{
"pk": 31,
"model": "games.game",
"fields": {
"sku": "pp500131",
"name": "Mario_Kart_64",
"friendly_name": "Mario Kart 64",
"description": "Mario Kart 64 is the second main installment of the Mario Kart series. It is the first game in the series to use three-dimensional graphics, however, the characters and items in this game are still two-dimensional, pre-rendered sprites. The game offers two camera angles and three engine sizes: 50cc, 100cc and 150cc. Each kart has distinctive handling, acceleration and top speed capabilities. Shells that you fire at rival racers, Bananas that make them skid out and Lightning Bolts that make them small and very slow are just a few of the game's unique power-ups.",
"price": 40.99,
"genre": [
10
],
"rating": 3.5,
"video": "Mario_Kart_64.mp4",
"image_url": "",
"image": "media/games/Mario_Kart_64.webp",
"category": 3,
"release_year": "1996"
}
},
{
"pk": 32,
"model": "games.game",
"fields": {
"sku": "pp500132",
"name": "Resident_Evil_3:_Nemesis",
"friendly_name": "Resident Evil 3: Nemesis",
"description": "Resident Evil 3: Nemesis is a survival horror video game and the third installment in the Resident Evil series. Like its two predecessors, it is a third-person action-adventure game with polygonal characters on pre-rendered backgrounds with cinematic camera angles. Although the game uses the same basic engine and gameplay as the previous games, the gameplay is improved by features such as auto-targeting, a 180 degree spin, and a new dodge move that allows Jill to avoid enemy attacks. The PC and Dreamcast versions includes all eight of Jill's possible costumes, as well as the mercenary mini-game Operation Mad Jackal which allows you to play as one of the three Umbrella soldiers. On the Playstation version, these special features must be unlocked by beating the game with a high score.",
"price": 32.99,
"genre": [
1,
4
],
"rating": 3.8,
"video": "Resident_Evil_3:_Nemesis.mp4",
"image_url": "",
"image": "media/games/Resident_Evil_3:_Nemesis.webp",
"category": 3,
"release_year": "1999"
}
},
{
"pk": 33,
"model": "games.game",
"fields": {
"sku": "pp500133",
"name": "Shin_Megami_Tensei:_Devil_Summoner_-_Soul_Hackers",
"friendly_name": "Shin Megami Tensei: Devil Summoner - Soul Hackers",
"description": "Soul Hackers delivers a first-person, dungeon-crawling RPG experience set in a future where technology and otherworldly forces meet in a macabre fusion of cyberpunk futurism and gothic horror. A first-person sci-fi RPG epic, Soul Hackers tells of a city held up as a beacon of humanity's triumph of technology, but with an infernal secret. In this would-be utopia, a group of hackers takes on a centuries-old mystic society, and a battle for control over humanity's fate is about to begin.",
"price": 29.99,
"genre": [
1,
7
],
"rating": 3.8,
"video": "Shin_Megami_Tensei:_Devil_Summoner_-_Soul_Hackers.mp4",
"image_url": "",
"image": "media/games/Shin_Megami_Tensei:_Devil_Summoner_-_Soul_Hackers.webp",
"category": 3,
"release_year": "1997"
}
},
{
"pk": 34,
"model": "games.game",
"fields": {
"sku": "pp500134",
"name": "Pac-Man",
"friendly_name": "Pac-Man",
"description": "Pac-Man is an arcade game developed by Namco and first released in Japan on May 22, 1980. it is considered one of the classics of the medium, virtually synonymous with video games, and an icon of 1980s popular culture. The player controls Pac-Man through a maze, eating pac-dots (also called pellets or just dots). When all pac-dots are eaten, Pac-Man is taken to the next stage. Four enemies (Blinky, Pinky, Inky and Clyde) roam the maze, trying to catch Pac-Man. If an enemy touches Pac-Man, a life is lost and the Pac-Man itself withers and dies. When all lives have been lost, the game ends. Near the corners of the maze are four larger, flashing dots known as power pellets that provide Pac-Man with the temporary ability to eat the enemies. The enemies turn deep blue, reverse direction and usually move more slowly. When an enemy is eaten, its eyes remain and return to the center box where it is regenerated in its normal color. Blue enemies flash white to signal that they are about to become dangerous again and the length of time for which the enemies remain vulnerable varies from one stage to the next, generally becoming shorter as the game progresses.",
"price": 31.99,
"genre": [
2
],
"rating": 3.4,
"video": "Pac-Man.mp4",
"image_url": "",
"image": "media/games/Pac-Man.webp",
"category": 3,
"release_year": "1980"
}
},
{
"pk": 35,
"model": "games.game",
"fields": {
"sku": "pp500135",
"name": "Street_Fighter_III:_3rd_Strike",
"friendly_name": "Street Fighter III: 3rd Strike",
"description": "Street Fighter III 3rd Strike: Fight for the Future is a 2D competitive fighting game produced by Capcom originally released for the arcade in 1999. It is the second follow-up to Street Fighter III, following Street Fighter III 2nd Impact. Like its predecessors, it runs on the CP System III hardware. 3rd Strike increased the character roster by adding five new characters, including Chun-Li. It also added further refinements to the previous game's play mechanics and rules. It was ported to the Dreamcast, PlayStation 2, and Xbox. A downloadable online version titled Street Fighter III: 3rd Strike Online Edition was released on PlayStation Network and Xbox Live Arcade in August 2011.",
"price": 21.99,
"genre": [
2,
12
],
"rating": 4.2,
"video": "Street_Fighter_III:_3rd_Strike.mp4",
"image_url": "",
"image": "media/games/Street_Fighter_III:_3rd_Strike.webp",
"category": 3,
"release_year": "1999"
}
},
{
"pk": 36,
"model": "games.game",
"fields": {
"sku": "pp500136",
"name": "Moon:_Remix_RPG_Adventure",
"friendly_name": "Moon: Remix RPG Adventure",
"description": "In this \"anti-RPG\" adventure game notable for parodying and subverting common JRPG conventions, you level up by loving, not fighting. Revive dead animals and bond with everyone around you to obtain the most important thing in the universe \u00e2\u0080\u0094 love.",
"price": 25.99,
"genre": [
1,
11,
7
],
"rating": 4.4,
"video": "Moon:_Remix_RPG_Adventure.mp4",
"image_url": "",
"image": "media/games/Moon:_Remix_RPG_Adventure.webp",
"category": 3,
"release_year": "1997"
}
},
{
"pk": 37,
"model": "games.game",
"fields": {
"sku": "pp500137",
"name": "Final_Fantasy_Tactics",
"friendly_name": "Final Fantasy Tactics",
"description": "Lead epic battles in a new FINAL FANTASY world. Betrayal and darker dealings await in Squaresoft's game of war. Fight hundreds of battles across dangerous 3D terrain as an ancient blood feud awakens a deadlier foe.",
"price": 21.99,
"genre": [
7,
14,
9,
8
],
"rating": 4.2,
"video": "Final_Fantasy_Tactics.mp4",
"image_url": "",
"image": "media/games/Final_Fantasy_Tactics.webp",
"category": 3,
"release_year": "1997"
}
},
{
"pk": 38,
"model": "games.game",
"fields": {
"sku": "pp500138",
"name": "Tekken_3",
"friendly_name": "Tekken 3",
"description": "Tekken 3 maintains the same core fighting system and concept as its predecessors, but brings many improvements, such as significantly more detailed graphics and animations, fifteen new characters added to the game's roster, more modern music and faster and more fluid gameplay.\n \n Perhaps the most noticeable change from Tekken 2 fight system is movement reform - whereas the element of depth had been largely insignificant in previous Tekken games (aside from some characters having unique sidesteps and dodging maneuvers), Tekken 3 added emphasis on the third axis, allowing all characters to sidestep in or out of the background by lightly pressing the arcade stick (or tapping the controller button in the console version) towards the corresponding direction. Another big change in movement was that jumping was toned down, no longer allowing fighters to jump to extreme heights (as was present in previous games), but keeping leaps to reasonable, realistic heights. It made air combat more controllable, and put more use to sidestep dodges, as jumping no longer became a universal dodge move that was flying above all of the ground moves. Other than that, the improved engine allowed for quick recoveries from knock-downs, more escapes from tackles and stuns, better juggling (as many old moves had changed parameters, allowing them to connect in combo-situations, where they wouldn't connect in previous games) and extra newly created combo throws.\n \n\n Tekken 3 was the first Tekken to feature a beat 'em up minigame called \"Tekken Force\", which pitted the player in various stages against enemies in a side-scrolling fashion. If the player succeeds in beating the minigame four times, Dr. Bosconovitch would be a playable character (granted that you defeat him first). This was continued in Tekken 4 and succeeded by the Devil Within minigame in Tekken 5 - but Boskonovitch was dropped as a playable character after Tekken 3. There is also a minigame \"Tekken Ball\", similar to beach volleyball, where one has to hit the ball with a powerful attack to hurt the opponent or try to hit the ball in such a way that it hits the ground in the opponent's area, thus causing damage.",
"price": 36.99,
"genre": [
12
],
"rating": 3.9,
"video": "Tekken_3.mp4",
"image_url": "",
"image": "media/games/Tekken_3.webp",
"category": 3,
"release_year": "1997"
}
},
{
"pk": 39,
"model": "games.game",
"fields": {
"sku": "pp500139",
"name": "Armored_Core",
"friendly_name": "Armored Core",
"description": "Armored Core (\u00e3\u0082\u00a2\u00e3\u0083\u00bc\u00e3\u0083\u009e\u00e3\u0083\u00bc\u00e3\u0083\u0089\u00e3\u0083\u00bb\u00e3\u0082\u00b3\u00e3\u0082\u00a2 \u00c4\u0080m\u00c4\u0081do Koa) is a mecha video game released in 1997, the first in the Armored Core series. It is an action game played from third person perspective.",
"price": 34.99,
"genre": [
4,
6
],
"rating": 3.4,
"video": "Armored_Core.mp4",
"image_url": "",
"image": "media/games/Armored_Core.webp",
"category": 3,
"release_year": "1997"
}
},
{
"pk": 40,
"model": "games.game",
"fields": {
"sku": "pp500140",
"name": "Metal_Slug",
"friendly_name": "Metal Slug",
"description": "Metal Slug is a 1996 run and gun arcade video game originally developed by Nazca Corporation and released by SNK for the Neo Geo MVS. It is the first installment in the eponymous series. Set in 2028, players assume the role of Peregrine Falcon Strike Force soldiers Marco Rossi and Tarma Roving on a fight against the Rebel Army led by Donald Morden and overthrow his coup d'\u00c3\u00a9tat to prevent a New World Order.",
"price": 35.99,
"genre": [
2,
3,
4
],
"rating": 3.6,
"video": "Metal_Slug.mp4",
"image_url": "",
"image": "media/games/Metal_Slug.webp",
"category": 3,
"release_year": "1996"
}
},
{
"pk": 41,
"model": "games.game",
"fields": {
"sku": "pp500141",
"name": "Suikoden_II",
"friendly_name": "Suikoden II",
"description": "Experience An Epic Tale of Warfare, Magic, Friendship And Betrayal\n \n\n -New tactical map battles add a whole level of strategy\n \n -Fantastic spells with stunning animation sequences and specialized attacks\n \n -Over 108 different characters can join your party and help you on your quest\n \n -Unlock hidden storylines using your memory card data from the original Suikoden\n \n -Build up your castle during the game to a thriving virtual community",
"price": 21.99,
"genre": [
7,
14
],
"rating": 4.4,
"video": "Suikoden_II.mp4",
"image_url": "",
"image": "media/games/Suikoden_II.webp",
"category": 3,
"release_year": "1998"
}
},
{
"pk": 42,
"model": "games.game",
"fields": {
"sku": "pp500142",
"name": "Serial_Experiments_Lain",
"friendly_name": "Serial Experiments Lain",
"description": "An adventure game where you follow the cybernetic journeys of a girl named Lain.",
"price": 25.99,
"genre": [
1
],
"rating": 4,
"video": "Serial_Experiments_Lain.mp4",
"image_url": "",
"image": "media/games/Serial_Experiments_Lain.webp",
"category": 3,
"release_year": "1998"
}
},
{
"pk": 43,
"model": "games.game",
"fields": {
"sku": "pp500143",
"name": "Kirby's_Dream_Land_2",
"friendly_name": "Kirby's Dream Land 2",
"description": "Kirby returns and has joined forces with new friends in this thrilling sequel!\n \n\n The Rainbow Bridges that connect the seven Rainbow Islands have disappeared! Help Kirby solve the mystery! Search through the different islands while battling King DeDeDe and his horde of evil minions.\n \n\n Along the way, meet Rick the Hamster, Kine the Fish, and Coo the Owl. Each possesses important abilities that can multiply the magnitude of Kirby's powers! Earn the mysterious Rainbow Sword, and prepare to face Kirby's most menacing rival ever--the evil Dark Matter!",
"price": 34.99,
"genre": [
3
],
"rating": 3.2,
"video": "Kirby's_Dream_Land_2.mp4",
"image_url": "",
"image": "media/games/Kirby's_Dream_Land_2.webp",
"category": 3,
"release_year": "1995"
}
},
{
"pk": 44,
"model": "games.game",
"fields": {
"sku": "pp500144",
"name": "Castlevania:_Bloodlines",
"friendly_name": "Castlevania: Bloodlines",
"description": "Time refuses to forget the Belmont family's horrifying, bloody destiny. And in 1917 two of its descendants are summoned by fate into epic battle. Their enemy? The most evil incarnation of Castlevania legacy to ever rise from the grave, the vampiress Countess Bartley. This spine-tingling, 6-stage fear-fest overflows with graphic sights and sounds from your worst nightmares. As John Morris, the whip wielding vampire hunter, or Eric Lecarde, master lanceman, you'll pursue the demonic Countess all across Europe before she resurrects Dracula for a final reign of global terror. Alas, her trail of doom is laden with zombies, hideous mutants, grotesque giants, ghouls and ghastly creatures. Taste the sweat dripping into your mouth as you try rescuing yourself from diabolical traps. Feel the torturous strain on every muscle as you wield again and again sacred weapon power-ups such as Holy Water, the Battle Axe, the Crystal Blade Boomerang and the Mirror of Truth. But in the end, make sure you've saved enough strength to scream!",
"price": 27.99,
"genre": [
1,
3
],
"rating": 3.7,
"video": "Castlevania:_Bloodlines.mp4",
"image_url": "",
"image": "media/games/Castlevania:_Bloodlines.webp",
"category": 3,
"release_year": "1994"
}
},
{
"pk": 45,
"model": "games.game",
"fields": {
"sku": "pp500145",
"name": "Final_Fantasy_V",
"friendly_name": "Final Fantasy V",
"description": "Final Fantasy V is a fantasy role-playing video game developed and published by Square in 1992 as a part of the Final Fantasy series. The game first appeared only in Japan on Nintendo's Super Famicom (known internationally as the Super Nintendo Entertainment System).\n \n\n It has been ported with minor differences to Sony's PlayStation and Nintendo's Game Boy Advance. An original video animation produced in 1994 called FINAL FANTASY: Legend of the Crystals serves as a sequel to the events depicted in the game. It was released for the PlayStation Network on April 6, 2011, in Japan. An enhanced port of the game, with new high-resolution graphics and a touch-based interface, was released for iPhone and iPad on March 28, 2013, and for Android on September 25, 2013.\n \n\n FINAL FANTASY V has been praised for the freedom of customization that the player has over the characters, achieved through the greatly expanded Job System. Despite being released only in Japan, the Super Famicom version sold more than two million copies. The PlayStation version has earned \"Greatest Hits\" status, selling more than 350,000 copies.",
"price": 40.99,
"genre": [
1,
7
],
"rating": 3.8,
"video": "Final_Fantasy_V.mp4",
"image_url": "",
"image": "media/games/Final_Fantasy_V.webp",
"category": 3,
"release_year": "1992"
}
},
{
"pk": 46,
"model": "games.game",
"fields": {
"sku": "pp500146",
"name": "Fire_Emblem:_Genealogy_of_the_Holy_War",
"friendly_name": "Fire Emblem: Genealogy of the Holy War",
"description": "Fire Emblem: Genealogy of the Holy War is a Japanese Super Famicom tactical role-playing game developed by Intelligent Systems and published by Nintendo. It was released on May 14, 1996 in Japan. It is the fourth title in the Fire Emblem series, the second Fire Emblem title for the Super Famicom, and the last game produced by the late Gunpei Yokoi. It was released on the Japanese Virtual Console service on January 30, 2007. The game was originally to be titled as Fire Emblem: Light Inheritors.",
"price": 33.99,
"genre": [
7,
14,
8
],
"rating": 4,
"video": "Fire_Emblem:_Genealogy_of_the_Holy_War.mp4",
"image_url": "",
"image": "media/games/Fire_Emblem:_Genealogy_of_the_Holy_War.webp",
"category": 3,
"release_year": "1996"
}
},
{
"pk": 47,
"model": "games.game",
"fields": {
"sku": "pp500147",
"name": "Half-Life:_Opposing_Force",
"friendly_name": "Half-Life: Opposing Force",
"description": "Opposing Force returns to the same setting as Half-Life, but instead portrays the events from the perspective of a U.S. Marine, one of the enemy characters in the original game. The player character, Adrian Shephard, is sent in to neutralize the Black Mesa Research Facility after a scientific mishap causes it to be invaded by aliens, but quickly finds that the Marines are outnumbered and slowly being beaten back by a second alien race and black operations units.",
"price": 33.99,
"genre": [
3,
11,
4
],
"rating": 3.7,
"video": "Half-Life:_Opposing_Force.mp4",
"image_url": "",
"image": "media/games/Half-Life:_Opposing_Force.webp",
"category": 3,
"release_year": "1999"
}
},
{
"pk": 48,
"model": "games.game",
"fields": {
"sku": "pp500148",
"name": "Pok\u00c3\u00a9mon_Gold",
"friendly_name": "Pok\u00c3\u00a9mon Gold",
"description": "Pok\u00c3\u00a9mon Gold, along with Pok\u00c3\u00a9mon Silver, are the sequels to Pok\u00c3\u00a9mon Red and Blue. They offer 100 new Pok\u00c3\u00a9mon to capture and train, 8 more Gyms to take on and a new Pok\u00c3\u00a9mon League challenge. Featuring an expanded post-game, Pok\u00c3\u00a9mon Gold and Silver additionally offer extra content from the previous entries in the series.",
"price": 29.99,
"genre": [