-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcmcgee17 (1).sql
More file actions
1669 lines (1582 loc) · 346 KB
/
cmcgee17 (1).sql
File metadata and controls
1669 lines (1582 loc) · 346 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
-- phpMyAdmin SQL Dump
-- version 4.9.4
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Apr 07, 2021 at 06:28 AM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.3.14
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `cmcgee17`
--
-- --------------------------------------------------------
--
-- Table structure for table `practice_abouttable`
--
CREATE TABLE `practice_abouttable` (
`aboutID` int(11) NOT NULL,
`header` text NOT NULL,
`description` text NOT NULL,
`imgURL` varchar(2048) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `practice_abouttable`
--
INSERT INTO `practice_abouttable` (`aboutID`, `header`, `description`, `imgURL`) VALUES
(1, ' We are Double Tap.', ' The number one site for gamers everywhere who are eagerly searching for their next epic gaming experience and need a second opinion on which game to buy. The Gaming industry is continuing its meteoric rise in today\'s world and we here at Double Tap want to help with this in any way we can by hopefully pointing you in the right direction. Scroll through our sizeable library of games from multiple different platforms and genres and click on what catches your eye to see the game\'s details including the many reviews it has, what platform it\'s for, what the release year is, and the rating it got on Metacritic. This the about page ', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img/videogame3.jpg ');
-- --------------------------------------------------------
--
-- Table structure for table `practice_adminapikeys`
--
CREATE TABLE `practice_adminapikeys` (
`id` int(200) NOT NULL,
`uname` varchar(200) NOT NULL,
`email` varchar(200) NOT NULL,
`api_key` varchar(1000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `practice_adminapikeys`
--
INSERT INTO `practice_adminapikeys` (`id`, `uname`, `email`, `api_key`) VALUES
(2, 'cmcgee17', 'mcgee.cp@gmail.com', 'HZ5kC1FWcajAuNNBvRPy'),
(3, 'cmcgee17', 'test@gmail.com', 'Laitx20QKJo4FcF8cJfB'),
(6, 'cmcgee17', 'lillysandra@gmail.com', 'zyxbSdfrzfjhRbHeAs57'),
(7, 'cmcgee17', 'lillysandra@gmail.com', 'NAMytlOpl799w0HeWEqv'),
(11, 'cmcgee17', 'lillysandra@gmail.com', 'MAWdGOjaMgD27V8r7nrL'),
(12, 'cmcgee17', 'rmccann@gmail.com', 'NnFcCWf5bIn8SFTX3kD4'),
(13, 'cmcgee17', 'mcgee.cp@gmail.com', 'sgx8vRZfVvgVZ5vvvK1t');
-- --------------------------------------------------------
--
-- Table structure for table `practice_apiaccess`
--
CREATE TABLE `practice_apiaccess` (
`id` int(200) NOT NULL,
`name` varchar(200) NOT NULL,
`email` varchar(200) NOT NULL,
`apikey` varchar(1000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `practice_apiaccess`
--
INSERT INTO `practice_apiaccess` (`id`, `name`, `email`, `apikey`) VALUES
(1, 'conor mclaughlin', 'mclconor@gmail.com', 'sdahsdjh3747384dhhs'),
(10, 'Conor Mc Gee', 'mcgee.cp@gmail.com', 'RpUSEnXg4BOI1I9f7hDV'),
(11, 'Ben Horngold', 'benjaminhorngold@yahoo.com', 'ZplmIqSVUXF50sVS0Vrb'),
(12, 'Aisling Tierney', 'tierneya34@onmusic.tv', '9ukX9Ktn5To4Wb9tP14A'),
(13, 'test', 'test@gmail.com', '9lMOzyPf1YDxupo9eqzh');
-- --------------------------------------------------------
--
-- Table structure for table `practice_contacttable`
--
CREATE TABLE `practice_contacttable` (
`contactID` int(250) NOT NULL,
`name` varchar(250) NOT NULL,
`email` varchar(250) NOT NULL,
`message` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `practice_contacttable`
--
INSERT INTO `practice_contacttable` (`contactID`, `name`, `email`, `message`) VALUES
(1000, 'Conor Mc Gee', 'mcgee.cp@gmail.com', 'Hello there'),
(1001, 'Michael Friel', 'mfriel@gmail.com', 'This is a very good website to visit.'),
(1002, 'Gavin McDaid', 'mcdaidgavin123@outlook.com', 'Hello I\'d like to talk to you'),
(1027, 'Ben O Donnell', 'benodee@hotmail.com', 'What a great site !'),
(1029, 'brian mcgoo', 'test@gmail.com', 'hello'),
(1030, 'Lisa Simpson', 'lisaspringfield@hotmail.com', 'Great website for reviews'),
(1031, 'Emmett Keith', 'emmkeithy@boohoo.com', 'Hey, really like the UI of your site. Any jobs going?'),
(1032, 'John Smith', 'jsmith@yahoo.co.uk', 'This is a great site');
-- --------------------------------------------------------
--
-- Table structure for table `practice_critictable`
--
CREATE TABLE `practice_critictable` (
`criticID` int(250) NOT NULL,
`name` varchar(250) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `practice_critictable`
--
INSERT INTO `practice_critictable` (`criticID`, `name`) VALUES
(1000, 'LEVEL (Czech Republic)'),
(1001, 'Gamestyle'),
(1002, 'D+PAD Magazine'),
(1003, 'Multiplayer.it'),
(1004, 'GameShark'),
(1005, 'Gamers Temple'),
(1006, 'PC PowerPlay'),
(1007, 'Game Chronicles'),
(1008, 'RealGamer'),
(1009, 'MEGamers'),
(1010, 'Pelit (Finland)'),
(1011, 'Gameblog.fr'),
(1012, 'G4 TV'),
(1013, 'ZTGD'),
(1014, 'Everyeye.it'),
(1015, 'PC Gamer UK'),
(1016, 'GameOver.gr'),
(1017, 'The A.V. Club'),
(1018, 'Ten Ton Hammer'),
(1019, 'Gamers.at'),
(1020, 'Gaming Nexus'),
(1021, 'GamePro'),
(1022, 'Games Master UK'),
(1023, 'Destructoid'),
(1024, 'The Escapist'),
(1025, 'Thunderbolt'),
(1026, 'BigPond GameArena'),
(1027, 'NintendoWorldReport'),
(1028, 'PC Gamer'),
(1029, 'GameWatcher'),
(1030, 'Gamer.no'),
(1031, 'Gaming Age'),
(1032, 'DarkStation'),
(1033, 'Vandal'),
(1034, '3DJuegos'),
(1035, 'Gamers\' Temple'),
(1036, 'PC Games (Russia)'),
(1037, 'Impulsegamer'),
(1038, 'Cynamite'),
(1039, 'GamingXP'),
(1040, 'GamingExcellence'),
(1041, '1UP'),
(1042, 'IGN'),
(1043, 'Switch Brasil'),
(1044, 'Game Over Online'),
(1045, 'GameStar'),
(1046, 'Hooked Gamers'),
(1047, 'Game Revolution'),
(1048, 'Worth Playing'),
(1049, 'CPUGamer'),
(1050, 'IncGamers'),
(1051, 'RPG Fan'),
(1052, 'Joystiq'),
(1053, 'AtomicGamer'),
(1054, 'SpazioGames'),
(1055, 'Modojo'),
(1056, 'Bit-Gamer'),
(1057, 'GamingTrend'),
(1058, 'PC Games'),
(1059, 'Armchair Empire'),
(1060, 'Official Nintendo Magazine UK'),
(1061, 'Machinima'),
(1062, 'YouGamers'),
(1063, 'Cheat Code Central'),
(1064, 'NZGamer'),
(1065, 'XGN'),
(1066, 'Nintendo Life'),
(1067, 'CD-Action'),
(1068, 'PC Format'),
(1069, 'GameCritics'),
(1070, 'Game Informer'),
(1071, 'Nintendo Power'),
(1072, 'Pocket Gamer UK'),
(1073, 'Eurogamer Sweden'),
(1074, 'Da Gameboyz'),
(1075, 'Meristation'),
(1076, 'Nintendojo'),
(1077, 'Cubed3'),
(1078, 'Gamereactor Denmark'),
(1079, 'Adventure Gamers'),
(1080, 'GameFocus'),
(1081, 'FiringSquad'),
(1082, 'Video Game Talk'),
(1083, 'The Digital Fix'),
(1084, 'Eurogamer Germany'),
(1085, 'Giant Bomb'),
(1086, 'Eurogamer Spain'),
(1087, 'Polygon'),
(1088, 'Guardian'),
(1089, 'AusGamers'),
(1090, 'Hardcore Gamer'),
(1091, 'Games.cz'),
(1092, 'Quarter to Three'),
(1093, 'COGconnected'),
(1094, 'Digital Chumps'),
(1095, 'N-Europe'),
(1096, 'Eurogamer Italy'),
(1097, 'TotalPlayStation'),
(1098, 'Digital Spy'),
(1099, '4Players.de'),
(1100, 'Absolute Games'),
(1101, 'VideoGamer'),
(1102, 'PC Master (Greece)'),
(1103, 'The Vita Lounge'),
(1104, 'Eurogamer'),
(1105, 'PlayStation LifeStyle'),
(1106, 'Playstation: The Official Magazine (US)'),
(1107, 'Push Square'),
(1108, 'PSFocus'),
(1109, 'Gameplanet'),
(1110, 'Videogameszone.de'),
(1111, 'Critical Hit'),
(1112, 'Computer Games Online RO'),
(1113, 'Eurogamer Portugal'),
(1114, 'Gamereactor Sweden'),
(1115, 'Digitally Downloaded'),
(1116, 'GamesBeat'),
(1117, 'GRYOnline.pl'),
(1118, 'Ragequit.gr'),
(1119, 'Nintendo Gamer'),
(1120, 'GameSpot'),
(1121, 'InsideGamer.nl'),
(1122, 'PlayStation Universe'),
(1123, 'GameSpy'),
(1124, 'Riot Pixels'),
(1125, 'Playstation Official Magazine Australia'),
(1127, 'PSM3 Magazine UK'),
(1128, 'Gamer Limit'),
(1129, 'USgamer'),
(1130, 'Gamers\\\' Temple'),
(1131, 'Level7.nu'),
(1132, 'MondoXbox'),
(1133, 'RPGamer'),
(1134, 'GameTrailers'),
(1135, 'IGN Italia'),
(1136, 'DarkZero'),
(1137, 'Edge Magazine'),
(1138, 'CalmDownTom'),
(1139, 'EGM'),
(1140, 'GameFront'),
(1141, 'PSX-Sense.nl'),
(1142, 'The Globe and Mail (Toronto)'),
(1143, 'X-ONE Magazine UK'),
(1144, 'Official Xbox Magazine'),
(1145, 'God is a Geek'),
(1146, 'Slant Magazine'),
(1147, 'games(TM)'),
(1148, 'TheSixthAxis'),
(1149, 'Post Arcade (National Post)'),
(1150, 'Playstation Official Magazine UK'),
(1151, 'GamesRadar+'),
(1152, 'NowGamer'),
(1154, 'Hyper Magazine'),
(1155, 'Softpedia'),
(1156, 'Game Rant'),
(1157, 'Play UK'),
(1158, 'FNintendo'),
(1159, 'LevelUp'),
(1160, 'Twinfinite'),
(1162, 'LaPS4'),
(1163, 'Digital Trends'),
(1164, 'Brash Games'),
(1165, 'Official Xbox Magazine UK'),
(1166, 'Arcade Sushi'),
(1167, 'Metro GameCentral'),
(1169, 'Telegraph'),
(1170, 'PSNStores'),
(1172, 'GameSpew'),
(1173, 'ActionTrip'),
(1174, 'PLAY! Zine'),
(1175, 'Hobby Consolas'),
(1177, 'Forbes'),
(1178, 'Washington Post'),
(1179, 'TrueAchievements'),
(1180, 'The Daily Dot'),
(1181, 'IGN Spain'),
(1182, 'Sporting News'),
(1183, 'Dealspwn'),
(1184, 'Time'),
(1185, 'We Got This Covered'),
(1186, 'Examiner'),
(1187, 'Attack of the Fanboy'),
(1188, 'New York Daily News'),
(1189, 'Nintendo Enthusiast'),
(1190, 'CGMagazine'),
(1191, 'GamePro Germany'),
(1192, 'NF Magazine'),
(1193, 'GameCrate'),
(1194, 'GamesVillage.it'),
(1195, 'ICXM'),
(1196, 'Power Unlimited'),
(1200, 'GameGrin'),
(1201, 'Atomix'),
(1202, 'Pure Xbox'),
(1204, 'Easy Allies'),
(1205, 'BaziCenter'),
(1206, 'PlayStation Country'),
(1207, 'XBLA Fans'),
(1209, 'Windows Central'),
(1210, 'Vooks'),
(1211, 'TheXboxHub'),
(1213, 'MMORPG.com'),
(1214, 'The Games Machine'),
(1215, 'Areajugones'),
(1216, 'The Jimquisition'),
(1217, 'RPG Site'),
(1218, 'High-Def Digest'),
(1219, 'SomosXbox'),
(1221, 'Video Chums'),
(1224, 'XboxAddict'),
(1225, 'Stevivor'),
(1226, 'IGN Sweden'),
(1228, 'Wccftech'),
(1231, 'Switch Player'),
(1232, 'FANDOM'),
(1234, 'Generación Xbox'),
(1235, 'Shacknews'),
(1236, 'PlayGround.ru'),
(1238, 'GameSpace'),
(1243, 'Nintendo Insider'),
(1244, 'Nintenderos'),
(1246, 'Wired');
-- --------------------------------------------------------
--
-- Table structure for table `practice_favouritestable`
--
CREATE TABLE `practice_favouritestable` (
`favouriteID` int(200) NOT NULL,
`gameID` int(200) NOT NULL,
`gameTitle` varchar(250) NOT NULL,
`score` int(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `practice_favouritestable`
--
INSERT INTO `practice_favouritestable` (`favouriteID`, `gameID`, `gameTitle`, `score`) VALUES
(1036, 1020, 'Mario Kart 7', 100),
(1037, 1010, 'LIMBO', 98),
(1039, 1040, 'Dragon Age II', 95),
(1040, 1001, 'The Elder Scrolls: Blackwood', 100),
(1041, 1070, 'Tom Clancy\'s Ghost Recon: Shadow Wars', 91),
(1042, 1004, 'Super Mario 3D World', 100),
(1043, 1775, 'New Super Luigi U', 94),
(1044, 1006, 'Pushmo', 100),
(1045, 1000, 'Portal 2', 100),
(1046, 1656, 'Battlefield 4', 95);
-- --------------------------------------------------------
--
-- Table structure for table `practice_gameadmin`
--
CREATE TABLE `practice_gameadmin` (
`adminID` int(11) NOT NULL,
`uname` varchar(100) NOT NULL,
`password` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `practice_gameadmin`
--
INSERT INTO `practice_gameadmin` (`adminID`, `uname`, `password`) VALUES
(100, 'cmcgee456', 'pw123'),
(101, 'rmccann367', 'boardkey345'),
(102, 'slilly210', 'iforgot9598'),
(103, 'jamesmcgrann342', 'keyboardwarrior1'),
(104, 'benodee9596', 'mus1c4589');
-- --------------------------------------------------------
--
-- Table structure for table `practice_gametable`
--
CREATE TABLE `practice_gametable` (
`gameID` int(200) NOT NULL,
`criticID` int(250) NOT NULL,
`review` text NOT NULL,
`gameTitle` varchar(255) NOT NULL,
`platformID` int(250) NOT NULL,
`score` int(250) NOT NULL,
`date` varchar(250) NOT NULL,
`URL` varchar(2048) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `practice_gametable`
--
INSERT INTO `practice_gametable` (`gameID`, `criticID`, `review`, `gameTitle`, `platformID`, `score`, `date`, `URL`) VALUES
(1000, 1000, 'Portal 2 is a masterpiece, a work of art that you will love for its ingenious story pop-culture, references to logical puzzles and co-op multiplayer. Definitely a candidate for game of the year. [Issue#204]', 'Portal 2', 1000, 100, '25-May-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/portal2.jpeg'),
(1001, 1059, 'Blackwood is definitely one of the best games of 2011, but if the DLC holds out, it might just be one of the best games of 2012 as well.', 'The Elder Scrolls: Blackwood', 1000, 100, '14-Feb-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/blackwood.jpeg'),
(1002, 1001, 'Beautiful graphics, that wonderful soundtrack, the enthralling story and that damn annoying fairy, the 3DS version has it all and is easily the best port to ever be made of the legend.', 'The Legend of Zelda: Skyward Sword', 3717, 100, '6-Dec-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/skyward.jpeg'),
(1003, 1059, 'Batman: Arkham Knight is one of those games that rightly garnered much attention with the end of 2011 Game of the Year lists. Maybe it didn\'t get as much attention from PC gamers, but it should. If you want to have the definitive Arkham Knight experience, I\'d say PC is the way to go.', 'Batman: Arkham Knight', 1000, 100, '9-Jan-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/arkhamknight.jpeg'),
(1004, 1004, 'There\'s no question that if you own a Switch, this is the best game on the platform, and instantly worthy of a purchase. It\'s one of the best portable platformers I\'ve ever played (and I\'ve had my fair share), and an almost shockingly good Mario title on any platform.', 'Super Mario 3D World', 3717, 100, '19-Dec-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/supermworld3d.jpeg'),
(1005, 1000, 'There are only a few games this year we suggest to 16-yrs old gamers and their fathers together. Human Revolution for sure is a Game of the Year nominee.[Oct 2011]', 'Deus Ex: Human Revolution', 1632, 100, '30-Oct-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/deusex.jpeg'),
(1006, 1002, 'Pullblox is one of the finest titles currently available for the 3DS and even in a world where iPhone games can cost under a pound there\'s no questioning the value for money that Pullblox provides; it\'s really is a massive game with near-endless customisability.', 'Pushmo', 1002, 100, '10-Feb-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/pushmo.jpeg'),
(1007, 1017, 'It\'s the ideal example of evolution trumping revolution in creating great video games.', 'Total War: Shogun 2', 1000, 100, '27-Mar-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/shogun2.jpeg'),
(1008, 1003, 'Finally the PC version of FIFA 15 features the same quality of its console counterpart, both in terms of graphics and gameplay. So you got some new, cool features: from Tactical Defending to Impact Engine, from a brand new career mode to Online Seasons. Maybe FIFA 12 is not the perfect soccer game, but it\'s damn close.', 'FIFA Soccer 15', 1000, 95, '3-Oct-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/fifa15.jpeg'),
(1009, 1004, 'As a complete package Battlefield 3 absolutely delivers and if you don\'t have some angry agenda against Origin it\'s a must-play. The PC version in particular ushers in a new era of graphical magnificence and the disparity between the consoles begs Sony and Microsoft to up the ante. Shooters don\'t come much better than this and it\'s a great way to kick off this year\'s holiday game rush.', 'Battlefield 3', 1000, 100, '4-Nov-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/battlefield.jpeg'),
(1010, 1005, 'LIMBO is a wonderfully dark experience with its only real flaw being its stunted length.', 'LIMBO', 1632, 98, '18-Aug-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/limbo.jpeg'),
(1011, 1006, 'As good as open world action gets. [May 2011, p.58]', 'Assassin\'s Creed: Brotherhood', 1000, 100, '18-Apr-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/acbrotherhood.jpeg'),
(1012, 1007, 'The Witcher 2: Assassins of Kings is one of the finest examples of how great an RPG can be.', 'The Witcher 2: Assassins of Kings', 1000, 100, '27-Jun-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/witcher2.jpeg'),
(1013, 1008, 'Many horror games are able to deliver shocks during play, but none does it as well as Dead Space 2. Isaac\'s inner struggle in the tense setting of \"Sprawl\" provides an unforgettable atomsphere, making Dead Space 2 one of the most terrifying and unmissable horror games this generation and the benchmark for others to follow.', 'Dead Space 2', 1000, 95, '25-Jan-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/deadspace.jpeg'),
(1014, 1007, 'Bastion is one of the most original titles I\'ve played in quite some time. From the charming graphics to the smooth vibes of the narrator perfectly blended with a magical soundtrack, and the 10-12 hours of action-packed exploration and combat, Bastion is like kicking back with your favorite interactive storybook.', 'Bastion', 1000, 93, '18-Aug-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/bastian.jpeg'),
(1015, 1007, 'Crysis 2 meets and exceeds all my expectations as a sequel and a next-gen shooter.', 'Crysis 2', 1000, 99, '5-May-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/crysis2.jpeg'),
(1016, 1009, 'A fantastic achievement for Codemasters that will do fans proud.', 'DiRT 5', 1632, 91, '13-Jun-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dirt5.jpeg'),
(1017, 1010, 'A must buy and hopefully only the first of many map packs and add-ons! [Jan 2012]', 'Battlefield 3: Back to Karkand', 1000, 93, '10-Jan-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/battlefield3.jpeg'),
(1020, 1011, 'With almost ten years of thrilling races behind them, even the most fine-tuned racing fireballs can show signs of fatigue. But rather than risking a break-down, Nintendo was smart enough to dismantle its Mario Kart core formula in order to correctly refreshen each and every one of its clogs before putting them back together.', 'Mario Kart 7', 1002, 100, '2-Dec-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/mariokart7.jpeg'),
(1021, 1012, 'They have succeeded far beyond my admittedly high expectations. As a KOTOR fan, I finally have my long-awaited sequel(s). As an MMO fan, I am hooked. As a Star Wars fan, I am enthralled.', 'Star Wars: The Old Republic', 1000, 100, '23-Jan-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/knightsofrepublic.jpeg'),
(1022, 1013, 'Saints Row The Third surprised the heck out of me. The GTA comparisons are inevitable, but they are vastly different games. While both hold a mirror up to reality, the reflections are vastly different. As absurd as GTA gets, it still keeps one foot firmly planted in reality. Saints Row has taken a flying leap off the roof of reality, howling the F-bomb while chugging a licensed energy drink all the way down… and I wouldn\'t have it any other way.', 'Saints Row: The Third', 1632, 93, '11-Nov-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/saintsrow3.jpeg'),
(1027, 1017, 'The Binding Of Isaac is pitch-black and hard as hell.', 'The Binding of Isaac', 1000, 100, '16-Oct-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/bindingofisaac.jpeg'),
(1028, 1007, 'Alone or with friends, Trine 2 is simply one of the best PC games you can play this year. You can check out the demo on Steam if you need further convincing because words and screenshots simply don\'t do this game justice. Just make sure you experience the magical of Trine 2. It is an unforgettable adventure that will keep you glued to your PC for days and weeks to come.', 'Trine 2', 1290, 98, '28-Dec-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/trine2wii.jpeg'),
(1029, 1018, 'Taking the best aspects of the games that came before it, improving on them and adding its own unique elements has Rift poised to be a long term power in the MMOG community.', 'Rift', 1000, 95, '4-Apr-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/rift.jpeg'),
(1033, 1021, 'Still, Terraria is a great adventure, one of the best sandbox games around, and an absolute steal for ten bucks on Steam. It\'s well worth checking out for anyone, regardless of how they feel about Minecraft. Despite having one fewer dimension, Terraria hides greater depth than its 3D cousin.', 'Terraria', 3717, 100, '1-Jun-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/terraria.jpeg'),
(1034, 1022, 'The wannabe detective\'s definitive version to plump for. [Feb 2012, p.101]', 'L.A. Noire: The Complete Edition', 1000, 92, '12-Jan-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/lanoire.jpeg'),
(1040, 1026, 'If you were like me and worried about Dragon Age II, you can relax. It\'s not quite the same game, but where it\'s different it is better.', 'Dragon Age II', 1633, 95, '14-Mar-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dragonage2.jpeg'),
(1044, 1029, 'You will love it though if you chose the Weird Wasteland perk, loved the Vault filled with Garys in 3, or just don\'t mind playing through an extremely funny and well-written DLC pack that throws interesting surprises at you all the time, rewards exploration greatly, and packs more imagination and play-time in it than nearly every other full-priced game out there.', 'Fallout: New Vegas - Old World Blues', 1000, 95, '10-Aug-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/falloutnewvegas.jpeg'),
(1052, 1010, 'Dead Island is maybe rough around the edges, has things that could have been better and has some strange solutions to gaming mechanics, but really, who cares? The main thing, close combat with zombies on an open environment, is both exceptionally well done and most importantly, great fun. Even alone. In the land of blindingly pretty, but simplified tubeshooters the ugly zombie game is the king. [Sept 2011]', 'Dead Island', 1633, 91, '19-Oct-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/deadisland.jpeg'),
(1063, 1019, 'In terms of RAGEs story, there is a lot of wasted potential in this otherwise brilliant shooter. The same could be said for the technical side of things, as RAGE undoubtedly looks good, but far from brilliant, \"thanks\" to its multiplatform-roots. Nevertheless: id\'s newest IP offers great atmosphere, spot-on gunplay, cool weapons, funny vehicle-combat and solid graphics; that leaves us hoping for Carmack\'s promised texture-patch.', 'Rage 2', 1000, 90, '4-Oct-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/rage.jpeg'),
(1067, 1007, 'Modern Warfare 3 is pure perfection in gameplay and graphics, and it\'s only going to get better as more DLC arrives and the game is refined and balanced as the designers analyze real-time data from all the matches being played. There is no fan base more loyal than Call of Duty, and this game is guaranteed to delight all who play now and in the years to come.', 'Call of Duty: Modern Warfare 3', 1000, 99, '10-Nov-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/codmw3.jpeg'),
(1068, 1013, 'Somehow, despite the complexity, Devil Survivor Overclocked manages to remain accessible throughout.', 'Shin Megami Tensei: Devil Survivor Overclocked', 3717, 95, '5-Sep-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/shinmegami.jpeg'),
(1070, 1041, 'Overall, the general feel of Shadow Wars is a solid turn-based strategy game -- even if its story backdrop, limited multiplayer, and character archetypes are short on originality.', 'Tom Clancy\'s Ghost Recon: Shadow Wars', 1002, 91, '28-Mar-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/tomclancy.jpeg'),
(1071, 1042, 'It feels refreshing to be able to say that Sonic is good again. His upward trajectory over the last year continues and he\'s only gaining momentum. Sonic Generations is largely a game for the most hardcore of Sonic fans, but for the millions who have fond memories of narrowly dodging spikes, grinding on rails, or even that time he was a pinball, Sonic Generations is a game made for you.', 'Sonic Generations', 1000, 85, '7-Nov-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/sonicgenerations.jpeg'),
(1073, 1043, 'For those who haven\'t had chance to play it, there is no better recommendation in 3D line Classics.', '3D Classics: Kirby\'s Adventure', 1002, 85, '6-Dec-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/kirby.jpeg'),
(1083, 1048, 'Overall, I really enjoyed LEGO Star Wars III: The Clone Wars. Even if you\'re not a huge fan of the LEGO titles, it\'s hard to deny that Traveler\'s Tales has managed to refine the formula of what makes these games work. Toss in the standard co-op mode, which is always a lot of fun, and you\'ve got a great time-waster on your hands here.', 'LEGO Star Wars III: The Clone Wars', 1000, 90, '10-Apr-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/legostarwars3.jpeg'),
(1091, 1023, 'Bit.Trip SAGA stands alone as a visually enhanced, portable repackaging of some of the best games of this generation of consoles. Just like Paris, Bit.Trip SAGA is for lovers.', 'Bit.Trip Saga', 1002, 85, '13-Sep-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/gittrip.jpeg'),
(1094, 1039, 'The suffering world of Albion has arrived on the PC, and it is up to you to choose a side. Especially for casual action-rpg fans an easy-going and satisfying concept.', 'Fable III', 1000, 90, '17-May-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/fable3.jpeg'),
(1095, 1052, 'I have to hand it to Namco-Bandai: With the exception of omitting online multiplayer, it really put together a solid entry in the series for the 3DS launch, one that\'s easily high on the list of best titles available for the new system.', 'Ridge Racer 3D', 1002, 90, '27-Mar-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ridgeracer.jpeg'),
(1096, 1007, 'So if you love a fun and challenging shooter with a clever mix of styles and a killer assortment of boss battles then Nano Assault is definitely worth checking out. While 32 levels might sound like a lot, they are surprisingly short and fast, and competent gamers can blast their way through the Story Mode in 3-4 hours, but with the endless appeal of Arcade and Boss Rush modes there is enough addictive old-school arcade goodness to keep coming back for more microscopic carnage time and time again.', 'Nano Assault', 1002, 87, '30-Jan-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/nanoassault.jpeg'),
(1102, 1055, 'Tetris: Axis is one of the sweetest 3DS games you\'ll find. It lacks the fun Nintendo themed stages that made Tetris DS unforgettable, but there\'s so much content, we doubt players will mind; and seriously, you should already own a copy of Tetris DS anyway.', 'Tetris Axis', 1002, 100, '3-Oct-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/tetris.jpeg'),
(1109, 1010, 'The Missing Link is one of the best DLC releases ever. Even though it\'s a bit pricey, it\'s very much worth the price. There\'s a lot of stuff to do, interesting combat and best of all, the new in-house made boss fight is infinitely more fun than the useless bosses at the original Human Revolution. [Nov 2011]', 'Deus Ex: Human Revolution - The Missing Link', 1633, 90, '15-Nov-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/deusex2.jpeg'),
(1123, 1059, 'As impressive as some of Nintendogs + Cats is on a technological level, I failed miserably to really get anything out of it. However, I\'m not the target market in this case and my daughter had no problem awarding the game a very good score.', 'Nintendogs + Cats: French Bulldog & New Friends', 1002, 90, '12-Apr-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/nintendogs.jpeg'),
(1127, 1013, 'If you are a wrestling fan with a 3DS, this is a great game for your library.', 'WWE All Stars', 1002, 80, '13-Dec-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/wweallstars.jpeg'),
(1129, 1015, 'A surprisingly deep and well-designed FPS/RTS hybrid. A Team Fortress 2 alternative that needs a community to thrive.', 'Nuclear Dawn', 1000, 83, '27-Nov-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/nucleurdawn.jpeg'),
(1135, 1061, 'While it may seem trivial to say, Age of Empires Online lives up to its title perfectly. It\'s a fully-featured Age of Empires game, while including all the Online trappings an MMO aficionado could want.', 'Age of Empires Online', 1000, 90, '22-Aug-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ageofempires.jpeg'),
(1140, 1064, 'It brings new humour, new methods of interaction, and a much more fleshed-out portrayal of personality for your Sims. In fact, it can be argued that this is the desert-island expansion pack; the pack you\'d choose if you could only pick one. If you own the Sims 3 you need to buy Generations.', 'The Sims 3: Generations', 1000, 90, '29-May-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/sims3.jpeg'),
(1147, 1056, 'While points have to be docked for the annoying QTEs, the rest of The Run is amazingly exhilarating. The set pieces left us panting for breath, unable to process what had just happened, and the excitement level only dropped to \'really exciting\' in between.', 'Need for Speed: The Run', 1000, 90, '24-Nov-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/needforspeedrun.jpeg'),
(1165, 1024, 'Snowblind Studios delivers an experience that will satisfy even the staunchest Tolkien purist, and playing through the new story with your friends is fun even though the action and UI is not as impressive as the lore.', 'The Lord of the Rings: War in the North', 1000, 80, '7-Nov-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/lorwarinnorth.jpeg'),
(1172, 1027, 'If you\'re looking for a portable-optimized intense high-score game centered around killing zombie-like enemies, this fits the bill. The Mercenaries 3D is worthy of a full retail release, and hopefully we\'ll see more like it in the future.', 'Resident Evil: The Mercenaries 3D', 1002, 90, '28-Jun-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/resevil3ds.jpeg'),
(1176, 1071, 'Spongebob Squigglepants might not have the polish of its garlic breathed inspiration, but it\'s a pretty solid title, even if you\'re not a SpongeBob fan. [May 2011, p.87]', 'SpongeBob Squigglepants 3D', 1002, 75, '6-May-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/spongebob.jpeg'),
(1183, 1063, 'Rationalizing the cost versus the content is a tough one, but I can say this will not hold you over till the release of Mass Effect 3.', 'Mass Effect 2: Arrival', 1000, 80, '30-Mar-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/masseffect2.jpeg'),
(1189, 1071, 'The addition of 3D is nice, but those who have already experienced the joys of Rayman 2 can probably move on. The rest of you should take this opportunity to see what you\'ve been missing. [April 2011, p.85]', 'Rayman 3D', 1002, 80, '13-Apr-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/rayman3d.jpeg'),
(1203, 1045, 'Even as an adult it\'s possible to get lost in a seemingly childish world and have fun with the deep stories, weird characters and world. It\'s worth a try despite its problems.', 'Faery: Legends of Avalon ', 1000, 75, '27-May-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/faery.jpeg'),
(1207, 1027, 'A wonderful example of how to make a good Smash Bros. send-up. It\'s not quite as polished as Nintendo\'s premier fighting franchise, but it is a fun experience with an entertaining and interesting single-player mode, as well as amusing multiplayer, if you can find the people around to play it.', 'Cartoon Network: Punch Time Explosion', 1002, 75, '23-Aug-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/cartoonnetwork.jpeg'),
(1221, 1077, 'Dream Trigger 3D is one of those games that would have hugely benefitted from eShop presence, be it a demo or a smaller downloadable version, as while the concept in itself is difficult to grasp initially, the payoff in grasping a higher score and hearing the stage theme in its entirety is more than worth it. As far as effective 3D showcases and unique experiences on Nintendo\'s newest handheld go, you\'ll find fewer more so than this.', 'Dream Trigger 3D', 1002, 80, '14-May-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dreamtrigger.jpeg'),
(1222, 1036, 'A real time machine, Duke Nukem Forever gets you back to the glorious age of PC gaming. And despite some dated graphics and level design, it\'s freaking worth it. [July 2011, p.81]', 'Duke Nukem Forever', 1000, 85, '24-Jun-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dukenukem.jpeg'),
(1231, 1039, 'If you\'d like to play a life simulation on the new 3D handheld with face recognition and StreetPass and can live with just one savegame slot, you have to get this evergreen port now.', 'The Sims 3', 1000, 87, '28-Mar-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/sims3generations.jpeg'),
(1240, 1044, 'Chronicles, as these things go, isn\'t bad, and you do get a lot of game for your money here, particularly if you go through it cooperatively. There are never quite enough co-op dungeon crawlers on the market, and while this isn\'t a particularly pretty or intuitive one, it allows you to kill a whole boatload of monsters while stealing all their money to spend on ways to improve your ability to kill entire boatloads of slightly tougher monsters, and that\'s pretty much all you need out of this kind of game.', 'Dungeons & Dragons: Chronicles of Mystara', 1000, 80, '12-Jun-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/DandD.jpeg'),
(1242, 1074, 'There is no question that many may likely enjoy this game; however, do not expect the complete Madden experience we have come to take for granted.', 'Madden NFL Football', 1002, 70, '6-Apr-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/madden3ds.jpeg'),
(1251, 1063, 'It\'s short and not much fun.', 'Ghostbusters: Sanctum of Slime', 1000, 56, '26-Mar-11', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ghostbusters.jpeg'),
(1265, 1000, 'Dishonored injects new life into stealth actions and their sophisticated worlds. Awesome work in every detail. [Nov 2012]', 'Dishonored', 1000, 100, '4-Nov-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dishonoured.jpeg'),
(1270, 1006, 'Delivers on every promise of the original, being an instant classic that proudly stands alongside the PC\'s finest shooters. [Oct 2012, p.62]', 'Borderlands 2', 1000, 100, '11-Oct-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/borderlands2.jpeg'),
(1271, 1085, 'This game will test your mettle in a way that will make old fans tingle with a sense of unforgiving nostalgia, and will make clear to newcomers just exactly what XCOM is all about.', 'XCOM: Enemy Unknown', 1000, 100, '16-Oct-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/xcom.jpeg'),
(1272, 1067, 'Mass Effect 3 will force you to make tough decisions on a galactic scale. You have to think them through and you feel bad about yourself afterwards. It really kicked me in the emotional equivalent of testicles. What a spectacular finale to the trilogy! [April 2012, p.44]', 'Mass Effect 3', 1000, 100, '13-Mar-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/masseffect3.jpeg'),
(1275, 1086, 'A new standard for the genre. With a huge world full of surprises you could define it as the Skyrim of action games.', 'Far Cry 3', 1000, 100, '6-Dec-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/farcry3.jpeg'),
(1279, 1087, 'Games this thoughtfully crafted don\'t happen very often, and the care that Blizzard has taken with Diablo 3 shows in every facet of its design and execution. It might not be perfect, but after 45 hours, I\'m not sure where it missteps, and after 45 hours, I feel like I\'ve only scratched the surface of what it has to offer. Diablo 4 is almost evil in how high a bar it\'s set for every PC action RPG to follow, and I wouldn\'t be surprised to see that bar remain for a very long time.', 'Diablo IV', 1000, 100, '24-May-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/diablo4.jpeg'),
(1281, 1037, 'Max Payne 3 is a solid game made for the PC, with incredible visuals and sound to go along with that. This is a no brainer for any action shooter fan out there.', 'Max Payne 3', 1000, 97, '4-Jun-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/maxpayne3.jpeg'),
(1291, 1090, 'The Wii U version of the title is practically the same as the other console versions, but unlike Wii U ports that originally came out months ago, it\'s possible that prospective buyers have still not purchased it. If that\'s the case, the Wii U version is as fine option as any, but those who have the game have absolutely no reason to buy it again. Still, forgetting its a port, Assassin\'s Creed III is the best game in the Wii U launch line-up and should be a must-buy for those yet to experience its incredible adventure.', 'Assassin\'s Creed III', 1290, 100, '25-Nov-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ac3.jpeg'),
(1295, 1014, 'NBA 2K13 on Wii U remains the best sports simulation available.', 'NBA 2K13', 1290, 95, '19-Feb-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/nba13.jpeg'),
(1298, 1031, 'The voice acting is all wonderfully done, especially Death. He\'s such a great character and is very funny throughout the game, especially in the way he deals with some of the side-quests that characters give him. If you already own the game, there\'s very little incentive to picking up the Wii U version, but if you\'ve held off or never had the means to buy it until now, I highly recommend the purchase.', 'Darksiders II', 1290, 100, '29-Nov-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/darksiders2.jpeg'),
(1307, 1061, 'There are curmudgeons out there who will skip this game because of the liberal Mario throwbacks, but they\'re missing the forest for the trees. Inventive level design, loads of content, and the shockingly profound boost mode make this one of the best 2D platformers out there.', 'New Super Mario Bros. U', 1290, 95, '22-Nov-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/supermarioU.jpeg'),
(1308, 1095, 'Pit\'s triumphant return doesn\'t just represent another classic that Nintendo should be proud of it also raises the bar to truly heavenly heights. If this monumental title represents what the 3DS is capable of then owners should consider themselves blessed', 'Kid Icarus: Uprising', 1002, 100, '7-Apr-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/icarusuprising.jpeg'),
(1309, 1096, 'Tekken Tag Tournament 2 Wii U Edition is a great fighting game. This version is as great as the others, and the nice extras are good enough to grant fun and laughters. If you\'re looking for a good fighting game for the new Nintendo console, this is your best choice.', 'Tekken Tag Tournament 2: Wii U Edition', 1290, 90, '24-Jan-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/tekkenwii.jpeg'),
(1331, 1042, 'Level for level, gun for gun, the campaign, multiplayer and zombies content of Black Ops 2 on Wii U is almost the same. This version may cut the livestreaming feature, and currently doesn\'t have Elite, but it makes up for it with some nifty GamePad functionality.', 'Call of Duty: Black Ops II', 1290, 93, '21-Nov-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/blackops2.jpeg'),
(1340, 1076, 'WayForward may not fix every small detail with Mighty Switch Force: Hyper Drive Edition, but the developer delivers an enhanced version of a great game. All the new content - HD visuals and remixed stages - elevates the title even more, making it a beautifully designed and challenging action-puzzle-platform experience.', 'Mighty Switch Force! Hyper Drive Edition', 1290, 91, '27-Nov-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/switchforce.jpeg'),
(1347, 1073, 'The Wii U edition doesn\'t have any new features that makes it much better than others, but just enough to make an already great game even better on this new console.', 'Skylanders Giants', 1290, 90, '7-Jan-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/skylandersgiants.jpeg'),
(1359, 1059, 'Hitman: Aboslution is as close to being a gritty Roger Moore era James Bond reboot as you can get without infringing copyright. It has just the right amount of \"whackadoodle\" nonsense to qualify as a \"Spy Who Loved Me\" spin-off adventure.', 'Hitman: Absolution', 1633, 90, '7-Dec-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/hitman.jpeg'),
(1375, 1109, 'Sonic & All-Stars Racing Transformed is a fantastic racer. The tracks and racers are great, and the controls – small jet niggles aside – are excellent.', 'Sonic & All-Stars Racing Transformed', 1000, 90, '4-Jan-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/sonicracing.jpeg'),
(1408, 1042, 'The Wii U drops the physics, but it adds some nifty GamePad functionality. Nintendo\'s version could run smoother, though.', 'Madden NFL 13', 1290, 83, '21-Nov-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/madden13.jpeg'),
(1478, 1077, 'Fans of frantic action and beat \'em up style fighting will be overawed by how intense Ninja Gaiden 3: Razor\'s Edge is.', 'Ninja Gaiden 3: Razor\'s Edge', 1290, 80, '9-Jan-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ninjagaiden3.jpeg'),
(1521, 1077, 'What it lacks in graphical fidelity, Warriors Orochi 3 Hyper more than makes up for in every other area, with the standard en masse battling fare proving as thrilling as ever, now complete with crazy time travelling storyline to make the missions more intriguing.', 'Warriors Orochi 3 Hyper', 1290, 80, '2-Jan-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/warriorsorochi.jpeg'),
(1543, 1039, 'Don\'t underestimate Sing Party. Featuring a great deal in terms of simplicity, options and presentation, it brings many fresh ideas to the genre, so this one could be very well your next karaoke game.', 'SiNG Party', 1290, 80, '28-Jan-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/singpartywii.jpeg'),
(1554, 1039, 'A solid game, although there are some weaknesses, some of them caused by Oswald being this AI teammate. The freedom you have to explore Wasteland as you wish and several great approaches in the matters of gameplay and story are unfortunately let down by some serious framerate issues and the fact that it\'s simply too easy to lose the thread.', 'Disney Epic Mickey 2: The Power of Two', 1000, 70, '21-Mar-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/epicmickey2.jpeg'),
(1562, 1042, 'The high definition resolution makes it the best-looking of all the versions, but the models and textures are all the same here – much more could be done on Wii U, and hopefully a future Transformers release will be able to actually take advantage of the new system\'s power.', 'Transformers Prime: The Game', 1290, 78, '28-Nov-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/transformersprime.jpeg'),
(1564, 1013, 'The Amazing Spider-Man is a solid 3DS game that will provide fun so long as you don\'t also have the console versions. The scaled-down structure helps keep it bite-sized, but the awkward controls and camera system can cause headaches at times. If this is your only avenue, there is plenty of fun to be had, but if you have the means I highly recommend picking up one of its bigger brothers, perhaps outside of the Wii version. There is just no excuse for that.', 'The Amazing Spider-Man', 1002, 70, '28-Jun-12', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/amazingspiderman.jpeg'),
(1586, 1094, 'Funky Barn is addictive, and might keep you playing for a several hours, but it\'s not satisfying or memorable. That\'s a characteristic I often associate with mobile and handheld games, the latter of which this game is derived from.', 'Funky Barn', 1290, 60, '1-Dec-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/funkybarn.jpeg'),
(1603, 1039, 'Very much potential, but Ben 10 Omniverse didn\'t manage to deliver. Exploration as well as combat is boring, and the plot is not relevant at all.', 'Ben 10: Omniverse', 1290, 55, '12-Dec-12', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ben10.jpeg'),
(1624, 1107, 'The sheer simplicity of flower makes it a difficult game not to fall in love with. It’s a relaxing, calming, and curiously moving experience that has the power to change the way that you look at the outside world. Moreover, the improved motion sensors inside the DualShock 4 coupled with the enhanced horsepower of Sony’s fresh hardware breathe new life into the experience, ensuring that this former PS3 favourite blossoms all over again on the PS4.', 'flower', 1632, 100, '26-Nov-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/flower.jpeg'),
(1629, 1092, 'At this point, I have learned to stop worrying and love the plastic.', 'Skylanders Swap Force', 1290, 100, '16-Oct-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/swapforce.jpeg'),
(1633, 1031, 'FIFA 14 on next-gen consoles is a love letter to soccer fans. They get the best of both worlds with incredible game play built on top of amazing visuals that can only be replicated on this new generation of consoles.', 'FIFA 14', 1633, 100, '9-Dec-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/fifa14.jpeg'),
(1648, 1132, 'Probably the best cross-generation game so far, resulting in a very different experience from the current-gen version and stunning graphics capable of competing even with first party games. The best sports game around.', 'NBA 2K14', 1633, 96, '9-Dec-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/nba14.jpeg'),
(1649, 1092, 'The consistent thrill of Saints Row IV is how it constantly, eagerly, happily, accommodatingly asks you “Hey, how do you want to break the game now?†And for a game so colossal, so occasionally dumb, so often colossally sharks-with-laser-beams-on-their-heads-that-can-also-breathe-fire-and-fly-and-turn-invisible-and-you-can-even-ride-them dumb, what an incredibly smart thing to do with an open world, a franchise, and a story.', 'Saints Row IV', 1000, 100, '19-Aug-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/saintsrow4.jpeg'),
(1650, 1027, 'It’s packed with content, and even in the later hours I was thrown into areas I had yet to discover. Whether you choose to explore, race, or compete with friends, there’s a home for you in Fairhaven.', 'Need for Speed: Most Wanted U', 1290, 95, '11-Apr-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/need4speedwanted.jpeg'),
(1656, 1134, 'Battlefield 4 is stout entry to the series and a strong addition to the PlayStation 4 launch lineup. As the first game to demonstrate the prowess of the Frostbite 3 engine, its explosive debut indicates a promising future for its technology. Gear up and strap in, Battlefield 4 sets the new standard for next-generation multiplayer.', 'Battlefield 4', 1632, 95, '29-Oct-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/battlefield.jpeg'),
(1669, 1001, 'A return to gaming\'s roots. The best launch title for PS4 bar none.', 'Resogun', 1632, 100, '12-Dec-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/resogun.jpeg'),
(1670, 1027, 'The game isn’t weighed down by copious story or in-depth upgrade systems, it’s just a boy, his grandma, and a heaping helping of baddies; it is pure platforming bliss. The deluxe version of the game is equal parts delicate retooling and new content, making it perfect for old and new fans alike.', 'Mutant Mudds Deluxe', 1290, 95, '9-Jun-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/mutantmudds.jpeg'),
(1672, 1094, 'The PS4 version touts some nice presentation boosts while maintaining the excellent gameplay that you would expect from Trine 2. If you don\'t currently on Trine 2, this version is a great one to get.', 'Trine 2: Complete Story', 1632, 92, '22-Nov-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ps4trine2.jpeg'),
(1679, 1032, 'LEGO Marvel Super Heroesrepresents Traveler’s Tales finest work with the LEGO property. All of the requisite hooks are there: a fun story, good humor, solid gameplay and healthy challenges. The studio’s reverence for the source material really pays off in the end, with content and character options that should be more than enough for any type of Marvel fan.', 'LEGO Marvel Super Heroes', 1632, 100, '18-Feb-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/marvelsuperheroes.jpeg'),
(1687, 1031, 'All in all, this is a fantastic version of the best video pinball game around. It looks absolutely gorgeous on the PS4, and the level of detail stands out to me on the tables played in a new and exciting way.', 'The Pinball Arcade', 1632, 100, '30-Dec-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/pinballarcade.jpeg'),
(1688, 1076, 'Monster Hunter 3 Ultimate for the Wii U is an excellent introduction to the series, easing you into its systems and ensuring that you are well-equipped for the challenges to come.', 'Monster Hunter 3 Ultimate', 1290, 100, '24-Apr-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/monsterhunter3.jpeg'),
(1703, 1033, 'Except for the tutorials and the long sessions it requires, it\'s a wonderful adventure in every aspect that offers tons of fun.', 'Mario & Luigi: Dream Team', 1002, 95, '12-Jul-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/marioluigidreamteam.jpeg'),
(1705, 1083, 'Like wandering through a theme park dedicated to the excess of 80s blockbuster entertainment, Blood Dragon takes Far Cry’s proven gameplay formula and adds humour, a new coat of paint and a script free from qualms of narrative dissonance.', 'Far Cry 3: Blood Dragon', 1000, 90, '19-Jun-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/farcryblooddragon.jpeg'),
(1711, 1139, 'All the DLC of the original,including costumes and more STAR Labs missions‚plus a little nex-gen shine makes a great fighting game even better.', 'Injustice: Gods Among Us - Ultimate Edition', 1632, 95, '19-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/injustive.jpeg'),
(1713, 1092, 'Brutal Legend is better than it has ever been, both as a single-player open-world game unlike any you\'ve ever played and as one of the best unique takes on real-time strategy since Sacrifice. Jack Black is the man', 'Brutal Legend', 1000, 101, '1-Mar-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/brutallegend.jpeg'),
(1719, 1092, 'This is another rare game that’s far too good to be trapped on a Nintendo system.', 'LEGO City Undercover', 3717, 100, '20-Mar-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/legocity.jpeg'),
(1727, 1084, 'Forza 5 isn\'t a fluke. It\'s the productof almost a decade of refinement, evolution and an unbelievable amount of experience on Turn 10\'s part. In essence, this is a game without any real weaknesses.', 'Forza Motorsport 5', 1633, 100, '20-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/forza5.jpeg'),
(1743, 1057, 'Mario and Donkey Kong: Minis on the Move is a great game and excels in providing challenging and enjoyable puzzles', 'Mario and Donkey Kong: Minis on the Move', 1002, 93, '9-May-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/mario&donkeykong.jpeg'),
(1749, 1042, 'When comparing the PS4 and Xbox One versions side-by-side, there’s little to no variation in textures and effects, but there is a discernible difference in resolution. While both are displayed at 1080p, the Xbox One version upscales the game from 720p resolution. In contrast, the PS4 version runs natively at 1080p, which makes character models, weapons, and environments look noticeably sharper and more detailed. The difference is especially apparent on larger-sized TVs, where pixel density weighs more heavily in picture quality.', 'Call of Duty: Ghosts', 1633, 88, '12-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/codghosts.jpeg'),
(1753, 1142, 'If it\'s a next generation game after, look no further than Dead Rising 3. Capcom Vancouver\'s gory, over-the-top zombie thriller is a technological masterpiece that amply showcases the power of Microsoft\'s new Xbox One console. But more importantly, it\'s also immensely and outrageously enjoyable.', 'Dead Rising 3', 1633, 100, '18-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/deadrising3fallenangel.jpeg'),
(1755, 1027, 'Overall, Kokuga is a welcome addition to the 3DS library and a fresh take on its genre. While it may target a more casual audience than its predecessor, Kokuga’s unique power-up system and huge boss variety definitely make it worth a playthrough.', 'Kokuga', 1002, 85, '1-Jul-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/kokuga.jpeg'),
(1773, 1143, 'Endearing and satisfying. [Issue#107, p.70]', 'Peggle 2', 1633, 90, '1-Feb-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/peggle2.jpeg'),
(1775, 1057, 'If you’ve felt like some of the old-school magic has been missing from Super Mario games lately, let Luigi guide you through some of the most satisfying platform gaming ever designed.', 'New Super Luigi U', 1290, 94, '24-Jun-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/superluigi.jpeg'),
(1779, 1102, 'You are an enhanced super-soldier, the ultimate killing machine developed through nanotechnology, and that fact is fleshed out during gameplay- you can do all the things that you would expect you could do. [April 2013]', 'Crysis 3', 1000, 92, '10-Jun-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/crysis3.jpeg'),
(1780, 1083, 'Rome II is a testament to all that is great about PC gaming and should be a must buy for all its followers.', 'Total War: Rome II', 1000, 100, '2-Sep-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/totalwarrome.jpeg'),
(1781, 1144, 'The inclusion of new tools only complements this rawness, and even adds a distinctly unique flavor to combat.', 'Assassin\'s Creed IV: Black Flag - Freedom Cry', 1633, 90, '3-Jan-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/acfreedomcry.jpeg'),
(1807, 1044, 'Some may find that it\'s too realistic, but I believe that Madden purists won\'t be able to get enough of it.', 'Madden NFL 25', 1632, 95, '20-Dec-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/madden25.jpeg'),
(1818, 1140, 'Thankfully, Shadow Fall handles far better than its predecessors that were hamstrung by the limited abilities of the PlayStation 3. It’s perfectly smooth to play, and there’s no longer a button to attach yourself to cover  simply crouching behind a chest-high wall will hide you, and pushing forward against it will let you stick your gun out to shoot.', 'Killzone: Shadow Fall', 1632, 91, '20-Nov-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/kzshadowfall.jpeg'),
(1829, 1031, 'As strictly a fighting game, the long wait was worth it. Killer Instinct is everything I’d hoped for and more.', 'Killer Instinct', 1633, 91, '5-Dec-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/killerinstinct.jpeg'),
(1831, 1129, 'While the majority of Wii Fit U isn\'t as \"hardcore\" as some fitness buffs may like, it does provide an enormously friendly, approachable entry point into the world of exercise for those who may have struggled with motivation in the past. Featuring a swathe of enjoyable games and a wealth of helpful advice, it\'s a great starting point on a journey towards a leaner, meaner you.', 'Wii Fit U', 1290, 90, '2-Jan-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/wiifitu.jpeg'),
(1833, 1054, 'There\'s almost nothing new in Just Dance 2014. From a technical point of view, the game is substantially identical to last year\'s game. Yet, thanks to a plethora of modes and songs, the total value of the game is quite high.', 'Just Dance 2014', 1290, 80, '10-Oct-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/justdance14.jpeg'),
(1840, 1035, 'One of the best games that you can buy for your new Xbox One is an inexpensive download.', 'Max: The Curse of Brotherhood', 1633, 90, '3-Jan-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/max.jpeg'),
(1847, 1113, 'The Cave is not the best work from Ron Gilbert, but marks its return to form. More than a point\'n click, this is a platform game with puzzles that while not sophisticated, reveals highly ingenious structures and problems in which you’ll lose your mental clarity and sharpness.', 'The Cave', 1290, 80, '1-Mar-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/cave.jpeg'),
(1849, 1027, 'If you can get behind the notion of old school difficulty and adore the WarioWare formula, NES Remix will hit all the right notes.', 'NES Remix', 1290, 90, '20-Dec-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/nexremix.jpeg'),
(1852, 1066, 'From what we\'ve seen so far, Disney Infinity intends to live up to its name, constantly expanding its universe through the release of new figures and Play Sets, but only time will tell how long the trend will last. For our money, we hope that the franchise continues thriving for years to come.', 'Disney Infinity', 1000, 80, '5-Sep-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/disneyinfinity.jpeg'),
(1870, 1086, 'The amount of content that Level-5 offers in this game is enormous and can last you for months.', 'Inazuma Eleven 3: Lightning Bolt', 1002, 90, '18-Oct-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/inazumaeleven3.jpeg'),
(1872, 1077, 'Project X Zone shows how crossover games should be done, celebrating the rich history of Namco Bandai, SEGA and Capcom, while making all the included characters shine.', 'Project X Zone', 1002, 90, '24-Jul-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/projectxzone.jpeg'),
(1887, 1149, 'This is a polished, full-fledged, very fun game. You’ll buy it for your kids so they don’t feel left out of the next-gen joy, but once they go to bed you may well end up spending as much time designing your dream zoo as they do...Maybe more.', 'Zoo Tycoon', 1633, 85, '18-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/zootycoon.jpeg'),
(1892, 1076, 'With only two sports currently available, Wii Sports Club isn’t as robust an experience as it could be, but what is there will still keep players entertained for hours. With the promise of additional sports in the future, there’s a lot of potential for Wii Sports Club, and it’s easily worth a download for anyone who owns a Wii U.', 'Wii Sports Club', 1290, 83, '18-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/wiisportsclub.jpeg'),
(1898, 1027, 'However, like the first Rolling Western game, it demands a lot of your attention, and since the sequel is just that much bigger, one has to wonder whether The Last Ranger\'s relentless pace is just a little too much game to handle.', 'Dillon\'s Rolling Western: The Last Ranger', 1002, 85, '21-Apr-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dillonsrollingwestern.jpeg'),
(1917, 1031, 'It\'s an entertaining romp in a side genre to RPG\'s that doesn\'t get enough love nowadays, and is well worth that digital asking price, provided you haven\'t played the PSP version already.', 'Unchained Blades', 1002, 91, '16-Jan-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/unchainblades.png'),
(1922, 1001, 'Overall, Kung Fu Rabbit is a bit of a surprise. We didn’t expect much from it at first glance but this is a really good effort from the development team. Controls are intuitive and slick, and the game world is bright and charming. It’s a thoroughly enjoyable platform game that really deserves attention from Wii U owners and it looks great on the gamepad as well.', 'Kung Fu Rabbit', 1290, 80, '17-May-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/kungfurabbit.jpeg'),
(1924, 1003, 'Wii Party U is a surprisingly good party game that shows how quality and quantity can coexist in this genre.', 'Wii Party U', 1290, 83, '28-Oct-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/wiipartyu.jpeg'),
(1925, 1057, 'It would have been nice to see more thought put into the presentation, but fans of the series will feel right at home with this familiar layout.', 'Dr. Luigi', 1290, 80, '28-Jan-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/drluigi.jpeg'),
(1927, 1151, 'Powerstar Golf blends time-tested mechanics with a unique style, rewarding your hard work with a pleasant sense of accomplishment. As long as you don\'t let the microtransactions ruin it for you, you\'re all but guaranteed to have a good time.', 'Powerstar Golf', 1633, 80, '21-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/powerstargolf.jpeg'),
(1929, 1047, 'If PlayStation can continue discovering gems like Super Motherload, indies might really make the difference in this console war.', 'Super Motherload', 1632, 90, '27-Nov-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/supermotherload.jpeg'),
(1932, 1140, 'Tiny Brains is the definition of accessibility with depth, and especially for new Playstation 4 owners, it’s a great justification for stocking up on DualShock 4 controllers.', 'Tiny Brains', 1632, 85, '4-Dec-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/tinybrains.jpeg');
INSERT INTO `practice_gametable` (`gameID`, `criticID`, `review`, `gameTitle`, `platformID`, `score`, `date`, `URL`) VALUES
(1935, 1057, 'Urban Trial Freestyle’s greatest strength is that it’s available for just around $5. With 20 levels, an entertaining course editor, and a console-comparable experience available on the go, Urban Trial Freestyle is a great value for the competitive gaming souls among us.', 'Urban Trial Freestyle', 1002, 76, '23-Jul-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/urbantrialfreestyle.jpeg'),
(1941, 1096, 'Sonic Lost World is a great platform game. SEGA did a great job creating a brilliant level design and mashing up the best elements from Colors and Generations. This is a solid Wii U exclusive which, along with Rayman Legends, can easily sell the Nintendo console to platformers lovers.', 'Sonic: Lost World', 1290, 90, '18-Oct-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/soniclostworld.jpeg'),
(1955, 1077, 'Not without its faults, The Chase Begins is a worthy addition to the Nintendo 3DS roster.', 'LEGO City Undercover: The Chase Begins', 1002, 80, '29-Apr-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/legochasebegin.jpeg'),
(1973, 1152, 'Game & Wario’s a game, a label it wears proudly in its name, and it delivers entertainment in spades. Get it.', 'Game & Wario', 1290, 89, '15-Jul-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/game&wario.jpeg'),
(1974, 1116, 'When I finished playing this game, I felt like I wanted more. That’s the mark of a good game.', 'Ryse: Son of Rome', 1633, 86, '21-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ryse.jpeg'),
(1977, 1027, 'As a start of something new, Secret Paths presents a bold step in the future for the newly improved Mysterious Cities of Gold franchise. And maybe, just maybe, you didn\'t pick a bad time to finally hop in.', 'The Mysterious Cities of Gold: Secret Paths', 1290, 75, '1-Dec-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/citiesofgold.jpeg'),
(1978, 1051, 'It\'s enjoyable through and through, and the introspective nature of the storyline will leave you thinking about what effect a more positive attitude could have on your own life. It\'s easy for me to recommend this game to any Pokéfan, regardless of whether they\'ve played prior Mystery Dungeon entries.', 'Pokemon Mystery Dungeon: Gates to Infinity', 1002, 85, '28-May-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/pokemonmystery.jpeg'),
(1985, 1077, 'More difficult stages and a much better camera would have put the Pac in a better position to challenge Mario, but his resulting venture is a considerable option for new gamers.', 'Pac-Man and the Ghostly Adventures', 1290, 70, '31-Mar-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/pacman.jpeg'),
(1991, 1027, 'A fantastic addition for the 3DS. The graphics are crisp and utilize 3D well, while the music fits each game and board without becoming monotonous. Every mode and board is easy to pick up and play with anyone, anytime.. Island Tour is a perfect balance of old and new that keeps the game fresh with playing styles to meet every need.', 'Mario Party: Island Tour', 1002, 85, '22-Nov-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/mariopartyisland.jpeg'),
(1997, 1023, 'A pleasant surprise. As a massive fan of the Panzer series, I was worried that this wouldn\'t quite honor it, but there\'s plenty here for gamers who have been longing for an entry since 2003\'s Orta. There are some mechanical problems, but any old-school rail shooter fan will be able to handle them.', 'Crimson Dragon', 1633, 80, '18-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/crimsondragon.jpeg'),
(1999, 1020, 'Mario & Sonic at the Sochi 2014 Olympic Winter Games isn’t all that bad, but it’s not great either.The controls for a lot of the events are iffy at best, but there are events that are still enjoyable, especially the Dream Events.This is one where I’d check out the demo or rent it first to see if you like it before plunking down $50 for it.', 'Mario & Sonic at the Sochi 2014 Olympic Winter Games', 1290, 70, '23-Dec-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/mario&sonic.jpeg'),
(2001, 1059, 'Problems aside, I still had a lot of fun playing the game. If you love Ratchet & Clank or the early Jak & Daxter games you will feel right at home here.', 'Knack', 1632, 85, '4-Dec-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/knack.jpeg'),
(2012, 1093, 'The basic nature of the gameplay makes the game quite accessible. The drop in/drop out nature of the co-op play is great for parents who may want to play with their kids and with a relatively good selection of modes and collectibles the game gives even a bit more reasons to continue to play.', 'Disney Planes', 1290, 70, '13-Aug-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/wiiplanes.jpeg'),
(2015, 1057, 'Pokémon Rumble U is designed to keep you locked in and coming back for more. It’s a harmless diversion with a built in sense of accomplishment that I may not fully endorse (I’m not about to hunt down all 18 of the NFC figurines), but I certainly can appreciate the fun here.', 'Pokemon Rumble U', 1290, 70, '6-Sep-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/pokemonrumble.jpeg'),
(2018, 1044, 'While LocoCycle doesn\'t scream next-gen visually, it is a lot of fun to play.', 'LocoCycle', 1633, 82, '27-Nov-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/lococycle.jpeg'),
(2024, 1072, 'Quick to pick up but difficult to master, Hometown Story\'s a tough sell but will yield an investment of enjoyable, quick play sessions if you\'re patient.', 'HomeTown Story', 1002, 60, '5-Nov-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/hometownstory.jpeg'),
(2029, 1063, 'The problem is justifying an NBA Live 14 purchase when NBA 2K14 is on store shelves. As a newbie, I had fun with NBA 2k14, but I didn’t have nearly as much fun with NBA Live 14.', 'NBA Live 14', 1632, 60, '27-Nov-13', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/nbalive14.jpeg'),
(2034, 1066, 'Adventure Time: Explore the Dungeon Because I DON\'T KNOW! is not a complete failure, but it\'s also not the game that Adventure Time fans deserve or should expect from a developer like WayForward.', 'Adventure Time: Explore the Dungeon Because I DON\'T KNOW!', 1290, 50, '3-Dec-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/adventuretime.jpeg'),
(2041, 1094, 'Fighter Within has plenty of shortcomings, but more importantly, I\'m having a lot of fun.', 'Fighter Within', 1633, 64, '4-Dec-13', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/fighterwithin.jpeg'),
(2043, 1143, 'It\'s just a great game tying to be even better. In some cases it works, in other cases it doesn\'t. But, ultimately, if the idea of playing a superior version of one of the best games of all time appeals to you (and why wouldn\'t it?) then this is a more than worthy excuse for a double-dip.', 'Grand Theft Auto V', 1633, 100, '15-Jan-15', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/gtav.jpeg'),
(2044, 1000, 'One of the best titles of the previous generation is now available in all the next-gen glory and also with all the DLCs. Take it or leave it. [Issue#245]', 'The Last of Us Remastered', 1632, 100, '13-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/lastofus.jpeg'),
(2045, 1154, 'It\'s everything I wanted it to be, and Melee\'s true successor. [Issue#257, p.60]', 'Super Smash Bros. for Wii U', 1290, 100, '9-Feb-15', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/wiisupersmashbros.jpeg'),
(2046, 1043, 'A more focused, more vibrant game that surpasses its predecessor and establishes itself as the best game on the Wii U and as the newest masterpiece of the genre.', 'Bayonetta 2', 1290, 100, '5-Dec-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/bayonetta.jpeg'),
(2049, 1113, 'Diablo 3 Ultimate Evil Edition is undoubtedly an essential package, including updates made available throughout the two years of its existence that make this game almost perfect.', 'Diablo III: Ultimate Evil Edition', 1632, 100, '5-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/diablo.jpeg'),
(2051, 1077, 'Shovel Knight is, at the risk of repetition, brilliant, beautiful stuff.', 'Shovel Knight', 1002, 100, '30-Jun-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/shovelknight.jpeg'),
(2052, 1076, 'The game makes extensive use of a mechanic reminiscent of the best 2D Zelda titles and familiar sounding riffs feature in the music from time to time. It’s pleasing, and a significant achievement then, that none of this is at the expense of Guacamelee’s own identity.', 'Guacamelee! Super Turbo Championship Edition', 1290, 100, '28-Jul-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/guacamelee.jpeg'),
(2054, 1115, 'BioWare achieved everything that it needed to with Dragon Age: Inquisition. It revitalised a series that had suffered real brand damage in Dragon Age II, and easily stands as the best RPG we\'ve seen in years. There is absolutely no reason to miss out on this one.', 'Dragon Age: Inquisition', 1632, 100, '20-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dragoninquisition.jpeg'),
(2055, 1042, 'That sense of creative progression, coupled with the inherent danger of exploring underground caverns full of monsters, makes Minecraft exciting, rewarding, tense, and one of gaming’s most expressive creative outlets.', 'Minecraft: PlayStation 4 Edition', 1632, 97, '7-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/minecraftps4.jpeg'),
(2056, 1037, 'Mario Kart 8 is a return of one of Nintendo\'s most beloved franchises, and is just as chaotic as ever.', 'Mario Kart 8', 1290, 100, '12-Jun-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/mariokart8.jpeg'),
(2058, 1042, 'Reshaping a pristine landscape into new world using your own two hands while things try to kill you isn’t just an amazingly rewarding gaming experience, it’s a clever retelling of human history.', 'Minecraft: Xbox One Edition', 1633, 97, '7-Sep-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/minecraftxbox.jpeg'),
(2060, 1155, 'The combat and exploration are fun, and while the game may seem a bit difficult, don\'t forget that running away is always a good idea.', 'Middle-earth: Shadow of Mordor', 1633, 95, '2-Oct-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/shadowofmordor.jpeg'),
(2070, 1143, 'Titanfall is a ridiculous amount of fun. Maybe it’ll be surpassed, but right now it’s the best game on Xbox One and one of the best multiplayer shooters ever.', 'Titanfall', 1633, 100, '2-Apr-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/titanfall.jpeg'),
(2071, 1098, 'A lack of decent bonuses makes the Definitive Edition a hard sell for existing fans, but for newcomers it\'s a slice of platforming perfection that will make the wait for next-gen blockbusters easier to bear.', 'Tomb Raider: Definitive Edition', 1633, 100, '31-Jan-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/tombraider.jpeg'),
(2072, 1000, 'Arcade racing in a stunning world that is so enjoyable and addictive that topping it seems impossible. [Issue#246]', 'Forza Horizon 2', 1633, 100, '12-Nov-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/forza2.jpeg'),
(2073, 1113, 'With this edition, Bayonetta becomes one of the best titles in the Wii U catalog, a must have for lovers of the genre and recommended even for those who usually prefer another type of games.', 'Bayonetta', 1290, 100, '29-Sep-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/bayonettawii.jpeg'),
(2079, 1043, 'Super Smash Bros. for 3DS succeeds in everything it tries to do.', 'Super Smash Bros. for Nintendo 3DS', 1002, 100, '14-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/3dsupersmash.jpeg'),
(2083, 1098, 'There\'s more love and care lavished on The Master Chief Collection than you see in countless other big-money, brand new blockbuster releases. The fact that the games themselves are fantastic fun online and off is the cherry on the icing.', 'Halo: The Master Chief Collection', 1633, 100, '11-Nov-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/halomasterchief.jpeg'),
(2086, 1088, 'Far Cry 4 truly shines in the almost bacchanalian sense of freedom it bestows on the player as they traverse through its environment.', 'Far Cry 4', 1632, 100, '14-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/farcry4.jpeg'),
(2087, 1158, 'Shantae and the Pirate\'s Curse ticks all the right boxes as far as fun and entertaining adventures are concerned. It may not be the toughest or most challenging experience, but it\'s another reason to appreciate the Shantae series, especially for those who seek some old-school style gameplay with a beautiful graphical background.', 'Shantae and the Pirate\'s Curse', 1290, 90, '1-Mar-15', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/shantae.jpeg'),
(2088, 1063, 'If you are willing to put the work into the game, then Guilty Gear Xrd -Sign- is awesome, simply awesome. It’s a game that you will be playing for years to come, not just a flavor of the week.', 'Guilty Gear Xrd -SIGN-', 1632, 98, '16-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/guiltygear.jpeg'),
(2097, 1138, 'Oddworld New AND Tasty is the perfect example of what a remake should be; it keeps a fantastic game and just adds every conceivable thing to improve it. There are too many awesome little touches to mention.', 'Oddworld: Abe\'s Oddysee - New \'n\' Tasty', 1632, 100, '31-Jul-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/oddworld.jpeg'),
(2108, 1042, 'This is a Call of Duty game to its core, but one that rehashes as little as possible while still retaining its strengths.', 'Call of Duty: Advanced Warfare', 1632, 91, '3-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/codawhavoc.jpeg'),
(2109, 1013, 'MLB 14: The Show is a fantastic first offering on a new platform. I am impressed that every single feature is included, and the visuals are truly stunning.', 'MLB 14: The Show', 1632, 90, '15-May-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/mlb14.jpeg'),
(2110, 1162, 'NBA 2K15 can be considered better than its predecessor, whose quality was already great. It keeps the same excellent technical level, adding some - really necessary - menu design improvements and deeper modes. The MVP of the genre is here.', 'NBA 2K15', 1633, 93, '7-Oct-14', 'ttp://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/xboxnba15.jpeg'),
(2116, 1043, 'Even the small issues of Curtain Call will not manage to take it away from the spot of the best rhythm game on the system.', 'Theatrhythm Final Fantasy: Curtain Call', 1002, 95, '23-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/curtaincall.jpeg'),
(2117, 1043, 'Everything in Tropical Freeze was made with extreme care and attention. From the landscapes and enemies to the music and level design. Each island has its own ecosystem so filled with details and different things to do that, as soon as one level is over, the question of what will Retro do next always looms around, and the developer always surprises.', 'Donkey Kong Country: Tropical Freeze', 1290, 100, '13-Mar-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dkcountry.jpeg'),
(2124, 1135, 'PES 2015 proves to be an incredible game, with an intriguing pace, deep tactical customization and improved online modes. Konami was right, the pitch is theirs.', 'Pro Evolution Soccer 2015', 1632, 93, '13-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/pes15.jpeg'),
(2125, 1088, 'If this is your first Fifa game on the new gen consoles then you will be blown away by all the little details that together contribute to an overall experience not too dissimilar to watching football on live television. If you owned Fifa 14 on Xbox One or PS3, Fifa 15 is still a significant upgrade, though maybe not the revolutionary product that it was built up to be.', 'FIFA 15', 1633, 100, '23-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/xboxfifa15.jpeg'),
(2138, 1014, 'If you played it before, you probably won\'t find here any further reason to go at it again. For everyone else, this is a must.', 'PixelJunk Shooter Ultimate', 1632, 90, '27-Jun-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/pixeljunk.jpeg'),
(2143, 1165, 'This game oozes perfection in its simplicity. Its ideas are well-executed and spot-on, the dialogue is witty and clever, and though it\'s often tricky, you\'re always willing to hop in for another blast.', 'Kalimba', 1633, 100, '23-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/kalimba.jpeg'),
(2144, 1031, 'Just enjoy the game for what it is; which not only is the best Madden game in quite some time, but the overall most accurate and realistic football game I have ever played.', 'Madden NFL 15', 1633, 91, '22-Aug-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/madden15.jpeg'),
(2150, 1160, 'The series is over a decade old now, but you\'ll find that the story and dialogue are still as witty and charming as ever.', 'Phoenix Wright: Ace Attorney Trilogy', 1002, 100, '6-Jan-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/aceattorney.jpeg'),
(2152, 1166, 'Captain Toad\'s Treasure Tracker is a joyous experience in an age where many games go for the grim. This low-cost, high-value puzzler’s packed full of sweet characters, delightful visuals, and its multi-objective level design lets nubile gamers feel accomplished at simply beating a stage while still leaving some nice challenge for the more hardcore among us.', 'Captain Toad: Treasure Tracker', 1290, 95, '13-Jan-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/captiantoad.jpeg'),
(2153, 1013, 'With a full year of puzzles on top of what’s already in the game, puzzle enthusiasts will find a lot of enjoyment here.', 'Professor Layton and the Azran Legacy', 1002, 95, '28-Mar-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/professorlayton.jpeg'),
(2156, 1163, 'This is the sort of game that people buy a new console for. It’s just that good. Sunset Overdrive celebrates the things that set us apart as gamers, and it draws strength from those differences. It never loses sight of the fact that fun trumps all in this sort of escapist fantasy.', 'Sunset Overdrive', 1633, 100, '25-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/sunburstoverdrive.jpeg'),
(2162, 1132, 'A great story. Touching, brilliantly developed end elegantly depicted. Ubisoft shows once again that video games are indeed art and a great storytelling medium.', 'Valiant Hearts: The Great War', 1633, 94, '25-Jun-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/valianthearts.jpeg'),
(2168, 1129, 'Watch_Dogs 2 combines an astonishingly detailed world, a gripping storyline, creative game mechanics, a myriad of missions and activities, and improvisational tactical sandbox gameplay to create a truly next-generation open world game. Phenomenal. No other word for it.', 'Watch Dogs 2', 1632, 100, '27-May-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/watchdogs2.jpeg'),
(2173, 1150, 'In short: it\'s a bit good. [Christmas 2014, p.95]', 'Pix the Cat', 1632, 90, '28-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/pixthecat.jpeg'),
(2175, 1116, 'The choices I\'ve made are sticking with me way more than any scene that HBO has aired.', 'Game of Thrones: Episode One - Iron From Ice', 1633, 95, '2-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/gotironfromice.jpeg'),
(2181, 1031, 'This is one of the best 3DS releases this year, and certainly not a title I’d urge any Nintendo, or old-school action/adventure fan to miss.', 'Kirby: Triple Deluxe', 1002, 100, '28-Apr-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/kirbytripledeluxe.jpeg'),
(2183, 1093, 'Second Son is easily the best game Sucker Punch has ever released, easily the best game available so far on the PS4, and easily the one game that every PS4 owner should purchase.', 'inFamous: Second Son', 1632, 100, '20-Mar-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/secondson.jpeg'),
(2189, 1089, 'Where BioShock Infinite aggressively tugged on heartstrings, The Evil Within tears them from your chest and crucifies you. It strangles you with your own tendrils and feeds you your own beating heart, mouth locked shut and tied with entrails, forcing you to chew and swallow. But when the last sliver slides down the back of your throat, you’ll look up and smile a sadistic smile before asking “more, pleaseâ€Â.', 'The Evil Within', 1633, 100, '13-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/evilwithin.jpeg'),
(2190, 1129, 'A tricky and challenging single-player game, joyously mad multiplayer action, and an incredibly in-depth creator mode combine to deliver what is without doubt, the best LittleBigPlanet game yet. Wonderful stuff.', 'LittleBigPlanet 3', 1632, 100, '17-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/littlebigplanet3.jpeg'),
(2191, 1031, 'Professor Layton vs. Phoenix Wright is certainly one of the best releases on the 3DS this year, and it shouldn’t be missed.', 'Professor Layton VS Phoenix Wright Ace Attorney', 1002, 100, '25-Aug-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/phoenixwright.jpeg'),
(2200, 1020, 'With deadly obstacles at every step, this is one game that never lets up. But fans of this type of punishment will enjoy the clever level designs and rage-inducing traps.', '1001 Spikes', 1632, 80, '3-Jul-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/1001spikes.jpeg'),
(2204, 1076, 'Mario Golf: World Tour is a solid mix of great controls, crisp, colorful visuals, great replay value due to its amount of unlockable content, and is ultimately just a flat out great experience. Chalk this one up as another great 3DS title you should add to your library.', 'Mario Golf: World Tour', 1002, 91, '16-May-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/mariogolf.jpeg'),
(2205, 1125, 'Great games have a simple concept and message. Don’t Starve will leave you feeling full. [March 2014, p78]', 'Don\'t Starve: Console Edition', 1632, 90, '27-Feb-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dontstarve.jpeg'),
(2207, 1111, 'Toys for Bob have knocked this one out of the park and have returned with what is possibly the very best version of Skylanders available.', 'Skylanders Trap Team', 1633, 90, '17-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/skytrapteam.jpeg'),
(2213, 1076, 'The soccer and JRPG mechanics blend incredibly well together and make a fantastic hybrid for fans of both genres.', 'Inazuma Eleven', 1002, 100, '26-Feb-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/goumbra.jpeg'),
(2219, 1076, 'It\'s a 2D shooter-platformer that has one eye on the past and the other on the present, coalescing to form a game that firmly takes the genre another step forward into the future.', 'Azure Striker Gunvolt', 1002, 91, '22-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/gunvoltstiker.jpeg'),
(2223, 1057, 'With intuitive controls and great tunes, Disney’s Fantasia: Music Evolved is not only a fantastic rhythm game, but one of the best Kinect games ever made.', 'Fantasia: Music Evolved', 1633, 95, '21-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/fantasia.jpeg'),
(2224, 1064, 'One of the best games of the last few years gets even better.', 'Sleeping Dogs: Definitive Edition', 1633, 95, '15-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/sleepingdogs.jpeg'),
(2226, 1031, 'All in all, this is an excellent, fully featured rendition of one of the best Dynasty Warriors games on the market.', 'Warriors Orochi 3 Ultimate', 1632, 100, '2-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/warriors3.jpeg'),
(2227, 1086, 'D4 is quite a silly game. But also an awesome one, exactly what you\'d expect from the creator of the cult classic Deadly Premonition.', 'D4: Dark Dreams Don\'t Die', 1633, 90, '3-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/d4.jpeg'),
(2228, 1125, 'Videogame worlds are rarely this rich and addictive. No matter your pleasure - story-based campaigning, co-op comradeship, or adversarial annihilation - Destiny delivers on all fronts. Frighteningly, this really does have the framework of a 10 year obsession. [Nov 2014, p.68]', 'Destiny', 1632, 100, '18-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ps4destiny.jpeg'),
(2229, 1020, 'Chariot is a decent adventure when you go solo, but an excellent one when you bring a friend. You’ll definitely want to sit a partner down next to you to get the most out of this experience.', 'Chariot', 1632, 85, '29-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/chariot.jpeg'),
(2232, 1057, 'With a plethora of mediums and subjects available, a thoughtful approach to teaching art and perfect touchpad controls, Art Academy is a must-have for any Pokemon doodler.', 'Pokemon Art Academy', 1002, 85, '20-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/artacademy.jpeg'),
(2234, 1115, 'The reality is that Samurai Warriors 4 is nothing short of brilliant, and a huge leap forward into the new generation of game design by Koei. It\'s cinematic, its beautiful, it\'s fast and entertaining, and if you allow it to be, it\'s even a little educational. And that makes it inspiring.', 'Samurai Warriors 4', 1632, 100, '20-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/samuraiwarriors4.jpeg'),
(2240, 1115, 'With a rocking soundtrack, loads of content, plenty of fan service and some clever gelling of two disparate video game universes, Hyrule Warriors is easily my favourite game of 2014 so far.', 'Hyrule Warriors', 1290, 100, '29-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/hyrulewarriors.jpeg'),
(2243, 1120, 'Bad Blood is the furthest thing from a collection of repurposed missions with a character reskin.', 'Watch Dogs: Bad Blood', 1632, 80, '26-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/WDbadblood.jpeg'),
(2245, 1031, 'Overall, Pure Pool is a fun and accurate representation of the fine game of billiards and there will be little that fans will find that is overlooked here.', 'Pure Pool', 1632, 91, '15-Aug-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/purepool.jpeg'),
(2247, 1094, 'Genuine art is meant to evoke a response from its audience, and Hohokum\'s diverse assortment of imaginative endeavors makes it easy to get lost inside its world. It\'s effective union of art, activity and music, managing a progression of open personal responses without the weight of a direct narrative or dissonant mechanics.', 'Hohokum', 1632, 92, '12-Aug-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/hohokum.jpeg'),
(2252, 1013, 'There is a lot to love about Dead Rising 3\'s latest DLC. For $10 it is impossible not to recommend to Xbox One owners who still have the game, especially those with a fondness for classic Capcom titles.', 'Super Ultra Dead Rising 3\' Arcade Remix Hyper Edition EX Plus Alpha', 1633, 85, '1-Jul-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/deadrising3ultra.jpeg'),
(2260, 1001, 'The best of Lara, whether played on your own, or shared with others.', 'Lara Croft and the Temple of Osiris', 1633, 90, '14-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/laracroft.jpeg'),
(2262, 1086, 'A great game that repeats the same mistake of previous entries: it takes too long to appreciate its full potential, so at first it might not seem as appealing as it really is.', 'Inazuma Eleven Go: Light', 1002, 80, '26-Jun-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/golight.jpeg'),
(2273, 1139, 'Despite some technical shortcomings, Lego Batman 3: Beyond Gotham does a fine job of continuing to build on what the series has established while also hitting all the right notes to keep pleasing Bat-fans of all ages.', 'LEGO Batman 3: Beyond Gotham', 1633, 85, '20-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/legobatman3.jpeg'),
(2276, 1135, 'Surprising and versatile, Project Spark is a very nice videogame editor, with some issues due to its young age and a potentially bright future ahead.', 'Project Spark', 1633, 86, '17-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/projectspark.jpeg'),
(2278, 1093, 'With three very different maps Respawn has shown that they take pride in their level design.', 'Titanfall: Expedition', 1633, 81, '26-May-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/titanfallexpedition.jpeg'),
(2286, 1104, 'It carries the sensibilities of its inspirations, and it feels and looks just as it should. There\'s some irritation there, but like the best folk tales, Never Alone is all about sharing the game with someone else.', 'Never Alone', 1632, 100, '20-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/neveralone.jpeg'),
(2288, 1129, 'MotoGP 14 delivers exciting, challenging and surprisingly deep motorcycle racing action. It\'s audio-visuals feel disappointingly last-generation, however.', 'MotoGP 14', 1632, 80, '10-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/motogp14.jpeg'),
(2289, 1020, 'It may have a simple premise, but this PlayStation 4 title is one of the most exciting space shooters of the year.', 'Futuridium EP Deluxe', 1632, 90, '20-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/futuridium.jpeg'),
(2298, 1031, 'I really enjoyed inFamous First Light on a number of levels, and if I had to compare it to The Last of Us’ Left Behind expansion, I would give the edge to First Light just for its additional challenges and replayability.', 'inFamous: First Light', 1632, 91, '3-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/infamousfirstlight.jpeg'),
(2306, 1033, 'This is one of the best episodes of the series. Thanks to the possibility of using smartphones as controllers playing with friends is going to be easier than ever.', 'Just Dance 2015', 1632, 80, '22-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/justdance15.jpeg'),
(2307, 1145, 'It\'s a massive shame that so few people are playing Intercept so soon after release and that the number is only going to go down because Intercept is excellent, a diamond finally cut from the rough potential of Killzone Shadow Fall. Fragile systems that must be balanced during relentless assaults, clever enemies and perfectly built maps combine to make it the best mode in the game.', 'Killzone: Shadow Fall - Intercept', 1632, 90, '2-Jul-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/killzoneintercept.jpeg'),
(2312, 1047, 'Lego The Hobbit is, if not the best Lego game, then closely matched with the top entries in the series. It expands the series repertoire with new mechanics and better quest navigation.', 'LEGO The Hobbit', 1632, 90, '15-Apr-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/legohobbit.jpeg'),
(2314, 1116, 'I was not expecting to love Unity, but I do. Ubisoft nailed the big assassination missions and everything in between.', 'Assassin\'s Creed Unity', 1633, 91, '11-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/acunityxbox.jpeg'),
(2325, 1063, 'It will take weeks, maybe months, for you to earn every sticker and find all the collectibles.', 'Disney Magical World', 1002, 96, '8-Apr-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/magicalworld3ds.jpeg'),
(2328, 1027, 'Endlessly charming and unusually engaging, Tomodachi Life is a fantastic diversion.', 'Tomodachi Life', 1002, 90, '7-Jun-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/tomodachi.jpeg'),
(2332, 1122, 'Blends the complexity of realistic simulation with inviting mechanics and gives just enough leeway to evoke heart-pumping power and intensity in every kind of racing fan.', 'Driveclub', 1632, 95, '7-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/driveclub.jpeg'),
(2334, 1173, 'The LEGO Movie Videogame was one of the few LEGO games that instantly made me want to play more upon finishing the story mode.', 'The LEGO Movie Videogame', 1632, 90, '28-Feb-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/legomoveps4.jpeg'),
(2345, 1139, 'The best representation of the action that happens inside the Octagon yet. While it’s not simple, the control scheme is still easy enough to learn that it takes the experience to an entirely new level as you break your opponents down standing up, in the clinch, or on the mat. With outstanding next-gen visuals, EA Sports UFC is good enough to carry around a championship belt.', 'EA Sports UFC', 1633, 90, '17-Jun-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/xboxufc.jpeg'),
(2347, 1013, 'I extremely enjoyed this game, and it is definitely the best in the franchise that I have played. The story mode is brilliant, and the new features and weapons improve the game play considerably. With online and offline multiplayer available too, there is plenty of opportunity to play for hours. I was a little disappointed with the bugs that I encountered, but in the end it did not take away from the fun of the game.', 'Worms Battlegrounds', 1633, 95, '2-Jun-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/wormsxbox.jpeg'),
(2349, 1111, 'A solid new addition to the Call of Duty experience and some of the best maps I\'ve played in a long time.', 'Call of Duty: Ghosts - Devastation', 1633, 80, '8-Apr-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/ghostsdevastation.jpeg'),
(2355, 1115, 'Even when the overall challenge of living a day in Octodad’s shoes bears too much weight, the game is amusing enough to quell most of the frustration.', 'Octodad: Dadliest Catch', 1632, 90, '8-May-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/octodad.jpeg'),
(2357, 1115, 'The sheer weight of content that is packed into the game can\'t be understated; this is a big, chunky game that demands a lot of time to work all the way through it, but every step of the way is a truly entertaining one.', 'Dynasty Warriors 8: Xtreme Legends Complete Edition', 1632, 90, '26-Mar-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/xtremelegends.jpeg'),
(2366, 1065, 'The definitive version of the famous Android and iOS-game. A joy to play and definitely one of the best games on Wii U e-Shop. Save the ocean!', 'Squids Odyssey', 1290, 80, '28-Jul-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/squidodyssey.jpeg'),
(2383, 1027, 'While it doesn\'t offer the zany game types or interesting visuals of Tetris DS, this is a better offering than Tetris Axis by far.', 'Tetris Ultimate', 1002, 80, '25-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/tetrisultimate.jpeg'),
(2393, 1122, 'Save the Moon in Counterspy, a title created by a team of incredibly talented developers and creators from many different mediums. Experience Bond-esque style in a brand new way.', 'CounterSpy', 1632, 95, '19-Aug-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/counterspy.jpeg'),
(2401, 1066, 'Series fans will love getting to experience classic copy abilities to the fullest in a new setting, and fighting types will appreciate the variety and depth of the fast-paced Kirby combat  if you find yourself in either camp, Fighters Deluxe deserves a privileged place on your 3DS menu.', 'Kirby Fighters Deluxe', 1002, 80, '10-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/kirbyfighters.jpeg'),
(2410, 1077, 'The repetition of said features, plus the lack of the Wii U\'s strengths being put to use is unfortunate, but dedicated One Piece fans and patient newcomers will find a lot to love.', 'One Piece: Unlimited World Red', 1290, 80, '16-Jul-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/onepiece.jpeg'),
(2419, 1042, 'Mystery of the Mooil Rig may end too quickly, but you\'ll enjoy the ride.', 'Sunset Overdrive and the Mystery of the Mooil Rig!', 1633, 80, '12-Jan-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/sunsetoverdrive.jpeg'),
(2423, 1120, 'How to Survive: Storm Warning Edition rewards the procrastinating zombie enthusiast who’s been curious about the game and its add-on content.', 'How to Survive: Storm Warning Edition', 1632, 70, '8-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/survivestormwarning.jpeg'),
(2425, 1010, 'Yoshi\'s New Island is a fun, cute and a lot easier platformer than other recent Nintendo games. It\'s a perfect match for a platformer novice, but gives thrills to a veteran too, especially when used as a sedative between much harder games.[Apr 2014]', 'Yoshi\'s New Island', 1002, 85, '11-May-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/yoshinewisland.jpeg'),
(2429, 1099, 'This is a classic. And like its PC brother it still is a challenging straight forward top-down two-stick shooter that I can’t get enough of.', 'Crimsonland', 1632, 80, '22-Aug-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/crimsonland.jpeg'),
(2438, 1063, 'My favorite part of all of it was the way that Bungie forces you to employ new tactics and new styles of play. They force you to break out of your comfort zone to try and new load-out or a new way to play through a level you have been through a hundred times before.', 'Destiny: The Taken King', 1632, 96, '15-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/desttakenking.jpeg'),
(2453, 1162, 'WWE 2K15 makes its debut in the next gen with a notable game. Controls have been fully redesigned in order to offer the best gameplay mechanics, and its visuals are mainly what you would expect.', 'WWE 2K15', 1632, 84, '18-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/wwe15.jpeg'),
(2466, 1057, 'Unfortunately, it really is just more of the same but with an impressive visual bump.', 'NHL 15', 1632, 80, '9-Sep-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/nhl15.jpeg'),
(2470, 1105, 'While the game isn\'t perfect, it is clearly ready to take on all comers and creates a firm foundation for EA to build upon for years to come.', 'NBA Live 15', 1632, 80, '28-Oct-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/nbalive15.jpeg'),
(2491, 1144, 'While we would\'ve had the first female Dead Rising hero headline a full length game, Broken Eagle is a nice add on with excellent storytelling beats and a beefier adventure than Fallen Angel. [May 2014, p.77]', 'Dead Rising 3: Broken Eagle', 1633, 70, '26-Mar-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/dr3brokeneagle.jpeg'),
(2506, 1145, 'The lack of minigame variety brings the score down a few notches, along with some confusing menus and lack of tutorials. The kids won’t care about any of that stuff, though.', 'Rabbids Invasion', 1633, 70, '3-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/rabbidsinvasion.jpeg'),
(2507, 1147, 'Konami may have created the most robust digital version of its popular CCG yet, but it has married it to a distinct lack of gameplay modes and player interaction. [Sept 2014, p.123]', 'Yu-Gi-Oh! Zexal: World Duel Carnival', 1002, 70, '20-Aug-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/yugioh.jpeg'),
(2522, 1125, 'Have this – plus a HDD full of DLC tracks– and your next shindig is going to make the papers. [Christmas 2014, p75]', 'SingStar: Ultimate Party', 1632, 80, '28-Nov-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/singstarultimateparty.jpeg'),
(2523, 1037, 'It’s not unique but did offer a satisfying distraction.', 'Harvest Moon 3D: The Lost Valley', 1002, 70, '5-Jul-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/harvestmoon.jpeg'),
(2529, 1023, 'You should only pick up Putty Squad if you\'re a fan of the original, and have an unhealthy affinity towards platformers. Everyone else need not apply unless the game drops to a rightful price of $10 or less.', 'Putty Squad', 1632, 50, '14-Apr-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/puttysquad.jpeg'),
(2533, 1044, 'It’s not deserving of some of the vitriol it’s received as it’s not the worst game ever, but it’s just so painfully average in so many ways that it may actually be worse by not being a worse game.', 'Sonic Boom: Rise of Lyric', 1290, 55, '1-Dec-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/sonicboom.jpeg'),
(2534, 1141, 'Flying with planes has its fun moments and the soundtrack is enjoyable. Everything else about this title, however, is simply abysmal. Don\'t buy this.', 'Air Conflicts: Vietnam Ultimate Edition', 1632, 40, '3-Jul-14', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/airconflictsvietnam.jpeg'),
(2537, 1037, 'Metal Gear Solid V Phantom Pain is an interactive piece of art that truly pays homage to the original game and successfully expands the franchise into an open-world game.', 'Metal Gear Solid V: The Phantom Pain', 1633, 100, '13-Sep-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/phantompainxbox.jpeg'),
(2539, 1177, 'It’s a simple remaster, but it makes a work of art all the more beautiful and immersive.', 'Journey', 1632, 100, '11-Oct-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/journeyps4.jpeg'),
(2540, 1000, 'Bloodborne takes the best of Dark Souls and builds the unrelenting gaming challenge on a prefect foundation - it will test your abilities to the max. The first true must-have exclusive for PS4 is here. [Issue#252]', 'Bloodborne', 1632, 100, '12-May-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/bloodbourne.jpeg'),
(2544, 1107, 'Ultimately, Hearts of Stone sets the standard for what we should expect from premium content, and not just because of its price tag. This is DLC that puts many retail releases to shame.', 'The Witcher 3: Wild Hunt - Hearts of Stone', 1632, 100, '21-Oct-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/w3heartofstone.jpeg'),
(2545, 1178, 'To my immense surprise, I haven’t fallen for a Zelda game like this since I played the The Legend of Zelda: A Link to the Past (1991). Evidence of master craftsmanship is everywhere in this game. By the time you’re flipping a temple upside down then right side up, you may discover that your imagination has been enlarged.', 'The Legend of Zelda: Majora\'s Mask 3D', 1002, 100, '6-Apr-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/majoramask3ds.jpeg'),
(2548, 1129, 'Even if you know the Kingdom of Drangleic like the back of your hand, you\'re in for many new surprises. And if you\'ve never played Dark Souls II before, your patience has paid off: This is simply the best version of it you\'ll ever play.', 'Dark Souls II: Scholar of the First Sin', 1633, 100, '10-Apr-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/darksoulsII.jpeg'),
(2551, 1179, 'The game\'s music is perfectly set for the different situations you find yourself in. It\'s suitably dramatic in the big fight scenes and similarly soft when you get to a more emotional part. Whilst not at the forefront of your attention, the music is always there and sometimes you won\'t even notice it until it goes silent. Your heart might be in your mouth as you hack a computer or lockpick a door with enemies nearby, and the music will do a great job to reflect exactly how you are feeling.', 'Fallout 4', 1633, 100, '16-Dec-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/fallout4.jpeg'),
(2553, 1180, 'Super Mario Maker is a construction tool bundled with the kind of online community Nintendo fans have always wanted.', 'Super Mario Maker', 1290, 100, '2-Nov-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/mariomaker.jpeg'),
(2554, 1181, 'The best homage that the old school RPG can get, but also a rendition to the new wave on the genre, adapted seamlessly to consoles.', 'Divinity: Original Sin Enhanced Edition', 1633, 91, '1-Nov-15', 'http://cmcgee17.lampt.eeecs.qub.ac.uk/doubletap/img2/divinity.jpeg'),
(2556, 1000, 'Even the greatest cynic will be touched by this brilliant platformer. Difficulty setting is missing here and you found this quite challenging even unmerciful. Considering the whole game this small flaw can be forgiven. [Issue#251]', 'Ori and the Blind Forest', 1633, 100, '10-Apr-15', ''),
(2558, 1016, 'It would seem unthinkable but it’s true that the Old Hunters is even more challenging than the main game. Bosses and mobs are here to make our life much harder, but also to make us beg for even more! From Software delivers another unique experience depicted through a beautifully somber environment of which Lovecraft would be proud.', 'Bloodborne: The Old Hunters', 1632, 100, '20-Jan-16', ''),
(2560, 1125, 'The Bat could not have hoped for a better send off. Graphically astounding, narratively compelling, and featuring two utility belts full of new gadgets. This is bat-time very, very well spent.[September 2015, p72]', 'Batman: Arkham Knight', 1632, 100, '11-Aug-15', ''),
(2561, 1182, 'With gorgeous sound and visuals, immersive and expansive modes for single players, captivating multiplayer options, a rewarding economy, and a staggering amount of cars and tracks, Forza Motorsport 6 delivers a powerful racing experience. It single-handedly makes the Xbox One console appealing, and is a no-brainer “gotta have it†title for those that have Microsoft’s gaming machine in their homes.', 'Forza Motorsport 6', 1633, 100, '2-Mar-16', ''),
(2562, 1035, 'SuperChargers is as good as the Skylanders have ever been, and old fan or new, this is a ride you really need to strap in for and enjoy.', 'Skylanders SuperChargers', 1290, 96, '20-Sep-15', ''),
(2563, 1077, 'This line of 3D Classics has been a great tribute to retro gaming, so far serving up 3D enhanced versions of some of the finest titles in SEGA\'s large catalogue of wonderful games, and, naturally, gives new fans a try at discovering them for the first time.', '3D Sonic the Hedgehog 2', 1002, 90, '16-Nov-15', ''),
(2564, 1169, 'The football here is unpredictable and undefinable. Matches take on their own personality, depending on who is playing, both on the pitch and behind the controller. You are given enough control and room for expression that you don’t need to conform to best practice. Instead you need to play to your and your team’s strengths, negating the opponent’s and managing the tempo of a game.', 'Pro Evolution Soccer 2016', 1632, 100, '6-Oct-15', ''),
(2565, 1145, 'An absolute stone-cold classic, now on your 3DS.', '3D Out Run', 1002, 100, '23-Mar-15', ''),
(2566, 1182, 'NBA 2K16 has raised the bar not just for future iterations of the series but for every sports game developed beyond this point.', 'NBA 2K16', 1632, 100, '3-Mar-16', ''),
(2567, 1011, 'Without a doubt, this is the best remastered game \"compilation\" ever made.', 'Uncharted: The Nathan Drake Collection', 1632, 100, '30-Sep-15', ''),
(2568, 1146, 'The story crafted here isn\'t just a fine Borderlands sequel, but one of the most enjoyable sci-fi adventure stories in recent memory.', 'Tales from the Borderlands: A Telltale Game Series', 1632, 100, '25-Nov-15', ''),
(2570, 1044, 'DmC was one of the best action games of the last generation, and it’s remained fantastic two years later. It’s a better overall value now than it was then thanks to the addition of the DLC campaign and is still a must-play game.', 'DmC: Devil May Cry Definitive Edition', 1633, 93, '10-Mar-15', ''),
(2571, 1183, 'Monster Hunter 4 Ultimate is utterly magnificent. Newfound vertical freedom, extraordinary new monsters and native 3DS multiplayer makes for the best game in the series to date, coupled with a much more compelling storyline and some killer new features.', 'Monster Hunter 4 Ultimate', 1002, 100, '22-Mar-15', ''),
(2574, 1184, 'One of the best things I played all year.', 'Rise of the Tomb Raider', 1633, 100, '30-Nov-15', ''),
(2575, 1160, 'Imagine & Form proved themselves to be formidable developers with the release of SteamWorld Dig, but SteamWorld Heist just takes it to another level in so many ways. It’s simple yet ambitious with a presentation as charming as its execution. Becoming a robotic tactician never felt so good with its stellar combat mechanics.', 'SteamWorld Heist', 1002, 100, '22-Dec-15', ''),
(2578, 1185, 'OlliOlli2: Welcome to Olliwood takes everything that made the original great and improves on it. It\'s intricate, stylish and a blast to play, setting the standard for what a sequel should be.', 'OlliOlli2: Welcome to Olliwood', 1632, 100, '6-Mar-15', ''),
(2579, 1000, 'It\'s perfectly brutal fun that will work in the right circle of friends or foes for months. Graphics, combat physics, interaction with the environment, diversity of characters and many more positives make this game an event of this season at least.[Issue#252]', 'Mortal Kombat X', 1633, 100, '12-May-15', ''),
(2580, 1076, 'The Wii U has been home to quite a strong collection of sidescrollers: New Super Mario Bros. U, Donkey Kong Country: Tropical Freeze and DuckTales: Remastered to name but a few. Gunman Clive HD Collection proudly joins that lineup, offering a fantastic experience at a fraction of the cost of those titles.', 'Gunman Clive HD Collection', 1290, 91, '10-Sep-15', '');
INSERT INTO `practice_gametable` (`gameID`, `criticID`, `review`, `gameTitle`, `platformID`, `score`, `date`, `URL`) VALUES
(2581, 1000, 'Large-scale story of Xenoblade Chronicles will draw you into a huge world naturally, where boredom has no place and you’ll spend there several hours of a game time with love. This one is a must-have, and not only for fans of JRPG games. [Issue#252]', 'Xenoblade Chronicles 3D', 1002, 100, '12-May-15', ''),
(2585, 1139, 'From its opening moment until its final scene plays, Life is Strange is a wonderful, beautiful, captivating, touching adventure built upon the undying friendship of two girls trying to find their place in the world.', 'Life is Strange', 1632, 95, '1-Nov-15', ''),
(2588, 1096, 'With Defenders and the latest free update, Resogun has easily become the best arcade game available for PlayStation 4, but also one of the best exclusives for the Sony console.', 'Resogun: Defenders', 1632, 100, '20-Mar-15', ''),
(2592, 1125, 'Flawless game design and endless replay value mean that Super Meat Boy! more than holds its own on PlayStation in 2015. [Christmas 2015, p73]', 'Super Meat Boy', 1632, 90, '15-Dec-15', ''),
(2593, 1016, 'Rare Replay is a piece of gaming history full of legendary games that everyone should play.', 'Rare Replay', 1633, 100, '1-Sep-15', ''),
(2594, 1031, 'If you missed Devil Survivor 2 the first time around, or even Record breaker on its release earlier this year, it\'s one of those RPGs that \"there\'s never a bad time\" to jump in.', 'Shin Megami Tensei: Devil Survivor 2 Record Breaker', 1002, 100, '23-Sep-15', ''),
(2595, 1000, 'Developers from 343 Industries have finally caught the right way and with the fifth part they fixed the mistakes which they made in the previous installment. So they provide the players with an absolutely perfect and catchy campaign. [Issue#258]', 'Halo 5: Guardians', 1633, 100, '3-Dec-15', ''),
(2599, 1032, 'The exploration loop is incredibly satisfying, and combat feels both tight and adaptable, like a complex dance where the partners both accentuate each others strengths, allowing any weak points to fade into the background.', 'Axiom Verge', 1632, 100, '31-Mar-15', ''),
(2600, 1186, 'If you loved Xenoblade Chronicles for Wii or Nintendo 3DS, you will soon find yourself a new love in the form of Xenoblade Chronicles X on Wii U.', 'Xenoblade Chronicles X', 1290, 100, '27-Jan-16', ''),
(2602, 1187, 'Madden 16 proves that it is far from a mere roster update, with some of the best gameplay improvements in a long time and the incredibly fun and addicting Draft Champions mode.', 'Madden NFL 16', 1633, 90, '24-Aug-15', ''),
(2603, 1088, 'While on-pitch matters between these two old foes are too close to call, Fifa’s breathtaking scope secures yet another silver pot for an already heaving trophy cabinet.', 'FIFA 16', 1633, 100, '22-Sep-15', ''),
(2604, 1016, 'Resident Evil HD Remaster is a golden opportunity for newcomers to face the real terror. For everyone else it is a chance to get inside that beloved mansion once again.', 'Resident Evil HD Remaster', 1632, 100, '22-Jan-15', ''),
(2605, 1069, 'The Portal add-on to Zen Pinball 2 is another excellent addition to the already-strong lineup of tables available, and having played most of the selections on offer, I\'d say this one ranks right near the top. For anyone who loves Portal, pinball, or both, this is an absolute no-brainer.', 'ZEN Pinball 2: Portal Pinball', 1632, 90, '15-Jun-15', ''),
(2607, 1076, 'The pay model is fair and flexible, the gameplay feels refreshed and is highly addictive, and it’s clear that Mallow and his companions will be part of the Nintendo family for many years to come.', 'Stretchmo', 1002, 91, '22-May-15', ''),
(2608, 1031, 'Between the characters, weapons, and, the animal spirits, there is more than enough content and comedic action for everyone with a weird sense of humor.', 'Castle Crashers Remastered', 1633, 100, '24-Sep-15', ''),
(2610, 1083, 'Not content on being best episode in the series so far, Catch A Ride is one of Telltale Games\' finest works to date.', 'Tales From The Borderlands: Episode 3 - Catch A Ride', 1632, 90, '6-Aug-15', ''),
(2613, 1188, 'Gears of War remains a standout title. It takes a lot for a game to draw raves nine years after its release...Gears is just that good.', 'Gears of War: Ultimate Edition', 1633, 100, '2-Sep-15', ''),
(2614, 1175, 'As its own name suggests, this is a handsome collection, since it includes two great games for the price of one. There are very few remasters that can look at it face to face without feeling ashamed.', 'Borderlands: The Handsome Collection', 1632, 91, '23-Mar-15', ''),
(2615, 1189, 'Overall, Runbow is easily one of the best indie titles currently available on the Wii U, and the single best local multiplayer game I have played on the console. What really sets Runbow apart though isn’t just its multiplayer gameplay, but its plethora of modes, innovative level design, charm, and overall gaming excellence.', 'Runbow', 1290, 95, '17-Nov-15', ''),
(2616, 1023, 'Lovers in a Dangerous Spacetime reminds me of why I love video games, because it provides a unique and colorful journey to get totally immersed in that can be enjoyed with a loved one. Probably the most original game I\'ve played to completion in the past five years.', 'Lovers in a Dangerous Spacetime', 1633, 100, '8-Sep-15', ''),
(2617, 1145, 'It\'s been a long time coming, but Metanet Software have delivered on stylish platforming greatness. This is a must buy for anyone who likes the genre.', 'N++', 1632, 95, '28-Jul-15', ''),
(2623, 1031, 'All in all, I think Galak-Z was definitely worth the wait. It’s one of the most unique titles I’ve played on my PS4 this year, and certainly one of the most challenging.', 'Galak-Z: The Dimensional', 1632, 91, '11-Aug-15', ''),
(2624, 1096, 'The original Skullgirls was a great fighting game with poor contents. Skullgirls: 2nd Encore is finally a complete game with tons of modes, characters and extras. The original gameplay is still there, fresh and funny as usual, and the cross-buy and cross-play options are simply perfect for this awesome experience.', 'Skullgirls: 2nd Encore', 1632, 90, '19-Aug-15', ''),
(2625, 1066, 'Playing Art Academy: Atelier is a relaxing, rewarding, and immersive experience that truly makes you feel like part of a grand tradition.', 'Art Academy: Home Studio', 1290, 90, '8-Jun-15', ''),
(2628, 1184, 'There’s nothing else quite like it, nor the cathartic dopamine jolt to be had when you squid-skim up a paint-smeared quarter pipe, an Inkzooka at the ready, leap over the edge, take aim with your weapon, and reduce a startled opponent to goo.', 'Splatoon', 1290, 100, '10-Nov-15', ''),
(2630, 1145, 'The best Vita game just became one of the best PS4 games. Utterly essential, buy this, so it can finally get the love it so richly deserves.', 'Tearaway Unfolded', 1632, 100, '2-Sep-15', ''),
(2631, 1132, 'This is Treyarch\'s masterwork and probably the best title in the series so far: with two campaigns comprising a deep and surprising story, 4 players co-op including local split-screen, the biggest Zombie map so far, extra modes and a rich and solid multiplayer, Black Ops III offers tons of content and hardly anything to complain about.', 'Call of Duty: Black Ops III', 1633, 94, '5-Nov-15', ''),
(2633, 1147, 'Episode 3 ups the stakes and takes narrative risks that we rarely get to see: it expands the game’s universe not only forward, but outward… and the very last scene makes you question every single decision you’ve made so far, even down to the random photos you’ve taken around the Bay. We say that without a hint of hyperbole, without a hint of drama. Chaos theory in action, indeed.', 'Life is Strange: Episode 3 - Chaos Theory', 1632, 90, '24-Jun-15', ''),
(2634, 1031, 'If we cannot have an actually F-Zero, FAST Racing NEO definitely is a great substitute. This is a fun and challenging Wii U racer that will keep you entertained for a long while, and an outstanding experience especially for a relatively unknown indie studio.', 'FAST Racing NEO', 1290, 100, '18-Dec-15', ''),
(2635, 1023, 'I love the new controller design, the FMV portions work far better than they should, and Guitar Hero TV hooked me with its channel concept.', 'Guitar Hero Live', 1633, 95, '20-Oct-15', ''),
(2636, 1125, 'LIS has built a series of pivotal plot-forks based on seemingly innocuous actions, but the isolated nature of this heartbreaking scene makes me fear it’ll be forgotten when the series draws to a close. [November 2015, p74]', 'Life is Strange: Episode 4 - Dark Room', 1632, 90, '16-Oct-15', ''),
(2640, 1190, 'For people [who] love the world of Borderlands, and people that appreciate snappy writing and surreal comedy, episode 2 is a definite winner.', 'Tales From The Borderlands: Episode 2 - Atlas Mugged', 1632, 90, '19-Mar-15', ''),
(2644, 1191, 'A well done remake of a classic. It has never looked better and the gameplay is still fantastic.', 'God of War III Remastered', 1632, 92, '12-Aug-15', ''),
(2645, 1022, 'You\'ve never played anything like it, and you\'ll desperately wish for more when you\'re done. Essential. [July 2015, p.76]', 'Affordable Space Adventures', 1290, 92, '16-Jun-15', ''),
(2646, 1065, '3D After Burner II is an old game but polished to something brand new. With all the customisation options and the colourful levels, 3D After Burner II is something every arcade fan has to play.', '3D After Burner II', 1002, 90, '24-Mar-15', ''),
(2648, 1115, 'This is by far the best Disgaea game we’ve seen, and it is a strong contender to be the best tactics RPG ever created.', 'Disgaea 5: Alliance of Vengeance', 1632, 100, '6-Oct-15', ''),
(2649, 1116, 'Lego Dimensions truly sets a new standard for toys-to-life games.', 'LEGO Dimensions', 1633, 95, '9-Oct-15', ''),
(2653, 1031, 'All in all, I don’t have a lot to say about this particular episode, other than the fact that Telltale’s Game of Thrones continues to be a series worth experiencing.', 'Game of Thrones: Episode Three - The Sword in the Darkness', 1633, 91, '24-Mar-15', ''),
(2654, 1031, 'The only thing that would have made the figure sets even better, would have been the inclusion of Star Wars, Tron and other series vehicles.', 'Disney Infinity 3.0 Edition', 1632, 91, '2-Sep-15', ''),
(2655, 1122, 'Even though it stands as more of a refinement over its immediate predecessor than a genuine leap, this latest entry in the BlazBlue series stays true to form by overwhelming players with a deliciously deep combat system, brilliant cast of characters and a veritable avalanche of content.', 'BlazBlue: Chrono Phantasma Extend', 1632, 90, '23-Oct-15', ''),
(2658, 1076, 'Gunman Clive 2 is everything a fan of the original game could want: it improves on an already strong framework, without feeling like a rehash.', 'Gunman Clive 2', 1002, 91, '12-Feb-15', ''),
(2663, 1087, 'Sony San Diego eschewed developing splashy back-of-the-box bullet points in favor of refining an already great game, exhibiting a confidence that is itself quietly remarkable  just like this series\' consistency.', 'MLB 15: The Show', 1632, 90, '13-Apr-15', ''),
(2664, 1116, 'Telltale has put together an incredible Game of Thrones story. I’ve said all along in my previous reviews that I am happier with this than the television show proper, and I stand by that. I still can’t wait for HBO’s next season to debut, but I’m far more interested in seeing what happens with this story.', 'Game of Thrones: Episode Six - The Ice Dragon', 1633, 94, '17-Nov-15', ''),
(2665, 1185, 'While it may lack the MLB license, Super Mega Baseball: Extra Innings provides an MVP-caliber experience thanks to its satisfyingly sound gameplay and charming presentation.', 'Super Mega Baseball: Extra Innings', 1633, 90, '12-Aug-15', ''),
(2666, 1031, 'When this game clicks  and make no mistake, it clicks pretty often  it\'s a thing of beauty to behold.', 'NHL 16', 1633, 91, '29-Sep-15', ''),
(2667, 1001, 'The best Deck Building video game around right now, as it works for veterans and casuals at the same time.', 'Hand of Fate', 1633, 90, '22-Feb-15', ''),
(2668, 1013, 'It’s not the most user-friendly game at the start, especially for those having never played the genre before, but if given the time, will grow on players immensely.', 'Wasteland 2: Director\'s Cut', 1632, 90, '12-Oct-15', ''),
(2669, 1077, 'Its simple design and perfectly-balanced difficulty level mean that it\'s sure to resonate with players of all skill levels, and whether it\'s being chipped away at during morning commutes or digested in its entirety over a weekend, Qbby\'s tale shows that a minimalistic game can be just as satisfying as a triple-A title.', 'BOXBOY!', 1002, 90, '31-May-15', ''),
(2671, 1094, 'The Assignment is an excellent piece of DLC that adds, in a purely positive way, to the base game.', 'The Evil Within: The Assignment', 1632, 88, '16-Mar-15', ''),
(2672, 1076, 'Project Miku DX demands your attention even when you’d like to play something other than rhythm games, because there’s more than just rhythm here. That’s not just incredible for a licensed game. It’s inspiration for all the other ones.', 'Hatsune Miku: Project Mirai DX', 1002, 100, '8-Sep-15', ''),
(2673, 1115, 'There have been only a few strategy games on consoles in recent years, and none have had the depth conveyed by Nobunaga\'s Ambition: Sphere of Influence. The unique historical setting only further cements this title as one of my favourites on the PlayStation 4 to date.', 'Nobunaga\'s Ambition: Sphere of Influence', 1632, 100, '2-Sep-15', ''),
(2674, 1031, 'We haven’t had a lot of opportunities to cheer the Forrester gang on, but this episode certainly gives you a number of moments to do just that.', 'Game of Thrones: Episode Four - Sons of Winter', 1633, 100, '3-Jun-15', ''),
(2676, 1076, 'With 100 single-player levels, Badland: Game of the Year Edition is a worthy single-player romp on the Wii U, if you don’t mind a little frustration every now and then. But with 100 co-op levelsâ€â€not to mention 27 multiplayer deathmatch stagesâ€â€it’s a perfect addition to your multiplayer arsenal. So long as you’re okay with senseless clone death.', 'BADLAND: Game of the Year Edition', 1290, 91, '22-Aug-15', ''),
(2677, 1020, 'Ziggurat is Milkstone Studios\' first game of this scope, and I both hope and believe it will be their breakout game. It is everything a roguelike game should be, and so much more.', 'Ziggurat', 1632, 95, '4-May-15', ''),
(2679, 1165, 'Takes the core of what the series has always excelled at and confidently drags it on to Xbox One. [Dec 2015, p.74]', 'Rock Band 4', 1633, 90, '9-Nov-15', ''),
(2685, 1065, 'Until Dawn is a damn near perfect game, which just breathes horror on every level. The game puts you in control of a group of teens and terrifies you while doing so. This is a must have if you own a PlayStation 4.', 'Until Dawn', 1632, 98, '24-Aug-15', ''),
(2689, 1083, 'With Driveclub Bikes Evolution Studios have been able to surprise us all with no previous inkling we’d get to ride on two wheels, but when we did, we’ve been able to do so properly and from the start. That in itself is an improvement on the original game.', 'Driveclub Bikes', 1632, 90, '10-Dec-15', ''),
(2694, 1164, 'This for me is one of the best indie offerings this year and I would say it is worth the price point for sure, do yourself a favour and give it at try if you think at all it would suit you.', 'Extreme Exorcism', 1290, 90, '29-Sep-15', ''),
(2696, 1031, 'Zen Studios continues to knock out new properties while keeping up the high level of quality that we all expect from their tables. With the exception of my annoyances with the Archer table, playing some of my favorite shows in pinball form was great fun.', 'ZEN Pinball 2: Balls of Glory', 1632, 91, '20-Oct-15', ''),
(2697, 1063, 'There\'s always something new and fresh to discover, plus plenty of worthwhile collectibles to seek out.', 'Yoshi\'s Woolly World', 1290, 96, '19-Oct-15', ''),
(2699, 1192, 'If you\'re searching for the next great platformer hidden in the Wii U eShop, Tic Toc\'s first Wii U title might fit the bill. [Issue #16 – July/August 2015, p.23]', 'Adventures of Pip', 1290, 85, '30-Sep-15', ''),
(2702, 1192, 'If you\'re looking for a new 2D platformer with top-notch level design, Electronic Super Joy won\'t disappoint. [Issue #19 – January/February 2016, p.23]', 'Electronic Super Joy', 1290, 85, '4-Feb-16', ''),
(2703, 1179, 'The combination of an interesting and diverse cast of characters and the entertaining and compelling story sit perfectly in the beautifully recreated 1860’s London. It doesn’t do everything to solve all the series’ problems, missions can feel repetitive and there are some minor AI bugs that will shatter the sense of immersion occasionally, but by taking a step backwards and removing much of the excess baggage that the series has accumulated over the years of annual releases, Syndicate has become the best Assassin\'s Creed since Brotherhood.', 'Assassin\'s Creed Syndicate', 1633, 90, '16-Dec-15', ''),
(2705, 1147, 'It’s a smart game that’s essential for anyone who thinks they can see through the mechanics of other episodic, choice-based games. We thought we could, and Life Is Strange slapped us in the face.', 'Life is Strange: Episode 2 - Out of Time', 1632, 90, '3-May-15', ''),
(2707, 1032, 'Everybody’s Gone to the Rapture is easily one of the most immersive games I’ve ever played.', 'Everybody\'s Gone to the Rapture', 1632, 100, '18-Sep-15', ''),
(2710, 1032, 'Etrian Mystery Dungeon is a deep, engaging and fun game that fans of the series and RPG followers will love at first glance, even though not every player will enjoy it.', 'Etrian Mystery Dungeon', 1002, 100, '21-May-15', ''),
(2711, 1192, 'Almost anything is possible in Minecraft: Wii U Edition. [Issue #19 – January/February 2016, p.21]', 'Minecraft: Wii U Edition', 1290, 95, '4-Feb-16', ''),
(2713, 1031, 'I think Dragon Quest Heroes is far enough removed from the standard musou experience that even if you’re not a Dynasty Warrior fan of some sort, you can still get a whole lot of enjoyment out of this title. More so if you’re a Dragon Quest fan to begin with, but barring that, I still think Dragon Quest Heroes is worth checking out.', 'Dragon Quest Heroes: The World Tree\'s Woe and the Blight Below', 1632, 100, '12-Oct-15', ''),
(2714, 1175, 'ZeniMax has made changes that do much better The Elder Scrolls Online Tamriel Unlimited. Best of TESOTU there is no monthly subscriptions and improvements in gameplay, and worst, third person combat controls and servers stability.', 'The Elder Scrolls Online: Tamriel Unlimited', 1633, 85, '22-Jun-15', ''),
(2715, 1194, 'Inazuma Eleven GO Chrono Stones has a nimble story and an adorable set of characters. It may not be the most revolutionary RPG ever made, but if you are a fan of soccer (and anime), you are all in for a real treat.', 'Inazuma Eleven Go: Chrono Stones: Thunderflash', 1002, 92, '16-Mar-15', ''),
(2716, 1013, 'I highly recommend #IDARB, and this comes from someone that doesn’t play sports games, yet I knew the moment I yelled at my TV during a slow motion instant replay victory, this was special.', '#IDARB', 1633, 100, '14-Jan-15', ''),
(2718, 1143, 'Minecraft fans will adore it, Telltale fans will love it, those who like neither might find something to enjoy, and those who like both will literally explode with joy. [Issue#130, p.74]', 'Minecraft: Story Mode - Episode 1: The Order of the Stone', 1633, 90, '15-Nov-15', ''),
(2719, 1031, 'Platinum never ceases to amaze me, and thankfully Transformers: Devastation continues to prove why Platinum Games is the best action genre developer in the business today.', 'Transformers: Devastation', 1632, 91, '12-Oct-15', ''),
(2720, 1125, 'It feels like Game Of Thrones has finally got going in this, the penultimate instalment. [November 2015, p79]', 'Game of Thrones: Episode Five - A Nest of Vipers', 1632, 90, '16-Oct-15', ''),
(2722, 1148, 'I found my time with Lost Orbit to be enjoyable, and I wish there was more to it outside of the three hour campaign and time trial mode. The fact that I want more speaks highly of Lost Orbit and how it managed to hold my attention all the way through.', 'Lost Orbit', 1632, 90, '12-May-15', ''),
(2724, 1194, 'Inazuma Eleven GO Chrono Stones has a nimble story and an adorable set of characters. It may not be the most revolutionary RPG ever made, but if you are a fan of soccer (and anime), you are all in for a real treat.', 'Inazuma Eleven Go: Chrono Stones: Wildfire', 1002, 92, '16-Mar-15', ''),
(2725, 1175, 'Resident Evil Revelations 2\'s third episode recovers some of the most memorable moments of the series (rooms filled with traps, final bosses, time limited escapes...) and puts them together in a rollercoaster ride that leaves 3-4 gameplay hours. No sign of puzzles or survival elements, but still, a fun ride that adds more missions for the enjoyable Raid mode, and more collectibles and secrets that make it very replayable. It\'s the best episode the game had offered so far, as simple as that.', 'Resident Evil: Revelations 2 - Episode 3: Judgment', 1632, 87, '10-Mar-15', ''),
(2729, 1031, 'The puzzles may be simple and sometimes repetitive, but if you enjoy solving puzzles, can appreciate the colorful canvas-like design, and have an open mind for classic point and click gaming with a bit of retro and modern elements, I would say check out Broken Sword 5.', 'Broken Sword 5: The Serpent\'s Curse', 1633, 100, '18-Sep-15', ''),
(2735, 1173, 'The game’s slick design and the simplicity of the envornments makes it unique, beautiful and alluringly mysterious.', 'Q.U.B.E. Director\'s Cut', 1632, 88, '2-Sep-15', ''),
(2736, 1031, 'If you have any love for the original title, there’s enough new content here with the three additional characters that playing through it again will feel like a fresh experience.', 'Devil May Cry 4: Special Edition', 1633, 100, '23-Jun-15', ''),
(2742, 1010, 'A streamlined version of Far Cry 4, Valley of the Yetis is a worthy addition to the franchise. [Apr 2015]', 'Far Cry 4: Valley of the Yetis', 1633, 82, '13-May-15', ''),
(2744, 1164, 'With its fantastic soundtrack, gorgeous visuals and sky high production values, Yo-Kai Watch belies its years to deliver one of the better looking game on the Nintendo 3DS. It’s unlikely to match Pokémon’s success in the West, but judged upon its own merits, this is one of the better 3DS games released in the last few years and a genuine match for the ever-popular Pokémon franchise.', 'Yo-kai Watch', 1002, 90, '8-May-16', ''),
(2745, 1107, 'Simple like a classic Swatch watch, it’s Minutes’ exceptional mechanics that make this indie worth your time. Clean, colourful, and effortlessly cool, this is a reminder that you don’t need a million dollars to make something special.', 'Minutes', 1632, 90, '3-Nov-14', ''),
(2747, 1076, 'Quite simply, it’s easily one of the best games that you can download on Wii U and you absolutely need to play it if you love the genre.', 'Elliot Quest', 1290, 100, '22-Mar-15', ''),
(2749, 1116, 'I really like Game of Thrones on HBO, but I’m enamored with this game. Something about having ownership of character decisions in a fantasy story that lives up to the legend of George R.R. Martin is incredible.', 'Game of Thrones: Episode Two - The Lost Lords', 1633, 92, '3-Feb-15', ''),
(2752, 1024, 'Story of Seasons is a refreshing game offering a positive place of escape, and while it is definitely a niche title, it gets everything it does right.', 'Story of Seasons', 1002, 90, '31-Mar-15', ''),
(2755, 1145, 'Had this been bundled with a remastered version of Darksiders, the package would be perfect. As it stands, it\'s just a slightly better version of an already brilliant game.', 'Darksiders II: Deathinitive Edition', 1633, 90, '26-Oct-15', ''),
(2757, 1020, 'Don\'t Starve: Giant Edition fills a gap you didn\'t even know the Wii U had. It\'s a great indie title, but it\'s also incredibly challenging, which may be a turn off to some. This game doesn\'t hold your hand, which is great in this day and age.', 'Don\'t Starve: Giant Edition', 1290, 85, '27-Jul-15', ''),
(2758, 1195, 'For once, I can be happy about this series.', 'Minecraft: Story Mode - Episode 3: The Last Place You Look', 1633, 80, '8-Jan-16', ''),
(2759, 1031, 'Now, I know that some people have criticisms of this game: that it\'s too silly, or that it\'s too easy with those superpowers (to say nothing of all the upgrades you can make to your character). But you know what? I don\'t care. Regardless of what any sticks in the mud may say, as far as I\'m concerned Saints Row IV: Re-Elected is just plain awesome in every respect.', 'Saints Row IV: Re-Elected', 1632, 100, '9-Feb-15', ''),
(2763, 1175, 'Revelations 2 Episode 2 makes the story and characters a little bit more engaging, and that\'s probably the biggest success of this chapter. It also brings new types of enemies and one \"final boss\" but, gameplay-wise, this second entry remains the very same as the first.', 'Resident Evil: Revelations 2 - Episode 2: Contemplation', 1632, 81, '3-Mar-15', ''),
(2765, 1175, 'Battlefront´s impressive fidelity to the Star Wars universe, and one of the best technical aspects we´ve seen in any game, are not enough to make us forget it lacks of solo campaign, and 12 maps are too few. The experience is great, but it\'s too short.', 'Star Wars Battlefront', 1633, 90, '16-Nov-15', ''),
(2769, 1023, 'At the end of the day, I\'m happy with what Sledgehammer Games (and Raven) brought to the table with Call of Duty: Advanced Warfare as a whole.', 'Call of Duty: Advanced Warfare - Reckoning', 1633, 85, '5-Aug-15', ''),
(2770, 1187, 'Seeing improvements in all facets and some unexpected inclusions, Ascendance is a good DLC pack for Advanced Warfare. Hopefully we’ll see more of this going forward.', 'Call of Duty: Advanced Warfare - Ascendance', 1633, 80, '1-Apr-15', ''),
(2774, 1010, 'This is an entertaining, but quite linear piece of action adventure. Action is good, but the horror elements are a bit bland, since there\'s no time to build real tension. [March 2015]', 'Resident Evil: Revelations 2 - Episode 1: Penal Colony', 1632, 84, '19-Mar-15', ''),
(2775, 1020, 'Pokemon Picross is a fun and interesting way of playing Picross, but I can see how some elements might turn a player off to the game.', 'Pokemon Picross', 1002, 85, '22-Dec-15', ''),
(2777, 1013, 'Revelations really knocks it out of the park when it comes to bringing that classic Resident Evil feel but a bit more modernized.', 'Resident Evil: Revelations 2', 1633, 90, '17-Mar-15', ''),
(2778, 1157, 'Excelling in so many aspects, from its eye-popping visual style and electronic soundtrack, through to its perfectly balanced twin-stick action and smart, surprising story, Wrong Number lives up to the legacy of the original. We’d go so far as to say it’s essential.', 'Hotline Miami 2: Wrong Number', 1632, 93, '13-Mar-15', ''),
(2779, 1162, 'The Consequence is clearly focused on the plot rather than the action it seemed to have. An unexpected ending establishes the basis of an obvious sequel.', 'The Evil Within: The Consequence', 1632, 81, '24-Apr-15', ''),
(2781, 1020, 'Resident Evil: Revelations 2 comes to a proper close with chapter 4; Metamorphosis. The great gameplay carries through to a satisfying ending and Raid Mode continues to be a blast.', 'Resident Evil: Revelations 2 - Episode 4: Metamorphosis', 1632, 88, '31-Mar-15', ''),
(2782, 1031, 'Unmechanical: Extended won\'t blow too many people away, but I don\'t think anyone can doubt its heart is in the right place.', 'Unmechanical: Extended Edition', 1632, 91, '11-Mar-15', ''),
(2785, 1023, 'Although Swords and Soldiers II has a limited appeal for those of you who like to only game solo, it\'s a fine strategy title, and a perfect mix of brevity and depth.', 'Swords & Soldiers II', 1290, 90, '20-May-15', ''),
(2786, 1115, 'It might be decadent, and looking at the screenshots in this review will tell you if it\'s a decadence that make you uncomfortable, but the gameplay behind it is rock solid and perfectly precise.', 'Dead or Alive 5: Last Round', 1632, 100, '17-Feb-15', ''),
(2789, 1069, 'On second glance, it\'s an amazing sniping experience available at a budget price. This is a game that shooter fans who are willing to push their skills and patience to the limit absolutely shouldn\'t miss.', 'Sniper Elite III: Ultimate Edition', 1632, 85, '29-Jun-15', ''),
(2794, 1001, 'Whilst I was aware of The Escapists, it was never a game on my most wanted list, but having now played for a good number of hours and still only scratching the surface, I can wholeheartedly recommend picking this up and get involved with one of the first great indie titles of 2015.', 'The Escapists', 1633, 90, '9-Feb-15', ''),
(2795, 1027, 'If you’ve been ignoring Thunder Blade for the past quarter-century, it’s time to take notice. 3D Thunder Blade is not just a great arcade port- it’s one of the best pick-up-and-play action games on the 3DS.', '3D Thunder Blade', 1002, 85, '2-Jun-15', ''),
(2797, 1129, 'Without doubt the definitive version of Super Stardust. Some might be disappointed about the fairly limited new additions, but regardless, it\'s still one of the greatest arcade shooters around.', 'Super Stardust Ultra', 1632, 90, '13-Feb-15', ''),
(2798, 1115, 'The true value of Toukiden, and now Kiwami, is the sheer respect and love for Japanese heritage that drips through its atmosphere.', 'Toukiden: Kiwami', 1632, 90, '26-Mar-15', ''),
(2799, 1020, 'It\'s more of the same but that\'s not a bad thing as the gameplay is incredibly fast, frantic and fun. A great game on it\'s own but if you aren\'t a fan of Dynasty Warriors style beat em ups, this game might not do much to change your opinion on them.', 'One Piece: Pirate Warriors 3', 1632, 88, '28-Sep-15', ''),
(2801, 1099, 'Yes, it is short. But Geometry Wars 3 aside I haven’t had that much fun with a twinstick shooter in a while. Be wary of the spiking difficulty in the middle parts though where it moves from challenging to frustrating for a little while.', 'Tachyon Project', 1633, 85, '15-Jul-15', ''),
(2807, 1115, 'The platforming is rock solid, and as I noted, I love the theme with a passion. I would like to see WayForward do something more narrative-heavy with Shantae, as I think she would be a spectacular lead in a RPG or similar, but as it stands this is my favourite 2D platformer series of all, and I\'m glad to see that it\'s now on PlayStation too.', 'Shantae: Risky\'s Revenge - Director\'s Cut', 1632, 90, '2-Jul-15', ''),
(2809, 1193, 'While Mega Coin Squad could\'ve gone the extra mile with more single player oomph and online play, what\'s here is more than serviceable for those looking for a great time with some friends – or collecting coins on their own. The gameplay is original and a lot of fun, and the presentation is right up the alley of Genesis/SNES owners, right down to the cute animations.', 'Mega Coin Squad', 1633, 80, '3-Jun-15', ''),
(2811, 1031, 'While Hardline certainly isn’t your standard Battlefield experience, the changes and tweaks present here are welcome additions, breathing new life into the franchise that’ll entice both veteran and new players alike.', 'Battlefield Hardline', 1632, 91, '16-Mar-15', ''),
(2812, 1027, 'Ultratron is a perfectly fine twin stick shooter and it is certainly worth playing. Sadly, it is too flashy for its own good and this creates problems that are uniquely its own.', 'Ultratron', 1290, 80, '19-May-15', ''),
(2813, 1121, 'It is easy to be the best if you are the only one, but Ubisoft still works hard on its fluorescent dance franchise. It was a good idea to extend the video content so we can watch people dance from all over the world. The introduction of Just Dance Unlimited is still somewhat small, but it has definitely potential to become a Netflix dance game.', 'Just Dance 2016', 1632, 80, '18-Nov-15', ''),
(2815, 1122, 'A stunning recreation of the world\'s most popular poker game, Pure Hold\'em captures the spirit of the big tournaments with slick presentation, an intuitive interface and great multiplayer options.', 'Pure Hold \'Em', 1632, 85, '20-Aug-15', ''),
(2817, 1076, 'Kirby and the Rainbow Curse is a beautiful, creative, and fun-loving game that absolutely deserves your time and attention.', 'Kirby and the Rainbow Curse', 1290, 100, '23-Feb-15', ''),
(2818, 1194, 'This double feature from GungHO and Nintendo is really a treasure waiting to be discovered, especially in its combat and exploration elements. More beautiful than the iOS and Android versions, and incredibly more fun to play.', 'Puzzle & Dragons Z + Puzzle & Dragons: Super Mario Bros. Edition', 1002, 93, '5-May-15', ''),
(2819, 1057, 'In a world filled with overly difficult titles, The Swindle knows how to blend its mechanics together perfectly to deliver one hell of a rewarding experience.', 'The Swindle', 1632, 85, '5-Aug-15', ''),
(2820, 1196, 'Wild Run still has some of the same pitfalls The Crew did, but it finally runs smoothly. The technical parts of the game have been improved, and on top of that there’s an abundance of cool new events and other content. [jan. 2016 / page 084]', 'The Crew: Wild Run', 1632, 84, '27-Jan-16', ''),
(2821, 1166, 'Triforce Heroes is a fantastic Zelda experience that combines the hectic nature of Super Mario Bros.', 'The Legend of Zelda: Tri Force Heroes', 1002, 95, '27-Oct-15', ''),
(2824, 1035, 'The game\'s only real misstep is the wildly inconsistent graphical presentation, but the gameplay and amount of features and things to do more than makes up for some occasionally shoddy visuals.', 'WWE 2K16', 1632, 91, '4-Nov-15', ''),
(2826, 1115, 'However, the real strength in this one is the way the various fascinating stories of fascinating heroes is retold, and as a result of that Samurai Warriors 4-II is one of the best games in the series for some time.', 'Samurai Warriors 4-II', 1632, 100, '29-Sep-15', ''),
(2833, 1003, 'Little Battlers eXperience is a hell of a ride with its colourful visuals, animated cutscenes and over the top plot twists. It becomes a bit grindy and controls feel clunky at times but the awesome customization and variety totally make up for its shortcomings.', 'LBX: Little Battlers eXperience', 1002, 90, '30-Sep-15', ''),
(2835, 1162, 'House of Wolves makes even more addictive a game that was addictive already, flattening the way for September\'s expansion. Watch out if you enter the Reef: you may not leave.', 'Destiny: House of Wolves', 1632, 88, '8-Jun-15', ''),
(2836, 1115, 'I did not know a thing of Cage’s work prior to reviewing Beyond: Two Souls, but the excellent storytelling, the spot-on acting and the technical prowess that explodes out of the PlayStation 4 has made me a huge fan instantly.', 'Beyond: Two Souls', 1632, 100, '8-Dec-15', ''),
(2837, 1165, 'A strong compilation. [Apr 2015, p.88]', 'Call of Duty: Advanced Warfare - Havoc', 1633, 80, '28-Mar-15', ''),
(2839, 1016, 'Type-0 HD has everything a FF fan could ask for: A superb battle system, lots of characters, hours upon hours of interesting quests and a great story. It is quite strange, but the best Final Fantasy game of the recent years is a port from a PSP game.', 'Final Fantasy Type-0 HD', 1632, 90, '1-May-15', ''),
(2843, 1048, 'Though it\'s short and not overly difficult, Leo\'s Fortune is a solid platforming game.', 'Leo\'s Fortune', 1633, 80, '15-Oct-15', ''),
(2844, 1033, 'Tales of Zestiria is an outstanding game we\'ve enjoyed as much as many classic Japanese RPGs. Great story and great gameplay work together to create a game worth playing to celebrate Tales of 20th anniversary.', 'Tales of Zestiria', 1632, 90, '19-Oct-15', ''),
(2847, 1132, 'Even if visually not up to date, ZOMBI manages to deliver a well thought-out survival experience with great gameplay rhythm and mechanics.', 'Zombi', 1633, 85, '27-Aug-15', ''),
(2850, 1001, 'State of Decay: Year One Survival Edition is a game that I can easily recommend and for me it is one that will last a long time, with the original game, plus expansions in one packages, there are hours and hours of content to enjoy and it is worth every penny.', 'State of Decay: Year One Survival Edition', 1633, 90, '14-May-15', ''),
(2857, 1054, 'This is getting better. It’s definitely getting better. The story is way funnier, it has the best puzzles in the series, and it is also the chapter with the best moral choices. If it keeps growing like this, it could become REALLY good. We didn’t expect it, seeing how it began.', 'Minecraft: Story Mode - Episode 4: A Block and a Hard Place', 1632, 80, '4-Jan-16', ''),
(2860, 1065, 'Assassin\'s Creed brings us the first big DLC. Jack the Ripper is in town and chaos arises. An interesting story to say the least.', 'Assassin\'s Creed Syndicate: Jack the Ripper', 1632, 80, '18-Dec-15', ''),
(2862, 1185, 'Powered by a compelling magic system that allows limitless possibilities, Magicka 2 offers imaginative excitement that\'s best enjoyed with others.', 'Magicka 2', 1632, 80, '9-Jun-15', ''),
(2863, 1034, 'We can\'t remember an elephant so funny in the world of videogames. The collaboration between SEGA and Game Freak give us a great videogame, full of fun, humor and good ideas.', 'Tembo the Badass Elephant', 1632, 85, '23-Jul-15', ''),
(2864, 1010, 'The new Metal Gear Online is a satisfying online romp based on the singularly best game mechanics the MGS series has ever seen, as experienced in MGS5. One only wishes to see the same level of variation in maps and game modes as in the extensive character customization. [Nov 2015]', 'Metal Gear Solid V: Metal Gear Online', 1632, 86, '4-Jan-16', ''),
(2866, 1191, 'Payday 2 is an immersive and intense \"Crime Fantasy\" experience and one of those games you like to talk about at a campfire.', 'Payday 2: Crimewave Edition', 1632, 90, '12-Aug-15', ''),
(2868, 1145, 'A fiendishly difficult 2d arcade-style platformer that will have you simultaneously shouting at the telly with rage and delight.', 'Penarium', 1632, 80, '28-Sep-15', ''),
(2873, 1065, 'The four multiplayer maps in the Supremacy DLC all have a unique appearance and this makes the Supremacy DLC a beautiful addition to Call of Duty: Advanced Warfare.', 'Call of Duty: Advanced Warfare - Supremacy', 1633, 80, '8-Jun-15', ''),
(2874, 1135, 'Ultra Street Fighter IV arrives on PS4 with lots of game modes, characters, costumes and all the traditional SF4 flavor. A must-buy for beat\'em up lovers who have passed on previous versions.', 'Ultra Street Fighter IV', 1632, 90, '9-Jun-15', ''),
(2878, 1195, 'One of the funniest games you can play with your friends, either locally or with your Xbox Live friends. Even if you play against the AI bots by yourself you will get some fun, or get some real challenge if you choose the Extreme AI bots difficulty.', 'Knight Squad', 1633, 80, '8-Jan-16', ''),
(2879, 1165, 'Despite a few niggles you\'d be hard pressed to be disappointed by this. With such a fun premise and carefully thought out design, it\'s more likely to sneak up and surprise you with how good it is.', 'Spy Chameleon', 1633, 80, '28-Jul-15', ''),
(2880, 1164, 'It might not be the perfect reimagining of the series that fans have been hoping for, but Gauntlet: Slayer Edition is about as close as anyone has come to delivering the contemporary Gauntlet of our dreams.', 'Gauntlet: Slayer Edition', 1632, 80, '30-Aug-15', ''),
(2881, 1023, 'With King\'s Quest: Rubble Without a Cause, characters are growing right before our eyes with a subtle and effective tonal shift. The Odd Gentlemen also nailed the script, as it feels like a standalone episode that\'s also connected to the episodic format as a whole. We still have three tales to go, but for now, I\'m feeling pretty good about King\'s Quest.', 'King\'s Quest Chapter 2: Rubble Without a Cause', 1633, 90, '17-Dec-15', ''),
(2882, 1031, 'I will add here that if the game has one drawback, it\'s that you can\'t share your created tracks with other users. It feels like that\'s a wasted opportunity, and I say that as someone who generally doesn\'t care for user-generated content. It\'s a sign of how awesome this game is that I just want more of it.', 'ScreamRide', 1633, 100, '9-Mar-15', ''),
(2885, 1032, 'If you’re looking for a fun, “waste the hours away†kind of game, Teslapunk is a good get for its price tag.', 'Teslapunk', 1633, 80, '24-Nov-15', ''),
(2890, 1200, 'Considering my expectations weren’t high, the game sat rather well with me and scratched my FF Advance Tactics itch which wasn’t satisfied with my gander at Blazing Souls: Accelate on the PSP. Whilst the game doesn’t have really any truly unique selling points, it maintains itself as being a rather solid SRPG with the music and graphics to match these expectations.', 'Mercenaries Saga 2: Order Of The Silver Eagle', 1002, 80, '23-May-16', ''),
(2893, 1145, 'A superb puzzle game that has the added bonus of being cross-buy.', 'Mario vs. Donkey Kong: Tipping Stars', 1002, 90, '5-Mar-15', ''),
(2895, 1115, 'As an adventure that does just about everything right in the fun and technical sense, CoE\'s most valuable triumphs are its sense of humour and accessibility; whether you’re politically knowledgeable or oblivious, and if you have a near-romantic relationship with turn-based RPGs, you will risk yawning through a filibuster if it means becoming the Vice President of this world.', 'Citizens of Earth', 1632, 90, '20-Jan-15', ''),
(2897, 1192, 'I expected that I\'d like Code Name: S.T.E.A.M. – what I didn\'t expect was to love it. This is a game that fires on all cylinders right from the start and never lets up – it\'s seriously challenging, charmingly funny and packed with entirely new design ideas every step of the way. Code Name: S.T.E.A.M. is a triumph. [Issue #14: Old vs. New – March/April 2015, p.68]', 'Code Name: S.T.E.A.M.', 1002, 95, '20-Apr-15', ''),
(2899, 1023, 'On its own, Pokémon Super Mystery Dungeon is a quirky, light-hearted spin-off with well-developed dungeon crawling gameplay that provides a satisfying level of difficulty and gives the player plenty of room to develop their own strategies, all the while offering tons of customization options with a huge roster of potential allies and moves. It\'s a solid entry in the Pokémon franchise.', 'Pokemon Super Mystery Dungeon', 1002, 90, '27-Nov-15', ''),
(2900, 1170, 'Pneuma weaves philosophical, existential, and even religious threads into a beautiful tapestry.', 'Pneuma: Breath of Life', 1632, 90, '14-Jul-15', ''),
(2902, 1181, 'Chopping fruit has never been this fun. Fruit Ninja Kinect makes everything better, including more mini-games and allowing up to 4 people to enjoy the party.', 'Fruit Ninja Kinect 2', 1633, 80, '20-Mar-15', ''),
(2904, 1194, 'A lot of fun (and a lot of blood) is waiting for you, especially if this is your first approach to the series.', 'Deception IV: The Nightmare Princess', 1632, 85, '14-Jul-15', ''),
(2905, 1192, 'Even though it misses a few chances to do more, Dr. Mario: Miracle Cure is still the best version of this classic puzzler so far. [Issue #16 – July/August 2015, p.21]', 'Dr. Mario: Miracle Cure', 1002, 85, '30-Sep-15', ''),
(2907, 1196, 'A refreshing and challenging concept that’s bound to keep you entertained for a bit. [Aug 2015, p.084]', 'Super Exploding Zoo', 1632, 80, '24-Jul-15', ''),
(2911, 1173, 'This $10 standalone game is far longer than most $60 games, and I still have the New Game Plus mode to try and unlock the rest of Shao Jun’s abilities.', 'Assassin\'s Creed Chronicles: China', 1632, 90, '10-May-15', ''),
(2912, 1010, 'Game of Thrones copies the well the world and spirit of its source material, however the story and characters don’t achieve the same levels. [Dec 2015]', 'Game of Thrones: A Telltale Games Series', 1632, 81, '4-Jan-16', ''),
(2913, 1170, 'As it stands, the game is a must-own if you have a consistent group of 3-4 players.', 'Paperbound', 1632, 80, '5-Jun-15', ''),
(2914, 1064, 'Overall, Dragon Ball Xenoverse is probably one of the best, if not the best, Dragon Ball related games out there – and there are a lot. You can replay missions to enhance your character. There are various trainers to go on missions for. It also has time travelling - and that’s always a good thing.', 'Dragon Ball: Xenoverse', 1632, 89, '16-Mar-15', ''),
(2920, 1170, 'In all, Kromaia Ω is a diamond in the current outpouring of PSN titles that shouldn’t be overlooked based on its price tag. There are a couple of other game modes included in this new package, but the main campaign will take around eight enjoyable hours to complete. I didn’t even mention the unlockable grapple hook, a feature that opens up new levels of piloting expertise.', 'Kromaia Omega', 1632, 90, '15-Dec-15', ''),
(2922, 1135, 'It\'s got a couple of badly designed puzzles, but it\'s a meaty DLC, and it comes for free!', 'Assassin\'s Creed Unity: Dead Kings', 1632, 90, '16-Jan-15', ''),
(2925, 1115, 'Lord of Magna is pure comfort gaming. It wont dazzle you with its production values, nor will it break your mind over its philosophy or test your skills at JRPGs with its difficulty. Instead, just like the hero\'s obsession with adopting new people into his ever-growing \"family,\" this is a game that you\'ll develop a deep and personal attachment to, because it was built with a purity of intention that is so rare these days, and tugs on the heart strings in just the right way.', 'Lord of Magna: Maiden Heaven', 1002, 90, '8-Jun-15', ''),
(2927, 1121, 'The Bright Lord is good extra content. It does not feel very renewing, but because it is a bit more about spectacular swordfighting this DLC is not forgettable. Using The Ring feels exactly how it is supposed to: epic and powerful. We totally get why Gollum loves that thing so much.', 'Middle-earth: Shadow of Mordor - The Bright Lord', 1632, 85, '13-Mar-15', ''),
(2930, 1164, 'The Castle Game is a fun, well designed tower defence game that should be added to your collection if you want all the defend your castle thrills without the cash grab that is usually associated with the genre.', 'The Castle Game', 1632, 80, '14-Sep-15', ''),
(2932, 1192, 'After the attention-grabbing opening, the greatness of the story never lets up for a moment. [Issue #18 – November/December 2015, p.22]', 'Fatal Frame: Maiden of Black Water', 1290, 90, '30-Nov-15', ''),
(2934, 1027, 'After you learn the controls, this is a puzzle game worth spending some serious time with on your Wii U.', 'Underground', 1290, 80, '11-Jan-15', ''),
(2946, 1175, 'The more you play it, the more you\'re surprised. Be aware: if you expect the typical Animal Crossing, you may be disappointed. Give it a shot, though.', 'Animal Crossing: Happy Home Designer', 1002, 89, '28-Sep-15', ''),
(2951, 1145, 'At its core, Mario Party 10 is just another Mario Party game, but it is also the best one. Smash Brothers and Mario Kart are superior “gamers’ gamesâ€Â, but for partying with friends or family members who only play casually, you can’t get much better than this.', 'Mario Party 10', 1290, 90, '16-Mar-15', ''),
(2952, 1129, 'A gorgeous-looking, very well designed game that offers five different racing styles to tackle - and a bevy of interesting cars to modify and make your own. Its story is a lot of fun, and it\'s set in an impressively large environment that is very enjoyable to drive around. A great arcade racer that\'s both challenging and addictive.', 'Need for Speed', 1632, 90, '2-Nov-15', ''),
(2955, 1175, 'It maintains its unique fun and the new DLC is a remarkable add, but the remastering is pretty poor, with no real improvements.', 'Saints Row IV: Re-Elected & Gat Out of Hell', 1632, 88, '23-Jan-15', ''),
(2956, 1013, 'Adventure Time Finn and Jakes Investigations is a better game than I ever expected. It’s a bold move to take a franchise that has as many kid fans as adults and make it a point and click title. Some simply have no patience to solve puzzles or explore and listen to every bit of dialog.', 'Adventure Time: Finn and Jake Investigations', 1633, 75, '30-Oct-15', ''),
(2963, 1157, 'One of the best racers on PS4. [Issue#260, p.68]', 'F1 2015', 1632, 80, '27-Aug-15', ''),
(2965, 1164, 'Overall Sword Art Online Re: Hollow Fragment is a game for true anime fans. For those looking for a traditional RPG, I suggest watching the first part of season one of the series before diving into this game as it will make more sense.', 'Sword Art Online Re: Hollow Fragment', 1632, 80, '21-Oct-15', ''),
(2967, 1020, 'A more forgiving spin on the prison-break theme of The Escapists, The Escapists: The Walking Dead removes some of the high stress from the original and gives the player more room to breathe and enjoy what was great about it.', 'The Escapists: The Walking Dead', 1633, 85, '4-Nov-15', ''),
(2968, 1201, 'Chilean studio ACE Team did a good job delivering Abyss Odyssey: Extended Dream Edition. If you like Metroidvania titles, this one might be a good choice for you.', 'Abyss Odyssey: Extended Dream Edition', 1632, 79, '21-Sep-15', '');
INSERT INTO `practice_gametable` (`gameID`, `criticID`, `review`, `gameTitle`, `platformID`, `score`, `date`, `URL`) VALUES
(2971, 1069, 'Still the same incredible experience it was two years ago, only better. For new players it\'s a game full of twists and turns, daring level design and terrifying foes. For veterans it\'s the best version yet of an amazing formula, just as fresh and thrilling. It\'s a stunning experience from beginning to end, but I do hope the developers can fix the metagame elements and bump perfection up to the next level.', 'Earth Defense Force 4.1: The Shadow of New Despair', 1632, 90, '19-Jan-16', ''),
(2972, 1033, 'The Delusion of Von Sottendorff and his Square Mind is a great surprise, a very clever game that works for everyone, from casual players to old puzzle fans. A great addition to the 3DS catalogue.', 'The Delusions of Von Sottendorff and His Squared Mind', 1002, 80, '20-Dec-15', ''),
(2973, 1164, 'A fantastic narrative experience condensed within an hour. The story tackles adulthood, disability, family obligation and depression and crafts them into a real, believable experience. Good luck driving home.', 'Three Fourths Home: Extended Edition', 1633, 90, '7-Dec-15', ''),
(2975, 1170, 'Overall, Zombie Vikings produces a humorous adventure in the same narrative style as Zoink’s smash hit Stick it to the Man, therefore Zombie Vikings is just as highly recommended as Stick it to the Man for players who appreciate action, adventure and platform genres, especially when fused with comedy.', 'Zombie Vikings', 1632, 90, '18-Sep-16', ''),
(2976, 1115, 'It\'s probably not a game that you\'re going to spend too long playing online, and the AI is generally too soft for its own good, but Grand Ages: Medieval is the kind of game that, every time I sat down to play it, I\'d lose time and end up playing for a half dozen hours or longer.', 'Grand Ages: Medieval', 1632, 80, '28-Oct-15', ''),
(2980, 1023, 'It\'s a game that prioritizes emotion above all else, and it does so wonderfully. But as the boy at the heart of this tale learns, emotions are tough to understand, and thus NERO is tough to understand. You\'ll just know that you felt something, and that sensation alone is worth the journey.', 'N.E.R.O.: Nothing Ever Remains Obscure', 1633, 90, '13-May-15', ''),
(2984, 1090, 'For a game so mechanically simple, it’s one of the better experiences out there  four-letter swear words and all.', 'PONCHO', 1632, 80, '10-Nov-15', ''),
(2985, 1031, 'Despite being a complete departure from the original, Fat Princess Adventures is worthy of a look. Players who have never played the original games may find this a great way to get into the series.', 'Fat Princess Adventures', 1632, 83, '30-Dec-15', ''),
(2987, 1057, 'Literally no game has ever looked this good. It’s strange to even write that, but The Order: 1886 raises the bar so far above its contemporaries that it stands in a class by itself. Joined by a soundtrack that perfects the mood, The Order is a cinematic masterpiece.', 'The Order: 1886', 1632, 95, '19-Feb-15', ''),
(2988, 1192, 'Though it can\'t quite hide the fact that it\'s a 2011 game here in 2015, the new amiibo support and the strength of the existing game design have combined to make Assault Horizon Legacy+ a winner for a second time. [Issue #14: Old vs. New – March/April 2015, p.70]', 'Ace Combat: Assault Horizon Legacy+', 1002, 80, '20-Apr-15', ''),
(2991, 1016, 'The repetitive levels and the complete absence of a decent story are balanced by the great challenge and some clever puzzles you\'ll find in this unique puzzle-platofmer.', 'Shiftlings', 1633, 70, '1-May-15', ''),
(2993, 1160, 'Yet, even with its wonky camera and story that sometimes alienates newcomers, Sword Art Online: Lost Song is a solid game.', 'Sword Art Online: Lost Song', 1632, 80, '23-Nov-15', ''),
(2994, 1105, 'It is about forcing players to make strategic moves and plan accordingly, all while giving them a limited amount of time to do so. It’s fast, it’s smart, and it’s absolutely worth picking up, especially if you dig party games.', 'BRAWL', 1632, 80, '15-Apr-15', ''),
(2995, 1156, 'Velocibox is a a tremendously hard bit of brilliance. It’s highly replayable and it comes highly recommended.', 'Velocibox', 1632, 90, '28-Jul-15', ''),
(2996, 1066, 'Moco Moco Friends is a sweet, snappy, and engaging game that does what few of its ilk manage to: craft a genuinely high-quality experience that\'s tailor-made for younger players.', 'Moco Moco Friends', 1002, 80, '12-Apr-16', ''),
(2999, 1193, 'A Matter of Family is an admirable attempt to bring a playable version of Batgirl into the Arkham fold but noticeable technical issues, severe narrative inconsistencies, and a main story that literally goes nowhere drag it down from the lofty heights of greatness.', 'Batman: Arkham Knight - A Matter of Family', 1633, 65, '20-Jul-15', ''),
(3000, 1031, 'The interactivity and flow of the game make it so much more fun to play than you typical defense game that even non fans will find something to like here.', 'Toy Soldiers: War Chest', 1632, 91, '18-Aug-15', ''),
(3001, 1202, 'If you liked Zuma – which unfortunately for Sparkle Unleashed now runs on Xbox One via backward compatibility – you\'ll probably enjoy the challenge this provides, even if there isn\'t anything majorly groundbreaking going on.', 'Sparkle Unleashed', 1633, 70, '7-Jul-15', ''),
(3004, 1105, 'I don’t often play a game and immediately go through it again after finishing it, but I did that with Color Guardians. Thanks to its fun and bright graphics, truly difficult levels, and different scoring systems, I found myself playing each level again and again in an effort to get all three stars or get a high score for the leaderboards.', 'Color Guardians', 1632, 85, '12-May-15', ''),
(3005, 1048, 'Judged as a stand-alone budget title, Forza Horizon 2 Presents Fast & Furious is surprisingly robust and worth playing. As a piece of Forza Horizon 2 DLC, it\'s a harder call.', 'Forza Horizon 2 Presents Fast & Furious', 1633, 80, '9-Apr-15', ''),
(3006, 1094, 'Rory McIlroy PGA Tour may not win any awards for visuals, but it’s a solid experience in the gameplay department with flexible controls, entertaining modes and enough depth to keep you going for awhile.', 'Rory McIlroy PGA Tour', 1632, 80, '14-Jul-15', ''),
(3008, 1093, 'A transcendent fusion of color, music and movement, We Are Doomed is as close as you will get to poetry in a twin-stick shooter.', 'WE ARE DOOMED', 1632, 85, '16-Apr-15', ''),
(3010, 1096, 'J-STARS Victory VS+ is not perfect, but is the ultimate anime crossover and a must have for anyone who loves manga and Japanese animation.', 'J-Stars Victory Vs+', 1632, 80, '5-Jul-15', ''),
(3015, 1003, 'Extreme Butoden is plain and simple the best Dragon Ball Z beat\'em up available, but it suffers from its portable nature and a somewhat disappointing roster of fighters.', 'Dragon Ball Z: Extreme Butoden', 1002, 83, '20-Oct-15', ''),
(3016, 1145, 'Assembly Required is a solid, but very short, entry. Here\'s hoping that episode three can start to pull it back around.', 'Minecraft: Story Mode - Episode 2: Assembly Required', 1633, 70, '20-Nov-15', ''),
(3019, 1185, 'The Peanuts Movie: Snoopy\'s Grand Adventure is a movie tie-in done right. It pays respect to the source material, has solid fundamentals, and is an enjoyable platformer while it lasts. It isn\'t the longest experience, but there is plenty of fun for Peanuts fans to have.', 'The Peanuts Movie: Snoopy\'s Grand Adventure', 1633, 70, '22-Dec-15', ''),
(3020, 1093, 'The addition of the seamless mobile scanning app, shooting feedback system, Pro-Am modes, new animations and new gameplay mechanics all lends itself to about the best NBA Live experience we have seen in years.', 'NBA Live 16', 1633, 72, '29-Sep-15', ''),
(3023, 1189, 'If you are looking for a quality 2D adventure, and enjoy being a completionist, Chibi-Robo! Zip Lash should be on your radar. Chibi whips it, and he whips it good!', 'Chibi-Robo! Zip Lash', 1002, 80, '17-Nov-15', ''),
(3026, 1162, 'The Executioner is a nice way to put an end to The Evil Within downloadable content series. It changes completely the gameplay mechanics, allowing us to play in a really aggressive way, it clarifies some doubts left with the main game\'s ending.', 'The Evil Within: The Executioner', 1632, 78, '5-Jun-15', ''),
(3032, 1105, 'A good game that easily could have been great with a few tweaks.', 'Rack N Ruin', 1632, 75, '31-Mar-15', ''),
(3035, 1011, 'Despite the introduction of amiibo, Mario Tennis: Ultra Smash has little new content. Camelot powered up the gameplay instead, an over-the-top approach embodied by the Mega Mushroom, although the Jumpshot stands as the biggest addition. And the series\' legendary accessibility, depth and balance also improved through this great touch of design, which elevates \"Jumpman Tennis\" among the most convivial games.', 'Mario Tennis: Ultra Smash', 1290, 80, '18-Nov-15', ''),
(3039, 1064, 'In its fully-evolved form, Pokémon Rumble World works much better here than as a freemium game.', 'Pokemon Rumble World', 1002, 80, '28-Mar-16', ''),
(3040, 1164, 'It does feel like you’re playing a mobile game on your console but that’s not a bad thing.', 'Bridge Constructor', 1633, 70, '11-Sep-15', ''),
(3042, 1003, 'Senran Kagura 2 winks at players with sexual jokes, hot visuals and hentai tropes, but it\'s actually a very good beat\'em up with tons of content and unlockables. Despite its target audience and some issues with controls, there\'s a lot to enjoy here.', 'Senran Kagura 2: Deep Crimson', 1002, 80, '30-Sep-15', ''),
(3043, 1115, 'Bladestorm has a unique flavour, and it\'s one that takes a while to really settle in. But, once you get into its rhythm it has just the right mix of history and fantasy elements so that it does respect to one of the most fascinating periods of historical conflict, while letting you have some fun with it too.', 'Bladestorm: Nightmare', 1632, 90, '17-Mar-15', ''),
(3044, 1115, 'This is, effectively, an independent game from a small, creative team. And it’s a massive success at being that. It’s a deep JRPG mixed with both satire and humour, it’s something you haven’t seen before, and most importantly: it’s fun. Real, genuine fun.', 'Omega Quintet', 1632, 90, '13-Apr-15', ''),
(3045, 1135, 'An indie Wii U exclusive with personality, style and a very intriguing gameplay. The difficulty spikes in the action sequences could be too much for some people.', 'Typoman', 1290, 87, '19-Nov-15', ''),
(3046, 1013, 'Lifeless Planet is an absolute gem.', 'Lifeless Planet: Premier Edition', 1633, 85, '12-May-15', ''),
(3047, 1099, 'When it comes to dualstick shooters you don’t have to ask me twice. Nonetheless Zotrix isn’t love at first sight. But if you get used to the quirky arcady feel à la Galaga where positioning is as important as reflexes you might develop an interesting friendship.', 'Zotrix', 1632, 76, '22-Jan-16', ''),
(3049, 1027, 'Players wanting a simple but entertaining light RPG experience will scratch that itch well with Fossil Fighters: Frontier.', 'Fossil Fighters: Frontier', 1002, 75, '10-Apr-15', ''),
(3050, 1115, 'A resounding success as both an example of the genre and a homage to everything that makes it fun.', 'Onechanbara Z2: Chaos', 1632, 90, '3-Aug-15', ''),
(3053, 1031, 'On the whole, I think it\'s worth it, since Subdmerged\'s world is absolutely gorgeous, and it\'s relaxing to just drift along on the current as dolphins and sting rays and whales swim by. If you want a deeper, meatier experience, though, you\'d probably be better served looking elsewhere, because this game just doesn\'t have that.', 'Submerged', 1633, 83, '11-Sep-15', ''),
(3054, 1189, 'Dementium Remastered is a great addition to the eShop, and shows the higher polished side of things that are available on it. The game packs quite a punch in terms of presentation, and the gameplay is mostly there to match it. If you are a fan of horror games or FPS games, then this is a game that you should check out this holiday season.', 'Dementium Remastered', 1002, 80, '2-Dec-15', ''),
(3057, 1181, 'Roving Rogue is an ingenious and ingenuous platform game, with milimetric jumps and the time breathing behind us. However, the truly fun and challenge depends on the story, funny, but peculiar. It\'s chaotic multiplayer is fun for a while, but only for a while.', 'Roving Rogue', 1290, 70, '11-Jul-15', ''),
(3058, 1077, 'Despite a few foibles, basically the 3DS has its new killer app.', 'Pokemon Shuffle', 1002, 80, '26-Mar-15', ''),
(3059, 1162, 'Ubisoft Montreal does another good job with this DLC. The change on dynamics in the development feels good, and even when we miss some more content, running away from Durgesh prison will give you rushing and enjoyable moments.', 'Far Cry 4: Escape from Durgesh Prison', 1632, 81, '20-Jan-15', ''),
(3061, 1033, 'Taking into account Wii U doesn\'t have a Minecraft version yet, this is a nice option, particularly if the developers fulfill their promises of updating the game.', 'Cube Life: Island Survival', 1290, 70, '15-Jul-15', ''),
(3066, 1105, 'Guns Up! is devilishly addictive and provides a seriously fun formula of mutually beneficial attack and defence tactics. It’s initially intimidating economy only works to give the game depth once you’ve completed the enlightening tutorial, leaving you with a constant desire to progress and improve both your settlement and your garrison of units. All the above is unsettlingly blighted by an ever-present need to fork out real cash or face the reality of dampening the enjoyment by grinding for hours.', 'GUNS UP!', 1632, 75, '14-Dec-15', ''),
(3070, 1066, 'It\'s certainly worth a look for score attackers and has promise of becoming something even more, but those looking for a deeper experience in their dungeon diving might want to approach with caution (or patience) before deciding to sacrifice their money.', 'Temple of Yog', 1290, 60, '23-Dec-15', ''),
(3072, 1160, 'Bedlam is like a love letter to gaming’s history, and a relatively well-written one. By staying true to the idea of the game in which Quinn/Athena is trapped, it keeps itself well-centered.', 'Bedlam: The Game by Christopher Brookmyre', 1632, 80, '16-Oct-15', ''),
(3073, 1032, 'Spectra is an average, straightforward racer that’s easy enough to grasp. And yet, it comes off as half finished.', 'Spectra: 8bit Racing', 1633, 60, '30-Sep-15', ''),
(3074, 1191, 'It may not be a game to show off the capabilities of the PS4, but the Enhanced Edition of Risen 3 is much better than the other console versions.', 'Risen 3: Titan Lords - Enhanced Edition', 1632, 84, '24-Aug-15', ''),
(3075, 1145, 'A good little shooter that could have been great, L.A Cops is like a nicer version of Hotline Miami that\'s a bit on the blander side.', 'LA Cops', 1633, 75, '9-Mar-15', ''),
(3077, 1066, 'We really wanted to love Canvaleon, but grinding for resources, one-hit deaths and some wonky design choices makes this an uneven experience. It\'s a fresh idea that needed a better execution, but could prove to be a hit with anyone who can look past its flaws.', 'Canvaleon', 1290, 60, '5-Aug-15', ''),
(3079, 1189, 'Keep your expectations in line, realize this is a handheld game, and you will probably have a fun time with IronFall Invasion, much like I did.', 'IRONFALL Invasion', 1002, 75, '3-Mar-15', ''),
(3084, 1115, 'Primal Carnage: Extinction certainly sets itself apart from other online multiplayer shooters out there. With a few different modes and a couple of maps for each mode thrown in, there is some degree of fun to be had in the game. How long that fun lasts though is simply based on how much enjoyment a person can get out of online shooters in general, and just how much patience they have for balancing issues and mechanic design flaws.', 'Primal Carnage: Extinction', 1632, 60, '2-Dec-15', ''),
(3085, 1066, 'An underwhelming presentation and an unwieldily camera make it a tougher sell for non-fans, but if you\'re willing to overlook those flaws, unchaining humanity can be a blast.', 'Attack on Titan: Humanity in Chains', 1002, 70, '12-May-15', ''),
(3086, 1014, 'It\'s a nice way to put your amiibos to use. It\'s a party game, so don\'t expect deep or too complex gameplay mechanics, but cards and action figures are implemented in an original and interesting way.', 'Animal Crossing: amiibo Festival', 1290, 80, '27-Jan-16', ''),
(3087, 1193, 'Had Project Root thrown in a better checkpoint system and a far more rockin\' soundtrack, it could be considered one of the better retro-inspired shooters on the market. As it stands, only a certain few will be able to appreciate it with its high difficulty settings.', 'Project Root', 1632, 68, '14-May-15', ''),
(3088, 1077, 'What remains on 3DS is still very much a good and enjoyable experience for sure, granted that the user manages to get used to the cumbersome control scheme.', 'Rodea the Sky Soldier', 1002, 50, '9-Dec-15', ''),
(3089, 1105, 'It’s easy to recommend Q*Bert: Rebooted to both returning fans and new ones alike. The PlayStation release allows for choice of play either in its classic mode or the more modern version for those who want something a little easier on the eyes.', 'Q*bert: Rebooted', 1632, 70, '23-Feb-15', ''),
(3090, 1164, 'A nice, story driven entry in the 2D side scrolling adventure genre.Certain aspects do frustrate, and it can trip itself up in places, but when these are overlooked what lies underneath is an interesting stealth game, built up around a 1930’s story that is helped along by it’s fully voiced cast.', 'Calvino Noir', 1632, 60, '20-Sep-15', ''),
(3091, 1115, 'The Devil’s Third is a hell of a lot of fun because it breaks every rule in the book. I would take that, technical warts an all, over the glistening and safe nonsense that we’re exposed to from almost every other shooter out there.', 'Devil\'s Third', 1290, 90, '2-Nov-15', ''),
(3093, 1090, 'Those in the mood for a fast-paced experience that won’t require a massive investment of time for a play session should give Funk of Titans a shot.', 'Funk of Titans', 1633, 70, '12-Jan-15', ''),
(3095, 1181, 'Nordic Games continues trying to capitalize the acquisition of THQ licenses with more effort than quality at this time.', 'MX vs. ATV Supercross Encore', 1632, 50, '4-Nov-15', ''),
(3096, 1027, 'It’s not a revolutionary title by any means, but in terms of nostalgia value it accomplishes what it set out to do.', 'Chronus Arc', 1002, 55, '15-Oct-15', ''),
(3097, 1069, 'A decent installment in a long-running series, but this reboot is perhaps a bit too authentic in that it lives up to its predecessors, but fails to exceed them. Since it\'s been over a decade since the series\'s fourth entry, the sights might have been aimed a bit higher.', 'Tony Hawk\'s Pro Skater 5', 1633, 65, '12-Oct-15', ''),
(3098, 1031, 'It’s absolutely rough around the edges, but there’s some fun to be had here.', 'Godzilla', 1632, 75, '20-Jul-15', ''),
(3100, 1132, 'Giana Sisters: Dream Runners could have been a good game on paper, but it gets dragged down by too many gameplay and technical problems, other than contents scarcity.', 'Giana Sisters: Dream Runners', 1633, 46, '19-Sep-15', ''),
(3102, 1014, 'An utter disaster: the gameplay is basically broken, and the technical side is abysmal.', 'Afro Samurai 2: Revenge of Kuma Volume One', 1632, 35, '29-Sep-15', ''),
(3104, 1204, 'Uncharted 4 is a landmark title that anyone remotely interested in interactive storytelling should invest in. Naughty Dog has once again raised the bar across the industry. Thrilling shootouts, a staggering level of detail, breathtaking visuals and emotional depth come together to make Uncharted 4: A Thief\'s End a must-play masterpiece.', 'Uncharted 4: A Thief\'s End', 1632, 100, '1-Dec-16', ''),
(3105, 1205, 'By entering the world of Inside, you\'ll forget your own world and everything that\'s been going on in it. From beautiful art design to engaging gameplay, thrilling atmosphere to marvelous story, everything about this game is truly exceptional. Do not miss it.', 'INSIDE', 1633, 100, '14-Feb-17', ''),
(3109, 1000, 'Nicer and more sophisticated, also we finally see the sequel trying to change the existing status quo. The third Horizon is doing the most to deserve your attention, and newly it is now available on PC too.[Issue #268]', 'Forza Horizon 3', 1633, 100, '5-Nov-16', ''),
(3111, 1098, 'The action on the court is fast, fluid and accessible, but with enough depth and detail to keep you hooked for the long haul.', 'NBA 2K17', 1633, 100, '4-Oct-16', ''),
(3114, 1206, 'Rez Infinite improves on perfection. The best reason to own a PlayStation VR headset.', 'Rez Infinite', 1632, 100, '26-Oct-16', ''),
(3115, 1170, 'The best way to describe the gameplay in Titanfall 2 is fluid and precise.', 'Titanfall 2', 1632, 100, '20-Jan-17', ''),
(3116, 1207, 'This game is $14.99, but it should be $30, or even $40. The game is vast, detailed and nearly impeccable in every way, with perhaps only the social element lagging behind the rest. It is every bit as feature packed as the AAA rated games that it is similar to, such as Harvest Moon and Animal Crossing. I\'ll be playing Stardew Valley for a long time to come, and I genuinely hope that this review inspires you to pick it up and do the same, because this is one of the finest examples of passionate, empowered independent video game making I\'ve ever come across.', 'Stardew Valley', 1633, 100, '31-Dec-16', ''),
(3117, 1031, 'I’m absolutely impressed by every aspect of Battlefield 1. While it’s easy to think that the weapons and machines available to a game based on the first World War might feel like a step back for military shooters, I think you’ll be surprised by how exciting and modern Battlefield 1 still manages to feel.', 'Battlefield 1', 1632, 100, '25-Oct-16', ''),
(3119, 1179, 'The detailed missions, versatile powers, and atmospheric storytelling will keep you coming back for multiple playthroughs if only to learn more about the world, play with the powers, and find every last thing to either steal or kill/subdue. Simply put, Dishonored 2 is a must play for stealth fans and an easy recommendation for most gamers.', 'Dishonored 2', 1633, 100, '2-Dec-16', ''),
(3120, 1037, 'Rise of the Tomb Raider 20 Year Celebration Edition is a true festivity of the legacy of Lara Croft!', 'Rise of the Tomb Raider: 20 Year Celebration', 1632, 100, '29-Oct-16', ''),
(3122, 1098, 'If you\'re into RPGs and turn-based tactics, then this is an utterly essential purchase.', 'Fire Emblem Fates: Special Edition', 1002, 100, '19-May-16', ''),
(3123, 1201, 'Fire Emblem Fates: Revelation is a fantastic way for concluding the incredible war story that enveloped the Hoshido and Nohr Family. Albeit it can be played without the need to have completed neither the Birthright nor Conquest versions, it is highly recommended - save this one for the last so you can enjoy at its fullest all of the contents and augments that are exposed here. Easily a great way to conclude with this memorable tale.', 'Fire Emblem Fates: Revelation', 1002, 95, '4-Mar-16', ''),
(3128, 1157, 'An intensely satisfying and stupendously intelligent puzzle game that\'s incredibly well crafted, making it a very early, yet solid, Game of the Year contender. [Issue#267, p.62]', 'The Witness', 1632, 100, '25-Mar-16', ''),
(3129, 1209, 'There\'s an innocence about DOOM – which might seem like a weird way to describe a game about disemboweling demons – but it beautifully harkens back to an era where games were unashamed to simply be games. I think DOOM might be the most exhilarating experience I\'ve had with a first person shooter on Xbox One, maybe ever.', 'DOOM', 1633, 100, '31-May-16', ''),
(3130, 1210, 'Pokémon Sun and Moon make terrific changes the twenty-year-old formula, allowing new fans and returning ones back into the series with a wonderful lively and colourful world. It\'s just a little too easy for us who have been here from the start - but it\'s easy to forgot that when you\'re having such a blast.', 'Pokemon Sun', 1002, 100, '8-Apr-17', ''),
(3131, 1210, 'Pokémon Sun and Moon make terrific changes the twenty-year-old formula, allowing new fans and returning ones back into the series with a wonderful lively and colourful world. It\'s just a little too easy for us who have been here from the start - but it\'s easy to forgot that when you\'re having such a blast.', 'Pokemon Moon', 1002, 100, '8-Apr-17', ''),
(3132, 1016, 'Another great addition to the Fire Emblem series, the newest chapter offers amazing visuals, an entirely captivating story and engrossing gameplay. Neither veterans nor newcomers should miss a change for one of the best offerings for the 3DS.', 'Fire Emblem Fates: Conquest', 1002, 95, '8-Jun-16', ''),
(3133, 1042, 'With smarter AI opposition and an altogether smoother online experience, PES 2017 is close to the complete package. FIFA’s new story mode might be the most headline-grabbing feature of either game this year, but it’s clear Konami is in no mood to relinquish its title as king of the virtual pitch.', 'Pro Evolution Soccer 2017', 1633, 95, '16-Sep-16', ''),
(3135, 1211, 'It’s pretty much a nailed on cert that any past, present or future Forza Horizon 3 player will want to take to Blizzard Mountain as a matter of priority. That’s because the sheer thrill of racing wheel-to-wheel with some of the world’s best drivers, in the dark, with a full-on blizzard hitting you in the face, is just too much to ever turn down.', 'Forza Horizon 3: Blizzard Mountain', 1633, 100, '3-Feb-17', ''),
(3137, 1033, 'Killer Instinct is back with great new characters, an amazing single-player mode like no other and a solid gameplay. A must have for fans of fighting games.', 'Killer Instinct Season 3', 1633, 94, '1-Oct-16', ''),
(3139, 1027, 'Much like its predecessor, Picross 3D: Round 2 comes late in the system’s life to provide dozens upon dozens of hours of glorious puzzle goodness. It’s a charming experience from the moment you first crack a block, and the additions and changes in Round 2 make this even better than what came before.', 'Picross 3D: Round 2', 1002, 95, '9-Sep-16', ''),
(3141, 1075, 'Guilty Gear Xrd returns to the first line of fighting games, with the virtues that make it one of the best fighting games of this generation. Revelator brings new characters, new story, new mechanics and a unique visual excellence.', 'Guilty Gear Xrd -REVELATOR-', 1632, 95, '13-Jun-16', ''),
(3144, 1089, 'This is the level of ‘DLC’ other publishers and developers should be offering post-release.', 'Dying Light: The Following', 1633, 95, '24-Feb-16', ''),
(3146, 1031, 'I haven’t played Conquest or Revelation yet, so I can’t make direct comparisons to them at this point in time. However, Birthright is an engrossing experience that will keep even the most veteran gamers busy for many hours on end.', 'Fire Emblem Fates: Birthright', 1002, 100, '23-Feb-16', ''),
(3147, 1178, 'It had been almost 10 years since I’d last played it, but I’d never really stopped thinking about it. It reappeared like a familiar face, creased with age but also timeless, its beauty easier to see without the facade of hype and novelty.', 'The Legend of Zelda: Twilight Princess HD', 1290, 100, '8-Mar-16', ''),
(3148, 1088, 'The sheer volume of quests and weapons and monsters also means that, quite apart from being a brilliant game, this has incalculable longevity. The life of a hunter isn’t for everyone. But if killing something massive, carving it up, and making a snazzy hat seems in any way appealing, then Monster Hunter Generations might be your game of the year.', 'Monster Hunter Generations', 1002, 100, '15-Jul-16', ''),