oakdex-pokedex 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,83 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "title": "Nature",
5
+ "definitions": {
6
+ "translations": {
7
+ "type": "object",
8
+ "properties": {
9
+ "cz": {
10
+ "type": "string"
11
+ },
12
+ "dk": {
13
+ "type": "string"
14
+ },
15
+ "fr": {
16
+ "type": "string"
17
+ },
18
+ "de": {
19
+ "type": "string"
20
+ },
21
+ "gr": {
22
+ "type": "string"
23
+ },
24
+ "it": {
25
+ "type": "string"
26
+ },
27
+ "pl": {
28
+ "type": "string"
29
+ },
30
+ "tr": {
31
+ "type": "string"
32
+ },
33
+ "en": {
34
+ "type": "string"
35
+ },
36
+ "jp": {
37
+ "type": "string"
38
+ },
39
+ "es": {
40
+ "type": "string"
41
+ }
42
+ },
43
+ "required": [
44
+ "en",
45
+ "de"
46
+ ],
47
+ "additionalProperties": false
48
+ },
49
+ "stat": {
50
+ "type": ["string", "null"],
51
+ "enum": ["atk", "def", "sp_atk", "sp_def", "speed", null]
52
+ },
53
+ "flavor": {
54
+ "type": ["string", "null"],
55
+ "enum": ["Dry", "Spicy", "Sweet", "Bitter", "Sour", null]
56
+ }
57
+ },
58
+ "properties": {
59
+ "names": {
60
+ "$ref": "#/definitions/translations"
61
+ },
62
+ "increased_stat": {
63
+ "$ref": "#/definitions/stat"
64
+ },
65
+ "decreased_stat": {
66
+ "$ref": "#/definitions/stat"
67
+ },
68
+ "favorite_flavor": {
69
+ "$ref": "#/definitions/flavor"
70
+ },
71
+ "disliked_flavor": {
72
+ "$ref": "#/definitions/flavor"
73
+ }
74
+ },
75
+ "required": [
76
+ "names",
77
+ "increased_stat",
78
+ "decreased_stat",
79
+ "favorite_flavor",
80
+ "disliked_flavor"
81
+ ],
82
+ "additionalProperties": false
83
+ }
@@ -0,0 +1,2584 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "title": "Pokemon",
5
+ "definitions": {
6
+ "pokemon": {
7
+ "type": ["string", "null"],
8
+ "enum": [
9
+ null,
10
+ "Abomasnow",
11
+ "Abra",
12
+ "Absol",
13
+ "Accelgor",
14
+ "Aegislash",
15
+ "Aerodactyl",
16
+ "Aggron",
17
+ "Aipom",
18
+ "Alakazam",
19
+ "Alomomola",
20
+ "Altaria",
21
+ "Amaura",
22
+ "Ambipom",
23
+ "Amoonguss",
24
+ "Ampharos",
25
+ "Anorith",
26
+ "Arbok",
27
+ "Arcanine",
28
+ "Arceus",
29
+ "Archen",
30
+ "Archeops",
31
+ "Ariados",
32
+ "Armaldo",
33
+ "Aromatisse",
34
+ "Aron",
35
+ "Articuno",
36
+ "Audino",
37
+ "Aurorus",
38
+ "Avalugg",
39
+ "Axew",
40
+ "Azelf",
41
+ "Azumarill",
42
+ "Azurill",
43
+ "Bagon",
44
+ "Baltoy",
45
+ "Banette",
46
+ "Barbaracle",
47
+ "Barboach",
48
+ "Basculin",
49
+ "Bastiodon",
50
+ "Bayleef",
51
+ "Beartic",
52
+ "Beautifly",
53
+ "Beedrill",
54
+ "Beheeyem",
55
+ "Beldum",
56
+ "Bellossom",
57
+ "Bellsprout",
58
+ "Bergmite",
59
+ "Bibarel",
60
+ "Bidoof",
61
+ "Binacle",
62
+ "Bisharp",
63
+ "Blacephalon",
64
+ "Blastoise",
65
+ "Blaziken",
66
+ "Blissey",
67
+ "Blitzle",
68
+ "Boldore",
69
+ "Bonsly",
70
+ "Bouffalant",
71
+ "Braixen",
72
+ "Braviary",
73
+ "Breloom",
74
+ "Bronzong",
75
+ "Bronzor",
76
+ "Budew",
77
+ "Buizel",
78
+ "Bulbasaur",
79
+ "Buneary",
80
+ "Bunnelby",
81
+ "Burmy",
82
+ "Butterfree",
83
+ "Cacnea",
84
+ "Cacturne",
85
+ "Camerupt",
86
+ "Carbink",
87
+ "Carnivine",
88
+ "Carracosta",
89
+ "Carvanha",
90
+ "Cascoon",
91
+ "Castform",
92
+ "Caterpie",
93
+ "Celebi",
94
+ "Chandelure",
95
+ "Chansey",
96
+ "Charizard",
97
+ "Charmander",
98
+ "Charmeleon",
99
+ "Chatot",
100
+ "Cherrim",
101
+ "Cherubi",
102
+ "Chesnaught",
103
+ "Chespin",
104
+ "Chikorita",
105
+ "Chimchar",
106
+ "Chimecho",
107
+ "Chinchou",
108
+ "Chingling",
109
+ "Cinccino",
110
+ "Clamperl",
111
+ "Clauncher",
112
+ "Clawitzer",
113
+ "Claydol",
114
+ "Clefable",
115
+ "Clefairy",
116
+ "Cleffa",
117
+ "Cloyster",
118
+ "Cobalion",
119
+ "Cofagrigus",
120
+ "Combee",
121
+ "Combusken",
122
+ "Conkeldurr",
123
+ "Corphish",
124
+ "Corsola",
125
+ "Cottonee",
126
+ "Cradily",
127
+ "Cranidos",
128
+ "Crawdaunt",
129
+ "Cresselia",
130
+ "Croagunk",
131
+ "Crobat",
132
+ "Croconaw",
133
+ "Crustle",
134
+ "Cryogonal",
135
+ "Cubchoo",
136
+ "Cubone",
137
+ "Cyndaquil",
138
+ "Darkrai",
139
+ "Darmanitan",
140
+ "Darumaka",
141
+ "Dedenne",
142
+ "Deerling",
143
+ "Deino",
144
+ "Delcatty",
145
+ "Delibird",
146
+ "Delphox",
147
+ "Deoxys",
148
+ "Dewgong",
149
+ "Dewott",
150
+ "Dialga",
151
+ "Diancie",
152
+ "Diggersby",
153
+ "Diglett",
154
+ "Ditto",
155
+ "Dodrio",
156
+ "Doduo",
157
+ "Donphan",
158
+ "Doublade",
159
+ "Dragalge",
160
+ "Dragonair",
161
+ "Dragonite",
162
+ "Drapion",
163
+ "Dratini",
164
+ "Drifblim",
165
+ "Drifloon",
166
+ "Drilbur",
167
+ "Drowzee",
168
+ "Druddigon",
169
+ "Ducklett",
170
+ "Dugtrio",
171
+ "Dunsparce",
172
+ "Duosion",
173
+ "Durant",
174
+ "Dusclops",
175
+ "Dusknoir",
176
+ "Duskull",
177
+ "Dustox",
178
+ "Dwebble",
179
+ "Eelektrik",
180
+ "Eelektross",
181
+ "Eevee",
182
+ "Ekans",
183
+ "Electabuzz",
184
+ "Electivire",
185
+ "Electrike",
186
+ "Electrode",
187
+ "Elekid",
188
+ "Elgyem",
189
+ "Emboar",
190
+ "Emolga",
191
+ "Empoleon",
192
+ "Entei",
193
+ "Escavalier",
194
+ "Espeon",
195
+ "Espurr",
196
+ "Excadrill",
197
+ "Exeggcute",
198
+ "Exeggutor",
199
+ "Exploud",
200
+ "Farfetch'd",
201
+ "Fearow",
202
+ "Feebas",
203
+ "Fennekin",
204
+ "Feraligatr",
205
+ "Ferroseed",
206
+ "Ferrothorn",
207
+ "Finneon",
208
+ "Flaaffy",
209
+ "Flabébé",
210
+ "Flareon",
211
+ "Fletchinder",
212
+ "Fletchling",
213
+ "Floatzel",
214
+ "Floette",
215
+ "Florges",
216
+ "Flygon",
217
+ "Foongus",
218
+ "Forretress",
219
+ "Fraxure",
220
+ "Frillish",
221
+ "Froakie",
222
+ "Frogadier",
223
+ "Froslass",
224
+ "Furfrou",
225
+ "Furret",
226
+ "Gabite",
227
+ "Gallade",
228
+ "Galvantula",
229
+ "Garbodor",
230
+ "Garchomp",
231
+ "Gardevoir",
232
+ "Gastly",
233
+ "Gastrodon",
234
+ "Genesect",
235
+ "Gengar",
236
+ "Geodude",
237
+ "Gible",
238
+ "Gigalith",
239
+ "Girafarig",
240
+ "Giratina",
241
+ "Glaceon",
242
+ "Glalie",
243
+ "Glameow",
244
+ "Gligar",
245
+ "Gliscor",
246
+ "Gloom",
247
+ "Gogoat",
248
+ "Golbat",
249
+ "Goldeen",
250
+ "Golduck",
251
+ "Golem",
252
+ "Golett",
253
+ "Golurk",
254
+ "Goodra",
255
+ "Goomy",
256
+ "Gorebyss",
257
+ "Gothita",
258
+ "Gothitelle",
259
+ "Gothorita",
260
+ "Gourgeist",
261
+ "Granbull",
262
+ "Graveler",
263
+ "Greninja",
264
+ "Grimer",
265
+ "Grotle",
266
+ "Groudon",
267
+ "Grovyle",
268
+ "Growlithe",
269
+ "Grumpig",
270
+ "Gulpin",
271
+ "Gurdurr",
272
+ "Gyarados",
273
+ "Happiny",
274
+ "Hariyama",
275
+ "Haunter",
276
+ "Hawlucha",
277
+ "Haxorus",
278
+ "Heatmor",
279
+ "Heatran",
280
+ "Heliolisk",
281
+ "Helioptile",
282
+ "Heracross",
283
+ "Herdier",
284
+ "Hippopotas",
285
+ "Hippowdon",
286
+ "Hitmonchan",
287
+ "Hitmonlee",
288
+ "Hitmontop",
289
+ "Ho-Oh",
290
+ "Honchkrow",
291
+ "Honedge",
292
+ "Hoopa",
293
+ "Hoothoot",
294
+ "Hoppip",
295
+ "Horsea",
296
+ "Houndoom",
297
+ "Houndour",
298
+ "Huntail",
299
+ "Hydreigon",
300
+ "Hypno",
301
+ "Igglybuff",
302
+ "Illumise",
303
+ "Infernape",
304
+ "Inkay",
305
+ "Ivysaur",
306
+ "Jellicent",
307
+ "Jigglypuff",
308
+ "Jirachi",
309
+ "Jolteon",
310
+ "Joltik",
311
+ "Jumpluff",
312
+ "Jynx",
313
+ "Kabuto",
314
+ "Kabutops",
315
+ "Kadabra",
316
+ "Kakuna",
317
+ "Kangaskhan",
318
+ "Karrablast",
319
+ "Kecleon",
320
+ "Keldeo",
321
+ "Kingdra",
322
+ "Kingler",
323
+ "Kirlia",
324
+ "Klang",
325
+ "Klefki",
326
+ "Klink",
327
+ "Klinklang",
328
+ "Koffing",
329
+ "Krabby",
330
+ "Kricketot",
331
+ "Kricketune",
332
+ "Krokorok",
333
+ "Krookodile",
334
+ "Kyogre",
335
+ "Kyurem",
336
+ "Lairon",
337
+ "Lampent",
338
+ "Landorus",
339
+ "Lanturn",
340
+ "Lapras",
341
+ "Larvesta",
342
+ "Larvitar",
343
+ "Latias",
344
+ "Latios",
345
+ "Leafeon",
346
+ "Leavanny",
347
+ "Ledian",
348
+ "Ledyba",
349
+ "Lickilicky",
350
+ "Lickitung",
351
+ "Liepard",
352
+ "Lileep",
353
+ "Lilligant",
354
+ "Lillipup",
355
+ "Linoone",
356
+ "Litleo",
357
+ "Litwick",
358
+ "Lombre",
359
+ "Lopunny",
360
+ "Lotad",
361
+ "Loudred",
362
+ "Lucario",
363
+ "Ludicolo",
364
+ "Lugia",
365
+ "Lumineon",
366
+ "Lunatone",
367
+ "Luvdisc",
368
+ "Luxio",
369
+ "Luxray",
370
+ "Machamp",
371
+ "Machoke",
372
+ "Machop",
373
+ "Magby",
374
+ "Magcargo",
375
+ "Magikarp",
376
+ "Magmar",
377
+ "Magmortar",
378
+ "Magnemite",
379
+ "Magneton",
380
+ "Magnezone",
381
+ "Makuhita",
382
+ "Malamar",
383
+ "Mamoswine",
384
+ "Manaphy",
385
+ "Mandibuzz",
386
+ "Manectric",
387
+ "Mankey",
388
+ "Mantine",
389
+ "Mantyke",
390
+ "Maractus",
391
+ "Mareep",
392
+ "Marill",
393
+ "Marowak",
394
+ "Marshtomp",
395
+ "Masquerain",
396
+ "Mawile",
397
+ "Medicham",
398
+ "Meditite",
399
+ "Meganium",
400
+ "Meloetta",
401
+ "Meowstic",
402
+ "Meowth",
403
+ "Mesprit",
404
+ "Metagross",
405
+ "Metang",
406
+ "Metapod",
407
+ "Mew",
408
+ "Mewtwo",
409
+ "Mienfoo",
410
+ "Mienshao",
411
+ "Mightyena",
412
+ "Milotic",
413
+ "Miltank",
414
+ "Mime Jr.",
415
+ "Minccino",
416
+ "Minun",
417
+ "Misdreavus",
418
+ "Mismagius",
419
+ "Moltres",
420
+ "Monferno",
421
+ "Mothim",
422
+ "Mr. Mime",
423
+ "Mudkip",
424
+ "Muk",
425
+ "Munchlax",
426
+ "Munna",
427
+ "Murkrow",
428
+ "Musharna",
429
+ "Natu",
430
+ "Naganadel",
431
+ "Nidoking",
432
+ "Nidoqueen",
433
+ "Nidoran♂",
434
+ "Nidoran♀",
435
+ "Nidorina",
436
+ "Nidorino",
437
+ "Nincada",
438
+ "Ninetales",
439
+ "Ninjask",
440
+ "Noctowl",
441
+ "Noibat",
442
+ "Noivern",
443
+ "Nosepass",
444
+ "Numel",
445
+ "Nuzleaf",
446
+ "Octillery",
447
+ "Oddish",
448
+ "Omanyte",
449
+ "Omastar",
450
+ "Onix",
451
+ "Oshawott",
452
+ "Pachirisu",
453
+ "Palkia",
454
+ "Palpitoad",
455
+ "Pancham",
456
+ "Pangoro",
457
+ "Panpour",
458
+ "Pansage",
459
+ "Pansear",
460
+ "Paras",
461
+ "Parasect",
462
+ "Patrat",
463
+ "Pawniard",
464
+ "Pelipper",
465
+ "Persian",
466
+ "Petilil",
467
+ "Phanpy",
468
+ "Phantump",
469
+ "Phione",
470
+ "Pichu",
471
+ "Pidgeot",
472
+ "Pidgeotto",
473
+ "Pidgey",
474
+ "Pidove",
475
+ "Pignite",
476
+ "Pikachu",
477
+ "Piloswine",
478
+ "Pineco",
479
+ "Pinsir",
480
+ "Piplup",
481
+ "Plusle",
482
+ "Poipole",
483
+ "Politoed",
484
+ "Poliwag",
485
+ "Poliwhirl",
486
+ "Poliwrath",
487
+ "Ponyta",
488
+ "Poochyena",
489
+ "Porygon",
490
+ "Porygon2",
491
+ "Porygon-Z",
492
+ "Primeape",
493
+ "Prinplup",
494
+ "Probopass",
495
+ "Psyduck",
496
+ "Pumpkaboo",
497
+ "Pupitar",
498
+ "Purrloin",
499
+ "Purugly",
500
+ "Pyroar",
501
+ "Quagsire",
502
+ "Quilava",
503
+ "Quilladin",
504
+ "Qwilfish",
505
+ "Raichu",
506
+ "Raikou",
507
+ "Ralts",
508
+ "Rampardos",
509
+ "Rapidash",
510
+ "Raticate",
511
+ "Rattata",
512
+ "Rayquaza",
513
+ "Regice",
514
+ "Regigigas",
515
+ "Regirock",
516
+ "Registeel",
517
+ "Relicanth",
518
+ "Remoraid",
519
+ "Reshiram",
520
+ "Reuniclus",
521
+ "Rhydon",
522
+ "Rhyhorn",
523
+ "Rhyperior",
524
+ "Riolu",
525
+ "Roggenrola",
526
+ "Roselia",
527
+ "Roserade",
528
+ "Rotom",
529
+ "Rufflet",
530
+ "Sableye",
531
+ "Salamence",
532
+ "Samurott",
533
+ "Sandile",
534
+ "Sandshrew",
535
+ "Sandslash",
536
+ "Sawk",
537
+ "Sawsbuck",
538
+ "Scatterbug",
539
+ "Sceptile",
540
+ "Scizor",
541
+ "Scolipede",
542
+ "Scrafty",
543
+ "Scraggy",
544
+ "Scyther",
545
+ "Seadra",
546
+ "Seaking",
547
+ "Sealeo",
548
+ "Seedot",
549
+ "Seel",
550
+ "Seismitoad",
551
+ "Sentret",
552
+ "Serperior",
553
+ "Servine",
554
+ "Seviper",
555
+ "Sewaddle",
556
+ "Sharpedo",
557
+ "Shaymin",
558
+ "Shedinja",
559
+ "Shelgon",
560
+ "Shellder",
561
+ "Shellos",
562
+ "Shelmet",
563
+ "Shieldon",
564
+ "Shiftry",
565
+ "Shinx",
566
+ "Shroomish",
567
+ "Shuckle",
568
+ "Shuppet",
569
+ "Sigilyph",
570
+ "Silcoon",
571
+ "Simipour",
572
+ "Simisage",
573
+ "Simisear",
574
+ "Skarmory",
575
+ "Skiddo",
576
+ "Skiploom",
577
+ "Skitty",
578
+ "Skorupi",
579
+ "Skrelp",
580
+ "Skuntank",
581
+ "Slaking",
582
+ "Slakoth",
583
+ "Sliggoo",
584
+ "Slowbro",
585
+ "Slowking",
586
+ "Slowpoke",
587
+ "Slugma",
588
+ "Slurpuff",
589
+ "Smeargle",
590
+ "Smoochum",
591
+ "Sneasel",
592
+ "Snivy",
593
+ "Snorlax",
594
+ "Snorunt",
595
+ "Snover",
596
+ "Snubbull",
597
+ "Solosis",
598
+ "Solrock",
599
+ "Spearow",
600
+ "Spewpa",
601
+ "Spheal",
602
+ "Spinarak",
603
+ "Spinda",
604
+ "Spiritomb",
605
+ "Spoink",
606
+ "Spritzee",
607
+ "Squirtle",
608
+ "Stakataka",
609
+ "Stantler",
610
+ "Staraptor",
611
+ "Staravia",
612
+ "Starly",
613
+ "Starmie",
614
+ "Staryu",
615
+ "Steelix",
616
+ "Stoutland",
617
+ "Stunfisk",
618
+ "Stunky",
619
+ "Sudowoodo",
620
+ "Suicune",
621
+ "Sunflora",
622
+ "Sunkern",
623
+ "Surskit",
624
+ "Swablu",
625
+ "Swadloon",
626
+ "Swalot",
627
+ "Swampert",
628
+ "Swanna",
629
+ "Swellow",
630
+ "Swinub",
631
+ "Swirlix",
632
+ "Swoobat",
633
+ "Sylveon",
634
+ "Taillow",
635
+ "Talonflame",
636
+ "Tangela",
637
+ "Tangrowth",
638
+ "Tauros",
639
+ "Teddiursa",
640
+ "Tentacool",
641
+ "Tentacruel",
642
+ "Tepig",
643
+ "Terrakion",
644
+ "Throh",
645
+ "Thundurus",
646
+ "Timburr",
647
+ "Tirtouga",
648
+ "Togekiss",
649
+ "Togepi",
650
+ "Togetic",
651
+ "Torchic",
652
+ "Torkoal",
653
+ "Tornadus",
654
+ "Torterra",
655
+ "Totodile",
656
+ "Toxicroak",
657
+ "Tranquill",
658
+ "Trapinch",
659
+ "Treecko",
660
+ "Trevenant",
661
+ "Tropius",
662
+ "Trubbish",
663
+ "Turtwig",
664
+ "Tympole",
665
+ "Tynamo",
666
+ "Typhlosion",
667
+ "Tyranitar",
668
+ "Tyrantrum",
669
+ "Tyrogue",
670
+ "Tyrunt",
671
+ "Umbreon",
672
+ "Unfezant",
673
+ "Unown",
674
+ "Ursaring",
675
+ "Uxie",
676
+ "Vanillish",
677
+ "Vanillite",
678
+ "Vanilluxe",
679
+ "Vaporeon",
680
+ "Venipede",
681
+ "Venomoth",
682
+ "Venonat",
683
+ "Venusaur",
684
+ "Vespiquen",
685
+ "Vibrava",
686
+ "Victini",
687
+ "Victreebel",
688
+ "Vigoroth",
689
+ "Vileplume",
690
+ "Virizion",
691
+ "Vivillon",
692
+ "Volbeat",
693
+ "Volcanion",
694
+ "Volcarona",
695
+ "Voltorb",
696
+ "Vullaby",
697
+ "Vulpix",
698
+ "Wailmer",
699
+ "Wailord",
700
+ "Walrein",
701
+ "Wartortle",
702
+ "Watchog",
703
+ "Weavile",
704
+ "Weedle",
705
+ "Weepinbell",
706
+ "Weezing",
707
+ "Whimsicott",
708
+ "Whirlipede",
709
+ "Whiscash",
710
+ "Whismur",
711
+ "Wigglytuff",
712
+ "Wingull",
713
+ "Wobbuffet",
714
+ "Woobat",
715
+ "Wooper",
716
+ "Wormadam",
717
+ "Wurmple",
718
+ "Wynaut",
719
+ "Xatu",
720
+ "Xerneas",
721
+ "Yamask",
722
+ "Yanma",
723
+ "Yanmega",
724
+ "Yveltal",
725
+ "Zangoose",
726
+ "Zapdos",
727
+ "Zebstrika",
728
+ "Zekrom",
729
+ "Zigzagoon",
730
+ "Zoroark",
731
+ "Zorua",
732
+ "Zubat",
733
+ "Zweilous",
734
+ "Zygarde",
735
+ "Pokémon Sun and Moon",
736
+ "Araquanid",
737
+ "Bewear",
738
+ "Bounsweet",
739
+ "Brionne",
740
+ "Bruxish",
741
+ "Buzzwole",
742
+ "Celesteela",
743
+ "Charjabug",
744
+ "Comfey",
745
+ "Cosmoem",
746
+ "Cosmog",
747
+ "Crabominable",
748
+ "Crabrawler",
749
+ "Cutiefly",
750
+ "Dartrix",
751
+ "Decidueye",
752
+ "Dewpider",
753
+ "Dhelmise",
754
+ "Drampa",
755
+ "Fomantis",
756
+ "Golisopod",
757
+ "Grubbin",
758
+ "Gumshoos",
759
+ "Guzzlord",
760
+ "Hakamo-o",
761
+ "Incineroar",
762
+ "Jangmo-o",
763
+ "Kartana",
764
+ "Komala",
765
+ "Kommo-o",
766
+ "Litten",
767
+ "Lunala",
768
+ "Lurantis",
769
+ "Lycanroc",
770
+ "Magearna",
771
+ "Mareanie",
772
+ "Marshadow",
773
+ "Mimikyu",
774
+ "Minior",
775
+ "Morelull",
776
+ "Mudbray",
777
+ "Mudsdale",
778
+ "Necrozma",
779
+ "Nihilego",
780
+ "Oranguru",
781
+ "Oricorio",
782
+ "Palossand",
783
+ "Passimian",
784
+ "Pheromosa",
785
+ "Pikipek",
786
+ "Popplio",
787
+ "Primarina",
788
+ "Pyukumuku",
789
+ "Ribombee",
790
+ "Rockruff",
791
+ "Rowlet",
792
+ "Salandit",
793
+ "Salazzle",
794
+ "Sandygast",
795
+ "Shiinotic",
796
+ "Silvally",
797
+ "Solgaleo",
798
+ "Steenee",
799
+ "Stufful",
800
+ "Tapu Bulu",
801
+ "Tapu Fini",
802
+ "Tapu Koko",
803
+ "Tapu Lele",
804
+ "Togedemaru",
805
+ "Torracat",
806
+ "Toucannon",
807
+ "Toxapex",
808
+ "Trumbeak",
809
+ "Tsareena",
810
+ "Turtonator",
811
+ "Type: Null",
812
+ "Vikavolt",
813
+ "Wimpod",
814
+ "Wishiwashi",
815
+ "Xurkitree",
816
+ "Yungoos",
817
+ "Zeraora"
818
+ ]
819
+ },
820
+ "move": {
821
+ "type": "string",
822
+ "enum": [
823
+ "Plasma Fists",
824
+ "Photon Geyser",
825
+ "Light That Burns the Sky",
826
+ "Searing Sunraze Smash",
827
+ "Menacing Moonraze Maelstrom",
828
+ "Let's Snuggle Forever",
829
+ "Splintered Stormshards",
830
+ "Clangorous Soulblaze",
831
+ "Absorb",
832
+ "Acid",
833
+ "Acid Armor",
834
+ "Acid Spray",
835
+ "Acrobatics",
836
+ "Acupressure",
837
+ "Aerial Ace",
838
+ "Aeroblast",
839
+ "After You",
840
+ "Agility",
841
+ "Air Cutter",
842
+ "Air Slash",
843
+ "Ally Switch",
844
+ "Amnesia",
845
+ "Ancient Power",
846
+ "Aqua Jet",
847
+ "Aqua Ring",
848
+ "Aqua Tail",
849
+ "Arm Thrust",
850
+ "Aromatherapy",
851
+ "Aromatic Mist",
852
+ "Assist",
853
+ "Assurance",
854
+ "Astonish",
855
+ "Attack Order",
856
+ "Attract",
857
+ "Aura Sphere",
858
+ "Aurora Beam",
859
+ "Autotomize",
860
+ "Avalanche",
861
+ "Baby-Doll Eyes",
862
+ "Barrage",
863
+ "Barrier",
864
+ "Baton Pass",
865
+ "Beat Up",
866
+ "Belch",
867
+ "Belly Drum",
868
+ "Bestow",
869
+ "Bide",
870
+ "Bind",
871
+ "Bite",
872
+ "Blast Burn",
873
+ "Blaze Kick",
874
+ "Blizzard",
875
+ "Block",
876
+ "Blue Flare",
877
+ "Body Slam",
878
+ "Bolt Strike",
879
+ "Bone Club",
880
+ "Bone Rush",
881
+ "Bonemerang",
882
+ "Boomburst",
883
+ "Bounce",
884
+ "Brave Bird",
885
+ "Brick Break",
886
+ "Brine",
887
+ "Bubble",
888
+ "Bubble Beam",
889
+ "Bug Bite",
890
+ "Bug Buzz",
891
+ "Bulk Up",
892
+ "Bulldoze",
893
+ "Bullet Punch",
894
+ "Bullet Seed",
895
+ "Calm Mind",
896
+ "Camouflage",
897
+ "Captivate",
898
+ "Celebrate",
899
+ "Charge",
900
+ "Charge Beam",
901
+ "Charm",
902
+ "Chatter",
903
+ "Chip Away",
904
+ "Circle Throw",
905
+ "Clamp",
906
+ "Clear Smog",
907
+ "Close Combat",
908
+ "Coil",
909
+ "Comet Punch",
910
+ "Confide",
911
+ "Confuse Ray",
912
+ "Confusion",
913
+ "Constrict",
914
+ "Conversion",
915
+ "Conversion 2",
916
+ "Copycat",
917
+ "Cosmic Power",
918
+ "Cotton Guard",
919
+ "Cotton Spore",
920
+ "Counter",
921
+ "Covet",
922
+ "Crabhammer",
923
+ "Crafty Shield",
924
+ "Cross Chop",
925
+ "Cross Poison",
926
+ "Crunch",
927
+ "Crush Claw",
928
+ "Crush Grip",
929
+ "Curse",
930
+ "Cut",
931
+ "Dark Pulse",
932
+ "Dark Void",
933
+ "Dazzling Gleam",
934
+ "Defend Order",
935
+ "Defense Curl",
936
+ "Defog",
937
+ "Destiny Bond",
938
+ "Detect",
939
+ "Diamond Storm",
940
+ "Dig",
941
+ "Disable",
942
+ "Disarming Voice",
943
+ "Discharge",
944
+ "Dive",
945
+ "Dizzy Punch",
946
+ "Doom Desire",
947
+ "Double-Edge",
948
+ "Double Hit",
949
+ "Double Kick",
950
+ "Double Slap",
951
+ "Double Team",
952
+ "Draco Meteor",
953
+ "Dragon Ascent",
954
+ "Dragon Breath",
955
+ "Dragon Claw",
956
+ "Dragon Dance",
957
+ "Dragon Pulse",
958
+ "Dragon Rage",
959
+ "Dragon Rush",
960
+ "Dragon Tail",
961
+ "Drain Punch",
962
+ "Draining Kiss",
963
+ "Dream Eater",
964
+ "Drill Peck",
965
+ "Drill Run",
966
+ "Dual Chop",
967
+ "Dynamic Punch",
968
+ "Earth Power",
969
+ "Earthquake",
970
+ "Echoed Voice",
971
+ "Eerie Impulse",
972
+ "Egg Bomb",
973
+ "Electric Terrain",
974
+ "Electrify",
975
+ "Electro Ball",
976
+ "Electroweb",
977
+ "Embargo",
978
+ "Ember",
979
+ "Encore",
980
+ "Endeavor",
981
+ "Endure",
982
+ "Energy Ball",
983
+ "Entrainment",
984
+ "Eruption",
985
+ "Explosion",
986
+ "Extrasensory",
987
+ "Extreme Speed",
988
+ "Facade",
989
+ "Fairy Lock",
990
+ "Fairy Wind",
991
+ "Fake Out",
992
+ "Fake Tears",
993
+ "False Swipe",
994
+ "Feather Dance",
995
+ "Feint",
996
+ "Feint Attack",
997
+ "Fell Stinger",
998
+ "Fiery Dance",
999
+ "Final Gambit",
1000
+ "Fire Blast",
1001
+ "Fire Fang",
1002
+ "Fire Pledge",
1003
+ "Fire Punch",
1004
+ "Fire Spin",
1005
+ "Fissure",
1006
+ "Flail",
1007
+ "Flame Burst",
1008
+ "Flame Charge",
1009
+ "Flame Wheel",
1010
+ "Flamethrower",
1011
+ "Flare Blitz",
1012
+ "Flash",
1013
+ "Flash Cannon",
1014
+ "Flatter",
1015
+ "Fling",
1016
+ "Flower Shield",
1017
+ "Fly",
1018
+ "Flying Press",
1019
+ "Focus Blast",
1020
+ "Focus Energy",
1021
+ "Focus Punch",
1022
+ "Follow Me",
1023
+ "Force Palm",
1024
+ "Foresight",
1025
+ "Forest's Curse",
1026
+ "Foul Play",
1027
+ "Freeze-Dry",
1028
+ "Freeze Shock",
1029
+ "Frenzy Plant",
1030
+ "Frost Breath",
1031
+ "Frustration",
1032
+ "Fury Attack",
1033
+ "Fury Cutter",
1034
+ "Fury Swipes",
1035
+ "Fusion Bolt",
1036
+ "Fusion Flare",
1037
+ "Future Sight",
1038
+ "Gastro Acid",
1039
+ "Gear Grind",
1040
+ "Geomancy",
1041
+ "Giga Drain",
1042
+ "Giga Impact",
1043
+ "Glaciate",
1044
+ "Glare",
1045
+ "Grass Knot",
1046
+ "Grass Pledge",
1047
+ "Grass Whistle",
1048
+ "Grassy Terrain",
1049
+ "Gravity",
1050
+ "Growl",
1051
+ "Growth",
1052
+ "Grudge",
1053
+ "Guard Split",
1054
+ "Guard Swap",
1055
+ "Guillotine",
1056
+ "Gunk Shot",
1057
+ "Gust",
1058
+ "Gyro Ball",
1059
+ "Hail",
1060
+ "Hammer Arm",
1061
+ "Happy Hour",
1062
+ "Harden",
1063
+ "Haze",
1064
+ "Head Charge",
1065
+ "Head Smash",
1066
+ "Headbutt",
1067
+ "Heal Bell",
1068
+ "Heal Block",
1069
+ "Heal Order",
1070
+ "Heal Pulse",
1071
+ "Healing Wish",
1072
+ "Heart Stamp",
1073
+ "Heart Swap",
1074
+ "Heat Crash",
1075
+ "Heat Wave",
1076
+ "Heavy Slam",
1077
+ "Helping Hand",
1078
+ "Hex",
1079
+ "Hidden Power",
1080
+ "High Jump Kick",
1081
+ "Hold Back",
1082
+ "Hold Hands",
1083
+ "Hone Claws",
1084
+ "Horn Attack",
1085
+ "Horn Drill",
1086
+ "Horn Leech",
1087
+ "Howl",
1088
+ "Hurricane",
1089
+ "Hydro Cannon",
1090
+ "Hydro Pump",
1091
+ "Hyper Beam",
1092
+ "Hyper Fang",
1093
+ "Hyper Voice",
1094
+ "Hyperspace Fury",
1095
+ "Hyperspace Hole",
1096
+ "Hypnosis",
1097
+ "Ice Ball",
1098
+ "Ice Beam",
1099
+ "Ice Burn",
1100
+ "Ice Fang",
1101
+ "Ice Punch",
1102
+ "Ice Shard",
1103
+ "Icicle Crash",
1104
+ "Icicle Spear",
1105
+ "Icy Wind",
1106
+ "Imprison",
1107
+ "Incinerate",
1108
+ "Inferno",
1109
+ "Infestation",
1110
+ "Ingrain",
1111
+ "Ion Deluge",
1112
+ "Iron Defense",
1113
+ "Iron Head",
1114
+ "Iron Tail",
1115
+ "Judgment",
1116
+ "Jump Kick",
1117
+ "Karate Chop",
1118
+ "Kinesis",
1119
+ "King's Shield",
1120
+ "Knock Off",
1121
+ "Land's Wrath",
1122
+ "Last Resort",
1123
+ "Lava Plume",
1124
+ "Leaf Blade",
1125
+ "Leaf Storm",
1126
+ "Leaf Tornado",
1127
+ "Leech Life",
1128
+ "Leech Seed",
1129
+ "Leer",
1130
+ "Lick",
1131
+ "Light of Ruin",
1132
+ "Light Screen",
1133
+ "Lock-On",
1134
+ "Lovely Kiss",
1135
+ "Low Kick",
1136
+ "Low Sweep",
1137
+ "Lucky Chant",
1138
+ "Lunar Dance",
1139
+ "Luster Purge",
1140
+ "Mach Punch",
1141
+ "Magic Coat",
1142
+ "Magic Room",
1143
+ "Magical Leaf",
1144
+ "Magma Storm",
1145
+ "Magnet Bomb",
1146
+ "Magnet Rise",
1147
+ "Magnetic Flux",
1148
+ "Magnitude",
1149
+ "Mat Block",
1150
+ "Me First",
1151
+ "Mean Look",
1152
+ "Meditate",
1153
+ "Mega Drain",
1154
+ "Mega Kick",
1155
+ "Mega Punch",
1156
+ "Megahorn",
1157
+ "Memento",
1158
+ "Metal Burst",
1159
+ "Metal Claw",
1160
+ "Metal Sound",
1161
+ "Meteor Mash",
1162
+ "Metronome",
1163
+ "Milk Drink",
1164
+ "Mimic",
1165
+ "Mind Blown",
1166
+ "Mind Reader",
1167
+ "Minimize",
1168
+ "Miracle Eye",
1169
+ "Mirror Coat",
1170
+ "Mirror Move",
1171
+ "Mirror Shot",
1172
+ "Mist",
1173
+ "Mist Ball",
1174
+ "Misty Terrain",
1175
+ "Moonblast",
1176
+ "Moonlight",
1177
+ "Morning Sun",
1178
+ "Mud Bomb",
1179
+ "Mud Shot",
1180
+ "Mud-Slap",
1181
+ "Mud Sport",
1182
+ "Muddy Water",
1183
+ "Mystical Fire",
1184
+ "Nasty Plot",
1185
+ "Natural Gift",
1186
+ "Nature Power",
1187
+ "Needle Arm",
1188
+ "Night Daze",
1189
+ "Night Shade",
1190
+ "Night Slash",
1191
+ "Nightmare",
1192
+ "Noble Roar",
1193
+ "Nuzzle",
1194
+ "Oblivion Wing",
1195
+ "Octazooka",
1196
+ "Odor Sleuth",
1197
+ "Ominous Wind",
1198
+ "Origin Pulse",
1199
+ "Outrage",
1200
+ "Overheat",
1201
+ "Pain Split",
1202
+ "Parabolic Charge",
1203
+ "Parting Shot",
1204
+ "Pay Day",
1205
+ "Payback",
1206
+ "Peck",
1207
+ "Perish Song",
1208
+ "Petal Blizzard",
1209
+ "Petal Dance",
1210
+ "Phantom Force",
1211
+ "Pin Missile",
1212
+ "Play Nice",
1213
+ "Play Rough",
1214
+ "Pluck",
1215
+ "Poison Fang",
1216
+ "Poison Gas",
1217
+ "Poison Jab",
1218
+ "Poison Powder",
1219
+ "Poison Sting",
1220
+ "Poison Tail",
1221
+ "Pound",
1222
+ "Powder",
1223
+ "Powder Snow",
1224
+ "Power Gem",
1225
+ "Power Split",
1226
+ "Power Swap",
1227
+ "Power Trick",
1228
+ "Power-Up Punch",
1229
+ "Power Whip",
1230
+ "Precipice Blades",
1231
+ "Present",
1232
+ "Protect",
1233
+ "Psybeam",
1234
+ "Psych Up",
1235
+ "Psychic",
1236
+ "Psycho Boost",
1237
+ "Psycho Cut",
1238
+ "Psycho Shift",
1239
+ "Psyshock",
1240
+ "Psystrike",
1241
+ "Psywave",
1242
+ "Punishment",
1243
+ "Pursuit",
1244
+ "Quash",
1245
+ "Quick Attack",
1246
+ "Quick Guard",
1247
+ "Quiver Dance",
1248
+ "Rage",
1249
+ "Rage Powder",
1250
+ "Rain Dance",
1251
+ "Rapid Spin",
1252
+ "Razor Leaf",
1253
+ "Razor Shell",
1254
+ "Razor Wind",
1255
+ "Recover",
1256
+ "Recycle",
1257
+ "Reflect",
1258
+ "Reflect Type",
1259
+ "Refresh",
1260
+ "Relic Song",
1261
+ "Rest",
1262
+ "Retaliate",
1263
+ "Return",
1264
+ "Revenge",
1265
+ "Reversal",
1266
+ "Roar",
1267
+ "Roar of Time",
1268
+ "Rock Blast",
1269
+ "Rock Climb",
1270
+ "Rock Polish",
1271
+ "Rock Slide",
1272
+ "Rock Smash",
1273
+ "Rock Throw",
1274
+ "Rock Tomb",
1275
+ "Rock Wrecker",
1276
+ "Role Play",
1277
+ "Rolling Kick",
1278
+ "Rollout",
1279
+ "Roost",
1280
+ "Rototiller",
1281
+ "Round",
1282
+ "Sacred Fire",
1283
+ "Sacred Sword",
1284
+ "Safeguard",
1285
+ "Sand Attack",
1286
+ "Sand Tomb",
1287
+ "Sandstorm",
1288
+ "Scald",
1289
+ "Scary Face",
1290
+ "Scratch",
1291
+ "Screech",
1292
+ "Searing Shot",
1293
+ "Secret Power",
1294
+ "Secret Sword",
1295
+ "Seed Bomb",
1296
+ "Seed Flare",
1297
+ "Seismic Toss",
1298
+ "Self-Destruct",
1299
+ "Shadow Ball",
1300
+ "Shadow Claw",
1301
+ "Shadow Force",
1302
+ "Shadow Punch",
1303
+ "Shadow Sneak",
1304
+ "Sharpen",
1305
+ "Sheer Cold",
1306
+ "Shell Smash",
1307
+ "Shift Gear",
1308
+ "Shock Wave",
1309
+ "Signal Beam",
1310
+ "Silver Wind",
1311
+ "Simple Beam",
1312
+ "Sing",
1313
+ "Sketch",
1314
+ "Skill Swap",
1315
+ "Skull Bash",
1316
+ "Sky Attack",
1317
+ "Sky Drop",
1318
+ "Sky Uppercut",
1319
+ "Slack Off",
1320
+ "Slam",
1321
+ "Slash",
1322
+ "Sleep Powder",
1323
+ "Sleep Talk",
1324
+ "Sludge",
1325
+ "Sludge Bomb",
1326
+ "Sludge Wave",
1327
+ "Smack Down",
1328
+ "Smelling Salts",
1329
+ "Smog",
1330
+ "Smokescreen",
1331
+ "Snarl",
1332
+ "Snatch",
1333
+ "Snore",
1334
+ "Soak",
1335
+ "Soft-Boiled",
1336
+ "Solar Beam",
1337
+ "Sonic Boom",
1338
+ "Spacial Rend",
1339
+ "Spark",
1340
+ "Spider Web",
1341
+ "Spike Cannon",
1342
+ "Spikes",
1343
+ "Spiky Shield",
1344
+ "Spit Up",
1345
+ "Spite",
1346
+ "Splash",
1347
+ "Spore",
1348
+ "Stealth Rock",
1349
+ "Steam Eruption",
1350
+ "Steamroller",
1351
+ "Steel Wing",
1352
+ "Sticky Web",
1353
+ "Stockpile",
1354
+ "Stomp",
1355
+ "Stone Edge",
1356
+ "Stored Power",
1357
+ "Storm Throw",
1358
+ "Strength",
1359
+ "String Shot",
1360
+ "Struggle",
1361
+ "Struggle Bug",
1362
+ "Stun Spore",
1363
+ "Submission",
1364
+ "Substitute",
1365
+ "Sucker Punch",
1366
+ "Sunny Day",
1367
+ "Super Fang",
1368
+ "Superpower",
1369
+ "Supersonic",
1370
+ "Surf",
1371
+ "Swagger",
1372
+ "Swallow",
1373
+ "Sweet Kiss",
1374
+ "Sweet Scent",
1375
+ "Swift",
1376
+ "Switcheroo",
1377
+ "Swords Dance",
1378
+ "Synchronoise",
1379
+ "Synthesis",
1380
+ "Tackle",
1381
+ "Tail Glow",
1382
+ "Tail Slap",
1383
+ "Tail Whip",
1384
+ "Tailwind",
1385
+ "Take Down",
1386
+ "Taunt",
1387
+ "Techno Blast",
1388
+ "Teeter Dance",
1389
+ "Telekinesis",
1390
+ "Teleport",
1391
+ "Thief",
1392
+ "Thousand Arrows",
1393
+ "Thousand Waves",
1394
+ "Thrash",
1395
+ "Thunder",
1396
+ "Thunder Fang",
1397
+ "Thunder Punch",
1398
+ "Thunder Shock",
1399
+ "Thunder Wave",
1400
+ "Thunderbolt",
1401
+ "Tickle",
1402
+ "Topsy-Turvy",
1403
+ "Torment",
1404
+ "Toxic",
1405
+ "Toxic Spikes",
1406
+ "Transform",
1407
+ "Tri Attack",
1408
+ "Trick",
1409
+ "Trick-or-Treat",
1410
+ "Trick Room",
1411
+ "Triple Kick",
1412
+ "Trump Card",
1413
+ "Twineedle",
1414
+ "Twister",
1415
+ "U-turn",
1416
+ "Uproar",
1417
+ "V-create",
1418
+ "Vacuum Wave",
1419
+ "Venom Drench",
1420
+ "Venoshock",
1421
+ "Vice Grip",
1422
+ "Vine Whip",
1423
+ "Vital Throw",
1424
+ "Volt Switch",
1425
+ "Volt Tackle",
1426
+ "Wake-Up Slap",
1427
+ "Water Gun",
1428
+ "Water Pledge",
1429
+ "Water Pulse",
1430
+ "Water Shuriken",
1431
+ "Water Sport",
1432
+ "Water Spout",
1433
+ "Waterfall",
1434
+ "Weather Ball",
1435
+ "Whirlpool",
1436
+ "Whirlwind",
1437
+ "Wide Guard",
1438
+ "Wild Charge",
1439
+ "Will-O-Wisp",
1440
+ "Wing Attack",
1441
+ "Wish",
1442
+ "Withdraw",
1443
+ "Wonder Room",
1444
+ "Wood Hammer",
1445
+ "Work Up",
1446
+ "Worry Seed",
1447
+ "Wrap",
1448
+ "Wring Out",
1449
+ "X-Scissor",
1450
+ "Yawn",
1451
+ "Zap Cannon",
1452
+ "Zen Headbutt",
1453
+ "10,000,000 Volt Thunderbolt",
1454
+ "Accelerock",
1455
+ "Acid Downpour",
1456
+ "All-Out Pummeling",
1457
+ "Anchor Shot",
1458
+ "Aurora Veil",
1459
+ "Baneful Bunker",
1460
+ "Beak Blast",
1461
+ "Black Hole Eclipse",
1462
+ "Bloom Doom",
1463
+ "Breakneck Blitz",
1464
+ "Brutal Swing",
1465
+ "Burn Up",
1466
+ "Catastropika",
1467
+ "Clanging Scales",
1468
+ "Continental Crush",
1469
+ "Core Enforcer",
1470
+ "Corkscrew Crash",
1471
+ "Darkest Lariat",
1472
+ "Devastating Drake",
1473
+ "Dragon Hammer",
1474
+ "Extreme Evoboost",
1475
+ "Fire Lash",
1476
+ "First Impression",
1477
+ "Fleur Cannon",
1478
+ "Floral Healing",
1479
+ "Gear Up",
1480
+ "Genesis Supernova",
1481
+ "Gigavolt Havoc",
1482
+ "Guardian of Alola",
1483
+ "High Horsepower",
1484
+ "Hydro Vortex",
1485
+ "Ice Hammer",
1486
+ "Inferno Overdrive",
1487
+ "Instruct",
1488
+ "Laser Focus",
1489
+ "Leafage",
1490
+ "Liquidation",
1491
+ "Lunge",
1492
+ "Malicious Moonsault",
1493
+ "Moongeist Beam",
1494
+ "Multi-Attack",
1495
+ "Nature's Madness",
1496
+ "Never-Ending Nightmare",
1497
+ "Oceanic Operetta",
1498
+ "Pollen Puff",
1499
+ "Power Trip",
1500
+ "Prismatic Laser",
1501
+ "Psychic Fangs",
1502
+ "Psychic Terrain",
1503
+ "Pulverizing Pancake",
1504
+ "Purify",
1505
+ "Revelation Dance",
1506
+ "Savage Spin-Out",
1507
+ "Shadow Bone",
1508
+ "Shattered Psyche",
1509
+ "Shell Trap",
1510
+ "Shore Up",
1511
+ "Sinister Arrow Raid",
1512
+ "Smart Strike",
1513
+ "Solar Blade",
1514
+ "Soul-Stealing 7-Star Strike",
1515
+ "Sparkling Aria",
1516
+ "Spectral Thief",
1517
+ "Speed Swap",
1518
+ "Spirit Shackle",
1519
+ "Spotlight",
1520
+ "Stoked Sparksurfer",
1521
+ "Stomping Tantrum",
1522
+ "Strength Sap",
1523
+ "Subzero Slammer",
1524
+ "Sunsteel Strike",
1525
+ "Supersonic Skystrike",
1526
+ "Tearful Look",
1527
+ "Tectonic Rage",
1528
+ "Throat Chop",
1529
+ "Toxic Thread",
1530
+ "Trop Kick",
1531
+ "Twinkle Tackle",
1532
+ "Zing Zap"
1533
+ ]
1534
+ },
1535
+ "ability": {
1536
+ "type": "string",
1537
+ "enum": [
1538
+ "Adaptability",
1539
+ "Aerilate",
1540
+ "Aftermath",
1541
+ "Air Lock",
1542
+ "Analytic",
1543
+ "Anger Point",
1544
+ "Anticipation",
1545
+ "Arena Trap",
1546
+ "Aroma Veil",
1547
+ "Aura Break",
1548
+ "Bad Dreams",
1549
+ "Battle Armor",
1550
+ "Big Pecks",
1551
+ "Blaze",
1552
+ "Bulletproof",
1553
+ "Cheek Pouch",
1554
+ "Chlorophyll",
1555
+ "Clear Body",
1556
+ "Cloud Nine",
1557
+ "Color Change",
1558
+ "Competitive",
1559
+ "Compound Eyes",
1560
+ "Contrary",
1561
+ "Cursed Body",
1562
+ "Cute Charm",
1563
+ "Damp",
1564
+ "Dark Aura",
1565
+ "Defeatist",
1566
+ "Defiant",
1567
+ "Delta Stream",
1568
+ "Desolate Land",
1569
+ "Download",
1570
+ "Drizzle",
1571
+ "Drought",
1572
+ "Dry Skin",
1573
+ "Early Bird",
1574
+ "Effect Spore",
1575
+ "Fairy Aura",
1576
+ "Filter",
1577
+ "Flame Body",
1578
+ "Flare Boost",
1579
+ "Flash Fire",
1580
+ "Flower Gift",
1581
+ "Flower Veil",
1582
+ "Forecast",
1583
+ "Forewarn",
1584
+ "Friend Guard",
1585
+ "Frisk",
1586
+ "Fur Coat",
1587
+ "Gale Wings",
1588
+ "Gluttony",
1589
+ "Gooey",
1590
+ "Grass Pelt",
1591
+ "Guts",
1592
+ "Harvest",
1593
+ "Healer",
1594
+ "Heatproof",
1595
+ "Heavy Metal",
1596
+ "Honey Gather",
1597
+ "Huge Power",
1598
+ "Hustle",
1599
+ "Hydration",
1600
+ "Hyper Cutter",
1601
+ "Ice Body",
1602
+ "Illuminate",
1603
+ "Illusion",
1604
+ "Immunity",
1605
+ "Imposter",
1606
+ "Infiltrator",
1607
+ "Inner Focus",
1608
+ "Insomnia",
1609
+ "Intimidate",
1610
+ "Iron Barbs",
1611
+ "Iron Fist",
1612
+ "Justified",
1613
+ "Keen Eye",
1614
+ "Klutz",
1615
+ "Leaf Guard",
1616
+ "Levitate",
1617
+ "Light Metal",
1618
+ "Lightning Rod",
1619
+ "Limber",
1620
+ "Liquid Ooze",
1621
+ "Magic Bounce",
1622
+ "Magic Guard",
1623
+ "Magician",
1624
+ "Magma Armor",
1625
+ "Magnet Pull",
1626
+ "Marvel Scale",
1627
+ "Mega Launcher",
1628
+ "Minus",
1629
+ "Mold Breaker",
1630
+ "Moody",
1631
+ "Motor Drive",
1632
+ "Moxie",
1633
+ "Multiscale",
1634
+ "Multitype",
1635
+ "Mummy",
1636
+ "Natural Cure",
1637
+ "No Guard",
1638
+ "Normalize",
1639
+ "Oblivious",
1640
+ "Overcoat",
1641
+ "Overgrow",
1642
+ "Own Tempo",
1643
+ "Parental Bond",
1644
+ "Pickpocket",
1645
+ "Pickup",
1646
+ "Pixilate",
1647
+ "Plus",
1648
+ "Poison Heal",
1649
+ "Poison Point",
1650
+ "Poison Touch",
1651
+ "Prankster",
1652
+ "Pressure",
1653
+ "Primordial Sea",
1654
+ "Protean",
1655
+ "Pure Power",
1656
+ "Quick Feet",
1657
+ "Rain Dish",
1658
+ "Rattled",
1659
+ "Reckless",
1660
+ "Refrigerate",
1661
+ "Regenerator",
1662
+ "Rivalry",
1663
+ "Rock Head",
1664
+ "Rough Skin",
1665
+ "Run Away",
1666
+ "Sand Force",
1667
+ "Sand Rush",
1668
+ "Sand Stream",
1669
+ "Sand Veil",
1670
+ "Sap Sipper",
1671
+ "Scrappy",
1672
+ "Serene Grace",
1673
+ "Shadow Tag",
1674
+ "Shed Skin",
1675
+ "Sheer Force",
1676
+ "Shell Armor",
1677
+ "Shield Dust",
1678
+ "Simple",
1679
+ "Skill Link",
1680
+ "Slow Start",
1681
+ "Sniper",
1682
+ "Snow Cloak",
1683
+ "Snow Warning",
1684
+ "Solar Power",
1685
+ "Solid Rock",
1686
+ "Soundproof",
1687
+ "Speed Boost",
1688
+ "Stall",
1689
+ "Stance Change",
1690
+ "Static",
1691
+ "Steadfast",
1692
+ "Stench",
1693
+ "Sticky Hold",
1694
+ "Storm Drain",
1695
+ "Strong Jaw",
1696
+ "Sturdy",
1697
+ "Suction Cups",
1698
+ "Super Luck",
1699
+ "Swarm",
1700
+ "Sweet Veil",
1701
+ "Swift Swim",
1702
+ "Symbiosis",
1703
+ "Synchronize",
1704
+ "Tangled Feet",
1705
+ "Technician",
1706
+ "Telepathy",
1707
+ "Teravolt",
1708
+ "Thick Fat",
1709
+ "Tinted Lens",
1710
+ "Torrent",
1711
+ "Tough Claws",
1712
+ "Toxic Boost",
1713
+ "Trace",
1714
+ "Truant",
1715
+ "Turboblaze",
1716
+ "Unaware",
1717
+ "Unburden",
1718
+ "Unnerve",
1719
+ "Victory Star",
1720
+ "Vital Spirit",
1721
+ "Volt Absorb",
1722
+ "Water Absorb",
1723
+ "Water Veil",
1724
+ "Weak Armor",
1725
+ "White Smoke",
1726
+ "Wonder Guard",
1727
+ "Wonder Skin",
1728
+ "Zen Mode",
1729
+ "Battery",
1730
+ "Battle Bond",
1731
+ "Beast Boost",
1732
+ "Berserk",
1733
+ "Comatose",
1734
+ "Corrosion",
1735
+ "Dancer",
1736
+ "Dazzling",
1737
+ "Disguise",
1738
+ "Electric Surge",
1739
+ "Emergency Exit",
1740
+ "Fluffy",
1741
+ "Full Metal Body",
1742
+ "Galvanize",
1743
+ "Grassy Surge",
1744
+ "Innards Out",
1745
+ "Liquid Voice",
1746
+ "Long Reach",
1747
+ "Merciless",
1748
+ "Misty Surge",
1749
+ "Power Construct",
1750
+ "Power of Alchemy",
1751
+ "Prism Armor",
1752
+ "Psychic Surge",
1753
+ "Queenly Majesty",
1754
+ "Receiver",
1755
+ "RKS System",
1756
+ "Schooling",
1757
+ "Shadow Shield",
1758
+ "Shields Down",
1759
+ "Slush Rush",
1760
+ "Soul-Heart",
1761
+ "Stakeout",
1762
+ "Stamina",
1763
+ "Steelworker",
1764
+ "Surge Surfer",
1765
+ "Tangling Hair",
1766
+ "Triage",
1767
+ "Water Bubble",
1768
+ "Water Compaction",
1769
+ "Wimp Out"
1770
+ ]
1771
+ },
1772
+ "egg_group": {
1773
+ "type": "string",
1774
+ "enum": [
1775
+ "Undiscovered",
1776
+ "Dragon",
1777
+ "Flying",
1778
+ "Field",
1779
+ "Bug",
1780
+ "Mineral",
1781
+ "Water 1",
1782
+ "Water 2",
1783
+ "Water 3",
1784
+ "Amorphous",
1785
+ "Grass",
1786
+ "Fairy",
1787
+ "Monster",
1788
+ "Human-Like",
1789
+ "Ditto"
1790
+ ]
1791
+ },
1792
+ "type": {
1793
+ "type": "string",
1794
+ "enum": [
1795
+ "Normal",
1796
+ "Fighting",
1797
+ "Flying",
1798
+ "Poison",
1799
+ "Ground",
1800
+ "Rock",
1801
+ "Bug",
1802
+ "Ghost",
1803
+ "Steel",
1804
+ "Fire",
1805
+ "Water",
1806
+ "Grass",
1807
+ "Electric",
1808
+ "Psychic",
1809
+ "Ice",
1810
+ "Dragon",
1811
+ "Dark",
1812
+ "Fairy"
1813
+ ]
1814
+ },
1815
+ "base_stats": {
1816
+ "type": "object",
1817
+ "properties": {
1818
+ "hp": {
1819
+ "type": "integer",
1820
+ "minimum": 0,
1821
+ "maximum": 255
1822
+ },
1823
+ "atk": {
1824
+ "type": "integer",
1825
+ "minimum": 0,
1826
+ "maximum": 255
1827
+ },
1828
+ "def": {
1829
+ "type": "integer",
1830
+ "minimum": 0,
1831
+ "maximum": 255
1832
+ },
1833
+ "sp_atk": {
1834
+ "type": "integer",
1835
+ "minimum": 0,
1836
+ "maximum": 255
1837
+ },
1838
+ "sp_def": {
1839
+ "type": "integer",
1840
+ "minimum": 0,
1841
+ "maximum": 255
1842
+ },
1843
+ "speed": {
1844
+ "type": "integer",
1845
+ "minimum": 0,
1846
+ "maximum": 255
1847
+ }
1848
+ },
1849
+ "required": [
1850
+ "hp",
1851
+ "atk",
1852
+ "def",
1853
+ "sp_atk",
1854
+ "sp_def",
1855
+ "speed"
1856
+ ],
1857
+ "additionalProperties": false
1858
+ },
1859
+ "ev_yield": {
1860
+ "type": "object",
1861
+ "properties": {
1862
+ "hp": {
1863
+ "type": "integer",
1864
+ "minimum": 0,
1865
+ "maximum": 3
1866
+ },
1867
+ "atk": {
1868
+ "type": "integer",
1869
+ "minimum": 0,
1870
+ "maximum": 3
1871
+ },
1872
+ "def": {
1873
+ "type": "integer",
1874
+ "minimum": 0,
1875
+ "maximum": 3
1876
+ },
1877
+ "sp_atk": {
1878
+ "type": "integer",
1879
+ "minimum": 0,
1880
+ "maximum": 3
1881
+ },
1882
+ "sp_def": {
1883
+ "type": "integer",
1884
+ "minimum": 0,
1885
+ "maximum": 3
1886
+ },
1887
+ "speed": {
1888
+ "type": "integer",
1889
+ "minimum": 0,
1890
+ "maximum": 3
1891
+ }
1892
+ },
1893
+ "required": [
1894
+ "hp",
1895
+ "atk",
1896
+ "def",
1897
+ "sp_atk",
1898
+ "sp_def",
1899
+ "speed"
1900
+ ],
1901
+ "additionalProperties": false
1902
+ },
1903
+ "translations": {
1904
+ "type": "object",
1905
+ "properties": {
1906
+ "cz": {
1907
+ "type": "string"
1908
+ },
1909
+ "dk": {
1910
+ "type": "string"
1911
+ },
1912
+ "fr": {
1913
+ "type": "string"
1914
+ },
1915
+ "de": {
1916
+ "type": "string"
1917
+ },
1918
+ "gr": {
1919
+ "type": "string"
1920
+ },
1921
+ "it": {
1922
+ "type": "string"
1923
+ },
1924
+ "pl": {
1925
+ "type": "string"
1926
+ },
1927
+ "tr": {
1928
+ "type": "string"
1929
+ },
1930
+ "en": {
1931
+ "type": "string"
1932
+ },
1933
+ "jp": {
1934
+ "type": "string"
1935
+ },
1936
+ "es": {
1937
+ "type": "string"
1938
+ }
1939
+ },
1940
+ "required": [
1941
+ "en",
1942
+ "de"
1943
+ ],
1944
+ "additionalProperties": false
1945
+ },
1946
+ "evolution": {
1947
+ "type": "object",
1948
+ "properties": {
1949
+ "to": {
1950
+ "$ref": "#/definitions/pokemon"
1951
+ },
1952
+ "level": {
1953
+ "type": "integer",
1954
+ "minimum": 0,
1955
+ "maximum": 100
1956
+ },
1957
+ "happiness": {
1958
+ "type": "boolean"
1959
+ },
1960
+ "trade": {
1961
+ "type": "boolean"
1962
+ },
1963
+ "level_up": {
1964
+ "type": "boolean"
1965
+ },
1966
+ "item": {
1967
+ "type": "string",
1968
+ "enum": [
1969
+ "Leaf Stone",
1970
+ "Fire Stone",
1971
+ "Shiny Stone",
1972
+ "Sun Stone",
1973
+ "Water Stone",
1974
+ "Dawn Stone",
1975
+ "Moon Stone",
1976
+ "Thunderstone",
1977
+ "Dusk Stone"
1978
+ ]
1979
+ },
1980
+ "hold_item": {
1981
+ "type": "string",
1982
+ "enum": [
1983
+ "Whipped Dream",
1984
+ "Sachet",
1985
+ "King's Rock",
1986
+ "Karrablast",
1987
+ "Dragon Scale",
1988
+ "Metal Coat",
1989
+ "Protector",
1990
+ "Dubious Disc",
1991
+ "Up-Grade",
1992
+ "Magmarizer",
1993
+ "Shelmet",
1994
+ "Prism Scale",
1995
+ "Electrizer",
1996
+ "Reaper Cloth",
1997
+ "Deepseatooth",
1998
+ "Deepseascale",
1999
+ "Razor Fang",
2000
+ "Oval Stone",
2001
+ "Razor Claw"
2002
+ ]
2003
+ },
2004
+ "move_learned": {
2005
+ "$ref": "#/definitions/move"
2006
+ },
2007
+ "conditions": {
2008
+ "type": "array",
2009
+ "items": {
2010
+ "type": "string",
2011
+ "enum": [
2012
+ "Female",
2013
+ "Male",
2014
+ "Attack > Defense",
2015
+ "Attack = Defense",
2016
+ "Defense > Attack",
2017
+ "Nighttime",
2018
+ "Daytime",
2019
+ "Random",
2020
+ "In Caves",
2021
+ "In Buildings",
2022
+ "Outside",
2023
+ "Near a Mossy Rock",
2024
+ "Near an Icy Rock",
2025
+ "Fairy Type Move",
2026
+ "Maximum Affection in Pokémon Amie",
2027
+ "Beauty",
2028
+ "Holding 3DS upside down",
2029
+ "In a Magnetic Field area",
2030
+ "With Remoraid in party",
2031
+ "With empty spot in party",
2032
+ "With a Dark type Pokémon in party",
2033
+ "During rain",
2034
+ "In Vast Poni Canyon",
2035
+ "At Mount Lanakila",
2036
+ "Pokémon Sun",
2037
+ "Pokémon Moon"
2038
+ ]
2039
+ }
2040
+ }
2041
+ },
2042
+ "required": [
2043
+ "to"
2044
+ ],
2045
+ "additionalProperties": false
2046
+ },
2047
+ "move_learnset": {
2048
+ "type": "object",
2049
+ "properties": {
2050
+ "move": {
2051
+ "$ref": "#/definitions/move"
2052
+ },
2053
+ "level": {
2054
+ "type": "integer",
2055
+ "minimum": 0,
2056
+ "maximum": 100
2057
+ },
2058
+ "tm": {
2059
+ "type": "string"
2060
+ },
2061
+ "egg_move": {
2062
+ "type": "boolean"
2063
+ },
2064
+ "variations": {
2065
+ "type": "array",
2066
+ "items": {
2067
+ "type": "string"
2068
+ }
2069
+ }
2070
+ },
2071
+ "required": [
2072
+ "move"
2073
+ ],
2074
+ "additionalProperties": false
2075
+ },
2076
+ "pokeathlon_stats": {
2077
+ "type": "object",
2078
+ "description": "Hash includes the 5 different stats speed, power stamina, skill and jump. Each of them has the current and the maximum.",
2079
+ "patternProperties": {
2080
+ "speed|power|stamina|skill|jump": {
2081
+ "type": "array",
2082
+ "minItems": 2,
2083
+ "maxItems": 2,
2084
+ "items": {
2085
+ "type": "integer",
2086
+ "minimum": 0,
2087
+ "maximum": 5
2088
+ }
2089
+ }
2090
+ },
2091
+ "additionalProperties": false,
2092
+ "required": ["speed", "power", "stamina", "skill", "jump"]
2093
+ }
2094
+ },
2095
+ "properties": {
2096
+ "names": {
2097
+ "$ref": "#/definitions/translations"
2098
+ },
2099
+ "national_id": {
2100
+ "type": "integer",
2101
+ "minimum": 1,
2102
+ "maximum": 807
2103
+ },
2104
+ "kanto_id": {
2105
+ "type": ["integer", "null"],
2106
+ "minimum": 1,
2107
+ "maximum": 151
2108
+ },
2109
+ "johto_id": {
2110
+ "type": ["integer", "null"],
2111
+ "minimum": 1,
2112
+ "maximum": 256
2113
+ },
2114
+ "hoenn_id": {
2115
+ "type": ["integer", "null"],
2116
+ "minimum": 1,
2117
+ "maximum": 211
2118
+ },
2119
+ "sinnoh_id": {
2120
+ "type": ["integer", "null"],
2121
+ "minimum": 1,
2122
+ "maximum": 210
2123
+ },
2124
+ "unova_id": {
2125
+ "type": ["integer", "null"],
2126
+ "minimum": 0,
2127
+ "maximum": 155
2128
+ },
2129
+ "kalos_id": {
2130
+ "type": ["integer", "null"],
2131
+ "minimum": 1,
2132
+ "maximum": 153
2133
+ },
2134
+ "alola_id": {
2135
+ "type": ["integer", "null"],
2136
+ "description": "Dex ID for Moon/Sun",
2137
+ "minimum": 1,
2138
+ "maximum": 302
2139
+ },
2140
+ "ultra_alola_id": {
2141
+ "type": ["integer", "null"],
2142
+ "description": "Dex ID for Ultra Moon/Ultra Sun",
2143
+ "minimum": 1,
2144
+ "maximum": 403
2145
+ },
2146
+ "categories": {
2147
+ "$ref": "#/definitions/translations"
2148
+ },
2149
+ "pokedex_entries": {
2150
+ "type": "object",
2151
+ "patternProperties": {
2152
+ "Red|Blue|Yellow|Gold|Silver|Crystal|Ruby|Sapphire|Emerald|FireRed|LeafGreen|Diamond|Pearl|Platinum|HeartGold|SoulSilver|Black|White|Black 2|White 2|X|Y|Omega Ruby|Alpha Sapphire|Sun|Moon|Ultra Sun|Ultra Moon": {
2153
+ "$ref": "#/definitions/translations"
2154
+ }
2155
+ },
2156
+ "additionalProperties": false
2157
+ },
2158
+ "evolution_from": {
2159
+ "$ref": "#/definitions/pokemon"
2160
+ },
2161
+ "evolutions": {
2162
+ "type": "array",
2163
+ "items": {
2164
+ "$ref": "#/definitions/evolution"
2165
+ }
2166
+ },
2167
+ "types": {
2168
+ "type": "array",
2169
+ "minItems": 1,
2170
+ "maxItems": 2,
2171
+ "items": {
2172
+ "$ref": "#/definitions/type"
2173
+ }
2174
+ },
2175
+ "abilities": {
2176
+ "type": "array",
2177
+ "minItems": 1,
2178
+ "maxItems": 3,
2179
+ "items": {
2180
+ "type": "object",
2181
+ "properties": {
2182
+ "name": {
2183
+ "$ref": "#/definitions/ability"
2184
+ },
2185
+ "hidden": {
2186
+ "type": "boolean"
2187
+ }
2188
+ },
2189
+ "required": [
2190
+ "name"
2191
+ ],
2192
+ "additionalProperties": false
2193
+ }
2194
+ },
2195
+ "gender_ratios": {
2196
+ "type": ["object", "null"],
2197
+ "properties": {
2198
+ "female": {
2199
+ "type": "number",
2200
+ "minimum": 0,
2201
+ "maximum": 100.0
2202
+ },
2203
+ "male": {
2204
+ "type": "number",
2205
+ "minimum": 0,
2206
+ "maximum": 100.0
2207
+ }
2208
+ },
2209
+ "additionalProperties": false
2210
+ },
2211
+ "catch_rate": {
2212
+ "type": "integer",
2213
+ "minimum": 0,
2214
+ "maximum": 255
2215
+ },
2216
+ "egg_groups": {
2217
+ "type": "array",
2218
+ "minItems": 1,
2219
+ "maxItems": 2,
2220
+ "items": {
2221
+ "$ref": "#/definitions/egg_group"
2222
+ }
2223
+ },
2224
+ "hatch_time": {
2225
+ "type": "array",
2226
+ "minItems": 2,
2227
+ "maxItems": 2,
2228
+ "items": {
2229
+ "type": "integer",
2230
+ "minimum": 0,
2231
+ "maximum": 50000
2232
+ }
2233
+ },
2234
+ "height_us": {
2235
+ "type": "string",
2236
+ "description": "Height in inch e.g. 32'20\"",
2237
+ "pattern": "^[0-9]{1,3}'[0-9]{1,2}\"$"
2238
+ },
2239
+ "height_eu": {
2240
+ "type": "string",
2241
+ "description": "Height in metres e.g. 2.3 m",
2242
+ "pattern": "^[0-9]{1,2}.[0-9]{1} m$"
2243
+ },
2244
+ "weight_us": {
2245
+ "type": "string",
2246
+ "description": "Weight in lbs e.g. 200.3 lbs.",
2247
+ "pattern": "^[0-9]{1,4}.[0-9]{1} lbs.$"
2248
+ },
2249
+ "weight_eu": {
2250
+ "type": "string",
2251
+ "description": "Weight in kg e.g. 200.5 kg",
2252
+ "pattern": "^[0-9]{1,4}.[0-9]{1} kg$"
2253
+ },
2254
+ "base_exp_yield": {
2255
+ "type": "integer",
2256
+ "minimum": 0,
2257
+ "maximum": 608
2258
+ },
2259
+ "leveling_rate": {
2260
+ "type": "string",
2261
+ "enum": [
2262
+ "Fast",
2263
+ "Medium Fast",
2264
+ "Medium Slow",
2265
+ "Slow",
2266
+ "Fluctuating",
2267
+ "Erratic"
2268
+ ]
2269
+ },
2270
+ "ev_yield": {
2271
+ "$ref": "#/definitions/ev_yield"
2272
+ },
2273
+ "color": {
2274
+ "type": "string",
2275
+ "enum": [
2276
+ "Pink",
2277
+ "Green",
2278
+ "Blue",
2279
+ "Purple",
2280
+ "Gray",
2281
+ "Brown",
2282
+ "Black",
2283
+ "Yellow",
2284
+ "White",
2285
+ "Red"
2286
+ ]
2287
+ },
2288
+ "base_friendship": {
2289
+ "type": "integer",
2290
+ "minimum": 0,
2291
+ "maximum": 255
2292
+ },
2293
+ "base_stats": {
2294
+ "$ref": "#/definitions/base_stats"
2295
+ },
2296
+ "pokeathlon_stats": {
2297
+ "$ref": "#/definitions/pokeathlon_stats"
2298
+ },
2299
+ "mega_evolutions": {
2300
+ "type": "array",
2301
+ "description": "List of possible mega evolutions, if available. Charizard e.g. has two.",
2302
+ "minItems": 0,
2303
+ "maxItems": 2,
2304
+ "items": {
2305
+ "type": "object",
2306
+ "properties": {
2307
+ "types": {
2308
+ "type": "array",
2309
+ "minItems": 1,
2310
+ "maxItems": 2,
2311
+ "items": {
2312
+ "$ref": "#/definitions/type"
2313
+ }
2314
+ },
2315
+ "ability": {
2316
+ "$ref": "#/definitions/ability"
2317
+ },
2318
+ "height_us": {
2319
+ "type": "string",
2320
+ "pattern": "^[0-9]{1,3}'[0-9]{2}\"$"
2321
+ },
2322
+ "height_eu": {
2323
+ "type": "string",
2324
+ "pattern": "^[0-9]{1,2}.[0-9]{1} m$"
2325
+ },
2326
+ "weight_us": {
2327
+ "type": "string",
2328
+ "pattern": "^[0-9]{1,4}.[0-9]{1} lbs.$"
2329
+ },
2330
+ "weight_eu": {
2331
+ "type": "string",
2332
+ "pattern": "^[0-9]{1,4}.[0-9]{1} kg$"
2333
+ },
2334
+ "base_stats": {
2335
+ "$ref": "#/definitions/base_stats"
2336
+ },
2337
+ "mega_stone": {
2338
+ "type": "string"
2339
+ },
2340
+ "image_suffix": {
2341
+ "description": "Suffix used in oakdex-pokedex-sprites",
2342
+ "type": "string"
2343
+ }
2344
+ },
2345
+ "required": [
2346
+ "types",
2347
+ "ability",
2348
+ "height_us",
2349
+ "height_eu",
2350
+ "weight_us",
2351
+ "weight_eu",
2352
+ "base_stats",
2353
+ "mega_stone"
2354
+ ],
2355
+ "additionalProperties": false
2356
+ }
2357
+ },
2358
+ "variation_names": {
2359
+ "$ref": "#/definitions/translations"
2360
+ },
2361
+ "variations": {
2362
+ "type": "array",
2363
+ "description": "Pokemon that can change their form (e.g. Deoxys) otherwise always empty",
2364
+ "items": {
2365
+ "type": "object",
2366
+ "properties": {
2367
+ "condition": {
2368
+ "type": "string",
2369
+ "enum": [
2370
+ "Alola",
2371
+ "harsh sunlight",
2372
+ "rain",
2373
+ "hail",
2374
+ "Pokémon FireRed",
2375
+ "Pokémon LeafGreen",
2376
+ "Pokémon Emerald",
2377
+ "Battled in Cave or Beach",
2378
+ "Battled in Building",
2379
+ "Sandy Cloak of Burmy",
2380
+ "Trash Cloak of Burmy",
2381
+ "East Sea",
2382
+ "possesses microwave oven",
2383
+ "possesses washing machine",
2384
+ "possesses refrigerator",
2385
+ "possesses electric fan",
2386
+ "possesses lawnmower",
2387
+ "holding Griseous Orb or in Distortion World",
2388
+ "using Gracidea flower",
2389
+ "holding Plate or Z-Crystal",
2390
+ "Inherited or found by surfing",
2391
+ "using Zen Mode",
2392
+ "Summer",
2393
+ "Winter",
2394
+ "Autumn",
2395
+ "using Reveal Glass",
2396
+ "using DNA Splicers",
2397
+ "learning Secret Sword",
2398
+ "using Relic Song",
2399
+ "holding Drive",
2400
+ "using Battle Bond",
2401
+ "Player's Location",
2402
+ "Paris Event",
2403
+ "GTS 100 millionth trade Event",
2404
+ "Inherited or holding Flower",
2405
+ "groomed",
2406
+ "using damaging move",
2407
+ "Inherited or Random",
2408
+ "in battle",
2409
+ "using Prison Bottle",
2410
+ "using Nectar",
2411
+ "Pokémon Moon",
2412
+ "Level 20 and using Schooling",
2413
+ "holding Memory",
2414
+ "using Shields Down",
2415
+ "when receiving damage",
2416
+ "using Sunsteel Strike",
2417
+ "using Moongeist Beam",
2418
+ "female"
2419
+ ]
2420
+ },
2421
+ "names": {
2422
+ "$ref": "#/definitions/translations"
2423
+ },
2424
+ "types": {
2425
+ "type": "array",
2426
+ "minItems": 1,
2427
+ "maxItems": 2,
2428
+ "items": {
2429
+ "$ref": "#/definitions/type"
2430
+ }
2431
+ },
2432
+ "height_us": {
2433
+ "type": "string",
2434
+ "pattern": "^[0-9]{1,3}'[0-9]{2}\"$"
2435
+ },
2436
+ "height_eu": {
2437
+ "type": "string",
2438
+ "pattern": "^[0-9]{1,2}.[0-9]{1} m$"
2439
+ },
2440
+ "weight_us": {
2441
+ "type": "string",
2442
+ "pattern": "^[0-9]{1,4}.[0-9]{1} lbs.$"
2443
+ },
2444
+ "weight_eu": {
2445
+ "type": "string",
2446
+ "pattern": "^[0-9]{1,4}.[0-9]{1} kg$"
2447
+ },
2448
+ "base_stats": {
2449
+ "$ref": "#/definitions/base_stats"
2450
+ },
2451
+ "pokeathlon_stats": {
2452
+ "$ref": "#/definitions/pokeathlon_stats"
2453
+ },
2454
+ "ev_yield": {
2455
+ "$ref": "#/definitions/ev_yield"
2456
+ },
2457
+ "abilities": {
2458
+ "type": "array",
2459
+ "minItems": 1,
2460
+ "maxItems": 3,
2461
+ "items": {
2462
+ "type": "object",
2463
+ "properties": {
2464
+ "name": {
2465
+ "$ref": "#/definitions/ability"
2466
+ },
2467
+ "hidden": {
2468
+ "type": "boolean"
2469
+ }
2470
+ },
2471
+ "required": [
2472
+ "name"
2473
+ ],
2474
+ "additionalProperties": false
2475
+ }
2476
+ },
2477
+ "image_suffix": {
2478
+ "description": "Suffix used in oakdex-pokedex-sprites",
2479
+ "type": "string"
2480
+ }
2481
+ },
2482
+ "required": [
2483
+ "names",
2484
+ "types"
2485
+ ],
2486
+ "additionalProperties": false
2487
+ }
2488
+ },
2489
+ "move_learnsets": {
2490
+ "type": "array",
2491
+ "description": "List of movesets by generation",
2492
+ "items": {
2493
+ "type": "object",
2494
+ "properties": {
2495
+ "games": {
2496
+ "type": "array",
2497
+ "minItems": 1,
2498
+ "maxItems": 3,
2499
+ "items": {
2500
+ "type": "string",
2501
+ "enum": [
2502
+ "Red",
2503
+ "Blue",
2504
+ "Yellow",
2505
+ "Gold",
2506
+ "Silver",
2507
+ "Crystal",
2508
+ "Ruby",
2509
+ "Sapphire",
2510
+ "Emerald",
2511
+ "FireRed",
2512
+ "LeafGreen",
2513
+ "Diamond",
2514
+ "Pearl",
2515
+ "Platinum",
2516
+ "HeartGold",
2517
+ "SoulSilver",
2518
+ "Black",
2519
+ "White",
2520
+ "Black 2",
2521
+ "White 2",
2522
+ "X",
2523
+ "Y",
2524
+ "Omega Ruby",
2525
+ "Alpha Sapphire",
2526
+ "Sun",
2527
+ "Moon",
2528
+ "Ultra Sun",
2529
+ "Ultra Moon"
2530
+ ]
2531
+ }
2532
+ },
2533
+ "learnset": {
2534
+ "type": "array",
2535
+ "items": {
2536
+ "$ref": "#/definitions/move_learnset"
2537
+ }
2538
+ }
2539
+ },
2540
+ "required": [
2541
+ "games",
2542
+ "learnset"
2543
+ ],
2544
+ "additionalProperties": false
2545
+ }
2546
+ }
2547
+ },
2548
+ "required": [
2549
+ "names",
2550
+ "categories",
2551
+ "national_id",
2552
+ "kanto_id",
2553
+ "johto_id",
2554
+ "hoenn_id",
2555
+ "sinnoh_id",
2556
+ "unova_id",
2557
+ "kalos_id",
2558
+ "alola_id",
2559
+ "ultra_alola_id",
2560
+ "types",
2561
+ "abilities",
2562
+ "gender_ratios",
2563
+ "catch_rate",
2564
+ "egg_groups",
2565
+ "hatch_time",
2566
+ "height_us",
2567
+ "height_eu",
2568
+ "weight_us",
2569
+ "weight_eu",
2570
+ "base_exp_yield",
2571
+ "leveling_rate",
2572
+ "ev_yield",
2573
+ "color",
2574
+ "base_friendship",
2575
+ "base_stats",
2576
+ "move_learnsets",
2577
+ "evolutions",
2578
+ "mega_evolutions",
2579
+ "evolution_from",
2580
+ "variations",
2581
+ "pokedex_entries"
2582
+ ],
2583
+ "additionalProperties": false
2584
+ }