-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.py
More file actions
2961 lines (2956 loc) · 41.3 KB
/
Copy pathstrings.py
File metadata and controls
2961 lines (2956 loc) · 41.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
item: list[str] = [
"No Item",
"Poke Ball",
"Great Ball",
"Ultra Ball",
"Master Ball",
"Premier Ball",
"Heal Ball",
"Net Ball",
"Nest Ball",
"Dive Ball",
"Dusk Ball",
"Timer Ball",
"Quick Ball",
"Repeat Ball",
"Luxury Ball",
"Level Ball",
"Lure Ball",
"Moon Ball",
"Friend Ball",
"Love Ball",
"Fast Ball",
"Heavy Ball",
"Dream Ball",
"Safari Ball",
"Sport Ball",
"Park Ball",
"Beast Ball",
"Cherish Ball",
"Potion",
"Super Potion",
"Hyper Potion",
"Max Potion",
"Full Restore",
"Revive",
"Max Revive",
"Fresh Water",
"Soda Pop",
"Lemonade",
"Moomoo Milk",
"Energy Powder",
"Energy Root",
"Heal Powder",
"Revival Herb",
"Antidote",
"Paralyze Heal",
"Burn Heal",
"Ice Heal",
"Awakening",
"Full Heal",
"Ether",
"Max Ether",
"Elixir",
"Max Elixir",
"Berry Juice",
"Sacred Ash",
"Sweet Heart",
"Max Honey",
"Pewter Crunchies",
"Rage Candy Bar",
"Lava Cookie",
"Old Gateau",
"Casteliacone",
"Lumiose Galette",
"Shalour Sable",
"Big Malasada",
"Hp Up",
"Protein",
"Iron",
"Calcium",
"Zinc",
"Carbos",
"Pp Up",
"Pp Max",
"Health Wing",
"Muscle Wing",
"Resist Wing",
"Genius Wing",
"Clever Wing",
"Swift Wing",
"Ability Capsule",
"Ability Patch",
"Lonely Mint",
"Adamant Mint",
"Naughty Mint",
"Brave Mint",
"Bold Mint",
"Impish Mint",
"Lax Mint",
"Relaxed Mint",
"Modest Mint",
"Mild Mint",
"Rash Mint",
"Quiet Mint",
"Calm Mint",
"Gentle Mint",
"Careful Mint",
"Sassy Mint",
"Timid Mint",
"Hasty Mint",
"Jolly Mint",
"Naive Mint",
"Serious Mint",
"Rare Candy",
"Exp Candy Xs",
"Exp Candy S",
"Exp Candy M",
"Exp Candy L",
"Exp Candy Xl",
"Dynamax Candy",
"Blue Flute",
"Yellow Flute",
"Red Flute",
"Black Flute",
"White Flute",
"Repel",
"Super Repel",
"Max Repel",
"Lure",
"Super Lure",
"Max Lure",
"Escape Rope",
"X Attack",
"X Defense",
"X Sp Atk",
"X Sp Def",
"X Speed",
"X Accuracy",
"Dire Hit",
"Guard Spec",
"Poke Doll",
"Fluffy Tail",
"Poke Toy",
"Max Mushrooms",
"Bottle Cap",
"Gold Bottle Cap",
"Nugget",
"Big Nugget",
"Tiny Mushroom",
"Big Mushroom",
"Balm Mushroom",
"Pearl",
"Big Pearl",
"Pearl String",
"Stardust",
"Star Piece",
"Comet Shard",
"Shoal Salt",
"Shoal Shell",
"Red Shard",
"Blue Shard",
"Yellow Shard",
"Green Shard",
"Heart Scale",
"Honey",
"Rare Bone",
"Odd Keystone",
"Pretty Feather",
"Relic Copper",
"Relic Silver",
"Relic Gold",
"Relic Vase",
"Relic Band",
"Relic Statue",
"Relic Crown",
"Strange Souvenir",
"Helix Fossil",
"Dome Fossil",
"Old Amber",
"Root Fossil",
"Claw Fossil",
"Armor Fossil",
"Skull Fossil",
"Cover Fossil",
"Plume Fossil",
"Jaw Fossil",
"Sail Fossil",
"Fossilized Bird",
"Fossilized Fish",
"Fossilized Drake",
"Fossilized Dino",
"Growth Mulch",
"Damp Mulch",
"Stable Mulch",
"Gooey Mulch",
"Rich Mulch",
"Surprise Mulch",
"Boost Mulch",
"Amaze Mulch",
"Red Apricorn",
"Blue Apricorn",
"Yellow Apricorn",
"Green Apricorn",
"Pink Apricorn",
"White Apricorn",
"Black Apricorn",
"Wishing Piece",
"Galarica Twig",
"Armorite Ore",
"Dynite Ore",
"Orange Mail",
"Harbor Mail",
"Glitter Mail",
"Mech Mail",
"Wood Mail",
"Wave Mail",
"Bead Mail",
"Shadow Mail",
"Tropic Mail",
"Dream Mail",
"Fab Mail",
"Retro Mail",
"Fire Stone",
"Water Stone",
"Thunder Stone",
"Leaf Stone",
"Ice Stone",
"Sun Stone",
"Moon Stone",
"Shiny Stone",
"Dusk Stone",
"Dawn Stone",
"Sweet Apple",
"Tart Apple",
"Cracked Pot",
"Chipped Pot",
"Galarica Cuff",
"Galarica Wreath",
"Dragon Scale",
"Up Grade",
"Protector",
"Electirizer",
"Magmarizer",
"Dubious Disc",
"Reaper Cloth",
"Prism Scale",
"Whipped Dream",
"Sachet",
"Oval Stone",
"Strawberry Sweet",
"Love Sweet",
"Berry Sweet",
"Clover Sweet",
"Flower Sweet",
"Star Sweet",
"Ribbon Sweet",
"Everstone",
"Red Nectar",
"Yellow Nectar",
"Pink Nectar",
"Purple Nectar",
"Flame Plate",
"Splash Plate",
"Zap Plate",
"Meadow Plate",
"Icicle Plate",
"Fist Plate",
"Toxic Plate",
"Earth Plate",
"Sky Plate",
"Mind Plate",
"Insect Plate",
"Stone Plate",
"Spooky Plate",
"Draco Plate",
"Dread Plate",
"Iron Plate",
"Pixie Plate",
"Douse Drive",
"Shock Drive",
"Burn Drive",
"Chill Drive",
"Fire Memory",
"Water Memory",
"Electric Memory",
"Grass Memory",
"Ice Memory",
"Fighting Memory",
"Poison Memory",
"Ground Memory",
"Flying Memory",
"Psychic Memory",
"Bug Memory",
"Rock Memory",
"Ghost Memory",
"Dragon Memory",
"Dark Memory",
"Steel Memory",
"Fairy Memory",
"Rusted Sword",
"Rusted Shield",
"Red Orb",
"Blue Orb",
"Venusaurite",
"Charizardite X",
"Charizardite Y",
"Blastoisinite",
"Beedrillite",
"Pidgeotite",
"Alakazite",
"Slowbronite",
"Gengarite",
"Kangaskhanite",
"Pinsirite",
"Gyaradosite",
"Aerodactylite",
"Mewtwonite X",
"Mewtwonite Y",
"Ampharosite",
"Steelixite",
"Scizorite",
"Heracronite",
"Houndoominite",
"Tyranitarite",
"Sceptilite",
"Blazikenite",
"Swampertite",
"Gardevoirite",
"Sablenite",
"Mawilite",
"Aggronite",
"Medichamite",
"Manectite",
"Sharpedonite",
"Cameruptite",
"Altarianite",
"Banettite",
"Absolite",
"Glalitite",
"Salamencite",
"Metagrossite",
"Latiasite",
"Latiosite",
"Lopunnite",
"Garchompite",
"Lucarionite",
"Abomasite",
"Galladite",
"Audinite",
"Diancite",
"Normal Gem",
"Fire Gem",
"Water Gem",
"Electric Gem",
"Grass Gem",
"Ice Gem",
"Fighting Gem",
"Poison Gem",
"Ground Gem",
"Flying Gem",
"Psychic Gem",
"Bug Gem",
"Rock Gem",
"Ghost Gem",
"Dragon Gem",
"Dark Gem",
"Steel Gem",
"Fairy Gem",
"Normalium Z",
"Firium Z",
"Waterium Z",
"Electrium Z",
"Grassium Z",
"Icium Z",
"Fightinium Z",
"Poisonium Z",
"Groundium Z",
"Flyinium Z",
"Psychium Z",
"Buginium Z",
"Rockium Z",
"Ghostium Z",
"Dragonium Z",
"Darkinium Z",
"Steelium Z",
"Fairium Z",
"Pikanium Z",
"Eevium Z",
"Snorlium Z",
"Mewnium Z",
"Decidium Z",
"Incinium Z",
"Primarium Z",
"Lycanium Z",
"Mimikium Z",
"Kommonium Z",
"Tapunium Z",
"Solganium Z",
"Lunalium Z",
"Marshadium Z",
"Aloraichium Z",
"Pikashunium Z",
"Ultranecrozium Z",
"Light Ball",
"Stick",
"Thick Club",
"Lucky Punch",
"Metal Powder",
"Quick Powder",
"Deep Sea Scale",
"Deep Sea Tooth",
"Soul Dew",
"Adamant Orb",
"Lustrous Orb",
"Griseous Orb",
"Sea Incense",
"Lax Incense",
"Odd Incense",
"Rock Incense",
"Full Incense",
"Wave Incense",
"Rose Incense",
"Luck Incense",
"Pure Incense",
"Red Scarf",
"Blue Scarf",
"Pink Scarf",
"Green Scarf",
"Yellow Scarf",
"Macho Brace",
"Power Weight",
"Power Bracer",
"Power Belt",
"Power Lens",
"Power Band",
"Power Anklet",
"Silk Scarf",
"Charcoal",
"Mystic Water",
"Magnet",
"Miracle Seed",
"Never Melt Ice",
"Black Belt",
"Poison Barb",
"Soft Sand",
"Sharp Beak",
"Twisted Spoon",
"Silver Powder",
"Hard Stone",
"Spell Tag",
"Dragon Fang",
"Black Glasses",
"Metal Coat",
"Choice Band",
"Choice Specs",
"Choice Scarf",
"Flame Orb",
"Toxic Orb",
"Damp Rock",
"Heat Rock",
"Smooth Rock",
"Icy Rock",
"Electric Seed",
"Psychic Seed",
"Misty Seed",
"Grassy Seed",
"Absorb Bulb",
"Cell Battery",
"Luminous Moss",
"Snowball",
"Bright Powder",
"White Herb",
"Exp Share",
"Quick Claw",
"Soothe Bell",
"Mental Herb",
"Kings Rock",
"Amulet Coin",
"Cleanse Tag",
"Smoke Ball",
"Focus Band",
"Lucky Egg",
"Scope Lens",
"Leftovers",
"Shell Bell",
"Wide Lens",
"Muscle Band",
"Wise Glasses",
"Expert Belt",
"Light Clay",
"Life Orb",
"Power Herb",
"Focus Sash",
"Zoom Lens",
"Metronome",
"Iron Ball",
"Lagging Tail",
"Destiny Knot",
"Black Sludge",
"Grip Claw",
"Sticky Barb",
"Shed Shell",
"Big Root",
"Razor Claw",
"Razor Fang",
"Eviolite",
"Float Stone",
"Rocky Helmet",
"Air Balloon",
"Red Card",
"Ring Target",
"Binding Band",
"Eject Button",
"Weakness Policy",
"Assault Vest",
"Safety Goggles",
"Adrenaline Orb",
"Terrain Extender",
"Protective Pads",
"Throat Spray",
"Eject Pack",
"Heavy Duty Boots",
"Blunder Policy",
"Room Service",
"Utility Umbrella",
"Cheri Berry",
"Chesto Berry",
"Pecha Berry",
"Rawst Berry",
"Aspear Berry",
"Leppa Berry",
"Oran Berry",
"Persim Berry",
"Lum Berry",
"Sitrus Berry",
"Figy Berry",
"Wiki Berry",
"Mago Berry",
"Aguav Berry",
"Iapapa Berry",
"Razz Berry",
"Bluk Berry",
"Nanab Berry",
"Wepear Berry",
"Pinap Berry",
"Pomeg Berry",
"Kelpsy Berry",
"Qualot Berry",
"Hondew Berry",
"Grepa Berry",
"Tamato Berry",
"Cornn Berry",
"Magost Berry",
"Rabuta Berry",
"Nomel Berry",
"Spelon Berry",
"Pamtre Berry",
"Watmel Berry",
"Durin Berry",
"Belue Berry",
"Chilan Berry",
"Occa Berry",
"Passho Berry",
"Wacan Berry",
"Rindo Berry",
"Yache Berry",
"Chople Berry",
"Kebia Berry",
"Shuca Berry",
"Coba Berry",
"Payapa Berry",
"Tanga Berry",
"Charti Berry",
"Kasib Berry",
"Haban Berry",
"Colbur Berry",
"Babiri Berry",
"Roseli Berry",
"Liechi Berry",
"Ganlon Berry",
"Salac Berry",
"Petaya Berry",
"Apicot Berry",
"Lansat Berry",
"Starf Berry",
"Enigma Berry",
"Micle Berry",
"Custap Berry",
"Jaboca Berry",
"Rowap Berry",
"Kee Berry",
"Maranga Berry",
"Enigma Berry E Reader",
"Tm01",
"Tm02",
"Tm03",
"Tm04",
"Tm05",
"Tm06",
"Tm07",
"Tm08",
"Tm09",
"Tm10",
"Tm11",
"Tm12",
"Tm13",
"Tm14",
"Tm15",
"Tm16",
"Tm17",
"Tm18",
"Tm19",
"Tm20",
"Tm21",
"Tm22",
"Tm23",
"Tm24",
"Tm25",
"Tm26",
"Tm27",
"Tm28",
"Tm29",
"Tm30",
"Tm31",
"Tm32",
"Tm33",
"Tm34",
"Tm35",
"Tm36",
"Tm37",
"Tm38",
"Tm39",
"Tm40",
"Tm41",
"Tm42",
"Tm43",
"Tm44",
"Tm45",
"Tm46",
"Tm47",
"Tm48",
"Tm49",
"Tm50",
"Tm51",
"Tm52",
"Tm53",
"Tm54",
"Tm55",
"Tm56",
"Tm57",
"Tm58",
"Tm59",
"Tm60",
"Tm61",
"Tm62",
"Tm63",
"Tm64",
"Tm65",
"Tm66",
"Tm67",
"Tm68",
"Tm69",
"Tm70",
"Tm71",
"Tm72",
"Tm73",
"Tm74",
"Tm75",
"Tm76",
"Tm77",
"Tm78",
"Tm79",
"Tm80",
"Tm81",
"Tm82",
"Tm83",
"Tm84",
"Tm85",
"Tm86",
"Tm87",
"Tm88",
"Tm89",
"Tm90",
"Tm91",
"Tm92",
"Tm93",
"Tm94",
"Tm95",
"Tm96",
"Tm97",
"Tm98",
"Tm99",
"Tm100",
"Hm01",
"Hm02",
"Hm03",
"Hm04",
"Hm05",
"Hm06",
"Hm07",
"Hm08",
"Oval Charm",
"Shiny Charm",
"Catching Charm",
"Exp Charm",
"Rotom Catalog",
"Gracidea",
"Reveal Glass",
"Dna Splicers",
"Zygarde Cube",
"Prison Bottle",
"N Solarizer",
"N Lunarizer",
"Reins Of Unity",
"Mega Ring",
"Z Power Ring",
"Dynamax Band",
"Bicycle",
"Mach Bike",
"Acro Bike",
"Old Rod",
"Good Rod",
"Super Rod",
"Itemfinder",
"Town Map",
"Vs Seeker",
"Tm Case",
"Berry Pouch",
"Pokemon Box",
"Coin Case",
"Powder Jar",
"Wailmer Pail",
"Poke Radar",
"Pokeblock Case",
"Soot Sack",
"Poke Flute",
"Fame Checker",
"Teachy Tv",
"Ss Ticket",
"Eon Ticket",
"Mystic Ticket",
"Aurora Ticket",
"Old Sea Map",
"Letter",
"Devon Goods",
"Go Goggles",
"Devon Scope",
"Basement Key",
"Scanner",
"Storage Key",
"Rm 1 Key",
"Rm 2 Key",
"Rm 4 Key",
"Rm 6 Key",
"Meteorite",
"Magma Emblem",
"Contest Pass",
"Oaks Parcel",
"Secret Key",
"Bike Voucher",
"Gold Teeth",
"Card Key",
"Lift Key",
"Silph Scope",
"Tri Pass",
"Rainbow Pass",
"Tea",
"Ruby",
"Sapphire",
"Ability Shield",
"Clear Amulet",
"Punching Glove",
"Covert Cloak",
"Loaded Dice",
"Auspicious Armor",
"Booster Energy",
"Big Bamboo Shoot",
"Gimmighoul Coin",
"Leaders Crest",
"Malicious Armor",
"Mirror Herb",
"Scroll Of Darkness",
"Scroll Of Waters",
"Tera Orb",
"Tiny Bamboo Shoot",
"Bug Tera Shard",
"Dark Tera Shard",
"Dragon Tera Shard",
"Electric Tera Shard",
"Fairy Tera Shard",
"Fighting Tera Shard",
"Fire Tera Shard",
"Flying Tera Shard",
"Ghost Tera Shard",
"Grass Tera Shard",
"Ground Tera Shard",
"Ice Tera Shard",
"Normal Tera Shard",
"Poison Tera Shard",
"Psychic Tera Shard",
"Rock Tera Shard",
"Steel Tera Shard",
"Water Tera Shard",
"Adamant Crystal",
"Griseous Core",
"Lustrous Globe",
"Black Augurite",
"Linking Cord",
"Peat Block",
"Berserk Gene",
"Fairy Feather",
"Syrupy Apple",
"Unremarkable Teacup",
"Masterpiece Teacup",
"Cornerstone Mask",
"Wellspring Mask",
"Hearthflame Mask",
"Health Mochi",
"Muscle Mochi",
"Resist Mochi",
"Genius Mochi",
"Clever Mochi",
"Swift Mochi",
"Fresh Start Mochi",
"Glimmering Charm",
"Metal Alloy",
"Stellar Tera Shard",
"Jubilife Muffin",
"Remedy",
"Fine Remedy",
"Superb Remedy",
"Aux Evasion",
"Aux Guard",
"Aux Power",
"Aux Powerguard",
"Choice Dumpling",
"Swap Snack",
"Twice Spiced Radish",
"Pokeshi Doll",
"Strange Ball",
"Clefablite",
"Victreebelite",
"Starminite",
"Dragoninite",
"Meganiumite",
"Feraligite",
"Skarmorite",
"Froslassite",
"Emboarite",
"Excadrite",
"Scolipite",
"Scraftinite",
"Eelektrossite",
"Chandelurite",
"Chesnaughtite",
"Delphoxite",
"Greninjite",
"Pyroarite",
"Floettite",
"Malamarite",
"Barbaracite",
"Dragalgite",
"Hawluchanite",
"Zygardite",
"Drampanite",
"Falinksite"
]
nature: list[str] = [
"Hardy",
"Lonely",
"Brave",
"Adamant",
"Naughty",
"Bold",
"Docile",
"Relaxed",
"Impish",
"Lax",
"Timid",
"Hasty",
"Serious",
"Jolly",
"Naive",
"Modest",
"Mild",
"Quiet",
"Bashful",
"Rash",
"Calm",
"Gentle",
"Sassy",
"Careful",
"Quirky"
]
ability: list[str] = [
"None",
"Stench",
"Drizzle",
"Speed Boost",
"Battle Armor",
"Sturdy",
"Damp",
"Limber",
"Sand Veil",
"Static",
"Volt Absorb",
"Water Absorb",
"Oblivious",
"Cloud Nine",
"Compound Eyes",
"Insomnia",
"Color Change",
"Immunity",
"Flash Fire",
"Shield Dust",
"Own Tempo",
"Suction Cups",
"Intimidate",
"Shadow Tag",
"Rough Skin",
"Wonder Guard",
"Levitate",
"Effect Spore",
"Synchronize",
"Clear Body",
"Natural Cure",
"Lightning Rod",
"Serene Grace",
"Swift Swim",
"Chlorophyll",
"Illuminate",
"Trace",
"Huge Power",
"Poison Point",
"Inner Focus",
"Magma Armor",
"Water Veil",
"Magnet Pull",
"Soundproof",
"Rain Dish",
"Sand Stream",
"Pressure",
"Thick Fat",
"Early Bird",
"Flame Body",
"Run Away",
"Keen Eye",
"Hyper Cutter",
"Pickup",
"Truant",
"Hustle",
"Cute Charm",
"Plus",
"Minus",
"Forecast",
"Sticky Hold",
"Shed Skin",
"Guts",
"Marvel Scale",
"Liquid Ooze",
"Overgrow",
"Blaze",
"Torrent",
"Swarm",
"Rock Head",
"Drought",
"Arena Trap",
"Vital Spirit",
"White Smoke",
"Pure Power",
"Shell Armor",
"Air Lock",
"Tangled Feet",
"Motor Drive",
"Rivalry",
"Steadfast",
"Snow Cloak",
"Gluttony",
"Anger Point",
"Unburden",
"Heatproof",
"Simple",
"Dry Skin",
"Download",
"Iron Fist",
"Poison Heal",
"Adaptability",
"Skill Link",
"Hydration",
"Solar Power",
"Quick Feet",
"Normalize",
"Sniper",
"Magic Guard",
"No Guard",
"Stall",
"Technician",
"Leaf Guard",
"Klutz",
"Mold Breaker",
"Super Luck",
"Aftermath",
"Anticipation",
"Forewarn",
"Unaware",
"Tinted Lens",
"Filter",
"Slow Start",