forked from pokemoncentral/wiki-lua-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPoké-data.lua
2220 lines (2207 loc) · 109 KB
/
Poké-data.lua
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
-- Modulo di tabelle dati sui Pokémon. Tutti gli indici sono in minuscolo;
local t = {}
-- Contiene la table con numero del dex nazionale, nome, e tipo/i dei Pokémon
-- ognuno raggiungibile sia tramite il nome che il numero.
t.bulbasaur = {name = 'Bulbasaur', ndex = 1, type1 = 'erba', type2 = 'veleno'}
t[1] = t.bulbasaur
t.ivysaur = {name = 'Ivysaur', ndex = 2, type1 = 'erba', type2 = 'veleno'}
t[2] = t.ivysaur
t.venusaur = {name = 'Venusaur', ndex = 3, type1 = 'erba', type2 = 'veleno'}
t[3] = t.venusaur
t.charmander = {name = 'Charmander', ndex = 4, type1 = 'fuoco', type2 = 'fuoco'}
t[4] = t.charmander
t.charmeleon = {name = 'Charmeleon', ndex = 5, type1 = 'fuoco', type2 = 'fuoco'}
t[5] = t.charmeleon
t.charizard = {name = 'Charizard', ndex = 6, type1 = 'fuoco', type2 = 'volante'}
t[6] = t.charizard
t.squirtle = {name = 'Squirtle', ndex = 7, type1 = 'acqua', type2 = 'acqua'}
t[7] = t.squirtle
t.wartortle = {name = 'Wartortle', ndex = 8, type1 = 'acqua', type2 = 'acqua'}
t[8] = t.wartortle
t.blastoise = {name = 'Blastoise', ndex = 9, type1 = 'acqua', type2 = 'acqua'}
t[9] = t.blastoise
t.caterpie = {name = 'Caterpie', ndex = 10, type1 = 'coleottero', type2 = 'coleottero'}
t[10] = t.caterpie
t.metapod = {name = 'Metapod', ndex = 11, type1 = 'coleottero', type2 = 'coleottero'}
t[11] = t.metapod
t.butterfree = {name = 'Butterfree', ndex = 12, type1 = 'coleot', type2 = 'volante'}
t[12] = t.butterfree
t.weedle = {name = 'Weedle', ndex = 13, type1 = 'coleot', type2 = 'veleno'}
t[13] = t.weedle
t.kakuna = {name = 'Kakuna', ndex = 14, type1 = 'coleot', type2 = 'veleno'}
t[14] = t.kakuna
t.beedrill = {name = 'Beedrill', ndex = 15, type1 = 'coleot', type2 = 'veleno'}
t[15] = t.beedrill
t.pidgey = {name = 'Pidgey', ndex = 16, type1 = 'normale', type2 = 'volante'}
t[16] = t.pidgey
t.pidgeotto = {name = 'Pidgeotto', ndex = 17, type1 = 'normale', type2 = 'volante'}
t[17] = t.pidgeotto
t.pidgeot = {name = 'Pidgeot', ndex = 18, type1 = 'normale', type2 = 'volante'}
t[18] = t.pidgeot
t.rattata = {name = 'Rattata', ndex = 19, type1 = 'normale', type2 = 'normale'}
t[19] = t.rattata
t.raticate = {name = 'Raticate', ndex = 20, type1 = 'normale', type2 = 'normale'}
t[20] = t.raticate
t.spearow = {name = 'Spearow', ndex = 21, type1 = 'normale', type2 = 'volante'}
t[21] = t.spearow
t.fearow = {name = 'Fearow', ndex = 22, type1 = 'normale', type2 = 'volante'}
t[22] = t.fearow
t.ekans = {name = 'Ekans', ndex = 23, type1 = 'veleno', type2 = 'veleno'}
t[23] = t.ekans
t.arbok = {name = 'Arbok', ndex = 24, type1 = 'veleno', type2 = 'veleno'}
t[24] = t.arbok
t.pikachu = {name = 'Pikachu', ndex = 25, type1 = 'elettro', type2 = 'elettro'}
t[25] = t.pikachu
t.raichu = {name = 'Raichu', ndex = 26, type1 = 'elettro', type2 = 'elettro'}
t[26] = t.raichu
t.sandshrew = {name = 'Sandshrew', ndex = 27, type1 = 'terra', type2 = 'terra'}
t[27] = t.sandshrew
t.sandslash = {name = 'Sandslash', ndex = 28, type1 = 'terra', type2 = 'terra'}
t[28] = t.sandslash
t['nidoran♀'] = {name = 'Nidoran♀', ndex = 29, type1 = 'veleno', type2 = 'veleno'}
t[29] = t['nidoran♀']
t.nidorina = {name = 'Nidorina', ndex = 30, type1 = 'veleno', type2 = 'veleno'}
t[30] = t.nidorina
t.nidoqueen = {name = 'Nidoqueen', ndex = 31, type1 = 'veleno', type2 = 'terra'}
t[31] = t.nidoqueen
t['nidoran♂'] = {name = 'Nidoran♂', ndex = 32, type1 = 'veleno', type2 = 'veleno'}
t[32] = t['nidoran♂']
t.nidorino = {name = 'Nidorino', ndex = 33, type1 = 'veleno', type2 = 'veleno'}
t[33] = t.nidorino
t.nidoking = {name = 'Nidoking', ndex = 34, type1 = 'veleno', type2 = 'terra'}
t[34] = t.nidoking
t.clefairy = {name = 'Clefairy', ndex = 35, type1 = {[1] = 'normale', [6] = 'folletto'}, type2 = {[1] = 'normale', [6] = 'folletto'}}
t[35] = t.clefairy
t.clefable = {name = 'Clefable', ndex = 36, type1 = {[1] = 'normale', [6] = 'folletto'}, type2 = {[1] = 'normale', [6] = 'folletto'}}
t[36] = t.clefable
t.vulpix = {name = 'Vulpix', ndex = 37, type1 = 'fuoco', type2 = 'fuoco'}
t[37] = t.vulpix
t.ninetales = {name = 'Ninetales', ndex = 38, type1 = 'fuoco', type2 = 'fuoco'}
t[38] = t.ninetales
t.jigglypuff = {name = 'Jigglypuff', ndex = 39, type1 = 'normale', type2 = {[1] = 'normale', [6] = 'folletto'}}
t[39] = t.jigglypuff
t.wigglytuff = {name = 'Wigglytuff', ndex = 40, type1 = 'normale', type2 = {[1] = 'normale', [6] = 'folletto'}}
t[40] = t.wigglytuff
t.zubat = {name = 'Zubat', ndex = 41, type1 = 'veleno', type2 = 'volante'}
t[41] = t.zubat
t.golbat = {name = 'Golbat', ndex = 42, type1 = 'veleno', type2 = 'volante'}
t[42] = t.golbat
t.oddish = {name = 'Oddish', ndex = 43, type1 = 'erba', type2 = 'veleno'}
t[43] = t.oddish
t.gloom = {name = 'Gloom', ndex = 44, type1 = 'erba', type2 = 'veleno'}
t[44] = t.gloom
t.vileplume = {name = 'Vileplume', ndex = 45, type1 = 'erba', type2 = 'veleno'}
t[45] = t.vileplume
t.paras = {name = 'Paras', ndex = 46, type1 = 'coleot', type2 = 'erba'}
t[46] = t.paras
t.parasect = {name = 'Parasect', ndex = 47, type1 = 'coleot', type2 = 'erba'}
t[47] = t.parasect
t.venonat = {name = 'Venonat', ndex = 48, type1 = 'coleot', type2 = 'veleno'}
t[48] = t.venonat
t.venomoth = {name = 'Venomoth', ndex = 49, type1 = 'coleot', type2 = 'veleno'}
t[49] = t.venomoth
t.diglett = {name = 'Diglett', ndex = 50, type1 = 'terra', type2 = 'terra'}
t[50] = t.diglett
t.dugtrio = {name = 'Dugtrio', ndex = 51, type1 = 'terra', type2 = 'terra'}
t[51] = t.dugtrio
t.meowth = {name = 'Meowth', ndex = 52, type1 = 'normale', type2 = 'normale'}
t[52] = t.meowth
t.persian = {name = 'Persian', ndex = 53, type1 = 'normale', type2 = 'normale'}
t[53] = t.persian
t.psyduck = {name = 'Psyduck', ndex = 54, type1 = 'acqua', type2 = 'acqua'}
t[54] = t.psyduck
t.golduck = {name = 'Golduck', ndex = 55, type1 = 'acqua', type2 = 'acqua'}
t[55] = t.golduck
t.mankey = {name = 'Mankey', ndex = 56, type1 = 'lotta', type2 = 'lotta'}
t[56] = t.mankey
t.primeape = {name = 'Primeape', ndex = 57, type1 = 'lotta', type2 = 'lotta'}
t[57] = t.primeape
t.growlithe = {name = 'Growlithe', ndex = 58, type1 = 'fuoco', type2 = 'fuoco'}
t[58] = t.growlithe
t.arcanine = {name = 'Arcanine', ndex = 59, type1 = 'fuoco', type2 = 'fuoco'}
t[59] = t.arcanine
t.poliwag = {name = 'Poliwag', ndex = 60, type1 = 'acqua', type2 = 'acqua'}
t[60] = t.poliwag
t.poliwhirl = {name = 'Poliwhirl', ndex = 61, type1 = 'acqua', type2 = 'acqua'}
t[61] = t.poliwhirl
t.poliwrath = {name = 'Poliwrath', ndex = 62, type1 = 'acqua', type2 = 'lotta'}
t[62] = t.poliwrath
t.abra = {name = 'Abra', ndex = 63, type1 = 'psico', type2 = 'psico'}
t[63] = t.abra
t.kadabra = {name = 'Kadabra', ndex = 64, type1 = 'psico', type2 = 'psico'}
t[64] = t.kadabra
t.alakazam = {name = 'Alakazam', ndex = 65, type1 = 'psico', type2 = 'psico'}
t[65] = t.alakazam
t.machop = {name = 'Machop', ndex = 66, type1 = 'lotta', type2 = 'lotta'}
t[66] = t.machop
t.machoke = {name = 'Machoke', ndex = 67, type1 = 'lotta', type2 = 'lotta'}
t[67] = t.machoke
t.machamp = {name = 'Machamp', ndex = 68, type1 = 'lotta', type2 = 'lotta'}
t[68] = t.machamp
t.bellsprout = {name = 'Bellsprout', ndex = 69, type1 = 'erba', type2 = 'veleno'}
t[69] = t.bellsprout
t.weepinbell = {name = 'Weepinbell', ndex = 70, type1 = 'erba', type2 = 'veleno'}
t[70] = t.weepinbell
t.victreebel = {name = 'Victreebel', ndex = 71, type1 = 'erba', type2 = 'veleno'}
t[71] = t.victreebel
t.tentacool = {name = 'Tentacool', ndex = 72, type1 = 'acqua', type2 = 'veleno'}
t[72] = t.tentacool
t.tentacruel = {name = 'Tentacruel', ndex = 73, type1 = 'acqua', type2 = 'veleno'}
t[73] = t.tentacruel
t.geodude = {name = 'Geodude', ndex = 74, type1 = 'roccia', type2 = 'terra'}
t[74] = t.geodude
t.graveler = {name = 'Graveler', ndex = 75, type1 = 'roccia', type2 = 'terra'}
t[75] = t.graveler
t.golem = {name = 'Golem', ndex = 76, type1 = 'roccia', type2 = 'terra'}
t[76] = t.golem
t.ponyta = {name = 'Ponyta', ndex = 77, type1 = 'fuoco', type2 = 'fuoco'}
t[77] = t.ponyta
t.rapidash = {name = 'Rapidash', ndex = 78, type1 = 'fuoco', type2 = 'fuoco'}
t[78] = t.rapidash
t.slowpoke = {name = 'Slowpoke', ndex = 79, type1 = 'acqua', type2 = 'psico'}
t[79] = t.slowpoke
t.slowbro = {name = 'Slowbro', ndex = 80, type1 = 'acqua', type2 = 'psico'}
t[80] = t.slowbro
t.magnemite = {name = 'Magnemite', ndex = 81, type1 = 'elettro', type2 = {[1] = 'elettro', [2] = 'acciaio'}}
t[81] = t.magnemite
t.magneton = {name = 'Magneton', ndex = 82, type1 = 'elettro', type2 = {[1] = 'elettro', [2] = 'acciaio'}}
t[82] = t.magneton
t["farfetch'd"] = {name = "Farfetch'd", ndex = 83, type1 = 'normale', type2 = 'volante'}
t[83] = t["farfetch'd"]
t.doduo = {name = 'Doduo', ndex = 84, type1 = 'normale', type2 = 'volante'}
t[84] = t.doduo
t.dodrio = {name = 'Dodrio', ndex = 85, type1 = 'normale', type2 = 'volante'}
t[85] = t.dodrio
t.seel = {name = 'Seel', ndex = 86, type1 = 'acqua', type2 = 'acqua'}
t[86] = t.seel
t.dewgong = {name = 'Dewgong', ndex = 87, type1 = 'acqua', type2 = 'ghiaccio'}
t[87] = t.dewgong
t.grimer = {name = 'Grimer', ndex = 88, type1 = 'veleno', type2 = 'veleno'}
t[88] = t.grimer
t.muk = {name = 'Muk', ndex = 89, type1 = 'veleno', type2 = 'veleno'}
t[89] = t.muk
t.shellder = {name = 'Shellder', ndex = 90, type1 = 'acqua', type2 = 'acqua'}
t[90] = t.shellder
t.cloyster = {name = 'Cloyster', ndex = 91, type1 = 'acqua', type2 = 'ghiaccio'}
t[91] = t.cloyster
t.gastly = {name = 'Gastly', ndex = 92, type1 = 'spettro', type2 = 'veleno'}
t[92] = t.gastly
t.haunter = {name = 'Haunter', ndex = 93, type1 = 'spettro', type2 = 'veleno'}
t[93] = t.haunter
t.gengar = {name = 'Gengar', ndex = 94, type1 = 'spettro', type2 = 'veleno'}
t[94] = t.gengar
t.onix = {name = 'Onix', ndex = 95, type1 = 'roccia', type2 = 'terra'}
t[95] = t.onix
t.drowzee = {name = 'Drowzee', ndex = 96, type1 = 'psico', type2 = 'psico'}
t[96] = t.drowzee
t.hypno = {name = 'Hypno', ndex = 97, type1 = 'psico', type2 = 'psico'}
t[97] = t.hypno
t.krabby = {name = 'Krabby', ndex = 98, type1 = 'acqua', type2 = 'acqua'}
t[98] = t.krabby
t.kingler = {name = 'Kingler', ndex = 99, type1 = 'acqua', type2 = 'acqua'}
t[99] = t.kingler
t.voltorb = {name = 'Voltorb', ndex = 100, type1 = 'elettro', type2 = 'elettro'}
t[100] = t.voltorb
t.electrode = {name = 'Electrode', ndex = 101, type1 = 'elettro', type2 = 'elettro'}
t[101] = t.electrode
t.exeggcute = {name = 'Exeggcute', ndex = 102, type1 = 'erba', type2 = 'psico'}
t[102] = t.exeggcute
t.exeggutor = {name = 'Exeggutor', ndex = 103, type1 = 'erba', type2 = 'psico'}
t[103] = t.exeggutor
t.cubone = {name = 'Cubone', ndex = 104, type1 = 'terra', type2 = 'terra'}
t[104] = t.cubone
t.marowak = {name = 'Marowak', ndex = 105, type1 = 'terra', type2 = 'terra'}
t[105] = t.marowak
t.hitmonlee = {name = 'Hitmonlee', ndex = 106, type1 = 'lotta', type2 = 'lotta'}
t[106] = t.hitmonlee
t.hitmonchan = {name = 'Hitmonchan', ndex = 107, type1 = 'lotta', type2 = 'lotta'}
t[107] = t.hitmonchan
t.lickitung = {name = 'Lickitung', ndex = 108, type1 = 'normale', type2 = 'normale'}
t[108] = t.lickitung
t.koffing = {name = 'Koffing', ndex = 109, type1 = 'veleno', type2 = 'veleno'}
t[109] = t.koffing
t.weezing = {name = 'Weezing', ndex = 110, type1 = 'veleno', type2 = 'veleno'}
t[110] = t.weezing
t.rhyhorn = {name = 'Rhyhorn', ndex = 111, type1 = 'terra', type2 = 'roccia'}
t[111] = t.rhyhorn
t.rhydon = {name = 'Rhydon', ndex = 112, type1 = 'terra', type2 = 'roccia'}
t[112] = t.rhydon
t.chansey = {name = 'Chansey', ndex = 113, type1 = 'normale', type2 = 'normale'}
t[113] = t.chansey
t.tangela = {name = 'Tangela', ndex = 114, type1 = 'erba', type2 = 'erba'}
t[114] = t.tangela
t.kangaskhan = {name = 'Kangaskhan', ndex = 115, type1 = 'normale', type2 = 'normale'}
t[115] = t.kangaskhan
t.horsea = {name = 'Horsea', ndex = 116, type1 = 'acqua', type2 = 'acqua'}
t[116] = t.horsea
t.seadra = {name = 'Seadra', ndex = 117, type1 = 'acqua', type2 = 'acqua'}
t[117] = t.seadra
t.goldeen = {name = 'Goldeen', ndex = 118, type1 = 'acqua', type2 = 'acqua'}
t[118] = t.goldeen
t.seaking = {name = 'Seaking', ndex = 119, type1 = 'acqua', type2 = 'acqua'}
t[119] = t.seaking
t.staryu = {name = 'Staryu', ndex = 120, type1 = 'acqua', type2 = 'acqua'}
t[120] = t.staryu
t.starmie = {name = 'Starmie', ndex = 121, type1 = 'acqua', type2 = 'psico'}
t[121] = t.starmie
t['mr. mime'] = {name = 'Mr. Mime', ndex = 122, type1 = 'psico', type2 = {[1] = 'psico', [6] = 'folletto'}}
t[122] = t['mr. mime']
t.scyther = {name = 'Scyther', ndex = 123, type1 = 'coleot', type2 = 'volante'}
t[123] = t.scyther
t.jynx = {name = 'Jynx', ndex = 124, type1 = 'ghiaccio', type2 = 'psico'}
t[124] = t.jynx
t.electabuzz = {name = 'Electabuzz', ndex = 125, type1 = 'elettro', type2 = 'elettro'}
t[125] = t.electabuzz
t.magmar = {name = 'Magmar', ndex = 126, type1 = 'fuoco', type2 = 'fuoco'}
t[126] = t.magmar
t.pinsir = {name = 'Pinsir', ndex = 127, type1 = 'coleottero', type2 = 'coleottero'}
t[127] = t.pinsir
t.tauros = {name = 'Tauros', ndex = 128, type1 = 'normale', type2 = 'normale'}
t[128] = t.tauros
t.magikarp = {name = 'Magikarp', ndex = 129, type1 = 'acqua', type2 = 'acqua'}
t[129] = t.magikarp
t.gyarados = {name = 'Gyarados', ndex = 130, type1 = 'acqua', type2 = 'volante'}
t[130] = t.gyarados
t.lapras = {name = 'Lapras', ndex = 131, type1 = 'acqua', type2 = 'ghiaccio'}
t[131] = t.lapras
t.ditto = {name = 'Ditto', ndex = 132, type1 = 'normale', type2 = 'normale'}
t[132] = t.ditto
t.eevee = {name = 'Eevee', ndex = 133, type1 = 'normale', type2 = 'normale'}
t[133] = t.eevee
t.vaporeon = {name = 'Vaporeon', ndex = 134, type1 = 'acqua', type2 = 'acqua'}
t[134] = t.vaporeon
t.jolteon = {name = 'Jolteon', ndex = 135, type1 = 'elettro', type2 = 'elettro'}
t[135] = t.jolteon
t.flareon = {name = 'Flareon', ndex = 136, type1 = 'fuoco', type2 = 'fuoco'}
t[136] = t.flareon
t.porygon = {name = 'Porygon', ndex = 137, type1 = 'normale', type2 = 'normale'}
t[137] = t.porygon
t.omanyte = {name = 'Omanyte', ndex = 138, type1 = 'roccia', type2 = 'acqua'}
t[138] = t.omanyte
t.omastar = {name = 'Omastar', ndex = 139, type1 = 'roccia', type2 = 'acqua'}
t[139] = t.omastar
t.kabuto = {name = 'Kabuto', ndex = 140, type1 = 'roccia', type2 = 'acqua'}
t[140] = t.kabuto
t.kabutops = {name = 'Kabutops', ndex = 141, type1 = 'roccia', type2 = 'acqua'}
t[141] = t.kabutops
t.aerodactyl = {name = 'Aerodactyl', ndex = 142, type1 = 'roccia', type2 = 'volante'}
t[142] = t.aerodactyl
t.snorlax = {name = 'Snorlax', ndex = 143, type1 = 'normale', type2 = 'normale'}
t[143] = t.snorlax
t.articuno = {name = 'Articuno', ndex = 144, type1 = 'ghiaccio', type2 = 'volante'}
t[144] = t.articuno
t.zapdos = {name = 'Zapdos', ndex = 145, type1 = 'elettro', type2 = 'volante'}
t[145] = t.zapdos
t.moltres = {name = 'Moltres', ndex = 146, type1 = 'fuoco', type2 = 'volante'}
t[146] = t.moltres
t.dratini = {name = 'Dratini', ndex = 147, type1 = 'drago', type2 = 'drago'}
t[147] = t.dratini
t.dragonair = {name = 'Dragonair', ndex = 148, type1 = 'drago', type2 = 'drago'}
t[148] = t.dragonair
t.dragonite = {name = 'Dragonite', ndex = 149, type1 = 'drago', type2 = 'volante'}
t[149] = t.dragonite
t.mewtwo = {name = 'Mewtwo', ndex = 150, type1 = 'psico', type2 = 'psico'}
t[150] = t.mewtwo
t.mew = {name = 'Mew', ndex = 151, type1 = 'psico', type2 = 'psico'}
t[151] = t.mew
t.chikorita = {name = 'Chikorita', ndex = 152, type1 = 'erba', type2 = 'erba'}
t[152] = t.chikorita
t.bayleef = {name = 'Bayleef', ndex = 153, type1 = 'erba', type2 = 'erba'}
t[153] = t.bayleef
t.meganium = {name = 'Meganium', ndex = 154, type1 = 'erba', type2 = 'erba'}
t[154] = t.meganium
t.cyndaquil = {name = 'Cyndaquil', ndex = 155, type1 = 'fuoco', type2 = 'fuoco'}
t[155] = t.cyndaquil
t.quilava = {name = 'Quilava', ndex = 156, type1 = 'fuoco', type2 = 'fuoco'}
t[156] = t.quilava
t.typhlosion = {name = 'Typhlosion', ndex = 157, type1 = 'fuoco', type2 = 'fuoco'}
t[157] = t.typhlosion
t.totodile = {name = 'Totodile', ndex = 158, type1 = 'acqua', type2 = 'acqua'}
t[158] = t.totodile
t.croconaw = {name = 'Croconaw', ndex = 159, type1 = 'acqua', type2 = 'acqua'}
t[159] = t.croconaw
t.feraligatr = {name = 'Feraligatr', ndex = 160, type1 = 'acqua', type2 = 'acqua'}
t[160] = t.feraligatr
t.sentret = {name = 'Sentret', ndex = 161, type1 = 'normale', type2 = 'normale'}
t[161] = t.sentret
t.furret = {name = 'Furret', ndex = 162, type1 = 'normale', type2 = 'normale'}
t[162] = t.furret
t.hoothoot = {name = 'Hoothoot', ndex = 163, type1 = 'normale', type2 = 'volante'}
t[163] = t.hoothoot
t.noctowl = {name = 'Noctowl', ndex = 164, type1 = 'normale', type2 = 'volante'}
t[164] = t.noctowl
t.ledyba = {name = 'Ledyba', ndex = 165, type1 = 'coleot', type2 = 'volante'}
t[165] = t.ledyba
t.ledian = {name = 'Ledian', ndex = 166, type1 = 'coleot', type2 = 'volante'}
t[166] = t.ledian
t.spinarak = {name = 'Spinarak', ndex = 167, type1 = 'coleot', type2 = 'veleno'}
t[167] = t.spinarak
t.ariados = {name = 'Ariados', ndex = 168, type1 = 'coleot', type2 = 'veleno'}
t[168] = t.ariados
t.crobat = {name = 'Crobat', ndex = 169, type1 = 'veleno', type2 = 'volante'}
t[169] = t.crobat
t.chinchou = {name = 'Chinchou', ndex = 170, type1 = 'acqua', type2 = 'elettro'}
t[170] = t.chinchou
t.lanturn = {name = 'Lanturn', ndex = 171, type1 = 'acqua', type2 = 'elettro'}
t[171] = t.lanturn
t.pichu = {name = 'Pichu', ndex = 172, type1 = 'elettro', type2 = 'elettro'}
t[172] = t.pichu
t.cleffa = {name = 'Cleffa', ndex = 173, type1 = {[2] = 'normale', [6] = 'folletto'}, type2 = {[2] = 'normale', [6] = 'folletto'}}
t[173] = t.cleffa
t.igglybuff = {name = 'Igglybuff', ndex = 174, type1 = 'normale', type2 = {[2] = 'normale', [6] = 'folletto'}}
t[174] = t.igglybuff
t.togepi = {name = 'Togepi', ndex = 175, type1 = {[2] = 'normale', [6] = 'folletto'}, type2 = {[2] = 'normale', [6] = 'folletto'}}
t[175] = t.togepi
t.togetic = {name = 'Togetic', ndex = 176, type1 = {[2] = 'normale', [6] = 'folletto'}, type2 = 'volante'}
t[176] = t.togetic
t.natu = {name = 'Natu', ndex = 177, type1 = 'psico', type2 = 'volante'}
t[177] = t.natu
t.xatu = {name = 'Xatu', ndex = 178, type1 = 'psico', type2 = 'volante'}
t[178] = t.xatu
t.mareep = {name = 'Mareep', ndex = 179, type1 = 'elettro', type2 = 'elettro'}
t[179] = t.mareep
t.flaaffy = {name = 'Flaaffy', ndex = 180, type1 = 'elettro', type2 = 'elettro'}
t[180] = t.flaaffy
t.ampharos = {name = 'Ampharos', ndex = 181, type1 = 'elettro', type2 = 'elettro'}
t[181] = t.ampharos
t.bellossom = {name = 'Bellossom', ndex = 182, type1 = 'erba', type2 = 'erba'}
t[182] = t.bellossom
t.marill = {name = 'Marill', ndex = 183, type1 = 'acqua', type2 = {[2] = 'acqua', [6] = 'folletto'}}
t[183] = t.marill
t.azumarill = {name = 'Azumarill', ndex = 184, type1 = 'acqua', type2 = {[2] = 'acqua', [6] = 'folletto'}}
t[184] = t.azumarill
t.sudowoodo = {name = 'Sudowoodo', ndex = 185, type1 = 'roccia', type2 = 'roccia'}
t[185] = t.sudowoodo
t.politoed = {name = 'Politoed', ndex = 186, type1 = 'acqua', type2 = 'acqua'}
t[186] = t.politoed
t.hoppip = {name = 'Hoppip', ndex = 187, type1 = 'erba', type2 = 'volante'}
t[187] = t.hoppip
t.skiploom = {name = 'Skiploom', ndex = 188, type1 = 'erba', type2 = 'volante'}
t[188] = t.skiploom
t.jumpluff = {name = 'Jumpluff', ndex = 189, type1 = 'erba', type2 = 'volante'}
t[189] = t.jumpluff
t.aipom = {name = 'Aipom', ndex = 190, type1 = 'normale', type2 = 'normale'}
t[190] = t.aipom
t.sunkern = {name = 'Sunkern', ndex = 191, type1 = 'erba', type2 = 'erba'}
t[191] = t.sunkern
t.sunflora = {name = 'Sunflora', ndex = 192, type1 = 'erba', type2 = 'erba'}
t[192] = t.sunflora
t.yanma = {name = 'Yanma', ndex = 193, type1 = 'coleot', type2 = 'volante'}
t[193] = t.yanma
t.wooper = {name = 'Wooper', ndex = 194, type1 = 'acqua', type2 = 'terra'}
t[194] = t.wooper
t.quagsire = {name = 'Quagsire', ndex = 195, type1 = 'acqua', type2 = 'terra'}
t[195] = t.quagsire
t.espeon = {name = 'Espeon', ndex = 196, type1 = 'psico', type2 = 'psico'}
t[196] = t.espeon
t.umbreon = {name = 'Umbreon', ndex = 197, type1 = 'buio', type2 = 'buio'}
t[197] = t.umbreon
t.murkrow = {name = 'Murkrow', ndex = 198, type1 = 'buio', type2 = 'volante'}
t[198] = t.murkrow
t.slowking = {name = 'Slowking', ndex = 199, type1 = 'acqua', type2 = 'psico'}
t[199] = t.slowking
t.misdreavus = {name = 'Misdreavus', ndex = 200, type1 = 'spettro', type2 = 'spettro'}
t[200] = t.misdreavus
t.unown = {name = 'Unown', ndex = 201, type1 = 'psico', type2 = 'psico'}
t[201] = t.unown
t.wobbuffet = {name = 'Wobbuffet', ndex = 202, type1 = 'psico', type2 = 'psico'}
t[202] = t.wobbuffet
t.girafarig = {name = 'Girafarig', ndex = 203, type1 = 'normale', type2 = 'psico'}
t[203] = t.girafarig
t.pineco = {name = 'Pineco', ndex = 204, type1 = 'coleottero', type2 = 'coleottero'}
t[204] = t.pineco
t.forretress = {name = 'Forretress', ndex = 205, type1 = 'coleot', type2 = 'acciaio'}
t[205] = t.forretress
t.dunsparce = {name = 'Dunsparce', ndex = 206, type1 = 'normale', type2 = 'normale'}
t[206] = t.dunsparce
t.gligar = {name = 'Gligar', ndex = 207, type1 = 'terra', type2 = 'volante'}
t[207] = t.gligar
t.steelix = {name = 'Steelix', ndex = 208, type1 = 'acciaio', type2 = 'terra'}
t[208] = t.steelix
t.snubbull = {name = 'Snubbull', ndex = 209, type1 = {[2] = 'normale', [6] = 'folletto'}, type2 = {[2] = 'normale', [6] = 'folletto'}}
t[209] = t.snubbull
t.granbull = {name = 'Granbull', ndex = 210, type1 = {[2] = 'normale', [6] = 'folletto'}, type2 = {[2] = 'normale', [6] = 'folletto'}}
t[210] = t.granbull
t.qwilfish = {name = 'Qwilfish', ndex = 211, type1 = 'acqua', type2 = 'veleno'}
t[211] = t.qwilfish
t.scizor = {name = 'Scizor', ndex = 212, type1 = 'coleot', type2 = 'acciaio'}
t[212] = t.scizor
t.shuckle = {name = 'Shuckle', ndex = 213, type1 = 'coleot', type2 = 'roccia'}
t[213] = t.shuckle
t.heracross = {name = 'Heracross', ndex = 214, type1 = 'coleot', type2 = 'lotta'}
t[214] = t.heracross
t.sneasel = {name = 'Sneasel', ndex = 215, type1 = 'buio', type2 = 'ghiaccio'}
t[215] = t.sneasel
t.teddiursa = {name = 'Teddiursa', ndex = 216, type1 = 'normale', type2 = 'normale'}
t[216] = t.teddiursa
t.ursaring = {name = 'Ursaring', ndex = 217, type1 = 'normale', type2 = 'normale'}
t[217] = t.ursaring
t.slugma = {name = 'Slugma', ndex = 218, type1 = 'fuoco', type2 = 'fuoco'}
t[218] = t.slugma
t.magcargo = {name = 'Magcargo', ndex = 219, type1 = 'fuoco', type2 = 'roccia'}
t[219] = t.magcargo
t.swinub = {name = 'Swinub', ndex = 220, type1 = 'ghiaccio', type2 = 'terra'}
t[220] = t.swinub
t.piloswine = {name = 'Piloswine', ndex = 221, type1 = 'ghiaccio', type2 = 'terra'}
t[221] = t.piloswine
t.corsola = {name = 'Corsola', ndex = 222, type1 = 'acqua', type2 = 'roccia'}
t[222] = t.corsola
t.remoraid = {name = 'Remoraid', ndex = 223, type1 = 'acqua', type2 = 'acqua'}
t[223] = t.remoraid
t.octillery = {name = 'Octillery', ndex = 224, type1 = 'acqua', type2 = 'acqua'}
t[224] = t.octillery
t.delibird = {name = 'Delibird', ndex = 225, type1 = 'ghiaccio', type2 = 'volante'}
t[225] = t.delibird
t.mantine = {name = 'Mantine', ndex = 226, type1 = 'acqua', type2 = 'volante'}
t[226] = t.mantine
t.skarmory = {name = 'Skarmory', ndex = 227, type1 = 'acciaio', type2 = 'volante'}
t[227] = t.skarmory
t.houndour = {name = 'Houndour', ndex = 228, type1 = 'buio', type2 = 'fuoco'}
t[228] = t.houndour
t.houndoom = {name = 'Houndoom', ndex = 229, type1 = 'buio', type2 = 'fuoco'}
t[229] = t.houndoom
t.kingdra = {name = 'Kingdra', ndex = 230, type1 = 'acqua', type2 = 'drago'}
t[230] = t.kingdra
t.phanpy = {name = 'Phanpy', ndex = 231, type1 = 'terra', type2 = 'terra'}
t[231] = t.phanpy
t.donphan = {name = 'Donphan', ndex = 232, type1 = 'terra', type2 = 'terra'}
t[232] = t.donphan
t.porygon2 = {name = 'Porygon2', ndex = 233, type1 = 'normale', type2 = 'normale'}
t[233] = t.porygon2
t.stantler = {name = 'Stantler', ndex = 234, type1 = 'normale', type2 = 'normale'}
t[234] = t.stantler
t.smeargle = {name = 'Smeargle', ndex = 235, type1 = 'normale', type2 = 'normale'}
t[235] = t.smeargle
t.tyrogue = {name = 'Tyrogue', ndex = 236, type1 = 'lotta', type2 = 'lotta'}
t[236] = t.tyrogue
t.hitmontop = {name = 'Hitmontop', ndex = 237, type1 = 'lotta', type2 = 'lotta'}
t[237] = t.hitmontop
t.smoochum = {name = 'Smoochum', ndex = 238, type1 = 'ghiaccio', type2 = 'psico'}
t[238] = t.smoochum
t.elekid = {name = 'Elekid', ndex = 239, type1 = 'elettro', type2 = 'elettro'}
t[239] = t.elekid
t.magby = {name = 'Magby', ndex = 240, type1 = 'fuoco', type2 = 'fuoco'}
t[240] = t.magby
t.miltank = {name = 'Miltank', ndex = 241, type1 = 'normale', type2 = 'normale'}
t[241] = t.miltank
t.blissey = {name = 'Blissey', ndex = 242, type1 = 'normale', type2 = 'normale'}
t[242] = t.blissey
t.raikou = {name = 'Raikou', ndex = 243, type1 = 'elettro', type2 = 'elettro'}
t[243] = t.raikou
t.entei = {name = 'Entei', ndex = 244, type1 = 'fuoco', type2 = 'fuoco'}
t[244] = t.entei
t.suicune = {name = 'Suicune', ndex = 245, type1 = 'acqua', type2 = 'acqua'}
t[245] = t.suicune
t.larvitar = {name = 'Larvitar', ndex = 246, type1 = 'roccia', type2 = 'terra'}
t[246] = t.larvitar
t.pupitar = {name = 'Pupitar', ndex = 247, type1 = 'roccia', type2 = 'terra'}
t[247] = t.pupitar
t.tyranitar = {name = 'Tyranitar', ndex = 248, type1 = 'roccia', type2 = 'buio'}
t[248] = t.tyranitar
t.lugia = {name = 'Lugia', ndex = 249, type1 = 'psico', type2 = 'volante'}
t[249] = t.lugia
t['ho-oh'] = {name = 'Ho-Oh', ndex = 250, type1 = 'fuoco', type2 = 'volante'}
t[250] = t['ho-oh']
t.celebi = {name = 'Celebi', ndex = 251, type1 = 'psico', type2 = 'erba'}
t[251] = t.celebi
t.treecko = {name = 'Treecko', ndex = 252, type1 = 'erba', type2 = 'erba'}
t[252] = t.treecko
t.grovyle = {name = 'Grovyle', ndex = 253, type1 = 'erba', type2 = 'erba'}
t[253] = t.grovyle
t.sceptile = {name = 'Sceptile', ndex = 254, type1 = 'erba', type2 = 'erba'}
t[254] = t.sceptile
t.torchic = {name = 'Torchic', ndex = 255, type1 = 'fuoco', type2 = 'fuoco'}
t[255] = t.torchic
t.combusken = {name = 'Combusken', ndex = 256, type1 = 'fuoco', type2 = 'lotta'}
t[256] = t.combusken
t.blaziken = {name = 'Blaziken', ndex = 257, type1 = 'fuoco', type2 = 'lotta'}
t[257] = t.blaziken
t.mudkip = {name = 'Mudkip', ndex = 258, type1 = 'acqua', type2 = 'acqua'}
t[258] = t.mudkip
t.marshtomp = {name = 'Marshtomp', ndex = 259, type1 = 'acqua', type2 = 'terra'}
t[259] = t.marshtomp
t.swampert = {name = 'Swampert', ndex = 260, type1 = 'acqua', type2 = 'terra'}
t[260] = t.swampert
t.poochyena = {name = 'Poochyena', ndex = 261, type1 = 'buio', type2 = 'buio'}
t[261] = t.poochyena
t.mightyena = {name = 'Mightyena', ndex = 262, type1 = 'buio', type2 = 'buio'}
t[262] = t.mightyena
t.zigzagoon = {name = 'Zigzagoon', ndex = 263, type1 = 'normale', type2 = 'normale'}
t[263] = t.zigzagoon
t.linoone = {name = 'Linoone', ndex = 264, type1 = 'normale', type2 = 'normale'}
t[264] = t.linoone
t.wurmple = {name = 'Wurmple', ndex = 265, type1 = 'coleottero', type2 = 'coleottero'}
t[265] = t.wurmple
t.silcoon = {name = 'Silcoon', ndex = 266, type1 = 'coleottero', type2 = 'coleottero'}
t[266] = t.silcoon
t.beautifly = {name = 'Beautifly', ndex = 267, type1 = 'coleot', type2 = 'volante'}
t[267] = t.beautifly
t.cascoon = {name = 'Cascoon', ndex = 268, type1 = 'coleottero', type2 = 'coleottero'}
t[268] = t.cascoon
t.dustox = {name = 'Dustox', ndex = 269, type1 = 'coleot', type2 = 'veleno'}
t[269] = t.dustox
t.lotad = {name = 'Lotad', ndex = 270, type1 = 'acqua', type2 = 'erba'}
t[270] = t.lotad
t.lombre = {name = 'Lombre', ndex = 271, type1 = 'acqua', type2 = 'erba'}
t[271] = t.lombre
t.ludicolo = {name = 'Ludicolo', ndex = 272, type1 = 'acqua', type2 = 'erba'}
t[272] = t.ludicolo
t.seedot = {name = 'Seedot', ndex = 273, type1 = 'erba', type2 = 'erba'}
t[273] = t.seedot
t.nuzleaf = {name = 'Nuzleaf', ndex = 274, type1 = 'erba', type2 = 'buio'}
t[274] = t.nuzleaf
t.shiftry = {name = 'Shiftry', ndex = 275, type1 = 'erba', type2 = 'buio'}
t[275] = t.shiftry
t.taillow = {name = 'Taillow', ndex = 276, type1 = 'normale', type2 = 'volante'}
t[276] = t.taillow
t.swellow = {name = 'Swellow', ndex = 277, type1 = 'normale', type2 = 'volante'}
t[277] = t.swellow
t.wingull = {name = 'Wingull', ndex = 278, type1 = 'acqua', type2 = 'volante'}
t[278] = t.wingull
t.pelipper = {name = 'Pelipper', ndex = 279, type1 = 'acqua', type2 = 'volante'}
t[279] = t.pelipper
t.ralts = {name = 'Ralts', ndex = 280, type1 = 'psico', type2 = {[3] = 'psico', [6] = 'folletto'}}
t[280] = t.ralts
t.kirlia = {name = 'Kirlia', ndex = 281, type1 = 'psico', type2 = {[3] = 'psico', [6] = 'folletto'}}
t[281] = t.kirlia
t.gardevoir = {name = 'Gardevoir', ndex = 282, type1 = 'psico', type2 = {[3] = 'psico', [6] = 'folletto'}}
t[282] = t.gardevoir
t.surskit = {name = 'Surskit', ndex = 283, type1 = 'coleot', type2 = 'acqua'}
t[283] = t.surskit
t.masquerain = {name = 'Masquerain', ndex = 284, type1 = 'coleot', type2 = 'volante'}
t[284] = t.masquerain
t.shroomish = {name = 'Shroomish', ndex = 285, type1 = 'erba', type2 = 'erba'}
t[285] = t.shroomish
t.breloom = {name = 'Breloom', ndex = 286, type1 = 'erba', type2 = 'lotta'}
t[286] = t.breloom
t.slakoth = {name = 'Slakoth', ndex = 287, type1 = 'normale', type2 = 'normale'}
t[287] = t.slakoth
t.vigoroth = {name = 'Vigoroth', ndex = 288, type1 = 'normale', type2 = 'normale'}
t[288] = t.vigoroth
t.slaking = {name = 'Slaking', ndex = 289, type1 = 'normale', type2 = 'normale'}
t[289] = t.slaking
t.nincada = {name = 'Nincada', ndex = 290, type1 = 'coleot', type2 = 'terra'}
t[290] = t.nincada
t.ninjask = {name = 'Ninjask', ndex = 291, type1 = 'coleot', type2 = 'volante'}
t[291] = t.ninjask
t.shedinja = {name = 'Shedinja', ndex = 292, type1 = 'coleot', type2 = 'spettro'}
t[292] = t.shedinja
t.whismur = {name = 'Whismur', ndex = 293, type1 = 'normale', type2 = 'normale'}
t[293] = t.whismur
t.loudred = {name = 'Loudred', ndex = 294, type1 = 'normale', type2 = 'normale'}
t[294] = t.loudred
t.exploud = {name = 'Exploud', ndex = 295, type1 = 'normale', type2 = 'normale'}
t[295] = t.exploud
t.makuhita = {name = 'Makuhita', ndex = 296, type1 = 'lotta', type2 = 'lotta'}
t[296] = t.makuhita
t.hariyama = {name = 'Hariyama', ndex = 297, type1 = 'lotta', type2 = 'lotta'}
t[297] = t.hariyama
t.azurill = {name = 'Azurill', ndex = 298, type1 = 'normale', type2 = {[3] = 'normale', [6] = 'folletto'}}
t[298] = t.azurill
t.nosepass = {name = 'Nosepass', ndex = 299, type1 = 'roccia', type2 = 'roccia'}
t[299] = t.nosepass
t.skitty = {name = 'Skitty', ndex = 300, type1 = 'normale', type2 = 'normale'}
t[300] = t.skitty
t.delcatty = {name = 'Delcatty', ndex = 301, type1 = 'normale', type2 = 'normale'}
t[301] = t.delcatty
t.sableye = {name = 'Sableye', ndex = 302, type1 = 'buio', type2 = 'spettro'}
t[302] = t.sableye
t.mawile = {name = 'Mawile', ndex = 303, type1 = 'acciaio', type2 = {[3] = 'acciaio', [6] = 'folletto'}}
t[303] = t.mawile
t.aron = {name = 'Aron', ndex = 304, type1 = 'acciaio', type2 = 'roccia'}
t[304] = t.aron
t.lairon = {name = 'Lairon', ndex = 305, type1 = 'acciaio', type2 = 'roccia'}
t[305] = t.lairon
t.aggron = {name = 'Aggron', ndex = 306, type1 = 'acciaio', type2 = 'roccia'}
t[306] = t.aggron
t.meditite = {name = 'Meditite', ndex = 307, type1 = 'lotta', type2 = 'psico'}
t[307] = t.meditite
t.medicham = {name = 'Medicham', ndex = 308, type1 = 'lotta', type2 = 'psico'}
t[308] = t.medicham
t.electrike = {name = 'Electrike', ndex = 309, type1 = 'elettro', type2 = 'elettro'}
t[309] = t.electrike
t.manectric = {name = 'Manectric', ndex = 310, type1 = 'elettro', type2 = 'elettro'}
t[310] = t.manectric
t.plusle = {name = 'Plusle', ndex = 311, type1 = 'elettro', type2 = 'elettro'}
t[311] = t.plusle
t.minun = {name = 'Minun', ndex = 312, type1 = 'elettro', type2 = 'elettro'}
t[312] = t.minun
t.volbeat = {name = 'Volbeat', ndex = 313, type1 = 'coleottero', type2 = 'coleottero'}
t[313] = t.volbeat
t.illumise = {name = 'Illumise', ndex = 314, type1 = 'coleottero', type2 = 'coleottero'}
t[314] = t.illumise
t.roselia = {name = 'Roselia', ndex = 315, type1 = 'erba', type2 = 'veleno'}
t[315] = t.roselia
t.gulpin = {name = 'Gulpin', ndex = 316, type1 = 'veleno', type2 = 'veleno'}
t[316] = t.gulpin
t.swalot = {name = 'Swalot', ndex = 317, type1 = 'veleno', type2 = 'veleno'}
t[317] = t.swalot
t.carvanha = {name = 'Carvanha', ndex = 318, type1 = 'acqua', type2 = 'buio'}
t[318] = t.carvanha
t.sharpedo = {name = 'Sharpedo', ndex = 319, type1 = 'acqua', type2 = 'buio'}
t[319] = t.sharpedo
t.wailmer = {name = 'Wailmer', ndex = 320, type1 = 'acqua', type2 = 'acqua'}
t[320] = t.wailmer
t.wailord = {name = 'Wailord', ndex = 321, type1 = 'acqua', type2 = 'acqua'}
t[321] = t.wailord
t.numel = {name = 'Numel', ndex = 322, type1 = 'fuoco', type2 = 'terra'}
t[322] = t.numel
t.camerupt = {name = 'Camerupt', ndex = 323, type1 = 'fuoco', type2 = 'terra'}
t[323] = t.camerupt
t.torkoal = {name = 'Torkoal', ndex = 324, type1 = 'fuoco', type2 = 'fuoco'}
t[324] = t.torkoal
t.spoink = {name = 'Spoink', ndex = 325, type1 = 'psico', type2 = 'psico'}
t[325] = t.spoink
t.grumpig = {name = 'Grumpig', ndex = 326, type1 = 'psico', type2 = 'psico'}
t[326] = t.grumpig
t.spinda = {name = 'Spinda', ndex = 327, type1 = 'normale', type2 = 'normale'}
t[327] = t.spinda
t.trapinch = {name = 'Trapinch', ndex = 328, type1 = 'terra', type2 = 'terra'}
t[328] = t.trapinch
t.vibrava = {name = 'Vibrava', ndex = 329, type1 = 'terra', type2 = 'drago'}
t[329] = t.vibrava
t.flygon = {name = 'Flygon', ndex = 330, type1 = 'terra', type2 = 'drago'}
t[330] = t.flygon
t.cacnea = {name = 'Cacnea', ndex = 331, type1 = 'erba', type2 = 'erba'}
t[331] = t.cacnea
t.cacturne = {name = 'Cacturne', ndex = 332, type1 = 'erba', type2 = 'buio'}
t[332] = t.cacturne
t.swablu = {name = 'Swablu', ndex = 333, type1 = 'normale', type2 = 'volante'}
t[333] = t.swablu
t.altaria = {name = 'Altaria', ndex = 334, type1 = 'drago', type2 = 'volante'}
t[334] = t.altaria
t.zangoose = {name = 'Zangoose', ndex = 335, type1 = 'normale', type2 = 'normale'}
t[335] = t.zangoose
t.seviper = {name = 'Seviper', ndex = 336, type1 = 'veleno', type2 = 'veleno'}
t[336] = t.seviper
t.lunatone = {name = 'Lunatone', ndex = 337, type1 = 'roccia', type2 = 'psico'}
t[337] = t.lunatone
t.solrock = {name = 'Solrock', ndex = 338, type1 = 'roccia', type2 = 'psico'}
t[338] = t.solrock
t.barboach = {name = 'Barboach', ndex = 339, type1 = 'acqua', type2 = 'terra'}
t[339] = t.barboach
t.whiscash = {name = 'Whiscash', ndex = 340, type1 = 'acqua', type2 = 'terra'}
t[340] = t.whiscash
t.corphish = {name = 'Corphish', ndex = 341, type1 = 'acqua', type2 = 'acqua'}
t[341] = t.corphish
t.crawdaunt = {name = 'Crawdaunt', ndex = 342, type1 = 'acqua', type2 = 'buio'}
t[342] = t.crawdaunt
t.baltoy = {name = 'Baltoy', ndex = 343, type1 = 'terra', type2 = 'psico'}
t[343] = t.baltoy
t.claydol = {name = 'Claydol', ndex = 344, type1 = 'terra', type2 = 'psico'}
t[344] = t.claydol
t.lileep = {name = 'Lileep', ndex = 345, type1 = 'roccia', type2 = 'erba'}
t[345] = t.lileep
t.cradily = {name = 'Cradily', ndex = 346, type1 = 'roccia', type2 = 'erba'}
t[346] = t.cradily
t.anorith = {name = 'Anorith', ndex = 347, type1 = 'roccia', type2 = 'coleot'}
t[347] = t.anorith
t.armaldo = {name = 'Armaldo', ndex = 348, type1 = 'roccia', type2 = 'coleot'}
t[348] = t.armaldo
t.feebas = {name = 'Feebas', ndex = 349, type1 = 'acqua', type2 = 'acqua'}
t[349] = t.feebas
t.milotic = {name = 'Milotic', ndex = 350, type1 = 'acqua', type2 = 'acqua'}
t[350] = t.milotic
t.castform = {name = 'Castform', ndex = 351, type1 = 'normale', type2 = 'normale'}
t[351] = t.castform
t.kecleon = {name = 'Kecleon', ndex = 352, type1 = 'normale', type2 = 'normale'}
t[352] = t.kecleon
t.shuppet = {name = 'Shuppet', ndex = 353, type1 = 'spettro', type2 = 'spettro'}
t[353] = t.shuppet
t.banette = {name = 'Banette', ndex = 354, type1 = 'spettro', type2 = 'spettro'}
t[354] = t.banette
t.duskull = {name = 'Duskull', ndex = 355, type1 = 'spettro', type2 = 'spettro'}
t[355] = t.duskull
t.dusclops = {name = 'Dusclops', ndex = 356, type1 = 'spettro', type2 = 'spettro'}
t[356] = t.dusclops
t.tropius = {name = 'Tropius', ndex = 357, type1 = 'erba', type2 = 'volante'}
t[357] = t.tropius
t.chimecho = {name = 'Chimecho', ndex = 358, type1 = 'psico', type2 = 'psico'}
t[358] = t.chimecho
t.absol = {name = 'Absol', ndex = 359, type1 = 'buio', type2 = 'buio'}
t[359] = t.absol
t.wynaut = {name = 'Wynaut', ndex = 360, type1 = 'psico', type2 = 'psico'}
t[360] = t.wynaut
t.snorunt = {name = 'Snorunt', ndex = 361, type1 = 'ghiaccio', type2 = 'ghiaccio'}
t[361] = t.snorunt
t.glalie = {name = 'Glalie', ndex = 362, type1 = 'ghiaccio', type2 = 'ghiaccio'}
t[362] = t.glalie
t.spheal = {name = 'Spheal', ndex = 363, type1 = 'ghiaccio', type2 = 'acqua'}
t[363] = t.spheal
t.sealeo = {name = 'Sealeo', ndex = 364, type1 = 'ghiaccio', type2 = 'acqua'}
t[364] = t.sealeo
t.walrein = {name = 'Walrein', ndex = 365, type1 = 'ghiaccio', type2 = 'acqua'}
t[365] = t.walrein
t.clamperl = {name = 'Clamperl', ndex = 366, type1 = 'acqua', type2 = 'acqua'}
t[366] = t.clamperl
t.huntail = {name = 'Huntail', ndex = 367, type1 = 'acqua', type2 = 'acqua'}
t[367] = t.huntail
t.gorebyss = {name = 'Gorebyss', ndex = 368, type1 = 'acqua', type2 = 'acqua'}
t[368] = t.gorebyss
t.relicanth = {name = 'Relicanth', ndex = 369, type1 = 'acqua', type2 = 'roccia'}
t[369] = t.relicanth
t.luvdisc = {name = 'Luvdisc', ndex = 370, type1 = 'acqua', type2 = 'acqua'}
t[370] = t.luvdisc
t.bagon = {name = 'Bagon', ndex = 371, type1 = 'drago', type2 = 'drago'}
t[371] = t.bagon
t.shelgon = {name = 'Shelgon', ndex = 372, type1 = 'drago', type2 = 'drago'}
t[372] = t.shelgon
t.salamence = {name = 'Salamence', ndex = 373, type1 = 'drago', type2 = 'volante'}
t[373] = t.salamence
t.beldum = {name = 'Beldum', ndex = 374, type1 = 'acciaio', type2 = 'psico'}
t[374] = t.beldum
t.metang = {name = 'Metang', ndex = 375, type1 = 'acciaio', type2 = 'psico'}
t[375] = t.metang
t.metagross = {name = 'Metagross', ndex = 376, type1 = 'acciaio', type2 = 'psico'}
t[376] = t.metagross
t.regirock = {name = 'Regirock', ndex = 377, type1 = 'roccia', type2 = 'roccia'}
t[377] = t.regirock
t.regice = {name = 'Regice', ndex = 378, type1 = 'ghiaccio', type2 = 'ghiaccio'}
t[378] = t.regice
t.registeel = {name = 'Registeel', ndex = 379, type1 = 'acciaio', type2 = 'acciaio'}
t[379] = t.registeel
t.latias = {name = 'Latias', ndex = 380, type1 = 'drago', type2 = 'psico'}
t[380] = t.latias
t.latios = {name = 'Latios', ndex = 381, type1 = 'drago', type2 = 'psico'}
t[381] = t.latios
t.kyogre = {name = 'Kyogre', ndex = 382, type1 = 'acqua', type2 = 'acqua'}
t[382] = t.kyogre
t.groudon = {name = 'Groudon', ndex = 383, type1 = 'terra', type2 = 'terra'}
t[383] = t.groudon
t.rayquaza = {name = 'Rayquaza', ndex = 384, type1 = 'drago', type2 = 'volante'}
t[384] = t.rayquaza
t.jirachi = {name = 'Jirachi', ndex = 385, type1 = 'acciaio', type2 = 'psico'}
t[385] = t.jirachi
t.deoxys = {name = 'Deoxys', ndex = 386, type1 = 'psico', type2 = 'psico'}
t[386] = t.deoxys
t.turtwig = {name = 'Turtwig', ndex = 387, type1 = 'erba', type2 = 'erba'}
t[387] = t.turtwig
t.grotle = {name = 'Grotle', ndex = 388, type1 = 'erba', type2 = 'erba'}
t[388] = t.grotle
t.torterra = {name = 'Torterra', ndex = 389, type1 = 'erba', type2 = 'terra'}
t[389] = t.torterra
t.chimchar = {name = 'Chimchar', ndex = 390, type1 = 'fuoco', type2 = 'fuoco'}
t[390] = t.chimchar
t.monferno = {name = 'Monferno', ndex = 391, type1 = 'fuoco', type2 = 'lotta'}
t[391] = t.monferno
t.infernape = {name = 'Infernape', ndex = 392, type1 = 'fuoco', type2 = 'lotta'}
t[392] = t.infernape
t.piplup = {name = 'Piplup', ndex = 393, type1 = 'acqua', type2 = 'acqua'}
t[393] = t.piplup
t.prinplup = {name = 'Prinplup', ndex = 394, type1 = 'acqua', type2 = 'acqua'}
t[394] = t.prinplup
t.empoleon = {name = 'Empoleon', ndex = 395, type1 = 'acqua', type2 = 'acciaio'}
t[395] = t.empoleon
t.starly = {name = 'Starly', ndex = 396, type1 = 'normale', type2 = 'volante'}
t[396] = t.starly
t.staravia = {name = 'Staravia', ndex = 397, type1 = 'normale', type2 = 'volante'}
t[397] = t.staravia
t.staraptor = {name = 'Staraptor', ndex = 398, type1 = 'normale', type2 = 'volante'}
t[398] = t.staraptor
t.bidoof = {name = 'Bidoof', ndex = 399, type1 = 'normale', type2 = 'normale'}
t[399] = t.bidoof
t.bibarel = {name = 'Bibarel', ndex = 400, type1 = 'normale', type2 = 'acqua'}
t[400] = t.bibarel
t.kricketot = {name = 'Kricketot', ndex = 401, type1 = 'coleottero', type2 = 'coleottero'}
t[401] = t.kricketot
t.kricketune = {name = 'Kricketune', ndex = 402, type1 = 'coleottero', type2 = 'coleottero'}
t[402] = t.kricketune
t.shinx = {name = 'Shinx', ndex = 403, type1 = 'elettro', type2 = 'elettro'}
t[403] = t.shinx
t.luxio = {name = 'Luxio', ndex = 404, type1 = 'elettro', type2 = 'elettro'}
t[404] = t.luxio
t.luxray = {name = 'Luxray', ndex = 405, type1 = 'elettro', type2 = 'elettro'}
t[405] = t.luxray
t.budew = {name = 'Budew', ndex = 406, type1 = 'erba', type2 = 'veleno'}
t[406] = t.budew
t.roserade = {name = 'Roserade', ndex = 407, type1 = 'erba', type2 = 'veleno'}
t[407] = t.roserade
t.cranidos = {name = 'Cranidos', ndex = 408, type1 = 'roccia', type2 = 'roccia'}
t[408] = t.cranidos
t.rampardos = {name = 'Rampardos', ndex = 409, type1 = 'roccia', type2 = 'roccia'}
t[409] = t.rampardos
t.shieldon = {name = 'Shieldon', ndex = 410, type1 = 'roccia', type2 = 'acciaio'}
t[410] = t.shieldon
t.bastiodon = {name = 'Bastiodon', ndex = 411, type1 = 'roccia', type2 = 'acciaio'}
t[411] = t.bastiodon
t.burmy = {name = 'Burmy', ndex = 412, type1 = 'coleottero', type2 = 'coleottero'}
t[412] = t.burmy
t.wormadam = {name = 'Wormadam', ndex = 413, type1 = 'coleot', type2 = 'erba'}
t[413] = t.wormadam
t.mothim = {name = 'Mothim', ndex = 414, type1 = 'coleot', type2 = 'volante'}
t[414] = t.mothim
t.combee = {name = 'Combee', ndex = 415, type1 = 'coleot', type2 = 'volante'}
t[415] = t.combee
t.vespiquen = {name = 'Vespiquen', ndex = 416, type1 = 'coleot', type2 = 'volante'}
t[416] = t.vespiquen
t.pachirisu = {name = 'Pachirisu', ndex = 417, type1 = 'elettro', type2 = 'elettro'}
t[417] = t.pachirisu
t.buizel = {name = 'Buizel', ndex = 418, type1 = 'acqua', type2 = 'acqua'}
t[418] = t.buizel
t.floatzel = {name = 'Floatzel', ndex = 419, type1 = 'acqua', type2 = 'acqua'}
t[419] = t.floatzel
t.cherubi = {name = 'Cherubi', ndex = 420, type1 = 'erba', type2 = 'erba'}
t[420] = t.cherubi
t.cherrim = {name = 'Cherrim', ndex = 421, type1 = 'erba', type2 = 'erba'}
t[421] = t.cherrim
t.shellos = {name = 'Shellos', ndex = 422, type1 = 'acqua', type2 = 'acqua'}
t[422] = t.shellos
t.gastrodon = {name = 'Gastrodon', ndex = 423, type1 = 'acqua', type2 = 'terra'}
t[423] = t.gastrodon
t.ambipom = {name = 'Ambipom', ndex = 424, type1 = 'normale', type2 = 'normale'}
t[424] = t.ambipom
t.drifloon = {name = 'Drifloon', ndex = 425, type1 = 'spettro', type2 = 'volante'}
t[425] = t.drifloon
t.drifblim = {name = 'Drifblim', ndex = 426, type1 = 'spettro', type2 = 'volante'}
t[426] = t.drifblim
t.buneary = {name = 'Buneary', ndex = 427, type1 = 'normale', type2 = 'normale'}
t[427] = t.buneary
t.lopunny = {name = 'Lopunny', ndex = 428, type1 = 'normale', type2 = 'normale'}
t[428] = t.lopunny
t.mismagius = {name = 'Mismagius', ndex = 429, type1 = 'spettro', type2 = 'spettro'}
t[429] = t.mismagius
t.honchkrow = {name = 'Honchkrow', ndex = 430, type1 = 'buio', type2 = 'volante'}
t[430] = t.honchkrow
t.glameow = {name = 'Glameow', ndex = 431, type1 = 'normale', type2 = 'normale'}
t[431] = t.glameow
t.purugly = {name = 'Purugly', ndex = 432, type1 = 'normale', type2 = 'normale'}
t[432] = t.purugly
t.chingling = {name = 'Chingling', ndex = 433, type1 = 'psico', type2 = 'psico'}
t[433] = t.chingling
t.stunky = {name = 'Stunky', ndex = 434, type1 = 'veleno', type2 = 'buio'}
t[434] = t.stunky
t.skuntank = {name = 'Skuntank', ndex = 435, type1 = 'veleno', type2 = 'buio'}
t[435] = t.skuntank
t.bronzor = {name = 'Bronzor', ndex = 436, type1 = 'acciaio', type2 = 'psico'}
t[436] = t.bronzor
t.bronzong = {name = 'Bronzong', ndex = 437, type1 = 'acciaio', type2 = 'psico'}
t[437] = t.bronzong
t.bonsly = {name = 'Bonsly', ndex = 438, type1 = 'roccia', type2 = 'roccia'}
t[438] = t.bonsly
t['mime jr.'] = {name = 'Mime Jr.', ndex = 439, type1 = 'psico', type2 = {[4] = 'psico', [6] = 'folletto'}}
t[439] = t['mime jr.']
t.happiny = {name = 'Happiny', ndex = 440, type1 = 'normale', type2 = 'normale'}
t[440] = t.happiny
t.chatot = {name = 'Chatot', ndex = 441, type1 = 'normale', type2 = 'volante'}
t[441] = t.chatot
t.spiritomb = {name = 'Spiritomb', ndex = 442, type1 = 'spettro', type2 = 'buio'}
t[442] = t.spiritomb
t.gible = {name = 'Gible', ndex = 443, type1 = 'drago', type2 = 'terra'}
t[443] = t.gible
t.gabite = {name = 'Gabite', ndex = 444, type1 = 'drago', type2 = 'terra'}
t[444] = t.gabite
t.garchomp = {name = 'Garchomp', ndex = 445, type1 = 'drago', type2 = 'terra'}
t[445] = t.garchomp
t.munchlax = {name = 'Munchlax', ndex = 446, type1 = 'normale', type2 = 'normale'}
t[446] = t.munchlax
t.riolu = {name = 'Riolu', ndex = 447, type1 = 'lotta', type2 = 'lotta'}
t[447] = t.riolu
t.lucario = {name = 'Lucario', ndex = 448, type1 = 'lotta', type2 = 'acciaio'}
t[448] = t.lucario
t.hippopotas = {name = 'Hippopotas', ndex = 449, type1 = 'terra', type2 = 'terra'}
t[449] = t.hippopotas
t.hippowdon = {name = 'Hippowdon', ndex = 450, type1 = 'terra', type2 = 'terra'}
t[450] = t.hippowdon
t.skorupi = {name = 'Skorupi', ndex = 451, type1 = 'veleno', type2 = 'coleot'}
t[451] = t.skorupi
t.drapion = {name = 'Drapion', ndex = 452, type1 = 'veleno', type2 = 'buio'}
t[452] = t.drapion
t.croagunk = {name = 'Croagunk', ndex = 453, type1 = 'veleno', type2 = 'lotta'}
t[453] = t.croagunk
t.toxicroak = {name = 'Toxicroak', ndex = 454, type1 = 'veleno', type2 = 'lotta'}
t[454] = t.toxicroak
t.carnivine = {name = 'Carnivine', ndex = 455, type1 = 'erba', type2 = 'erba'}
t[455] = t.carnivine
t.finneon = {name = 'Finneon', ndex = 456, type1 = 'acqua', type2 = 'acqua'}
t[456] = t.finneon
t.lumineon = {name = 'Lumineon', ndex = 457, type1 = 'acqua', type2 = 'acqua'}
t[457] = t.lumineon
t.mantyke = {name = 'Mantyke', ndex = 458, type1 = 'acqua', type2 = 'volante'}
t[458] = t.mantyke
t.snover = {name = 'Snover', ndex = 459, type1 = 'erba', type2 = 'ghiaccio'}
t[459] = t.snover
t.abomasnow = {name = 'Abomasnow', ndex = 460, type1 = 'erba', type2 = 'ghiaccio'}
t[460] = t.abomasnow
t.weavile = {name = 'Weavile', ndex = 461, type1 = 'buio', type2 = 'ghiaccio'}
t[461] = t.weavile
t.magnezone = {name = 'Magnezone', ndex = 462, type1 = 'elettro', type2 = 'acciaio'}
t[462] = t.magnezone
t.lickilicky = {name = 'Lickilicky', ndex = 463, type1 = 'normale', type2 = 'normale'}
t[463] = t.lickilicky
t.rhyperior = {name = 'Rhyperior', ndex = 464, type1 = 'terra', type2 = 'roccia'}
t[464] = t.rhyperior
t.tangrowth = {name = 'Tangrowth', ndex = 465, type1 = 'erba', type2 = 'erba'}
t[465] = t.tangrowth
t.electivire = {name = 'Electivire', ndex = 466, type1 = 'elettro', type2 = 'elettro'}
t[466] = t.electivire
t.magmortar = {name = 'Magmortar', ndex = 467, type1 = 'fuoco', type2 = 'fuoco'}
t[467] = t.magmortar
t.togekiss = {name = 'Togekiss', ndex = 468, type1 = {[4] = 'normale', [6] = 'folletto'}, type2 = 'volante'}
t[468] = t.togekiss
t.yanmega = {name = 'Yanmega', ndex = 469, type1 = 'coleot', type2 = 'volante'}
t[469] = t.yanmega
t.leafeon = {name = 'Leafeon', ndex = 470, type1 = 'erba', type2 = 'erba'}
t[470] = t.leafeon
t.glaceon = {name = 'Glaceon', ndex = 471, type1 = 'ghiaccio', type2 = 'ghiaccio'}
t[471] = t.glaceon
t.gliscor = {name = 'Gliscor', ndex = 472, type1 = 'terra', type2 = 'volante'}
t[472] = t.gliscor
t.mamoswine = {name = 'Mamoswine', ndex = 473, type1 = 'ghiaccio', type2 = 'terra'}
t[473] = t.mamoswine
t['porygon-z'] = {name = 'Porygon-Z', ndex = 474, type1 = 'normale', type2 = 'normale'}
t[474] = t['porygon-z']
t.gallade = {name = 'Gallade', ndex = 475, type1 = 'psico', type2 = 'lotta'}
t[475] = t.gallade
t.probopass = {name = 'Probopass', ndex = 476, type1 = 'roccia', type2 = 'acciaio'}
t[476] = t.probopass
t.dusknoir = {name = 'Dusknoir', ndex = 477, type1 = 'spettro', type2 = 'spettro'}
t[477] = t.dusknoir
t.froslass = {name = 'Froslass', ndex = 478, type1 = 'ghiaccio', type2 = 'spettro'}
t[478] = t.froslass
t.rotom = {name = 'Rotom', ndex = 479, type1 = 'elettro', type2 = 'spettro'}
t[479] = t.rotom
t.uxie = {name = 'Uxie', ndex = 480, type1 = 'psico', type2 = 'psico'}
t[480] = t.uxie
t.mesprit = {name = 'Mesprit', ndex = 481, type1 = 'psico', type2 = 'psico'}
t[481] = t.mesprit
t.azelf = {name = 'Azelf', ndex = 482, type1 = 'psico', type2 = 'psico'}
t[482] = t.azelf
t.dialga = {name = 'Dialga', ndex = 483, type1 = 'acciaio', type2 = 'drago'}
t[483] = t.dialga
t.palkia = {name = 'Palkia', ndex = 484, type1 = 'acqua', type2 = 'drago'}
t[484] = t.palkia
t.heatran = {name = 'Heatran', ndex = 485, type1 = 'fuoco', type2 = 'acciaio'}
t[485] = t.heatran
t.regigigas = {name = 'Regigigas', ndex = 486, type1 = 'normale', type2 = 'normale'}
t[486] = t.regigigas
t.giratina = {name = 'Giratina', ndex = 487, type1 = 'spettro', type2 = 'drago'}
t[487] = t.giratina
t.cresselia = {name = 'Cresselia', ndex = 488, type1 = 'psico', type2 = 'psico'}
t[488] = t.cresselia
t.phione = {name = 'Phione', ndex = 489, type1 = 'acqua', type2 = 'acqua'}
t[489] = t.phione
t.manaphy = {name = 'Manaphy', ndex = 490, type1 = 'acqua', type2 = 'acqua'}
t[490] = t.manaphy
t.darkrai = {name = 'Darkrai', ndex = 491, type1 = 'buio', type2 = 'buio'}
t[491] = t.darkrai
t.shaymin = {name = 'Shaymin', ndex = 492, type1 = 'erba', type2 = 'erba'}
t[492] = t.shaymin
t.arceus = {name = 'Arceus', ndex = 493, type1 = 'normale', type2 = 'normale'}
t[493] = t.arceus
t.victini = {name = 'Victini', ndex = 494, type1 = 'psico', type2 = 'fuoco'}
t[494] = t.victini
t.snivy = {name = 'Snivy', ndex = 495, type1 = 'erba', type2 = 'erba'}
t[495] = t.snivy
t.servine = {name = 'Servine', ndex = 496, type1 = 'erba', type2 = 'erba'}
t[496] = t.servine
t.serperior = {name = 'Serperior', ndex = 497, type1 = 'erba', type2 = 'erba'}