-
Notifications
You must be signed in to change notification settings - Fork 21
/
gameDb.xml
23631 lines (23631 loc) · 714 KB
/
gameDb.xml
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<games xmlns="http://game-db.visualboyadvance.org/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2" xsi:schemaLocation="http://game-db.visualboyadvance.org/ game-db.xsd">
<game code="BJBJ" cloneOf="BJBE">
<title>007 - Everything or Nothing</title>
<publisher>Electronic Arts</publisher>
<region>Japan</region>
<languages>Jp</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BJBE">
<title>007 - Everything or Nothing</title>
<publisher>Electronic Arts</publisher>
<region>USA</region>
<region>Europe</region>
<languages>En,Fr,De</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="A7OE">
<title>007 - NightFire</title>
<publisher>Electronic Arts</publisher>
<region>USA</region>
<region>Europe</region>
<languages>En,Fr,De</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BFBP">
<title>2 Disney Games - Disney Sports - Football + Disney Sports - Skateboarding</title>
<publisher>Disney Interactive</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge>
<sram size="32768"/>
</cartridge>
</game>
<game code="BLQP">
<title>2 Disney Games - Lilo & Stitch 2 + Peter Pan - Return to Neverland</title>
<publisher>Disney Interactive</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es+En,Fr,De,Es,It,Nl</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BQJE">
<title>2 Game Pack! - Hot Wheels - Stunt Track Challenge + Hot Wheels - World Race</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<region>Europe</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BB4P">
<title>2 Game Pack! - Matchbox Missions - Emergency Response & Air, Land and Sea Rescue</title>
<publisher>DSI Games</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="BB4E" cloneOf="BB4P">
<title>2 Game Pack! - Matchbox Missions - Emergency Response + Air, Land and Sea Rescue</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BUQP">
<title>2 Game Pack! - Uno & Skip-Bo</title>
<publisher>Destination Software</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="BUQE" cloneOf="BUQP">
<title>2 Game Pack! - Uno + Skip-Bo</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BINY" cloneOf="BINP">
<title>2 Games in 1 - Alla Ricerca di Nemo + Gli Incredibili - Una 'Normale' Famiglia di Supereroi</title>
<publisher>THQ</publisher>
<region>Italy</region>
<languages>Es,It+It</languages>
<cartridge/>
</game>
<game code="BL5P">
<title>2 Games in 1 - Bionicle + Knights' Kingdom</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En,Fr,De,Da+En,De</languages>
<cartridge/>
</game>
<game code="BLBX">
<title>2 Games in 1 - Brother Bear + The Lion King</title>
<publisher>Disney Interactive</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BINZ" cloneOf="BINP">
<title>2 Games in 1 - Buscando a Nemo + Los Increibles</title>
<publisher>THQ</publisher>
<region>Spain</region>
<languages>Es,It+Es</languages>
<cartridge/>
</game>
<game code="BW2E" cloneOf="BW2P">
<title>2 Games in 1 - Cartoon Network Block Party + Cartoon Network Speedway</title>
<publisher>Majesco Sales</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BW9P">
<title>2 Games in 1 - Columns Crown + ChuChu Rocket!</title>
<publisher>Sega</publisher>
<region>Europe</region>
<languages>En+En,Ja,Fr,De,Es</languages>
<cartridge>
<flash size="65536"/>
</cartridge>
</game>
<game code="BDZD" cloneOf="BDZP">
<title>2 Games in 1 - Die Monster AG + Findet Nemo</title>
<publisher>THQ</publisher>
<region>Germany</region>
<languages>De</languages>
<cartridge/>
</game>
<game code="BLPS" cloneOf="BLPP">
<title>2 Games in 1 - Disney Princesas + El Rey Leon</title>
<publisher>THQ</publisher>
<region>Spain</region>
<languages>Es+En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BWBS" cloneOf="BWBP">
<title>2 Games in 1 - Disney Princesas + Hermano Oso</title>
<publisher>THQ</publisher>
<region>Spain</region>
<languages>Es+En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BLDS" cloneOf="BLDP">
<title>2 Games in 1 - Disney Princesas + Lizzie McGuire</title>
<publisher>THQ</publisher>
<region>Spain</region>
<languages>Es</languages>
<cartridge>
<eeprom size="8192"/>
</cartridge>
</game>
<game code="BWBP">
<title>2 Games in 1 - Disney Princess + Brother Bear</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En+En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BLDP">
<title>2 Games in 1 - Disney Princess + Lizzie McGuire</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge>
<eeprom size="8192"/>
</cartridge>
</game>
<game code="BWBF" cloneOf="BWBP">
<title>2 Games in 1 - Disney Princesse + Frere des Ours</title>
<publisher>THQ</publisher>
<region>France</region>
<languages>Fr+En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BLPF" cloneOf="BLPP">
<title>2 Games in 1 - Disney Princesse + Le Roi Lion</title>
<publisher>THQ</publisher>
<region>France</region>
<languages>Fr+En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BLPI" cloneOf="BLPP">
<title>2 Games in 1 - Disney Principesse + Il Re Leone</title>
<publisher>THQ</publisher>
<region>Italy</region>
<languages>It+En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BWBI" cloneOf="BWBP">
<title>2 Games in 1 - Disney Principesse + Koda, Fratello Orso</title>
<publisher>THQ</publisher>
<region>Italy</region>
<languages>It+En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BWBD" cloneOf="BWBP">
<title>2 Games in 1 - Disneys Prinzessinnen + Baerenbrueder</title>
<publisher>THQ</publisher>
<region>Germany</region>
<languages>De+En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BLPD" cloneOf="BLPP">
<title>2 Games in 1 - Disneys Prinzessinnen + Der Koenig der Loewen</title>
<publisher>THQ</publisher>
<region>Germany</region>
<languages>De+En,Fr,De,Es,It,Nl,Sv,Da</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BZPP">
<title>2 Games in 1 - Dr. Mario + Puzzle League</title>
<publisher>Nintendo</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BLFE">
<title>2 Games in 1 - Dragon Ball Z - The Legacy of Goku I & II</title>
<publisher>Atari</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge>
<eeprom size="8192"/>
</cartridge>
</game>
<game code="BIND" cloneOf="BINP">
<title>2 Games in 1 - Findet Nemo + Die Unglaublichen</title>
<publisher>Disney Interactive</publisher>
<region>Germany</region>
<languages>De</languages>
<cartridge/>
</game>
<game code="BFWY" cloneOf="BFWP">
<title>2 Games in 1 - Findet Nemo + Findet Nemo - Das Abenteuer Geht Weiter</title>
<publisher>Disney Interactive</publisher>
<region>Germany</region>
<languages>De+Fr,De,Nl</languages>
<cartridge/>
</game>
<game code="BFWX" cloneOf="BFWP">
<title>2 Games in 1 - Finding Nemo + Finding Nemo - The Continuing Adventures</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>Fr,Nl+Fr,De,Nl</languages>
<cartridge/>
</game>
<game code="BFWP">
<title>2 Games in 1 - Finding Nemo + Finding Nemo - The Continuing Adventures</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En+En,Es,It,Sv,Da</languages>
<cartridge/>
</game>
<game code="BFWZ" cloneOf="BFWP">
<title>2 Games in 1 - Finding Nemo + Finding Nemo - The Continuing Adventures</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>Es,It+En,Es,It,Sv,Da</languages>
<cartridge/>
</game>
<game code="BINX" cloneOf="BINP">
<title>2 Games in 1 - Finding Nemo + The Incredibles</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>Fr,Nl</languages>
<cartridge/>
</game>
<game code="BINP">
<title>2 Games in 1 - Finding Nemo + The Incredibles</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BNEE">
<title>2 Games in 1 - Finding Nemo - The Continuing Adventures + The Incredibles</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BWCE" cloneOf="BWCP">
<title>2 Games in 1 - Golden Nugget Casino + Texas Hold 'em Poker</title>
<publisher>Majesco Sales</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BHZE" cloneOf="BHZP">
<title>2 Games in 1 - Hot Wheels - Velocity X + Hot Wheels - World Race</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BHZP">
<title>2 Games in 1 - Hot Wheels - Velocity X + Hot Wheels - World Race</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BRSF" cloneOf="BRSP">
<title>2 Games in 1 - Les Razmoket Rencontrent les Delajungle + SpongeBob SquarePants - SuperSponge</title>
<publisher>THQ</publisher>
<region>France</region>
<languages>Fr</languages>
<cartridge/>
</game>
<game code="BDZI" cloneOf="BDZP">
<title>2 Games in 1 - Monsters & Co. + Alla Ricerca di Nemo</title>
<publisher>THQ</publisher>
<region>Italy</region>
<languages>En,Fr,It+Es,It</languages>
<cartridge/>
</game>
<game code="BDZH" cloneOf="BDZP">
<title>2 Games in 1 - Monsters en Co. + Finding Nemo</title>
<publisher>THQ</publisher>
<region>Netherlands</region>
<languages>En,Es,Nl+Fr,Nl</languages>
<cartridge/>
</game>
<game code="BDZP">
<title>2 Games in 1 - Monsters, Inc. + Finding Nemo</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BDZE" cloneOf="BDZP">
<title>2 Games in 1 - Monsters, Inc. + Finding Nemo</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BDZF" cloneOf="BDZP">
<title>2 Games in 1 - Monstres & Cie + Le Monde de Nemo</title>
<publisher>THQ</publisher>
<region>France</region>
<languages>En,Fr,It+Fr,Nl</languages>
<cartridge/>
</game>
<game code="BDZS" cloneOf="BDZP">
<title>2 Games in 1 - Monstruos, S.A. + Buscando a Nemo</title>
<publisher>THQ</publisher>
<region>Spain</region>
<languages>En,Es,Nl+Es,It</languages>
<cartridge/>
</game>
<game code="BARP">
<title>2 Games in 1 - Moto GP + GT Advance 3 - Pro Concept Racing</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It+En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BRZF" cloneOf="BRZP">
<title>2 Games in 1 - Power Rangers - Ninja Storm + Power Rangers - La Force du Temps</title>
<publisher>THQ</publisher>
<region>France</region>
<languages>En,Fr,De+Fr</languages>
<cartridge/>
</game>
<game code="BRZE" cloneOf="BRZP">
<title>2 Games in 1 - Power Rangers - Ninja Storm + Power Rangers - Time Force</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En,Fr,De+En</languages>
<cartridge/>
</game>
<game code="BRZP">
<title>2 Games in 1 - Power Rangers - Ninja Storm + Power Rangers - Time Force</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En,Fr,De+En</languages>
<cartridge/>
</game>
<game code="BRZD" cloneOf="BRZP">
<title>2 Games in 1 - Power Rangers - Ninja Storm + Power Rangers - Time Force</title>
<publisher>THQ</publisher>
<region>Germany</region>
<languages>En,Fr,De+De</languages>
<cartridge/>
</game>
<game code="BWQE" cloneOf="BWQP">
<title>2 Games in 1 - Quad Desert Fury + Monster Trucks</title>
<publisher>Majesco Sales</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BRSP">
<title>2 Games in 1 - Rugrats - Go Wild + SpongeBob SquarePants - SuperSponge</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BPUS" cloneOf="BPUP">
<title>2 Games in 1 - Scooby-Doo + Scooby-Doo 2 - Desatado</title>
<publisher>THQ</publisher>
<region>Spain</region>
<languages>Es+En,Fr,De,Es,It</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BPUF" cloneOf="BPUP">
<title>2 Games in 1 - Scooby-Doo + Scooby-Doo 2 - Les Monstres Se Dechainent</title>
<publisher>THQ</publisher>
<region>France</region>
<languages>Fr+En,Fr,De,Es,It</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BPUP">
<title>2 Games in 1 - Scooby-Doo + Scooby-Doo 2 - Monsters Unleashed</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BPUE" cloneOf="BPUP">
<title>2 Games in 1 - Scooby-Doo + Scooby-Doo 2 - Monsters Unleashed</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BCVE" cloneOf="BCVP">
<title>2 Games in 1 - Scooby-Doo! - Mystery Mayhem + Scooby-Doo and the Cyber Chase</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En,Fr,De+En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BCVP">
<title>2 Games in 1 - Scooby-Doo! - Mystery Mayhem + Scooby-Doo and the Cyber Chase</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En,Fr,De+En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BW3P">
<title>2 Games in 1 - Sonic Advance + ChuChu Rocket!</title>
<publisher>SEGA</publisher>
<region>Europe</region>
<languages>En,Ja,Fr,De,Es</languages>
<cartridge>
<flash size="65536"/>
</cartridge>
</game>
<game code="BW4P">
<title>2 Games in 1 - Sonic Advance + Sonic Battle</title>
<publisher>Sega</publisher>
<region>Europe</region>
<languages>En,Ja,Fr,De,Es+En,Ja,Fr,De,Es,It</languages>
<cartridge>
<flash size="65536"/>
</cartridge>
</game>
<game code="BW5P">
<title>2 Games in 1 - Sonic Advance + Sonic Pinball Party</title>
<publisher>Sega</publisher>
<region>Europe</region>
<languages>En,Ja,Fr,De,Es+En,Ja,Fr,De,Es,It</languages>
<cartridge>
<flash size="65536"/>
</cartridge>
</game>
<game code="BW7P">
<title>2 Games in 1 - Sonic Battle + ChuChu Rocket!</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En,Ja,Fr,De,Es,It+En,Ja,Fr,De,Es</languages>
<cartridge>
<flash size="65536"/>
</cartridge>
</game>
<game code="BW6P">
<title>2 Games in 1 - Sonic Battle + Sonic Pinball Party</title>
<publisher>Sega</publisher>
<region>Europe</region>
<languages>En,Ja,Fr,De,Es,It</languages>
<cartridge>
<flash size="65536"/>
</cartridge>
</game>
<game code="BW8P">
<title>2 Games in 1 - Sonic Pinball Party + Columns Crown</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En,Ja,Fr,De,Es,It+En</languages>
<cartridge>
<flash size="65536"/>
</cartridge>
</game>
<game code="BBJP">
<title>2 Games in 1 - SpongeBob SquarePants - Battle for Bikini Bottom + Jimmy Neutron Boy Genius</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En,Fr,De+En,Fr,De,Es</languages>
<cartridge/>
</game>
<game code="BU2E">
<title>2 Games in 1 - SpongeBob SquarePants - Battle for Bikini Bottom + Nicktoons - Freeze Frame Frenzy</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BX6E">
<title>2 Games in 1 - SpongeBob SquarePants - Battle for Bikini Bottom + The Fairly OddParents! - Breakin' da Rules</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BDFE" cloneOf="BDFP">
<title>2 Games in 1 - SpongeBob SquarePants - Revenge of the Flying Dutchman + SpongeBob SquarePants - SuperSponge</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BDFP">
<title>2 Games in 1 - SpongeBob SquarePants - Revenge of the Flying Dutchman + SpongeBob SquarePants - SuperSponge</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BSZP">
<title>2 Games in 1 - SpongeBob SquarePants - SuperSponge + SpongeBob SquarePants - Battle for Bikini Bottom</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BSZX" cloneOf="BSZP">
<title>2 Games in 1 - SpongeBob SquarePants - SuperSponge + SpongeBob SquarePants - Battle for Bikini Bottom</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En+En,Fr,De</languages>
<cartridge/>
</game>
<game code="BLPP">
<title>2 Games in 1 - The Lion King + Disney Princess</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It,Nl,Sv,Da+En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="B2BP">
<title>2 Games in 1 - The SpongeBob SquarePants Movie + SpongeBob SquarePants and Friends in Freeze Frame Frenzy</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It,Nl+En,Fr,De,Es,Nl</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BUFE">
<title>2 Games in 1! - Dragon Ball Z - Buu's Fury + Dragon Ball GT - Transformation</title>
<publisher>Atari</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge>
<eeprom size="8192"/>
</cartridge>
</game>
<game code="BZPE" cloneOf="BZPP">
<title>2 Games in One! - Dr. Mario + Puzzle League</title>
<publisher>Nintendo</publisher>
<region>USA</region>
<region>Australia</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="B69E" cloneOf="B69P">
<title>2 Games in One! - Gauntlet + Rampart</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B69P">
<title>2 Games in One! - Gauntlet + Rampart</title>
<publisher>Zoo Digital</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="B68E" cloneOf="B68P">
<title>2 Games in One! - Marble Madness + Klax</title>
<publisher>Destination Software</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B68P">
<title>2 Games in One! - Marble Madness + Klax</title>
<publisher>Zoo Digital</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="B6BE" cloneOf="B6BP">
<title>2 Games in One! - Paperboy + Rampage</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B6BP">
<title>2 Games in One! - Paperboy + Rampage</title>
<publisher>Zoo Digital</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="B6AP">
<title>2 Games in One! - Spy Hunter + Super Sprint</title>
<publisher>Zoo Digital</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="B6AE" cloneOf="B6AP">
<title>2 Games in One! - Spy Hunter + Super Sprint</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B6PE" cloneOf="B6PP">
<title>2 Great Games! - Pac-Man World + Ms. Pac-Man - Maze Madness</title>
<publisher>Namco</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BT5F">
<title>2 Jeux en 1 - Titeuf - Ze Gagmachine + Titeuf - Mega Compet</title>
<publisher>Atari</publisher>
<region>France</region>
<languages>Fr</languages>
<cartridge/>
</game>
<game code="B2AP">
<title>2 in 1 - Asterix & Obelix - Bash Them All! + Asterix & Obelix XXL</title>
<publisher>Atari</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It,Nl</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BCSP">
<title>2 in 1 - V-Rally 3 + Stuntman</title>
<publisher>Atari</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge>
<eeprom size="8192"/>
</cartridge>
</game>
<game code="BS7P">
<title>2 in 1 Game Pack - Shrek 2 & Shark Tale</title>
<publisher>Activision</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It,Sv+En,Fr,De,Es,It</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BS7E" cloneOf="BS7P">
<title>2 in 1 Game Pack - Shrek 2 + Shark Tale</title>
<publisher>Activision</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BX3P">
<title>2 in 1 Game Pack - Spider-Man & Spider-Man 2</title>
<publisher>Activision</publisher>
<region>Europe</region>
<languages>En,Fr,De+En,Fr,De,Es,It</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BX3E" cloneOf="BX3P">
<title>2 in 1 Game Pack - Spider-Man + Spider-Man 2</title>
<publisher>Activision</publisher>
<region>USA</region>
<languages>En,Fr,De+En,Fr,De,Es</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BX2E">
<title>2 in 1 Game Pack - Spider-Man - Mysterio's Menace + X2 - Wolverine's Revenge</title>
<publisher>Activision</publisher>
<region>USA</region>
<region>Europe</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BX4E">
<title>2 in 1 Game Pack - Tony Hawk's Underground + Kelly Slater's Pro Surfer</title>
<publisher>Activision</publisher>
<region>USA</region>
<region>Europe</region>
<languages>En</languages>
<cartridge>
<eeprom size="8192"/>
</cartridge>
</game>
<game code="BXGP">
<title>2-in-1 Fun Pack - Shrek 2 + Madagascar</title>
<publisher>Activision</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BXGE" cloneOf="BXGP">
<title>2-in-1 Fun Pack - Shrek 2 + Madagascar</title>
<publisher>Activision</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BXHE" cloneOf="BXHP">
<title>2-in-1 Fun Pack - Shrek 2 + Madagascar - Operation Penguin</title>
<publisher>Activision</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BXHP">
<title>2-in-1 Fun Pack - Shrek 2 + Madagascar - Operation Penguin</title>
<publisher>Activision</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="B6WE">
<title>2006 FIFA World Cup - Germany 2006</title>
<publisher>Electronic Arts</publisher>
<region>USA</region>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="B2YE">
<title>2K Sports - Major League Baseball 2K7</title>
<publisher>2K Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BC4E">
<title>3 Game Pack! - Candy Land + Chutes and Ladders + Original Memory Game</title>
<publisher>Destination Software</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BXCE">
<title>3 Game Pack! - Ker Plunk! + Toss Across + Tip It</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B3OE">
<title>3 Game Pack! - Mouse Trap + Simon + Operation</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B3UE">
<title>3 Game Pack! - The Game of Life + Payday + Yahtzee</title>
<publisher>Destination Software</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B44P">
<title>3 Games in 1 - Rugrats - I Gotta Go Party + SpongeBob SquarePants - SuperSponge + Tak and the Power of Juju</title>
<publisher>THQ</publisher>
<region>Europe</region>
<languages>En+En+En,Fr,De</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="B6ZE" cloneOf="B6ZP">
<title>3 Games in One! - Breakout + Centipede + Warlords</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B6ZP">
<title>3 Games in One! - Breakout + Centipede + Warlords</title>
<publisher>Zoo Digital</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="B62P">
<title>3 Games in One! - Super Breakout + Millipede + Lunar Lander</title>
<publisher>DSI Games</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="B62E" cloneOf="B62P">
<title>3 Games in One! - Super Breakout + Millipede + Lunar Lander</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B64P">
<title>3 Games in One! - Yars' Revenge + Asteroids + Pong</title>
<publisher>Zoo Digital</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="B64E" cloneOf="B64P">
<title>3 Games in One! - Yars' Revenge + Asteroids + Pong</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BI7E">
<title>4 Games on One Game Pak</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge>
<sram size="32768"/>
</cartridge>
</game>
<game code="BI4E">
<title>4 Games on One Game Pak</title>
<publisher>THQ</publisher>
<region>USA</region>
<languages>En,Fr,De,Es,It,Nl</languages>
<cartridge>
<sram size="32768"/>
</cartridge>
</game>
<game code="AQRP">
<title>ATV - Quad Power Racing</title>
<publisher>Acclaim</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="AQRE" cloneOf="AQRP">
<title>ATV - Quad Power Racing</title>
<publisher>Acclaim</publisher>
<region>USA</region>
<region>Europe</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="B3BP">
<title>ATV - Thunder Ridge Riders</title>
<publisher>DSI Games</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="B3BE" cloneOf="B3BP">
<title>ATV - Thunder Ridge Riders</title>
<publisher>DSI Games</publisher>
<region>USA</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="BH5D" cloneOf="BH5P">
<title>Ab durch die Hecke</title>
<publisher>Activision</publisher>
<region>Germany</region>
<languages>De</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BAEE">
<title>Ace Combat Advance</title>
<publisher>Namco</publisher>
<region>USA</region>
<region>Europe</region>
<languages>En</languages>
<cartridge/>
</game>
<game code="ALXP">
<title>Ace Lightning</title>
<publisher>BBC Worldwide</publisher>
<region>Europe</region>
<languages>En</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="AAOJ" cloneOf="AAOP">
<title>Acrobat Kid</title>
<publisher>Metro3D</publisher>
<region>Japan</region>
<languages>Jp</languages>
<cartridge>
<eeprom size="512"/>
</cartridge>
</game>
<game code="BACP">
<title>Action Man - Robot Atak</title>
<publisher>Atari</publisher>
<region>Europe</region>
<languages>En,Fr,De,Es,It</languages>
<cartridge/>
</game>
<game code="BAVE">
<title>Activision Anthology</title>
<publisher>Activision</publisher>
<region>USA</region>
<languages>En</languages>