-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgb_json.json
6237 lines (6237 loc) · 645 KB
/
gb_json.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
[
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-15/",
"date_added": "2008-04-01 01:32:52",
"date_last_updated": "2018-12-29 13:22:35",
"deck": "Kampfgruppe is a WWII strategy game by SSI. The german word Kampfgruppe refers to a flexible combat formation of any kind, and more specifically to those formations used by Germany during WWII.",
"description": null,
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": 1985,
"guid": "3030-15",
"id": 15,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/0/238/709028-kampfgruppe_2.jpg",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/0/238/709028-kampfgruppe_2.jpg",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/0/238/709028-kampfgruppe_2.jpg",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/0/238/709028-kampfgruppe_2.jpg",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/0/238/709028-kampfgruppe_2.jpg",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/0/238/709028-kampfgruppe_2.jpg",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/0/238/709028-kampfgruppe_2.jpg",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/0/238/709028-kampfgruppe_2.jpg",
"original_url": "https://www.giantbomb.com/a/uploads/original/0/238/709028-kampfgruppe_2.jpg",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-15/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 2
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-15/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 2
}
],
"name": "Kampfgruppe",
"number_of_user_reviews": 0,
"original_game_rating": null,
"original_release_date": null,
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-1/",
"id": 1,
"name": "Amiga",
"site_detail_url": "https://www.giantbomb.com/amiga/3045-1/",
"abbreviation": "AMI"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-12/",
"id": 12,
"name": "Apple II",
"site_detail_url": "https://www.giantbomb.com/apple-ii/3045-12/",
"abbreviation": "APL2"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-14/",
"id": 14,
"name": "Commodore 64",
"site_detail_url": "https://www.giantbomb.com/commodore-64/3045-14/",
"abbreviation": "C64"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-24/",
"id": 24,
"name": "Atari 8-bit",
"site_detail_url": "https://www.giantbomb.com/atari-8-bit/3045-24/",
"abbreviation": "A800"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-94/",
"id": 94,
"name": "PC",
"site_detail_url": "https://www.giantbomb.com/pc/3045-94/",
"abbreviation": "PC"
}
],
"site_detail_url": "https://www.giantbomb.com/kampfgruppe/3030-15/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-32/",
"date_added": "2008-04-01 01:32:55",
"date_last_updated": "2024-03-04 13:45:38",
"deck": "The Ninja, who must battle enemy ninjas using knives and throwing stars.",
"description": "<h2>Overview</h2><p>The Ninja is a '<a data-ref-id=\"3015-715\" href=\"/run-n-gun/3015-715/\">run & gun</a>' game, published and developed by <a data-ref-id=\"3010-62\" href=\"/sega/3010-62/\">Sega</a>, released 1985 for <a data-ref-id=\"3045-84\" href=\"/arcade/3045-84/\">Arcades</a> and Sega home consoles.</p><p>The Ninja is a port of a game originally released in arcades, <a data-ref-id=\"3030-34969\" href=\"/ninja-princess/3030-34969/\">Ninja Princess</a>. It made its way over to the Sega console with a few changes. One of the changes was the lead character: originally a <a data-ref-id=\"3015-2287\" href=\"/female-protagonists/3015-2287/\">female</a>, now a <a data-ref-id=\"3015-2352\" href=\"/male-protagonists/3015-2352/\">male</a>; other changes included changing the scene of numerous stages as well as a scroll system in which you had to collect five green scrolls to progress to the final level. If you didn't collect all of the scrolls, you would have to back-track and collect the remaining scrolls.</p>",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-32",
"id": 32,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/9/93770/2362961-sms_theninja_2.jpg",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/9/93770/2362961-sms_theninja_2.jpg",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/9/93770/2362961-sms_theninja_2.jpg",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/9/93770/2362961-sms_theninja_2.jpg",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/9/93770/2362961-sms_theninja_2.jpg",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/9/93770/2362961-sms_theninja_2.jpg",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/9/93770/2362961-sms_theninja_2.jpg",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/9/93770/2362961-sms_theninja_2.jpg",
"original_url": "https://www.giantbomb.com/a/uploads/original/9/93770/2362961-sms_theninja_2.jpg",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-32/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 51
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-32/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 4
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-32/?filter=image_tag:MSX%20Screenshots",
"name": "MSX Screenshots",
"total": 9
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-32/?filter=image_tag:Screenshots",
"name": "Screenshots",
"total": 44
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-32/?filter=image_tag:SMS%20Screenshots",
"name": "SMS Screenshots",
"total": 32
}
],
"name": "The Ninja",
"number_of_user_reviews": 0,
"original_game_rating": null,
"original_release_date": "1986-11-08",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-8/",
"id": 8,
"name": "Sega Master System",
"site_detail_url": "https://www.giantbomb.com/sega-master-system/3045-8/",
"abbreviation": "SMS"
}
],
"site_detail_url": "https://www.giantbomb.com/the-ninja/3030-32/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-51/",
"date_added": "2008-04-01 01:32:59",
"date_last_updated": "2016-05-13 11:20:30",
"deck": "The Crackwell Legacy is a parody of The Blackwell Legacy.",
"description": "\u00a0\u00a0",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-51",
"id": 51,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/18/187788/2850657-3538346737-900.j.jpg",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/18/187788/2850657-3538346737-900.j.jpg",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/18/187788/2850657-3538346737-900.j.jpg",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/18/187788/2850657-3538346737-900.j.jpg",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/18/187788/2850657-3538346737-900.j.jpg",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/18/187788/2850657-3538346737-900.j.jpg",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/18/187788/2850657-3538346737-900.j.jpg",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/18/187788/2850657-3538346737-900.j.jpg",
"original_url": "https://www.giantbomb.com/a/uploads/original/18/187788/2850657-3538346737-900.j.jpg",
"image_tags": "All Images"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-51/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 3
}
],
"name": "The Crackwell Legacy",
"number_of_user_reviews": 0,
"original_game_rating": null,
"original_release_date": "2007-07-02",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-94/",
"id": 94,
"name": "PC",
"site_detail_url": "https://www.giantbomb.com/pc/3045-94/",
"abbreviation": "PC"
}
],
"site_detail_url": "https://www.giantbomb.com/the-crackwell-legacy/3030-51/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-67/",
"date_added": "2008-04-01 01:33:02",
"date_last_updated": "2017-04-10 19:19:12",
"deck": "Tiger Woods PGA Tour 07 is an iteration in the popular EA sports golf series. Starring Tiger himself, the game includes improved visuals over previous games and a large cast of superstar golfers such as Phil Mickelson and Vijay Singh. ",
"description": "<h2>New Features</h2><h3>Game Face</h3><p>Selecting the Game Face menu will present the player with the Game Face tool (if the player has not created any golfers yet), which the player will use to create a golfer. If the player has already created a golfer, they will be presented with a list of their golfers. Choosing one will take the player to the My Team menu.</p><h3>My Team</h3><p>My Team is where players can modify their golfers' attributes. Contained within the menu are the options <i>My Skills</i> (view and modify golfer stats), <i>My Appearance</i> (takes the player to the Game Face tool), <i>My Animations</i> (choose the various animations the golfer uses, including swing, celebrations, etc.), <i>Pro Shop</i> (equip over 3000 bits of clothing and accessories, though many of them must be unlocked through gameplay before they are accessible), <i>Team Name</i>, <i>Team Logo</i>, and <i>Team Uniform</i>.</p><h2>Roster</h2><p>Tiger Woods 07 has a Total of 53 playable golfers, 21 of which actually exist.</p><h3>Real golfers</h3><ul><li><a data-ref-id=\"3005-18\" href=\"/tiger-woods/3005-18/\" slug=\"tiger-woods\">Tiger Woods</a></li><li><a data-ref-id=\"3005-11612\" href=\"/stuart-appleby/3005-11612/\" slug=\"stuart-appleby\">Stuart Appleby</a></li><li><a data-ref-id=\"3005-11610\" href=\"/ricky-barnes/3005-11610/\" slug=\"ricky-barnes\">Ricky Barnes</a></li><li><a data-ref-id=\"3005-11613\" href=\"/rich-beem/3005-11613/\" slug=\"rich-beem\">Rich Beem</a></li><li><a data-ref-id=\"3005-11606\" href=\"/john-daly/3005-11606/\" slug=\"john-daly\">John Daly</a></li><li><a data-ref-id=\"3005-11299\" href=\"/chris-dimarco/3005-11299/\" slug=\"chris-dimarco\">Chris DiMarco</a></li><li><a data-ref-id=\"3005-11300\" href=\"/luke-donald/3005-11300/\" slug=\"luke-donald\">Luke Donald</a></li><li><a data-ref-id=\"3005-11302\" href=\"/jim-furyk/3005-11302/\" slug=\"jim-furyk\">Jim Furyk</a></li><li><a data-ref-id=\"3005-11303\" href=\"/retief-goosen/3005-11303/\" slug=\"retief-goosen\">Retief Goosen</a></li><li><a data-ref-id=\"3005-11304\" href=\"/natalie-gulbis/3005-11304/\" slug=\"natalie-gulbis\">Natalie Gulbis</a></li><li><a data-ref-id=\"3005-11614\" href=\"/justin-leonard/3005-11614/\" slug=\"justin-leonard\">Justin Leonard</a></li><li><a data-ref-id=\"3005-11307\" href=\"/colin-montgomerie/3005-11307/\" slug=\"colin-montgomerie\">Colin Montgomerie</a></li><li><a data-ref-id=\"3005-11352\" href=\"/ian-poulter/3005-11352/\" slug=\"ian-poulter\">Ian Poulter</a></li><li><a data-ref-id=\"3005-11354\" href=\"/justin-rose/3005-11354/\" slug=\"justin-rose\">Justin Rose</a></li><li><a data-ref-id=\"3005-11355\" href=\"/adam-scott/3005-11355/\" slug=\"adam-scott\">Adam Scott</a></li><li><a data-ref-id=\"3005-11356\" href=\"/vijay-singh/3005-11356/\" slug=\"vijay-singh\">Vijay Singh</a></li><li><a data-ref-id=\"3005-11357\" href=\"/annika-sorenstam/3005-11357/\" slug=\"annika-sorenstam\">Annika S\u00f6renstam</a></li><li><a data-ref-id=\"3005-11296\" href=\"/michael-campbell/3005-11296/\" slug=\"michael-campbell\">Michael Campbell</a></li><li><a data-ref-id=\"3005-11607\" href=\"/jesper-parnevik/3005-11607/\" slug=\"jesper-parnevik\">Jesper Parnevik</a></li><li><a data-ref-id=\"3005-11611\" href=\"/steve-elkington/3005-11611/\" slug=\"steve-elkington\">Steve Elkington</a></li><li><a data-ref-id=\"3005-8458\" href=\"/mike-weir/3005-8458/\" slug=\"mike-weir\">Mike Weir</a></li></ul><h2>Courses</h2><ul><li>The K Club</li><li>Riviera Country Club</li><li>Bay Hill</li><li>Harbour Town</li><li>Colonial Country Club</li><li>Firestone Country Club</li><li>Pasatiempo Golf Club</li><li>Pinehurst No. 2</li><li>Pebble Beach</li><li><a data-ref-id=\"3035-1081\" href=\"/tpc-sawgrass/3035-1081/\" slug=\"tpc-sawgrass\">TPC at Sawgrass</a></li><li>Old Course at St Andrews</li></ul>",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-67",
"id": 67,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/8/87790/2269431-box_twpgat07.png",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/8/87790/2269431-box_twpgat07.png",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/8/87790/2269431-box_twpgat07.png",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/8/87790/2269431-box_twpgat07.png",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/8/87790/2269431-box_twpgat07.png",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/8/87790/2269431-box_twpgat07.png",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/8/87790/2269431-box_twpgat07.png",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/8/87790/2269431-box_twpgat07.png",
"original_url": "https://www.giantbomb.com/a/uploads/original/8/87790/2269431-box_twpgat07.png",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-67/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 56
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-67/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 6
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-67/?filter=image_tag:E3%202006",
"name": "E3 2006",
"total": 1
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-67/?filter=image_tag:Screenshots",
"name": "Screenshots",
"total": 48
}
],
"name": "Tiger Woods PGA Tour 07",
"number_of_user_reviews": 0,
"original_game_rating": [
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-6/",
"id": 6,
"name": "ESRB: E"
},
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-7/",
"id": 7,
"name": "PEGI: 3+"
},
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-14/",
"id": 14,
"name": "OFLC: G"
}
],
"original_release_date": "2006-10-10",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-18/",
"id": 18,
"name": "PlayStation Portable",
"site_detail_url": "https://www.giantbomb.com/playstation-portable/3045-18/",
"abbreviation": "PSP"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-19/",
"id": 19,
"name": "PlayStation 2",
"site_detail_url": "https://www.giantbomb.com/playstation-2/3045-19/",
"abbreviation": "PS2"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-20/",
"id": 20,
"name": "Xbox 360",
"site_detail_url": "https://www.giantbomb.com/xbox-360/3045-20/",
"abbreviation": "X360"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-32/",
"id": 32,
"name": "Xbox",
"site_detail_url": "https://www.giantbomb.com/xbox/3045-32/",
"abbreviation": "XBOX"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-35/",
"id": 35,
"name": "PlayStation 3",
"site_detail_url": "https://www.giantbomb.com/playstation-3/3045-35/",
"abbreviation": "PS3"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-36/",
"id": 36,
"name": "Wii",
"site_detail_url": "https://www.giantbomb.com/wii/3045-36/",
"abbreviation": "Wii"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-94/",
"id": 94,
"name": "PC",
"site_detail_url": "https://www.giantbomb.com/pc/3045-94/",
"abbreviation": "PC"
}
],
"site_detail_url": "https://www.giantbomb.com/tiger-woods-pga-tour-07/3030-67/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-4519/",
"date_added": "2008-04-01 01:49:28",
"date_last_updated": "2015-12-13 13:31:29",
"deck": null,
"description": null,
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": 1985,
"guid": "3030-4519",
"id": 4519,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/16/164924/2805965-0320864506-88239.jpg",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/16/164924/2805965-0320864506-88239.jpg",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/16/164924/2805965-0320864506-88239.jpg",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/16/164924/2805965-0320864506-88239.jpg",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/16/164924/2805965-0320864506-88239.jpg",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/16/164924/2805965-0320864506-88239.jpg",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/16/164924/2805965-0320864506-88239.jpg",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/16/164924/2805965-0320864506-88239.jpg",
"original_url": "https://www.giantbomb.com/a/uploads/original/16/164924/2805965-0320864506-88239.jpg",
"image_tags": "All Images"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4519/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 1
}
],
"name": "Konami's Golf",
"number_of_user_reviews": 0,
"original_game_rating": null,
"original_release_date": null,
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-11/",
"id": 11,
"name": "Amstrad CPC",
"site_detail_url": "https://www.giantbomb.com/amstrad-cpc/3045-11/",
"abbreviation": "CPC"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-15/",
"id": 15,
"name": "MSX",
"site_detail_url": "https://www.giantbomb.com/msx/3045-15/",
"abbreviation": "MSX"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-16/",
"id": 16,
"name": "ZX Spectrum",
"site_detail_url": "https://www.giantbomb.com/zx-spectrum/3045-16/",
"abbreviation": "SPEC"
}
],
"site_detail_url": "https://www.giantbomb.com/konamis-golf/3030-4519/"
},
{
"aliases": "pdo",
"api_detail_url": "https://www.giantbomb.com/api/game/3030-4535/",
"date_added": "2008-04-01 01:49:31",
"date_last_updated": "2018-09-27 12:34:30",
"deck": "Panzer Dragoon Orta is a rail shooter for the original Xbox in which the player rides a dragon. The game is the fourth in the Panzer Dragoon series which began on the Sega Saturn.",
"description": "<h2>Overview</h2><figure data-align=\"right\" data-embed-type=\"image\" data-img-src=\"https://static.giantbomb.com/uploads/original/11/115901/1771078-panzer_dragoon_orta_01edit.jpg\" data-ref-id=\"1300-1771078\" data-size=\"small\" data-ratio=\"1\"><a class=\"fluid-height\" style=\"padding-bottom:100.0%\" href=\"https://static.giantbomb.com/uploads/original/11/115901/1771078-panzer_dragoon_orta_01edit.jpg\" data-ref-id=\"1300-1771078\"><img alt=\"Orta\" src=\"https://www.giantbomb.com/a/uploads/scale_small/11/115901/1771078-panzer_dragoon_orta_01edit.jpg\" srcset=\"https://www.giantbomb.com/a/uploads/original/11/115901/1771078-panzer_dragoon_orta_01edit.jpg 2058w, https://www.giantbomb.com/a/uploads/scale_super/11/115901/1771078-panzer_dragoon_orta_01edit.jpg 1920w, https://www.giantbomb.com/a/uploads/scale_medium/11/115901/1771078-panzer_dragoon_orta_01edit.jpg 960w, https://www.giantbomb.com/a/uploads/scale_small/11/115901/1771078-panzer_dragoon_orta_01edit.jpg 320w\" sizes=\"(max-width: 320px) 100vw, 320px\" data-width=\"320\"></a><figcaption>Orta</figcaption></figure><p>Panzer Dragoon Orta is the fourth official game in the <a data-ref-id=\"3025-461\" href=\"/panzer-dragoon/3025-461/\" slug=\"panzer-dragoon\">Panzer Dragoon Franchise</a>. It was developed by <a data-ref-id=\"3010-493\" href=\"/smilebit/3010-493/\" slug=\"smilebit\">Smilebit</a> for the original Xbox and was released in Japan in 2002 and in North America and Europe in 2003.</p><p>Panzer Dragoon Orta returns to the <a data-ref-id=\"3015-320\" href=\"/rail-shooter/3015-320/\" slug=\"rail-shooter\">rail shooter</a> gameplay of the first two games, <a data-ref-id=\"3030-4489\" href=\"/panzer-dragoon/3030-4489/\" slug=\"panzer-dragoon\">Panzer Dragoon</a> and <a data-ref-id=\"3030-9353\" href=\"/panzer-dragoon-ii-zwei/3030-9353/\" slug=\"panzer-dragoon-ii-zwei\">Panzer Dragoon II: Zwei</a>, as opposed to the RPG gameplay of the previous game in the series, <a data-ref-id=\"3030-3692\" href=\"/panzer-dragoon-saga/3030-3692/\" slug=\"panzer-dragoon-saga\">Panzer Dragoon Saga</a>. The player shoots at enemies while riding on the back of a dragon.</p><p>The story takes place several decades after Panzer Dragoon Saga. The Empire has once again risen to power and using the technology of a forgotten civilization has created the Dragonmares, a group of genetically engineered dragons. The player assumes the role of <a data-ref-id=\"3005-2531\" href=\"/orta/3005-2531/\" slug=\"orta\">Orta</a>, a young white-haired girl who has spent her entire life imprisoned by a group known as the Seekers. Unaware of her origins, Orta lives out her days alone in a stone tower overlooking the city until one night the Empire and its Dragonmares attack the city and head for Orta's tower. Before she can be captured, Orta is mysteriously saved by the legendary dragon, which returns once again from the shadows of history. Fleeing the city upon the dragon's back, Orta sets off on her voyage of discovery determined to discover the truth about herself and her new companion.</p><p>The game also features an unlockable bonus quest called \"Imperial Boy\" which follows the story of Iva, a young imperial soldier in training out to avenge his father's death at the hands of a dragon (the same dragon Orta rides).</p><h2>Gameplay</h2><p>The gameplay is similar to the <a data-ref-id=\"3015-320\" href=\"/rail-shooter/3015-320/\" slug=\"rail-shooter\">rail shooter</a> gameplay first two entries in the Panzer Dragoon series, <a data-ref-id=\"3030-4489\" href=\"/panzer-dragoon/3030-4489/\" slug=\"panzer-dragoon\">Panzer Dragoon</a> and <a data-ref-id=\"3030-9353\" href=\"/panzer-dragoon-ii-zwei/3030-9353/\" slug=\"panzer-dragoon-ii-zwei\">Panzer Dragoon II: Zwei</a>. Orta rides on the back of a flying dragon while the player moves an on-screen cursor which aims attacks and slightly adjusts the position of the dragon. The dragon has three different forms which may switched between at any time. Additionally, the player has limited control of the dragon's position on screen and has the ability to temporarily accelerate or decelerate the dragon.</p><h3>Movement</h3><figure data-align=\"right\" data-embed-type=\"image\" data-img-src=\"https://static.giantbomb.com/uploads/original/0/2593/373534-pdo_screenshot_34.jpg\" data-ref-id=\"1300-373534\" data-size=\"small\" data-ratio=\"0.5625\"><a class=\"fluid-height\" style=\"padding-bottom:56.3%\" href=\"https://static.giantbomb.com/uploads/original/0/2593/373534-pdo_screenshot_34.jpg\" data-ref-id=\"1300-373534\"><img alt=\"Check your six\" src=\"https://www.giantbomb.com/a/uploads/scale_small/0/2593/373534-pdo_screenshot_34.jpg\" srcset=\"https://www.giantbomb.com/a/uploads/original/0/2593/373534-pdo_screenshot_34.jpg 960w, https://www.giantbomb.com/a/uploads/scale_medium/0/2593/373534-pdo_screenshot_34.jpg 480w, https://www.giantbomb.com/a/uploads/scale_small/0/2593/373534-pdo_screenshot_34.jpg 320w\" sizes=\"(max-width: 320px) 100vw, 320px\" data-width=\"320\"></a><figcaption>Check your six</figcaption></figure><p>As with other rail shooters, the dragon's movement is mostly predetermined. However, the player has the ability to steer the dragon within the screen to evade enemy attacks and avoid collisions.</p><p>Enemies may attack from all sides. The L and R triggers on the Xbox controller are used to rotate the camera in 90 degree increments to place enemies on the screen so that the player may attack them. An on-screen radar is provided to indicate the positions of enemies surrounding the dragon and Orta.</p><p>The dragon's acceleration and deceleration (called Glide) is limited by the Glide Gauge. Either acceleration or deceleration will decrease the Glide Gauge. The total amount of Glide Gauge available depends on the dragon's form. When the Glide Gauge is empty, the player is unable to Glide. The Glide Gauge replenishes automatically over time. Glide is used to evade enemy attacks, attack enemies (called a Glide attack), and maneuver around bosses.</p><h3>Combat</h3><figure data-align=\"right\" data-embed-type=\"image\" data-img-src=\"https://static.giantbomb.com/uploads/original/0/2593/373494-pdo_screenshot_24.jpg\" data-ref-id=\"1300-373494\" data-size=\"small\" data-ratio=\"0.5625\"><a class=\"fluid-height\" style=\"padding-bottom:56.3%\" href=\"https://static.giantbomb.com/uploads/original/0/2593/373494-pdo_screenshot_24.jpg\" data-ref-id=\"1300-373494\"><img alt=\"Homing Laser\" src=\"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" sizes=\"(max-width: 320px) 100vw, 320px\" data-width=\"320\" class=\"js-lazy-load-image\" data-src=\"https://www.giantbomb.com/a/uploads/scale_small/0/2593/373494-pdo_screenshot_24.jpg\" data-srcset=\"https://www.giantbomb.com/a/uploads/original/0/2593/373494-pdo_screenshot_24.jpg 960w, https://www.giantbomb.com/a/uploads/scale_medium/0/2593/373494-pdo_screenshot_24.jpg 480w, https://www.giantbomb.com/a/uploads/scale_small/0/2593/373494-pdo_screenshot_24.jpg 320w\"><noscript><img alt=\"Homing Laser\" src=\"https://www.giantbomb.com/a/uploads/scale_small/0/2593/373494-pdo_screenshot_24.jpg\" srcset=\"https://www.giantbomb.com/a/uploads/original/0/2593/373494-pdo_screenshot_24.jpg 960w, https://www.giantbomb.com/a/uploads/scale_medium/0/2593/373494-pdo_screenshot_24.jpg 480w, https://www.giantbomb.com/a/uploads/scale_small/0/2593/373494-pdo_screenshot_24.jpg 320w\" sizes=\"(max-width: 320px) 100vw, 320px\" data-width=\"320\"></noscript></a><figcaption>Homing Laser</figcaption></figure><p>The player only uses two weapons: Orta's gun and the dragon's homing laser. Both weapons are aimed using the on-screen cursor and have unlimited ammo. The gun is fired by tapping the A button on the Xbox controller. The homing laser is fired by holding down the A button, moving the cursor over enemies to lock-on, and then releasing the A button to fire the lasers. The number of enemies which may be locked-on and the power of each attack is dependent on the dragons's form.</p><p>Attacking enemies fills up the Berserk Gauge which when filled allows for a Berserk attack to be released with the Black or White button. The type of Berserk attack is also dependent on the dragon's form.</p><h3><b>Morph Forms</b></h3><figure data-align=\"right\" data-embed-type=\"image\" data-img-src=\"https://static.giantbomb.com/uploads/original/5/59104/1775452-pdw_dragon1600.jpg\" data-ref-id=\"1300-1775452\" data-size=\"small\" data-ratio=\"0.75\"><a class=\"fluid-height\" style=\"padding-bottom:75.0%\" href=\"https://static.giantbomb.com/uploads/original/5/59104/1775452-pdw_dragon1600.jpg\" data-ref-id=\"1300-1775452\"><img alt=\"Dragon Morphs and Evolution\" src=\"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" sizes=\"(max-width: 320px) 100vw, 320px\" data-width=\"320\" class=\"js-lazy-load-image\" data-src=\"https://www.giantbomb.com/a/uploads/scale_small/5/59104/1775452-pdw_dragon1600.jpg\" data-srcset=\"https://www.giantbomb.com/a/uploads/original/5/59104/1775452-pdw_dragon1600.jpg 1600w, https://www.giantbomb.com/a/uploads/scale_super/5/59104/1775452-pdw_dragon1600.jpg 960w, https://www.giantbomb.com/a/uploads/scale_medium/5/59104/1775452-pdw_dragon1600.jpg 480w, https://www.giantbomb.com/a/uploads/scale_small/5/59104/1775452-pdw_dragon1600.jpg 320w\"><noscript><img alt=\"Dragon Morphs and Evolution\" src=\"https://www.giantbomb.com/a/uploads/scale_small/5/59104/1775452-pdw_dragon1600.jpg\" srcset=\"https://www.giantbomb.com/a/uploads/original/5/59104/1775452-pdw_dragon1600.jpg 1600w, https://www.giantbomb.com/a/uploads/scale_super/5/59104/1775452-pdw_dragon1600.jpg 960w, https://www.giantbomb.com/a/uploads/scale_medium/5/59104/1775452-pdw_dragon1600.jpg 480w, https://www.giantbomb.com/a/uploads/scale_small/5/59104/1775452-pdw_dragon1600.jpg 320w\" sizes=\"(max-width: 320px) 100vw, 320px\" data-width=\"320\"></noscript></a><figcaption>Dragon Morphs and Evolution</figcaption></figure><p>The dragon may morph between one of three forms at any time which are toggled with the Y button. Each form has different strengths and weaknesses.</p><ul><li><b>Base Wing</b> is the basic form and provides a balance between offense and defense. Glide Attack and homing laser are both available. A \"large\" number of targets may be locked-on at once.</li></ul><ul><li><b>Heavy Wing</b> is the most powerful form and features a stronger homing laser attack with a fewer number of simultaneous lock-ons than Base Wing. The dragon in unable to glide in Heavy Wing form. The Berserk attack is more powerful and can be manually aimed.</li></ul><ul><li><b>Glide Wing</b> is the most agile form and features the largest Glide Gauge. Although there is no homing laser capability, a larger cursor is available and anything within the cursor is automatically targeted with multiple gun shots. The Glide Wing's Berserk Attack replenishes the Life Gauge by absorbing the energy of enemies.</li></ul><h3><b>Level Up</b></h3><p>Defeated enemies release \"Gene Bases\" that increase the dragon's levels. Higher levels provide increased attack strength and increased Life Gauge. Each morph form levels up independently; Gene Bases only count towards the form of dragon that acquires them. The maximum level for any dragon form is level 5. The appearance of the Heavy Wing and Glide Wing forms changes with level. The appearance of the Base Wing form is unchanged by level.</p><h3>Game Structure</h3><p>The main game consists of 10 episodes which are advanced linearly (although individual episodes may feature alternate paths). Each episode ends in a boss battle. After completion of an episode, a result screen is presented in which the player's performance is graded (S, A, B, C, D) in several categories and an overall score.</p><h2>Other Info</h2><ul><li>1 player</li><li>In-game Dolby Digital 5.1</li><li>480p</li><li>Xbox 360 Backwards Compatible</li></ul>",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-4535",
"id": 4535,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/1/12541/3052552-tall%20%28cropped%29.jpg",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/1/12541/3052552-tall%20%28cropped%29.jpg",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/1/12541/3052552-tall%20%28cropped%29.jpg",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/1/12541/3052552-tall%20%28cropped%29.jpg",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/1/12541/3052552-tall%20%28cropped%29.jpg",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/1/12541/3052552-tall%20%28cropped%29.jpg",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/1/12541/3052552-tall%20%28cropped%29.jpg",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/1/12541/3052552-tall%20%28cropped%29.jpg",
"original_url": "https://www.giantbomb.com/a/uploads/original/1/12541/3052552-tall%20%28cropped%29.png",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4535/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 80
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4535/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 8
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4535/?filter=image_tag:Screenshots",
"name": "Screenshots",
"total": 66
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4535/?filter=image_tag:XBOX%20Screenshots",
"name": "XBOX Screenshots",
"total": 66
}
],
"name": "Panzer Dragoon Orta",
"number_of_user_reviews": 0,
"original_game_rating": [
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-1/",
"id": 1,
"name": "ESRB: T"
},
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-33/",
"id": 33,
"name": "CERO: B"
}
],
"original_release_date": "2003-01-14",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-32/",
"id": 32,
"name": "Xbox",
"site_detail_url": "https://www.giantbomb.com/xbox/3045-32/",
"abbreviation": "XBOX"
}
],
"site_detail_url": "https://www.giantbomb.com/panzer-dragoon-orta/3030-4535/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-4553/",
"date_added": "2008-04-01 01:49:36",
"date_last_updated": "2019-05-01 15:29:25",
"deck": "Released only in Japan and requiring use of a special paddle-based controller that is bundled with the game, BMX Trial has the titular Alex Kidd biking down a lengthy obstacle course through multiple lands.",
"description": "<h2>Overview</h2><figure data-align=\"right\" data-size=\"small\" data-img-src=\"https://static.giantbomb.com/uploads/original/3/37448/1397771-alex_kidd_bmx_trial.png\" data-ref-id=\"1300-1397771\" data-ratio=\"0.7741935483871\" data-width=\"248\" data-embed-type=\"image\" style=\"width: 248px\"><a class=\"fluid-height\" style=\"padding-bottom:77.4%\" href=\"https://static.giantbomb.com/uploads/original/3/37448/1397771-alex_kidd_bmx_trial.png\" data-ref-id=\"1300-1397771\"><img alt=\"No Caption Provided\" src=\"https://www.giantbomb.com/a/uploads/original/3/37448/1397771-alex_kidd_bmx_trial.png\" srcset=\"https://www.giantbomb.com/a/uploads/original/3/37448/1397771-alex_kidd_bmx_trial.png 248w\" sizes=\"(max-width: 248px) 100vw, 248px\" data-width=\"248\"></a></figure><p>BMX Trial: Alex Kidd is a top-down <a href=\"/bmx/3055-2577/\" data-ref-id=\"3055-2577\">BMX</a> racing game developed and published by <a href=\"/sega/3010-62/\" data-ref-id=\"3010-62\">Sega</a> for the <a href=\"/sega-master-system/3045-8/\" data-ref-id=\"3045-8\">Sega Mark III</a> exclusively in Japan on November 15, 1987. It was released with the Paddle Control peripheral <a href=\"/bundled-with-peripherals/3015-7959/\" data-ref-id=\"3015-7959\">bundled in</a>.</p><p>One of the four official games requiring the Paddle Control peripheral (the others being <a href=\"/galactic-protector/3030-11263/\" data-ref-id=\"3030-11263\">Galactic Protector</a>, <a href=\"/megumi-rescue/3030-40356/\" data-ref-id=\"3030-40356\">Megumi Rescue</a>, and <a href=\"/woody-pop/3030-15045/\" data-ref-id=\"3030-15045\">Woody Pop</a>), BMX Trial has players controlling the titular Sega hero <a href=\"/alex-kidd/3005-42/\" data-ref-id=\"3005-42\">Alex Kidd</a> as he makes his way downhill through an obstacle course (filled with obstacles, other riders, jumps and dangerous waterways) while collecting <a href=\"/power-up/3015-700/\" data-ref-id=\"3015-700\">power-ups</a> (which are spawned by performing wheelies).</p><p>Along the way, he encounters numerous exits scattered throughout the course, which warps him to one of four additional stages. There are five stages in total: Black Forest (the starting stage), Cactus Desert, South Seas, Pyramid River, and Radaxian. Some stages are unique as it takes place on water (with Alex taking control of a waterbike), replacing the waterway hazard with whirlpools. To complete the game, players have to lead Alex to a specific castle entrance in Radaxian before he runs out of energy.</p>",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-4553",
"id": 4553,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/3/37448/1397762-alex_kidd_bmx_trial_box_art.jpg",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/3/37448/1397762-alex_kidd_bmx_trial_box_art.jpg",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/3/37448/1397762-alex_kidd_bmx_trial_box_art.jpg",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/3/37448/1397762-alex_kidd_bmx_trial_box_art.jpg",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/3/37448/1397762-alex_kidd_bmx_trial_box_art.jpg",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/3/37448/1397762-alex_kidd_bmx_trial_box_art.jpg",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/3/37448/1397762-alex_kidd_bmx_trial_box_art.jpg",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/3/37448/1397762-alex_kidd_bmx_trial_box_art.jpg",
"original_url": "https://www.giantbomb.com/a/uploads/original/3/37448/1397762-alex_kidd_bmx_trial_box_art.jpg",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4553/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 5
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4553/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 1
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4553/?filter=image_tag:Screenshots",
"name": "Screenshots",
"total": 4
}
],
"name": "Alex Kidd: BMX Trial",
"number_of_user_reviews": 0,
"original_game_rating": null,
"original_release_date": "1987-11-15",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-8/",
"id": 8,
"name": "Sega Master System",
"site_detail_url": "https://www.giantbomb.com/sega-master-system/3045-8/",
"abbreviation": "SMS"
}
],
"site_detail_url": "https://www.giantbomb.com/alex-kidd-bmx-trial/3030-4553/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-4572/",
"date_added": "2008-04-01 01:49:39",
"date_last_updated": "2019-05-30 18:20:11",
"deck": "An action-platformer game with RPG elements that is based around Viking mythology. After a mysterious tornado carries off Brian's entire village, he is encouraged by Odin to chase after it and defeat the source of the problem: Loki.",
"description": "<h2>Overview</h2><p>Prophecy 1: The Viking Child was developed by Imagitec Design Limited and released on various platforms: Amiga, Atari ST, Commodore Amiga, Atari Lynx, Game Boy, Game Gear and PC. The game is a side-scrolling action-RPG in which a young Viking battles his way through side-scrolling levels and then navigates between levels via an overhead world map.</p><p>Viking Child is similar to <a href=\"/wonder-boy-in-monster-land/3030-6949/\" data-ref-id=\"3030-6949\">Wonder Boy in Monster Land</a>, another side-scrolling action-RPG of the era. Viking Child is often remembered as the inferior clone of Wonder Boy in Monster Land.</p>",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": 1990,
"guid": "3030-4572",
"id": 4572,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/0/9408/755323-927592_66523_front.jpg",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/0/9408/755323-927592_66523_front.jpg",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/0/9408/755323-927592_66523_front.jpg",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/0/9408/755323-927592_66523_front.jpg",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/0/9408/755323-927592_66523_front.jpg",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/0/9408/755323-927592_66523_front.jpg",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/0/9408/755323-927592_66523_front.jpg",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/0/9408/755323-927592_66523_front.jpg",
"original_url": "https://www.giantbomb.com/a/uploads/original/0/9408/755323-927592_66523_front.jpg",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4572/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 60
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4572/?filter=image_tag:AMI%20Screenshots",
"name": "AMI Screenshots",
"total": 14
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4572/?filter=image_tag:AST%20Screenshots",
"name": "AST Screenshots",
"total": 24
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4572/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 2
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4572/?filter=image_tag:LYNX%20Screenshots",
"name": "LYNX Screenshots",
"total": 5
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4572/?filter=image_tag:PC%20Screenshots",
"name": "PC Screenshots",
"total": 15
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-4572/?filter=image_tag:Screenshots",
"name": "Screenshots",
"total": 58
}
],
"name": "Prophecy 1: The Viking Child",
"number_of_user_reviews": 0,
"original_game_rating": null,
"original_release_date": null,
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-1/",
"id": 1,
"name": "Amiga",
"site_detail_url": "https://www.giantbomb.com/amiga/3045-1/",
"abbreviation": "AMI"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-3/",
"id": 3,
"name": "Game Boy",
"site_detail_url": "https://www.giantbomb.com/game-boy/3045-3/",
"abbreviation": "GB"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-5/",
"id": 5,
"name": "Game Gear",
"site_detail_url": "https://www.giantbomb.com/game-gear/3045-5/",
"abbreviation": "GG"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-7/",
"id": 7,
"name": "Atari Lynx",
"site_detail_url": "https://www.giantbomb.com/atari-lynx/3045-7/",
"abbreviation": "LYNX"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-13/",
"id": 13,
"name": "Atari ST",
"site_detail_url": "https://www.giantbomb.com/atari-st/3045-13/",
"abbreviation": "AST"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-17/",
"id": 17,
"name": "Mac",
"site_detail_url": "https://www.giantbomb.com/mac/3045-17/",
"abbreviation": "MAC"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-94/",
"id": 94,
"name": "PC",
"site_detail_url": "https://www.giantbomb.com/pc/3045-94/",
"abbreviation": "PC"
}
],
"site_detail_url": "https://www.giantbomb.com/prophecy-1-the-viking-child/3030-4572/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-12602/",
"date_added": "2008-04-01 16:05:05",
"date_last_updated": "2016-05-08 14:07:04",
"deck": null,
"description": null,
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-12602",
"id": 12602,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/5/56971/2183796-569334_7014_front.jpg",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/5/56971/2183796-569334_7014_front.jpg",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/5/56971/2183796-569334_7014_front.jpg",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/5/56971/2183796-569334_7014_front.jpg",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/5/56971/2183796-569334_7014_front.jpg",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/5/56971/2183796-569334_7014_front.jpg",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/5/56971/2183796-569334_7014_front.jpg",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/5/56971/2183796-569334_7014_front.jpg",
"original_url": "https://www.giantbomb.com/a/uploads/original/5/56971/2183796-569334_7014_front.jpg",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12602/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 1
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12602/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 1
}
],
"name": "Winning Eleven World Soccer",
"number_of_user_reviews": 0,
"original_game_rating": null,
"original_release_date": "2002-04-25",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-4/",
"id": 4,
"name": "Game Boy Advance",
"site_detail_url": "https://www.giantbomb.com/game-boy-advance/3045-4/",
"abbreviation": "GBA"
}
],
"site_detail_url": "https://www.giantbomb.com/winning-eleven-world-soccer/3030-12602/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-12619/",
"date_added": "2008-04-01 16:05:10",
"date_last_updated": "2013-04-17 00:31:05",
"deck": "In this online-only game, you buy classic cars, customize their performance to your liking, and race them against opponents around the world. The game was plagued with technical issues and met its end in August 29th 2003.",
"description": "<h2>Overview</h2><br />Motor City Online is a spin-off of the Need For Speed franchise. It was an MMO of sorts. You created a Persona in a District of Detroit. Then you choose your character (driver model). You receive $10,000 to start with, so you can buy: '57 Chevy Nomad, '57 Chevy Bel Air, '57 Ford Fairlane, or '57 Ford Ranchero.<br /> The actual racing in MCO was PvP based, but there were Time Trials and leaderboards to compete on.\u00a0\u00a0 While racing, the you leveled up, and gained a weekly salary that increased with each level.\u00a0\u00a0 <br />\u00a0<br />Almost all the parts of the car could be changed. You could adjust the handling of the car with changes to tires, wheels, springs, shocks, and spoilers.\u00a0 The engines could be build with a wide variety of parts.\u00a0 The combination of block, cams, valves, carburetor, etc. created an engine with a specific horsepower and torque rating.\u00a0 The Horsepower to Weight Ratio affected the power class of the car.\u00a0 The cars were divided into Vintage, Classic, and Muscle classes.\u00a0 Some races had restrictions based on vehicle and/or power class. <br />\u00a0<br />There were rare versions of cars available in auctions.\u00a0 Some rare modifications included Chopped Top, Rare Paint Jobs, and Convertible, and on the '32 Ford Coupe, the bumpers and fenders could be removed.\u00a0 Some rare parts were spawned on random cars.\u00a0 These rare parts or modifications were not available to the player in normal shops.<br />\u00a0 <br />Until the last few months, you could not find anything past the mid '70s in Motor City Online.\u00a0 There were a couple of late model Imports on the Test Center servers, and near the end of game, they were drivable in sponsored races, but not available for purchase.<br /><br /><h2>The End</h2><br /> The game ran from October 29th, 2001 to August 29th, 2003. The game was a subscription based ($10/mo) game. However, when it shutdown, gamers were offered by EA a free copy of Ultima Online or The Sims Online for something to move onto.<br /><br /><h2>Future</h2><br /> Recently announced is\u00a0<a data-ref-id=\"3030-25226\" href=\"/need-for-speed-world-online/3030-25226/\"> Need For Speed World Online</a>, the next online-only racing game by EA. This follows the more traditional NFS franchise and can be considered the successor to what was Motor City Online.",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-12619",
"id": 12619,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/1/14912/791192-motocityonline_front.png",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/1/14912/791192-motocityonline_front.png",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/1/14912/791192-motocityonline_front.png",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/1/14912/791192-motocityonline_front.png",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/1/14912/791192-motocityonline_front.png",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/1/14912/791192-motocityonline_front.png",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/1/14912/791192-motocityonline_front.png",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/1/14912/791192-motocityonline_front.png",
"original_url": "https://www.giantbomb.com/a/uploads/original/1/14912/791192-motocityonline_front.png",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12619/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 7
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12619/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 1
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12619/?filter=image_tag:PC%20Screenshots",
"name": "PC Screenshots",
"total": 4
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12619/?filter=image_tag:Screenshots",
"name": "Screenshots",
"total": 4
}
],
"name": "Motor City Online",
"number_of_user_reviews": 0,
"original_game_rating": [
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-6/",
"id": 6,
"name": "ESRB: E"
}
],
"original_release_date": "2001-10-10",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-94/",
"id": 94,
"name": "PC",
"site_detail_url": "https://www.giantbomb.com/pc/3045-94/",
"abbreviation": "PC"
}
],
"site_detail_url": "https://www.giantbomb.com/motor-city-online/3030-12619/"
},
{
"aliases": "Rumble Roses Double X",
"api_detail_url": "https://www.giantbomb.com/api/game/3030-12635/",
"date_added": "2008-04-01 16:05:14",
"date_last_updated": "2021-12-08 15:49:51",
"deck": "It's all female wrestling in Rumble Roses XX, the sequel to Rumble Roses.",
"description": "<h2>Overview</h2><p><i>Rumble Roses XX</i> is the second entry in the <i>Rumble Roses</i> franchise, started on the <a data-ref-id=\"3045-19\" href=\"/playstation-2/3045-19/\" slug=\"playstation-2\">Playstation 2</a> in 2004. Japanese developer <a data-ref-id=\"3010-16\" href=\"/yukes-co-ltd/3010-16/\" slug=\"yukes-co-ltd\">Yuke's</a> again utilized their skill and experience in crafting and implementing a wrestling engine that doesn't cut corners as far as gameplay.</p><p>Like the first title it is a wrestling game featuring an all female cast of fictional fighters. It is notable for its highly sexual presentation, drawing criticism from some reviewers. The character list is identical to the first game, but expands on the series Vow System (whereby you are able to adjust a slider through performance to alternate between Face and Heel versions of each character) adding 'Superstar' versions of the multiple personas. This brings the possible character list to 40 (plus <a data-ref-id=\"3015-1414\" href=\"/unlockables/3015-1414/\" slug=\"unlockables\">unlockables</a>), although like the first game not all guises are able to be selected at once.</p><p>The game features several improvements from the bare bones original, offering Tag Team matches and <a data-ref-id=\"3015-1404\" href=\"/xbox-live/3015-1404/\" slug=\"xbox-live\">Xbox Live</a> play for 4 players. Also added was the Queen's Match (replacing mud wrestling matches from the first title) and Photo Mode, an expanded version of the Gallery Mode seen in the first game.</p><h2>Roster</h2><p>The following are playable wrestlers and their <a data-ref-id=\"3015-756\" href=\"/alter-ego/3015-756/\" slug=\"alter-ego\">alter-ego</a> characters.</p><ul><li><a data-ref-id=\"3005-1946\" href=\"/aigle/3005-1946/\" slug=\"aigle\">Aigle</a> / Great Khan</li><li><a data-ref-id=\"3005-1948\" href=\"/aisha/3005-1948/\" slug=\"aisha\">Aisha</a> / Sista A</li><li><a data-ref-id=\"3005-2092\" href=\"/anesthesia/3005-2092/\" slug=\"anesthesia\">Anesthesia</a> / Dr. Anesthesia</li><li><a data-ref-id=\"3005-2356\" href=\"/benikage/3005-2356/\" slug=\"benikage\">Benikage</a> / Yasha</li><li><a data-ref-id=\"3005-1952\" href=\"/candy-cane/3005-1952/\" slug=\"candy-cane\">Candy Cane</a> / Becky</li><li><a data-ref-id=\"3005-914\" href=\"/dixie-clemets/3005-914/\" slug=\"dixie-clemets\">Dixie Clemets</a> / Sgt. Clemets</li><li><a data-ref-id=\"3005-916\" href=\"/evil-rose/3005-916/\" slug=\"evil-rose\">Evil Rose</a> / Noble Rose</li><li>Lady X Substance / Lady X Subsistence</li><li><a data-ref-id=\"3005-2357\" href=\"/makoto-aihara/3005-2357/\" slug=\"makoto-aihara\">Makoto Aihara</a> / The Black Belt Demon</li><li><a data-ref-id=\"3005-2130\" href=\"/miss-spencer/3005-2130/\" slug=\"miss-spencer\">Miss Spencer</a> / Mistress</li><li><a data-ref-id=\"3005-903\" href=\"/reiko-hinomoto/3005-903/\" slug=\"reiko-hinomoto\">Reiko Hinomoto</a> / Rowdy Reiko</li></ul><p>Rumble Roses XX puts little effort into providing context to the characters or the relationships between them, limiting it to outbursts from characters at match loading screens, or unique tag team introductions. Based on the previous two games, it can be inferred that:</p><ul><li>Miss Spencer is in the competition solely to find and collect her truant student Candy Cane and return to Canada with her.</li><li>Reiko Hinomoto is the sister of Evil Rose, and both are the daughters of Lady X.</li><li>Dixie Clemets and Aisha have a friendly rivalry.</li><li>Makoto is friends with Aigle and resentful of fellow Japanese Reiko.</li></ul><h2>Game Modes</h2><p><i>Rumble Roses XX</i> has the following locations on the game map:</p><ul><li>Tutorial - To learn the basic moves and mechanics.</li><li>Exhibition - Essentially a practice mode for you to work on your moves.</li><li>Arena</li><li>Skyscraper</li><li>Red Valley</li><li>Street Fight - A match akin to a normal fighting game where victory is gained through depleting your opponent's health bar.</li><li>Queen's Match - A match where the loser is forced to carry out a 'penalty game'.</li><li>Xbox Live - Where you can take part in player/ranked matches online.</li></ul><p>Matches can be singles, doubles, 3-way, 4-way or handicap, although Street Fights and Queen's Matches are limited to singles. Also limited to one-on-one fights are the 'Pure Humiliation Matches' (PHM) which can only be ended by one of the fighters successfully executing a 'Humiliation Move' (H-Move).</p><p><i>Rumble Roses XX</i> does not have a typical single-player career mode. Rather you select a character and through winning in the many fight types (excluding Exhibition) gain popularity. Upon gaining enough popularity, you are able to select the 'Superstar' version of your character that has an improved move set and a new entrance and costume. Players can get a chance at winning either the singles or doubles championship through gaining consecutive wins in that type of match. There are also Reward matches to win additional costumes, although there is a requirement for each to become available, such as defeating specific characters or loading the game a certain number of times.</p><p>The game also has a shop to buy items and a Locker Room mode to customize characters or <a data-ref-id=\"3015-517\" href=\"/create-a-modes/3015-517/\" slug=\"create-a-modes\">create your own</a>. It also has a photo shoot mode with which you can take photos and upload/share them over Xbox Live. A Museum mode also allows you to check out the various artworks you have purchased and collected. Money is gained through winning matches.</p><h2>Xbox 360 Game Installation</h2><p><i>Rumble Roses XX</i> requires 4.5 GB of free space to be installed on the <a data-ref-id=\"3045-20\" href=\"/xbox-360/3045-20/\" slug=\"xbox-360\">Xbox 360</a>. The installation improves load times significantly.</p>",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-12635",
"id": 12635,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/8/87790/2525238-box_rrxx.png",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/8/87790/2525238-box_rrxx.png",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/8/87790/2525238-box_rrxx.png",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/8/87790/2525238-box_rrxx.png",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/8/87790/2525238-box_rrxx.png",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/8/87790/2525238-box_rrxx.png",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/8/87790/2525238-box_rrxx.png",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/8/87790/2525238-box_rrxx.png",
"original_url": "https://www.giantbomb.com/a/uploads/original/8/87790/2525238-box_rrxx.png",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12635/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 78
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12635/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 3
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12635/?filter=image_tag:Screenshots",
"name": "Screenshots",
"total": 3
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12635/?filter=image_tag:X360%20Screenshots",
"name": "X360 Screenshots",
"total": 73
}
],
"name": "Rumble Roses XX",
"number_of_user_reviews": 0,
"original_game_rating": [
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-16/",
"id": 16,
"name": "ESRB: M"
},
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-36/",
"id": 36,
"name": "PEGI: 12+"
},
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-32/",
"id": 32,
"name": "CERO: D"
}
],
"original_release_date": "2006-03-28",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-20/",
"id": 20,
"name": "Xbox 360",
"site_detail_url": "https://www.giantbomb.com/xbox-360/3045-20/",
"abbreviation": "X360"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-86/",
"id": 86,
"name": "Xbox 360 Games Store",
"site_detail_url": "https://www.giantbomb.com/xbox-360-games-store/3045-86/",
"abbreviation": "XBGS"
}
],
"site_detail_url": "https://www.giantbomb.com/rumble-roses-xx/3030-12635/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-12651/",
"date_added": "2008-04-01 16:05:18",
"date_last_updated": "2012-02-01 04:20:00",
"deck": "Ground Control is a game that takes away resource management and base building and focuses on protecting your units while completing your objectives.",
"description": "<p>Ground Control is a game developed by Massive Entertainment and published by Sierra On-Line in the year 2000. It is set in the 25th century after World War 3 which is also known as the \"16 minute War\" wiped out almost all human life. The game is set on the planet of Krig 7-B where the Crayven Corporation and the Order of the New Dawn fight for control. The game is split into two seperate campaigns, the first campaign was played from the perspective of Major Sarah Parker a commander of the Crayven Corporation forces, the second campaign is played from the perspective of Deacon Jarred Stone in his attempts to drive the Crayven forces from the planet.</p><p>Ground Control is currently a free download on File Planet.</p><h2>Gameplay</h2><p>Ground Control contains no base building or resource management. Units are given to the player periodically throughout the campaign, these units must be protected and maintained. Units are divided into several classes, Tanks, Infantry, Support and Aerodyne. Each class can switch between several different unit types, for example the support class can switch between artillery, anti air and missile configurations. Players must carefully choose units based upon the needs of the mission. Heavy tanks are vastly reduced in mobility and in timed missions they may prove to be a liability.</p><p>After these choices are made the units are all dropped into battle in large dropships that can carry up to 4 squads. Squads consist of a group of individuals, all moving, firing and using their special weapons simultaneously. The terrain of the battlefield makes a huge difference to how units perform. Units on high ground are much harder to see and hit to units on lower ground, and units in shadows are harder to see allowing very effective ambushes. Friendly fire can harm your own units so managing units formation and preventing artillery from destroying your own units are important factors. Two gameplay elements that a Company of Heroes player will be familiar with are suppression and tank weak points. Infantry fires inaccurately when under fire and tanks take more damage if hit in the side or rear armor.</p><p>Units from both factions are fairly similar with both sides containing fairly similar units, however the Crayven Corporation units are tougher, using traditional weapons and vehicles and the Order of the New Dawn using a hover propulsion system, sacrificing armor for increased speed and mobility.</p><p>Squads are rewarded with experience throughout the campaign, including medals awarded for each squad's combat performance, giving improved abilities. Any losses taken by a squad are replenished at the end of a mission; however, if the whole squad is wiped out, it will be removed and replaced with a new inexperienced squad in easier difficulty levels but simply removed in harder difficulties.</p><h2>Expansion Pack and Sequel</h2><p>Later, an expansion pack for Ground Control was released called Dark Conspiracy, it introduced the Phoenix Mercenaries. A rag tag group of outcasts abandoned by the Crayven and the Order, forced to scavenge leftover parts. True to their name, the Phoenix Mercenaries use many fire or plasma-based weaponry including their Pyro-Dyne flame tank.</p><p>In 2004 a sequel to Ground Control was released under the name Ground Control II: Operation Exodus. It did away with the persistent units and squads and instead uses an acquisition points system, similar to that used in World in Conflict. Ground Control II is set over 300 years after the events of the original game and includes the Viron Nomads, Terran Empire and Northern Star Alliance as three separate warring factions.</p><h2>Availability</h2><p>The game is available at <a data-ref-id=\"3015-2379\" href=\"/good-old-games/3015-2379/\" slug=\"good-old-games\">gog.com</a>.</p><h2><b>Minimum system requirements</b></h2><ul><li>Windows XP or Windows Vista</li><li>1.8 GHz Processor</li><li>512MB RAM (1 GB recommended)</li><li>3D graphics card compatible with DirectX 7 (compatible with DirectX 9 recommended)</li><li>4GB HDD</li><li>Mouse</li><li>Keyboard.</li></ul>",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-12651",
"id": 12651,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/1/12575/679470-ground_control_box.jpg",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/1/12575/679470-ground_control_box.jpg",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/1/12575/679470-ground_control_box.jpg",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/1/12575/679470-ground_control_box.jpg",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/1/12575/679470-ground_control_box.jpg",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/1/12575/679470-ground_control_box.jpg",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/1/12575/679470-ground_control_box.jpg",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/1/12575/679470-ground_control_box.jpg",
"original_url": "https://www.giantbomb.com/a/uploads/original/1/12575/679470-ground_control_box.jpg",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12651/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 7
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12651/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 1
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12651/?filter=image_tag:PC%20Screenshots",
"name": "PC Screenshots",
"total": 4
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12651/?filter=image_tag:Screenshots",
"name": "Screenshots",
"total": 6
}
],
"name": "Ground Control",
"number_of_user_reviews": 0,
"original_game_rating": [
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-1/",
"id": 1,
"name": "ESRB: T"
}
],
"original_release_date": "2000-06-01",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-94/",
"id": 94,
"name": "PC",
"site_detail_url": "https://www.giantbomb.com/pc/3045-94/",
"abbreviation": "PC"
}
],
"site_detail_url": "https://www.giantbomb.com/ground-control/3030-12651/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-12669/",
"date_added": "2008-04-01 16:05:23",
"date_last_updated": "2019-11-25 05:38:22",
"deck": "NFL Blitz 2001 is the fifth installment in the NFL Blitz series, and the first to be released on Dreamcast.",
"description": "<h2>Overview</h2><p>Building on the same format used in previous <a href=\"/nfl-blitz/3025-477/\" data-ref-id=\"3025-477\">NFL Blitz</a> games, <a href=\"/midway-games/3010-185/\" data-ref-id=\"3010-185\">Midway</a> released NFL Blitz 2001 on September 12, 2000. The game was released on a handful of platforms, and was also the first of the series to not be released in <a href=\"/arcade-cabinet/3055-1232/\" data-ref-id=\"3055-1232\">arcade-cabinet</a> format. Blitz 2001 was the last Blitz release for the original <a href=\"/playstation/3045-22/\" data-ref-id=\"3045-22\">Playstation</a>. A slightly modified version of NFL Blitz 2001 was re-released on the <a href=\"/nintendo-64/3045-43/\" data-ref-id=\"3045-43\">Nintendo 64</a> as \"NFL Blitz: Special Edition\".</p><h2>Gameplay</h2><p>Gameplay stayed essentially the same to previous Blitz releases. The same animations, mechanics, and <a href=\"/artificial-intelligence/3015-218/\" data-ref-id=\"3015-218\">A.I. tendencies</a> were carried over from <a href=\"/nfl-blitz-2000/3030-2849/\" data-ref-id=\"3030-2849\">Blitz 2000</a>. There were slight improvements to the physics engine in the Dreamcast release which are noticeable during gameplay.</p><h2>Dreamcast</h2><p>The Dreamcast release of the game saw notable improvements in almost all aspects of the game including graphic quality, sound, and visual presentation. Player photos and statistics were added to relevant plays in-game, as were higher-resolution player models. <a href=\"/weather/3015-1551/\" data-ref-id=\"3015-1551\">Weather effects</a> were added to the game, a feature not seen before. The Dreamcast version also featured a wider-angle camera during gameplay, allowing the player to see more of the field for more effective offense and defense.</p>",
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,
"guid": "3030-12669",
"id": 12669,
"image": {
"icon_url": "https://www.giantbomb.com/a/uploads/square_avatar/8/87790/1810164-box_nflblitz2001.png",
"medium_url": "https://www.giantbomb.com/a/uploads/scale_medium/8/87790/1810164-box_nflblitz2001.png",
"screen_url": "https://www.giantbomb.com/a/uploads/screen_medium/8/87790/1810164-box_nflblitz2001.png",
"screen_large_url": "https://www.giantbomb.com/a/uploads/screen_kubrick/8/87790/1810164-box_nflblitz2001.png",
"small_url": "https://www.giantbomb.com/a/uploads/scale_small/8/87790/1810164-box_nflblitz2001.png",
"super_url": "https://www.giantbomb.com/a/uploads/scale_large/8/87790/1810164-box_nflblitz2001.png",
"thumb_url": "https://www.giantbomb.com/a/uploads/scale_avatar/8/87790/1810164-box_nflblitz2001.png",
"tiny_url": "https://www.giantbomb.com/a/uploads/square_mini/8/87790/1810164-box_nflblitz2001.png",
"original_url": "https://www.giantbomb.com/a/uploads/original/8/87790/1810164-box_nflblitz2001.png",
"image_tags": "All Images,Box Art"
},
"image_tags": [
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12669/?filter=image_tag:All%20Images",
"name": "All Images",
"total": 8
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12669/?filter=image_tag:Box%20Art",
"name": "Box Art",
"total": 6
},
{
"api_detail_url": "https://www.giantbomb.com/api/images/3030-12669/?filter=image_tag:Screenshots",
"name": "Screenshots",
"total": 1
}
],
"name": "NFL Blitz 2001",
"number_of_user_reviews": 0,
"original_game_rating": [
{
"api_detail_url": "https://www.giantbomb.com/api/game_rating/3065-6/",
"id": 6,
"name": "ESRB: E"
}
],
"original_release_date": "2000-09-12",
"platforms": [
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-22/",
"id": 22,
"name": "PlayStation",
"site_detail_url": "https://www.giantbomb.com/playstation/3045-22/",
"abbreviation": "PS1"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-37/",
"id": 37,
"name": "Dreamcast",
"site_detail_url": "https://www.giantbomb.com/dreamcast/3045-37/",
"abbreviation": "DC"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-43/",
"id": 43,
"name": "Nintendo 64",
"site_detail_url": "https://www.giantbomb.com/nintendo-64/3045-43/",
"abbreviation": "N64"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-57/",
"id": 57,
"name": "Game Boy Color",
"site_detail_url": "https://www.giantbomb.com/game-boy-color/3045-57/",
"abbreviation": "GBC"
},
{
"api_detail_url": "https://www.giantbomb.com/api/platform/3045-94/",
"id": 94,
"name": "PC",
"site_detail_url": "https://www.giantbomb.com/pc/3045-94/",
"abbreviation": "PC"
}
],
"site_detail_url": "https://www.giantbomb.com/nfl-blitz-2001/3030-12669/"
},
{
"aliases": null,
"api_detail_url": "https://www.giantbomb.com/api/game/3030-17137/",
"date_added": "2008-04-01 16:32:02",
"date_last_updated": "2008-09-14 19:08:09",
"deck": "The heirless King Ardashir of the Magocratic Kingdom of Persis is falling ill, and before dying intends to name a wizardly successor based on the outcome of a tournament to the death. You play as an urchin entering the tournament unarmed and outclassed.",
"description": null,
"expected_release_day": null,
"expected_release_month": null,
"expected_release_quarter": null,
"expected_release_year": null,