@pkmn/sim 0.7.7 → 0.7.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/cjs/config/formats.js +14 -6
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/abilities.js +9 -8
  4. package/build/cjs/data/abilities.js.map +1 -1
  5. package/build/cjs/data/formats-data.js +2 -2
  6. package/build/cjs/data/formats-data.js.map +1 -1
  7. package/build/cjs/data/mods/gen4/moves.js +6 -0
  8. package/build/cjs/data/mods/gen4/moves.js.map +1 -1
  9. package/build/cjs/data/mods/gen8/moves.js +6 -16
  10. package/build/cjs/data/mods/gen8/moves.js.map +1 -1
  11. package/build/cjs/data/moves.js +6 -12
  12. package/build/cjs/data/moves.js.map +1 -1
  13. package/build/cjs/data/pokedex.js +918 -946
  14. package/build/cjs/data/pokedex.js.map +1 -1
  15. package/build/cjs/sim/battle-actions.js +3 -1
  16. package/build/cjs/sim/battle-actions.js.map +1 -1
  17. package/build/cjs/sim/pokemon.js +1 -1
  18. package/build/cjs/sim/pokemon.js.map +1 -1
  19. package/build/esm/config/formats.mjs +14 -6
  20. package/build/esm/config/formats.mjs.map +1 -1
  21. package/build/esm/data/abilities.mjs +9 -8
  22. package/build/esm/data/abilities.mjs.map +1 -1
  23. package/build/esm/data/formats-data.mjs +2 -2
  24. package/build/esm/data/formats-data.mjs.map +1 -1
  25. package/build/esm/data/mods/gen4/moves.mjs +6 -0
  26. package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
  27. package/build/esm/data/mods/gen8/moves.mjs +6 -16
  28. package/build/esm/data/mods/gen8/moves.mjs.map +1 -1
  29. package/build/esm/data/moves.mjs +6 -12
  30. package/build/esm/data/moves.mjs.map +1 -1
  31. package/build/esm/data/pokedex.mjs +918 -946
  32. package/build/esm/data/pokedex.mjs.map +1 -1
  33. package/build/esm/sim/battle-actions.mjs +3 -1
  34. package/build/esm/sim/battle-actions.mjs.map +1 -1
  35. package/build/esm/sim/pokemon.mjs +1 -1
  36. package/build/esm/sim/pokemon.mjs.map +1 -1
  37. package/package.json +1 -1
@@ -16699,41 +16699,8 @@ exports.Pokedex = {
16699
16699
  evoLevel: 18,
16700
16700
  eggGroups: ["Field"],
16701
16701
  },
16702
- dudunsparce: {
16703
- num: 917,
16704
- name: "Dudunsparce",
16705
- baseForme: "Two-Segment",
16706
- types: ["Normal"],
16707
- baseStats: { hp: 125, atk: 100, def: 80, spa: 85, spd: 75, spe: 55 },
16708
- abilities: { 0: "Serene Grace", 1: "Run Away", H: "Rattled" },
16709
- heightm: 3.6,
16710
- weightkg: 39.2,
16711
- color: "Yellow",
16712
- prevo: "Dunsparce",
16713
- evoType: "levelMove",
16714
- evoMove: "Hyper Drill",
16715
- otherFormes: ["Dudunsparce-Three-Segment"],
16716
- formeOrder: ["Dudunsparce", "Dudunsparce-Three-Segment"],
16717
- eggGroups: ["Field"],
16718
- },
16719
- dudunsparcethreesegment: {
16720
- num: 917,
16721
- name: "Dudunsparce-Three-Segment",
16722
- baseSpecies: "Dudunsparce",
16723
- forme: "Three-Segment",
16724
- types: ["Normal"],
16725
- baseStats: { hp: 125, atk: 100, def: 80, spa: 85, spd: 75, spe: 55 },
16726
- abilities: { 0: "Serene Grace", 1: "Run Away", H: "Rattled" },
16727
- heightm: 4.5,
16728
- weightkg: 47.4,
16729
- color: "Yellow",
16730
- prevo: "Dunsparce",
16731
- evoType: "levelMove",
16732
- evoMove: "Hyper Drill",
16733
- eggGroups: ["Field"],
16734
- },
16735
16702
  tarountula: {
16736
- num: 918,
16703
+ num: 917,
16737
16704
  name: "Tarountula",
16738
16705
  types: ["Bug"],
16739
16706
  baseStats: { hp: 35, atk: 41, def: 45, spa: 29, spd: 40, spe: 20 },
@@ -16745,7 +16712,7 @@ exports.Pokedex = {
16745
16712
  eggGroups: ["Bug"],
16746
16713
  },
16747
16714
  spidops: {
16748
- num: 919,
16715
+ num: 918,
16749
16716
  name: "Spidops",
16750
16717
  types: ["Bug"],
16751
16718
  baseStats: { hp: 60, atk: 79, def: 92, spa: 52, spd: 86, spe: 35 },
@@ -16758,7 +16725,7 @@ exports.Pokedex = {
16758
16725
  eggGroups: ["Bug"],
16759
16726
  },
16760
16727
  nymble: {
16761
- num: 920,
16728
+ num: 919,
16762
16729
  name: "Nymble",
16763
16730
  types: ["Bug"],
16764
16731
  baseStats: { hp: 33, atk: 46, def: 40, spa: 21, spd: 25, spe: 45 },
@@ -16770,7 +16737,7 @@ exports.Pokedex = {
16770
16737
  eggGroups: ["Bug"],
16771
16738
  },
16772
16739
  lokix: {
16773
- num: 921,
16740
+ num: 920,
16774
16741
  name: "Lokix",
16775
16742
  types: ["Bug", "Dark"],
16776
16743
  baseStats: { hp: 71, atk: 102, def: 78, spa: 52, spd: 55, spe: 92 },
@@ -16782,255 +16749,290 @@ exports.Pokedex = {
16782
16749
  evoLevel: 24,
16783
16750
  eggGroups: ["Bug"],
16784
16751
  },
16785
- rellor: {
16752
+ pawmi: {
16753
+ num: 921,
16754
+ name: "Pawmi",
16755
+ types: ["Electric"],
16756
+ baseStats: { hp: 45, atk: 50, def: 20, spa: 40, spd: 25, spe: 60 },
16757
+ abilities: { 0: "Static", 1: "Natural Cure", H: "Iron Fist" },
16758
+ heightm: 0.3,
16759
+ weightkg: 2.5,
16760
+ color: "Yellow",
16761
+ evos: ["Pawmo"],
16762
+ eggGroups: ["Field"],
16763
+ },
16764
+ pawmo: {
16786
16765
  num: 922,
16787
- name: "Rellor",
16788
- types: ["Bug"],
16789
- baseStats: { hp: 41, atk: 50, def: 60, spa: 31, spd: 58, spe: 30 },
16790
- abilities: { 0: "Compound Eyes", H: "Shed Skin" },
16791
- heightm: 0.2,
16792
- weightkg: 1,
16793
- color: "Brown",
16794
- evos: ["Rabsca"],
16795
- eggGroups: ["Bug"],
16766
+ name: "Pawmo",
16767
+ types: ["Electric", "Fighting"],
16768
+ baseStats: { hp: 60, atk: 75, def: 40, spa: 50, spd: 40, spe: 85 },
16769
+ abilities: { 0: "Volt Absorb", 1: "Natural Cure", H: "Iron Fist" },
16770
+ heightm: 0.4,
16771
+ weightkg: 6.5,
16772
+ color: "Yellow",
16773
+ prevo: "Pawmi",
16774
+ evoLevel: 18,
16775
+ evos: ["Pawmot"],
16776
+ eggGroups: ["Field"],
16796
16777
  },
16797
- rabsca: {
16778
+ pawmot: {
16798
16779
  num: 923,
16799
- name: "Rabsca",
16800
- types: ["Bug", "Psychic"],
16801
- baseStats: { hp: 75, atk: 50, def: 85, spa: 115, spd: 100, spe: 45 },
16802
- abilities: { 0: "Synchronize", H: "Telepathy" },
16803
- heightm: 0.3,
16804
- weightkg: 3.5,
16805
- color: "Green",
16806
- prevo: "Rellor",
16780
+ name: "Pawmot",
16781
+ types: ["Electric", "Fighting"],
16782
+ baseStats: { hp: 70, atk: 115, def: 70, spa: 70, spd: 60, spe: 105 },
16783
+ abilities: { 0: "Volt Absorb", 1: "Natural Cure", H: "Iron Fist" },
16784
+ heightm: 0.9,
16785
+ weightkg: 41,
16786
+ color: "Yellow",
16787
+ prevo: "Pawmo",
16807
16788
  evoType: "other",
16808
16789
  evoCondition: "walk 1000 steps in Let's Go",
16809
- eggGroups: ["Bug"],
16790
+ eggGroups: ["Field"],
16810
16791
  },
16811
- greavard: {
16792
+ tandemaus: {
16812
16793
  num: 924,
16813
- name: "Greavard",
16814
- types: ["Ghost"],
16815
- baseStats: { hp: 50, atk: 61, def: 60, spa: 30, spd: 55, spe: 34 },
16816
- abilities: { 0: "Pickup", H: "Fluffy" },
16817
- heightm: 0.6,
16818
- weightkg: 35,
16794
+ name: "Tandemaus",
16795
+ types: ["Normal"],
16796
+ gender: "N",
16797
+ baseStats: { hp: 50, atk: 50, def: 45, spa: 40, spd: 45, spe: 75 },
16798
+ abilities: { 0: "Run Away", 1: "Pickup", H: "Own Tempo" },
16799
+ heightm: 0.3,
16800
+ weightkg: 1.8,
16819
16801
  color: "White",
16820
- evos: ["Houndstone"],
16821
- eggGroups: ["Field"],
16802
+ evos: ["Maushold", "Maushold-Four"],
16803
+ eggGroups: ["Field", "Fairy"],
16822
16804
  },
16823
- houndstone: {
16805
+ maushold: {
16824
16806
  num: 925,
16825
- name: "Houndstone",
16826
- types: ["Ghost"],
16827
- baseStats: { hp: 72, atk: 101, def: 100, spa: 50, spd: 97, spe: 68 },
16828
- abilities: { 0: "Sand Rush", H: "Fluffy" },
16829
- heightm: 2,
16830
- weightkg: 15,
16807
+ name: "Maushold",
16808
+ baseForme: "Three",
16809
+ types: ["Normal"],
16810
+ gender: "N",
16811
+ baseStats: { hp: 74, atk: 75, def: 70, spa: 65, spd: 75, spe: 111 },
16812
+ abilities: { 0: "Friend Guard", 1: "Cheek Pouch", H: "Technician" },
16813
+ heightm: 0.3,
16814
+ weightkg: 2.3,
16831
16815
  color: "White",
16832
- prevo: "Greavard",
16833
- evoLevel: 30,
16834
- evoCondition: "at night",
16835
- eggGroups: ["Field"],
16816
+ prevo: "Tandemaus",
16817
+ evoLevel: 25,
16818
+ otherFormes: ["Maushold-Four"],
16819
+ formeOrder: ["Maushold", "Maushold-Four"],
16820
+ eggGroups: ["Field", "Fairy"],
16836
16821
  },
16837
- flittle: {
16822
+ mausholdfour: {
16823
+ num: 925,
16824
+ name: "Maushold-Four",
16825
+ baseSpecies: "Maushold",
16826
+ forme: "Four",
16827
+ types: ["Normal"],
16828
+ gender: "N",
16829
+ baseStats: { hp: 74, atk: 75, def: 70, spa: 65, spd: 75, spe: 111 },
16830
+ abilities: { 0: "Friend Guard", 1: "Cheek Pouch", H: "Technician" },
16831
+ heightm: 0.3,
16832
+ weightkg: 2.8,
16833
+ color: "White",
16834
+ prevo: "Tandemaus",
16835
+ evoLevel: 25,
16836
+ eggGroups: ["Field", "Fairy"],
16837
+ },
16838
+ fidough: {
16838
16839
  num: 926,
16839
- name: "Flittle",
16840
- types: ["Psychic"],
16841
- baseStats: { hp: 30, atk: 35, def: 30, spa: 55, spd: 40, spe: 75 },
16842
- abilities: { 0: "Anticipation", 1: "Frisk", H: "Speed Boost" },
16843
- heightm: 0.2,
16844
- weightkg: 1.5,
16840
+ name: "Fidough",
16841
+ types: ["Fairy"],
16842
+ baseStats: { hp: 37, atk: 55, def: 70, spa: 30, spd: 55, spe: 65 },
16843
+ abilities: { 0: "Own Tempo", H: "Klutz" },
16844
+ heightm: 0.3,
16845
+ weightkg: 10.9,
16845
16846
  color: "Yellow",
16846
- evos: ["Espathra"],
16847
- eggGroups: ["Flying"],
16847
+ evos: ["Dachsbun"],
16848
+ eggGroups: ["Field", "Mineral"],
16848
16849
  },
16849
- espathra: {
16850
+ dachsbun: {
16850
16851
  num: 927,
16851
- name: "Espathra",
16852
- types: ["Psychic"],
16853
- baseStats: { hp: 95, atk: 60, def: 60, spa: 101, spd: 60, spe: 105 },
16854
- abilities: { 0: "Opportunist", 1: "Frisk", H: "Speed Boost" },
16855
- heightm: 1.9,
16856
- weightkg: 90,
16857
- color: "Yellow",
16858
- prevo: "Flittle",
16859
- evoLevel: 35,
16860
- eggGroups: ["Flying"],
16852
+ name: "Dachsbun",
16853
+ types: ["Fairy"],
16854
+ baseStats: { hp: 57, atk: 80, def: 115, spa: 50, spd: 80, spe: 95 },
16855
+ abilities: { 0: "Well-Baked Body", H: "Aroma Veil" },
16856
+ heightm: 0.5,
16857
+ weightkg: 14.9,
16858
+ color: "Brown",
16859
+ prevo: "Fidough",
16860
+ evoLevel: 26,
16861
+ eggGroups: ["Field", "Mineral"],
16861
16862
  },
16862
- farigiraf: {
16863
+ smoliv: {
16863
16864
  num: 928,
16864
- name: "Farigiraf",
16865
- types: ["Normal", "Psychic"],
16866
- baseStats: { hp: 120, atk: 90, def: 70, spa: 110, spd: 70, spe: 60 },
16867
- abilities: { 0: "Cud Chew", 1: "Armor Tail", H: "Sap Sipper" },
16868
- heightm: 3.2,
16869
- weightkg: 160,
16870
- color: "Brown",
16871
- prevo: "Girafarig",
16872
- evoType: "levelMove",
16873
- evoMove: "Twin Beam",
16874
- eggGroups: ["Field"],
16865
+ name: "Smoliv",
16866
+ types: ["Grass", "Normal"],
16867
+ baseStats: { hp: 41, atk: 35, def: 45, spa: 58, spd: 51, spe: 30 },
16868
+ abilities: { 0: "Early Bird", H: "Harvest" },
16869
+ heightm: 0.3,
16870
+ weightkg: 6.5,
16871
+ color: "Green",
16872
+ evos: ["Dolliv"],
16873
+ eggGroups: ["Grass"],
16875
16874
  },
16876
- wiglett: {
16875
+ dolliv: {
16877
16876
  num: 929,
16878
- name: "Wiglett",
16879
- types: ["Water"],
16880
- baseStats: { hp: 10, atk: 55, def: 25, spa: 35, spd: 25, spe: 95 },
16881
- abilities: { 0: "Gooey", 1: "Rattled", H: "Sand Veil" },
16882
- heightm: 1.2,
16883
- weightkg: 1.8,
16884
- color: "White",
16885
- evos: ["Wugtrio"],
16886
- eggGroups: ["Water 3"],
16877
+ name: "Dolliv",
16878
+ types: ["Grass", "Normal"],
16879
+ baseStats: { hp: 52, atk: 53, def: 60, spa: 78, spd: 78, spe: 33 },
16880
+ abilities: { 0: "Early Bird", H: "Harvest" },
16881
+ heightm: 0.6,
16882
+ weightkg: 11.9,
16883
+ color: "Green",
16884
+ prevo: "Smoliv",
16885
+ evoLevel: 25,
16886
+ evos: ["Arboliva"],
16887
+ eggGroups: ["Grass"],
16887
16888
  },
16888
- wugtrio: {
16889
+ arboliva: {
16889
16890
  num: 930,
16890
- name: "Wugtrio",
16891
- types: ["Water"],
16892
- baseStats: { hp: 35, atk: 100, def: 50, spa: 50, spd: 70, spe: 120 },
16893
- abilities: { 0: "Gooey", 1: "Rattled", H: "Sand Veil" },
16894
- heightm: 1.2,
16895
- weightkg: 5.4,
16896
- color: "Red",
16897
- prevo: "Wiglett",
16898
- evoLevel: 26,
16899
- eggGroups: ["Water 3"],
16900
- },
16901
- dondozo: {
16902
- num: 931,
16903
- name: "Dondozo",
16904
- types: ["Water"],
16905
- baseStats: { hp: 150, atk: 100, def: 115, spa: 65, spd: 65, spe: 35 },
16906
- abilities: { 0: "Unaware", 1: "Oblivious", H: "Water Veil" },
16907
- heightm: 12,
16908
- weightkg: 220,
16891
+ name: "Arboliva",
16892
+ types: ["Grass", "Normal"],
16893
+ baseStats: { hp: 78, atk: 69, def: 90, spa: 125, spd: 109, spe: 39 },
16894
+ abilities: { 0: "Seed Sower", H: "Harvest" },
16895
+ heightm: 1.4,
16896
+ weightkg: 48.2,
16897
+ color: "Green",
16898
+ prevo: "Dolliv",
16899
+ evoLevel: 35,
16900
+ eggGroups: ["Grass"],
16901
+ },
16902
+ squawkabilly: {
16903
+ num: 931,
16904
+ name: "Squawkabilly",
16905
+ baseForme: "Green",
16906
+ types: ["Normal", "Flying"],
16907
+ baseStats: { hp: 82, atk: 96, def: 51, spa: 45, spd: 51, spe: 92 },
16908
+ abilities: { 0: "Intimidate", 1: "Hustle", H: "Guts" },
16909
+ heightm: 0.6,
16910
+ weightkg: 2.4,
16911
+ color: "Green",
16912
+ otherFormes: ["Squawkabilly-Blue", "Squawkabilly-Yellow", "Squawkabilly-White"],
16913
+ formeOrder: ["Squawkabilly", "Squawkabilly-Blue", "Squawkabilly-Yellow", "Squawkabilly-White"],
16914
+ eggGroups: ["Flying"],
16915
+ },
16916
+ squawkabillyblue: {
16917
+ num: 931,
16918
+ name: "Squawkabilly-Blue",
16919
+ baseSpecies: "Squawkabilly",
16920
+ forme: "Blue",
16921
+ types: ["Normal", "Flying"],
16922
+ baseStats: { hp: 82, atk: 96, def: 51, spa: 45, spd: 51, spe: 92 },
16923
+ abilities: { 0: "Intimidate", 1: "Hustle", H: "Guts" },
16924
+ heightm: 0.6,
16925
+ weightkg: 2.4,
16909
16926
  color: "Blue",
16910
- eggGroups: ["Water 2"],
16927
+ eggGroups: ["Flying"],
16911
16928
  },
16912
- veluza: {
16929
+ squawkabillyyellow: {
16930
+ num: 931,
16931
+ name: "Squawkabilly-Yellow",
16932
+ baseSpecies: "Squawkabilly",
16933
+ forme: "Yellow",
16934
+ types: ["Normal", "Flying"],
16935
+ baseStats: { hp: 82, atk: 96, def: 51, spa: 45, spd: 51, spe: 92 },
16936
+ abilities: { 0: "Intimidate", 1: "Hustle", H: "Sheer Force" },
16937
+ heightm: 0.6,
16938
+ weightkg: 2.4,
16939
+ color: "Yellow",
16940
+ eggGroups: ["Flying"],
16941
+ },
16942
+ squawkabillywhite: {
16943
+ num: 931,
16944
+ name: "Squawkabilly-White",
16945
+ baseSpecies: "Squawkabilly",
16946
+ forme: "White",
16947
+ types: ["Normal", "Flying"],
16948
+ baseStats: { hp: 82, atk: 96, def: 51, spa: 45, spd: 51, spe: 92 },
16949
+ abilities: { 0: "Intimidate", 1: "Hustle", H: "Sheer Force" },
16950
+ heightm: 0.6,
16951
+ weightkg: 2.4,
16952
+ color: "White",
16953
+ eggGroups: ["Flying"],
16954
+ },
16955
+ nacli: {
16913
16956
  num: 932,
16914
- name: "Veluza",
16915
- types: ["Water", "Psychic"],
16916
- baseStats: { hp: 90, atk: 102, def: 73, spa: 78, spd: 65, spe: 70 },
16917
- abilities: { 0: "Mold Breaker", H: "Sharpness" },
16918
- heightm: 2.5,
16919
- weightkg: 90,
16920
- color: "Gray",
16921
- eggGroups: ["Water 2"],
16957
+ name: "Nacli",
16958
+ types: ["Rock"],
16959
+ baseStats: { hp: 55, atk: 55, def: 75, spa: 35, spd: 35, spe: 25 },
16960
+ abilities: { 0: "Purifying Salt", 1: "Sturdy", H: "Clear Body" },
16961
+ heightm: 0.4,
16962
+ weightkg: 16,
16963
+ color: "Brown",
16964
+ evos: ["Naclstack"],
16965
+ eggGroups: ["Mineral"],
16922
16966
  },
16923
- finizen: {
16967
+ naclstack: {
16924
16968
  num: 933,
16925
- name: "Finizen",
16926
- types: ["Water"],
16927
- baseStats: { hp: 70, atk: 45, def: 40, spa: 45, spd: 40, spe: 75 },
16928
- abilities: { 0: "Water Veil" },
16929
- heightm: 1.3,
16930
- weightkg: 60.2,
16931
- color: "Blue",
16932
- evos: ["Palafin"],
16933
- eggGroups: ["Field", "Water 2"],
16969
+ name: "Naclstack",
16970
+ types: ["Rock"],
16971
+ baseStats: { hp: 60, atk: 60, def: 100, spa: 35, spd: 65, spe: 35 },
16972
+ abilities: { 0: "Purifying Salt", 1: "Sturdy", H: "Clear Body" },
16973
+ heightm: 0.5,
16974
+ weightkg: 105,
16975
+ color: "Brown",
16976
+ prevo: "Nacli",
16977
+ evoLevel: 24,
16978
+ evos: ["Garganacl"],
16979
+ eggGroups: ["Mineral"],
16934
16980
  },
16935
- palafin: {
16981
+ garganacl: {
16936
16982
  num: 934,
16937
- name: "Palafin",
16938
- baseForme: "Zero",
16939
- types: ["Water"],
16940
- baseStats: { hp: 100, atk: 70, def: 72, spa: 53, spd: 62, spe: 100 },
16941
- abilities: { 0: "Zero to Hero" },
16942
- heightm: 1.3,
16943
- weightkg: 60.2,
16944
- color: "Blue",
16945
- prevo: "Finizen",
16983
+ name: "Garganacl",
16984
+ types: ["Rock"],
16985
+ baseStats: { hp: 100, atk: 100, def: 130, spa: 45, spd: 90, spe: 35 },
16986
+ abilities: { 0: "Purifying Salt", 1: "Sturdy", H: "Clear Body" },
16987
+ heightm: 2.5,
16988
+ weightkg: 240,
16989
+ color: "Brown",
16990
+ prevo: "Naclstack",
16946
16991
  evoLevel: 38,
16947
- otherFormes: ["Palafin-Hero"],
16948
- formeOrder: ["Palafin", "Palafin-Hero"],
16949
- eggGroups: ["Field", "Water 2"],
16950
- },
16951
- palafinhero: {
16952
- num: 934,
16953
- name: "Palafin-Hero",
16954
- baseSpecies: "Palafin",
16955
- forme: "Hero",
16956
- types: ["Water"],
16957
- baseStats: { hp: 100, atk: 160, def: 97, spa: 106, spd: 87, spe: 100 },
16958
- abilities: { 0: "Zero to Hero" },
16959
- heightm: 1.8,
16960
- weightkg: 97.4,
16961
- color: "Blue",
16962
- eggGroups: ["Field", "Water 2"],
16963
- requiredAbility: "Zero to Hero",
16964
- battleOnly: "Palafin",
16992
+ eggGroups: ["Mineral"],
16965
16993
  },
16966
- smoliv: {
16994
+ charcadet: {
16967
16995
  num: 935,
16968
- name: "Smoliv",
16969
- types: ["Grass", "Normal"],
16970
- baseStats: { hp: 41, atk: 35, def: 45, spa: 58, spd: 51, spe: 30 },
16971
- abilities: { 0: "Early Bird", H: "Harvest" },
16972
- heightm: 0.3,
16973
- weightkg: 6.5,
16974
- color: "Green",
16975
- evos: ["Dolliv"],
16976
- eggGroups: ["Grass"],
16996
+ name: "Charcadet",
16997
+ types: ["Fire"],
16998
+ baseStats: { hp: 40, atk: 50, def: 40, spa: 50, spd: 40, spe: 35 },
16999
+ abilities: { 0: "Flash Fire", H: "Flame Body" },
17000
+ heightm: 0.6,
17001
+ weightkg: 10.5,
17002
+ color: "Red",
17003
+ evos: ["Armarouge", "Ceruledge"],
17004
+ eggGroups: ["Human-Like"],
16977
17005
  },
16978
- dolliv: {
17006
+ armarouge: {
16979
17007
  num: 936,
16980
- name: "Dolliv",
16981
- types: ["Grass", "Normal"],
16982
- baseStats: { hp: 52, atk: 53, def: 60, spa: 78, spd: 78, spe: 33 },
16983
- abilities: { 0: "Early Bird", H: "Harvest" },
16984
- heightm: 0.6,
16985
- weightkg: 11.9,
16986
- color: "Green",
16987
- prevo: "Smoliv",
16988
- evoLevel: 25,
16989
- evos: ["Arboliva"],
16990
- eggGroups: ["Grass"],
17008
+ name: "Armarouge",
17009
+ types: ["Fire", "Psychic"],
17010
+ baseStats: { hp: 85, atk: 60, def: 100, spa: 125, spd: 80, spe: 75 },
17011
+ abilities: { 0: "Flash Fire", H: "Weak Armor" },
17012
+ heightm: 1.5,
17013
+ weightkg: 85,
17014
+ color: "Red",
17015
+ prevo: "Charcadet",
17016
+ evoType: "useItem",
17017
+ evoItem: "Auspicious Armor",
17018
+ eggGroups: ["Human-Like"],
16991
17019
  },
16992
- arboliva: {
17020
+ ceruledge: {
16993
17021
  num: 937,
16994
- name: "Arboliva",
16995
- types: ["Grass", "Normal"],
16996
- baseStats: { hp: 78, atk: 69, def: 90, spa: 125, spd: 109, spe: 39 },
16997
- abilities: { 0: "Seed Sower", H: "Harvest" },
16998
- heightm: 1.4,
16999
- weightkg: 48.2,
17000
- color: "Green",
17001
- prevo: "Dolliv",
17002
- evoLevel: 35,
17003
- eggGroups: ["Grass"],
17004
- },
17005
- capsakid: {
17006
- num: 938,
17007
- name: "Capsakid",
17008
- types: ["Grass"],
17009
- baseStats: { hp: 52, atk: 62, def: 40, spa: 62, spd: 40, spe: 50 },
17010
- abilities: { 0: "Chlorophyll", 1: "Insomnia", H: "Klutz" },
17011
- heightm: 0.3,
17012
- weightkg: 3,
17013
- color: "Green",
17014
- evos: ["Scovillain"],
17015
- eggGroups: ["Grass"],
17016
- },
17017
- scovillain: {
17018
- num: 939,
17019
- name: "Scovillain",
17020
- types: ["Grass", "Fire"],
17021
- baseStats: { hp: 65, atk: 108, def: 65, spa: 108, spd: 65, spe: 75 },
17022
- abilities: { 0: "Chlorophyll", 1: "Insomnia", H: "Moody" },
17023
- heightm: 0.9,
17024
- weightkg: 15,
17025
- color: "Green",
17026
- prevo: "Capsakid",
17022
+ name: "Ceruledge",
17023
+ types: ["Fire", "Ghost"],
17024
+ baseStats: { hp: 75, atk: 125, def: 80, spa: 60, spd: 100, spe: 85 },
17025
+ abilities: { 0: "Flash Fire", H: "Weak Armor" },
17026
+ heightm: 1.6,
17027
+ weightkg: 62,
17028
+ color: "Blue",
17029
+ prevo: "Charcadet",
17027
17030
  evoType: "useItem",
17028
- evoItem: "Fire Stone",
17029
- evoLevel: 30,
17030
- eggGroups: ["Grass"],
17031
+ evoItem: "Malicious Armor",
17032
+ eggGroups: ["Human-Like"],
17031
17033
  },
17032
17034
  tadbulb: {
17033
- num: 940,
17035
+ num: 938,
17034
17036
  name: "Tadbulb",
17035
17037
  types: ["Electric"],
17036
17038
  baseStats: { hp: 61, atk: 31, def: 41, spa: 59, spd: 35, spe: 45 },
@@ -17042,7 +17044,7 @@ exports.Pokedex = {
17042
17044
  eggGroups: ["Water 1"],
17043
17045
  },
17044
17046
  bellibolt: {
17045
- num: 941,
17047
+ num: 939,
17046
17048
  name: "Bellibolt",
17047
17049
  types: ["Electric"],
17048
17050
  baseStats: { hp: 109, atk: 64, def: 91, spa: 103, spd: 83, spe: 45 },
@@ -17055,245 +17057,290 @@ exports.Pokedex = {
17055
17057
  evoItem: "Thunder Stone",
17056
17058
  eggGroups: ["Water 1"],
17057
17059
  },
17058
- varoom: {
17059
- num: 942,
17060
- name: "Varoom",
17061
- types: ["Steel", "Poison"],
17062
- baseStats: { hp: 45, atk: 70, def: 63, spa: 30, spd: 45, spe: 47 },
17063
- abilities: { 0: "Overcoat", H: "Slow Start" },
17064
- heightm: 1,
17065
- weightkg: 35,
17066
- color: "Gray",
17067
- evos: ["Revavroom"],
17068
- eggGroups: ["Mineral"],
17069
- },
17070
- revavroom: {
17071
- num: 943,
17072
- name: "Revavroom",
17073
- types: ["Steel", "Poison"],
17074
- baseStats: { hp: 80, atk: 119, def: 90, spa: 54, spd: 67, spe: 90 },
17075
- abilities: { 0: "Overcoat", H: "Filter" },
17076
- heightm: 1.8,
17077
- weightkg: 120,
17060
+ wattrel: {
17061
+ num: 940,
17062
+ name: "Wattrel",
17063
+ types: ["Electric", "Flying"],
17064
+ baseStats: { hp: 40, atk: 40, def: 35, spa: 55, spd: 40, spe: 70 },
17065
+ abilities: { 0: "Wind Power", 1: "Volt Absorb", H: "Competitive" },
17066
+ heightm: 0.4,
17067
+ weightkg: 3.6,
17068
+ color: "Black",
17069
+ evos: ["Kilowattrel"],
17070
+ eggGroups: ["Water 1", "Flying"],
17071
+ },
17072
+ kilowattrel: {
17073
+ num: 941,
17074
+ name: "Kilowattrel",
17075
+ types: ["Electric", "Flying"],
17076
+ baseStats: { hp: 70, atk: 70, def: 60, spa: 105, spd: 60, spe: 125 },
17077
+ abilities: { 0: "Wind Power", 1: "Volt Absorb", H: "Competitive" },
17078
+ heightm: 1.4,
17079
+ weightkg: 38.6,
17080
+ color: "Yellow",
17081
+ prevo: "Wattrel",
17082
+ evoLevel: 25,
17083
+ eggGroups: ["Water 1", "Flying"],
17084
+ },
17085
+ maschiff: {
17086
+ num: 942,
17087
+ name: "Maschiff",
17088
+ types: ["Dark"],
17089
+ baseStats: { hp: 60, atk: 78, def: 60, spa: 40, spd: 51, spe: 51 },
17090
+ abilities: { 0: "Intimidate", 1: "Run Away", H: "Stakeout" },
17091
+ heightm: 0.5,
17092
+ weightkg: 16,
17093
+ color: "Brown",
17094
+ evos: ["Mabosstiff"],
17095
+ eggGroups: ["Field"],
17096
+ },
17097
+ mabosstiff: {
17098
+ num: 943,
17099
+ name: "Mabosstiff",
17100
+ types: ["Dark"],
17101
+ baseStats: { hp: 80, atk: 120, def: 90, spa: 60, spd: 70, spe: 85 },
17102
+ abilities: { 0: "Intimidate", 1: "Guard Dog", H: "Stakeout" },
17103
+ heightm: 1.1,
17104
+ weightkg: 61,
17078
17105
  color: "Gray",
17079
- prevo: "Varoom",
17080
- evoLevel: 40,
17081
- eggGroups: ["Mineral"],
17106
+ prevo: "Maschiff",
17107
+ evoLevel: 30,
17108
+ eggGroups: ["Field"],
17082
17109
  },
17083
- orthworm: {
17110
+ shroodle: {
17084
17111
  num: 944,
17085
- name: "Orthworm",
17086
- types: ["Steel"],
17087
- baseStats: { hp: 70, atk: 85, def: 145, spa: 60, spd: 55, spe: 65 },
17088
- abilities: { 0: "Earth Eater", H: "Sand Veil" },
17089
- heightm: 2.5,
17090
- weightkg: 310,
17091
- color: "Pink",
17112
+ name: "Shroodle",
17113
+ types: ["Poison", "Normal"],
17114
+ baseStats: { hp: 40, atk: 65, def: 35, spa: 40, spd: 35, spe: 75 },
17115
+ abilities: { 0: "Unburden", 1: "Pickpocket", H: "Prankster" },
17116
+ heightm: 0.2,
17117
+ weightkg: 0.7,
17118
+ color: "Gray",
17119
+ evos: ["Grafaiai"],
17092
17120
  eggGroups: ["Field"],
17093
17121
  },
17094
- tandemaus: {
17122
+ grafaiai: {
17095
17123
  num: 945,
17096
- name: "Tandemaus",
17097
- types: ["Normal"],
17098
- gender: "N",
17099
- baseStats: { hp: 50, atk: 50, def: 45, spa: 40, spd: 45, spe: 75 },
17100
- abilities: { 0: "Run Away", 1: "Pickup", H: "Own Tempo" },
17101
- heightm: 0.3,
17102
- weightkg: 1.8,
17103
- color: "White",
17104
- evos: ["Maushold", "Maushold-Four"],
17105
- eggGroups: ["Field", "Fairy"],
17106
- },
17107
- maushold: {
17108
- num: 946,
17109
- name: "Maushold",
17110
- baseForme: "Three",
17111
- types: ["Normal"],
17112
- gender: "N",
17113
- baseStats: { hp: 74, atk: 75, def: 70, spa: 65, spd: 75, spe: 111 },
17114
- abilities: { 0: "Friend Guard", 1: "Cheek Pouch", H: "Technician" },
17115
- heightm: 0.3,
17116
- weightkg: 2.3,
17117
- color: "White",
17118
- prevo: "Tandemaus",
17119
- evoLevel: 25,
17120
- otherFormes: ["Maushold-Four"],
17121
- formeOrder: ["Maushold", "Maushold-Four"],
17122
- eggGroups: ["Field", "Fairy"],
17124
+ name: "Grafaiai",
17125
+ types: ["Poison", "Normal"],
17126
+ baseStats: { hp: 63, atk: 95, def: 65, spa: 80, spd: 72, spe: 110 },
17127
+ abilities: { 0: "Unburden", 1: "Poison Touch", H: "Prankster" },
17128
+ heightm: 0.7,
17129
+ weightkg: 27.2,
17130
+ color: "Gray",
17131
+ prevo: "Shroodle",
17132
+ evoLevel: 28,
17133
+ eggGroups: ["Field"],
17123
17134
  },
17124
- mausholdfour: {
17135
+ bramblin: {
17125
17136
  num: 946,
17126
- name: "Maushold-Four",
17127
- baseSpecies: "Maushold",
17128
- forme: "Four",
17129
- types: ["Normal"],
17130
- gender: "N",
17131
- baseStats: { hp: 74, atk: 75, def: 70, spa: 65, spd: 75, spe: 111 },
17132
- abilities: { 0: "Friend Guard", 1: "Cheek Pouch", H: "Technician" },
17133
- heightm: 0.3,
17134
- weightkg: 2.8,
17135
- color: "White",
17136
- prevo: "Tandemaus",
17137
- evoLevel: 25,
17138
- eggGroups: ["Field", "Fairy"],
17137
+ name: "Bramblin",
17138
+ types: ["Grass", "Ghost"],
17139
+ baseStats: { hp: 40, atk: 65, def: 30, spa: 45, spd: 35, spe: 60 },
17140
+ abilities: { 0: "Wind Rider", H: "Infiltrator" },
17141
+ heightm: 0.6,
17142
+ weightkg: 0.6,
17143
+ color: "Brown",
17144
+ evos: ["Brambleghast"],
17145
+ eggGroups: ["Grass"],
17139
17146
  },
17140
- cetoddle: {
17147
+ brambleghast: {
17141
17148
  num: 947,
17142
- name: "Cetoddle",
17143
- types: ["Ice"],
17144
- baseStats: { hp: 108, atk: 68, def: 45, spa: 30, spd: 40, spe: 43 },
17145
- abilities: { 0: "Thick Fat", 1: "Snow Cloak", H: "Sheer Force" },
17149
+ name: "Brambleghast",
17150
+ types: ["Grass", "Ghost"],
17151
+ baseStats: { hp: 55, atk: 115, def: 70, spa: 80, spd: 70, spe: 90 },
17152
+ abilities: { 0: "Wind Rider", H: "Infiltrator" },
17146
17153
  heightm: 1.2,
17147
- weightkg: 45,
17148
- color: "White",
17149
- evos: ["Cetitan"],
17150
- eggGroups: ["Field"],
17154
+ weightkg: 6,
17155
+ color: "Brown",
17156
+ prevo: "Bramblin",
17157
+ evoType: "other",
17158
+ evoCondition: "Walk 1000 steps in Let's Go",
17159
+ eggGroups: ["Grass"],
17151
17160
  },
17152
- cetitan: {
17161
+ toedscool: {
17153
17162
  num: 948,
17154
- name: "Cetitan",
17155
- types: ["Ice"],
17156
- baseStats: { hp: 170, atk: 113, def: 65, spa: 45, spd: 55, spe: 73 },
17157
- abilities: { 0: "Thick Fat", 1: "Slush Rush", H: "Sheer Force" },
17158
- heightm: 4.5,
17159
- weightkg: 700,
17160
- color: "White",
17161
- prevo: "Cetoddle",
17162
- evoType: "useItem",
17163
- evoItem: "Ice Stone",
17163
+ name: "Toedscool",
17164
+ types: ["Ground", "Grass"],
17165
+ baseStats: { hp: 40, atk: 40, def: 35, spa: 50, spd: 100, spe: 70 },
17166
+ abilities: { 0: "Mycelium Might" },
17167
+ heightm: 0.9,
17168
+ weightkg: 33,
17169
+ color: "Yellow",
17170
+ evos: ["Toedscruel"],
17164
17171
  eggGroups: ["Field"],
17165
17172
  },
17166
- frigibax: {
17173
+ toedscruel: {
17167
17174
  num: 949,
17168
- name: "Frigibax",
17169
- types: ["Dragon", "Ice"],
17170
- baseStats: { hp: 65, atk: 75, def: 45, spa: 35, spd: 45, spe: 55 },
17171
- abilities: { 0: "Thermal Exchange", H: "Ice Body" },
17172
- heightm: 0.5,
17173
- weightkg: 17,
17174
- color: "Gray",
17175
- evos: ["Arctibax"],
17176
- eggGroups: ["Dragon", "Mineral"],
17175
+ name: "Toedscruel",
17176
+ types: ["Ground", "Grass"],
17177
+ baseStats: { hp: 80, atk: 70, def: 65, spa: 80, spd: 120, spe: 100 },
17178
+ abilities: { 0: "Mycelium Might" },
17179
+ heightm: 1.9,
17180
+ weightkg: 58,
17181
+ color: "Black",
17182
+ prevo: "Toedscool",
17183
+ evoLevel: 30,
17184
+ eggGroups: ["Field"],
17177
17185
  },
17178
- arctibax: {
17186
+ klawf: {
17179
17187
  num: 950,
17180
- name: "Arctibax",
17181
- types: ["Dragon", "Ice"],
17182
- baseStats: { hp: 90, atk: 95, def: 66, spa: 45, spd: 65, spe: 62 },
17183
- abilities: { 0: "Thermal Exchange", H: "Ice Body" },
17184
- heightm: 0.8,
17185
- weightkg: 30,
17186
- color: "Gray",
17187
- prevo: "Frigibax",
17188
- evoLevel: 35,
17189
- evos: ["Baxcalibur"],
17190
- eggGroups: ["Dragon", "Mineral"],
17188
+ name: "Klawf",
17189
+ types: ["Rock"],
17190
+ baseStats: { hp: 70, atk: 100, def: 115, spa: 35, spd: 55, spe: 75 },
17191
+ abilities: { 0: "Anger Shell", 1: "Shell Armor", H: "Regenerator" },
17192
+ heightm: 1.3,
17193
+ weightkg: 79,
17194
+ color: "Red",
17195
+ eggGroups: ["Water 3"],
17191
17196
  },
17192
- baxcalibur: {
17197
+ capsakid: {
17193
17198
  num: 951,
17194
- name: "Baxcalibur",
17195
- types: ["Dragon", "Ice"],
17196
- baseStats: { hp: 115, atk: 145, def: 92, spa: 75, spd: 86, spe: 87 },
17197
- abilities: { 0: "Thermal Exchange", H: "Ice Body" },
17198
- heightm: 2.1,
17199
- weightkg: 210,
17200
- color: "Gray",
17201
- prevo: "Arctibax",
17202
- evoLevel: 54,
17203
- eggGroups: ["Dragon", "Mineral"],
17199
+ name: "Capsakid",
17200
+ types: ["Grass"],
17201
+ baseStats: { hp: 52, atk: 62, def: 40, spa: 62, spd: 40, spe: 50 },
17202
+ abilities: { 0: "Chlorophyll", 1: "Insomnia", H: "Klutz" },
17203
+ heightm: 0.3,
17204
+ weightkg: 3,
17205
+ color: "Green",
17206
+ evos: ["Scovillain"],
17207
+ eggGroups: ["Grass"],
17204
17208
  },
17205
- tatsugiri: {
17209
+ scovillain: {
17206
17210
  num: 952,
17207
- name: "Tatsugiri",
17208
- baseForme: "Curly",
17209
- types: ["Dragon", "Water"],
17210
- baseStats: { hp: 68, atk: 50, def: 60, spa: 120, spd: 95, spe: 82 },
17211
- abilities: { 0: "Commander", H: "Storm Drain" },
17212
- heightm: 0.3,
17213
- weightkg: 8,
17214
- color: "Pink",
17215
- cosmeticFormes: ["Tatsugiri-Droopy", "Tatsugiri-Stretchy"],
17216
- formeOrder: ["Tatsugiri", "Tatsugiri-Droopy", "Tatsugiri-Stretchy"],
17217
- eggGroups: ["Water 2"],
17211
+ name: "Scovillain",
17212
+ types: ["Grass", "Fire"],
17213
+ baseStats: { hp: 65, atk: 108, def: 65, spa: 108, spd: 65, spe: 75 },
17214
+ abilities: { 0: "Chlorophyll", 1: "Insomnia", H: "Moody" },
17215
+ heightm: 0.9,
17216
+ weightkg: 15,
17217
+ color: "Green",
17218
+ prevo: "Capsakid",
17219
+ evoType: "useItem",
17220
+ evoItem: "Fire Stone",
17221
+ evoLevel: 30,
17222
+ eggGroups: ["Grass"],
17218
17223
  },
17219
- cyclizar: {
17224
+ rellor: {
17220
17225
  num: 953,
17221
- name: "Cyclizar",
17222
- types: ["Dragon", "Normal"],
17223
- baseStats: { hp: 70, atk: 95, def: 65, spa: 85, spd: 65, spe: 121 },
17224
- abilities: { 0: "Shed Skin", H: "Regenerator" },
17225
- heightm: 1.6,
17226
- weightkg: 63,
17227
- color: "Green",
17228
- eggGroups: ["Field"],
17226
+ name: "Rellor",
17227
+ types: ["Bug"],
17228
+ baseStats: { hp: 41, atk: 50, def: 60, spa: 31, spd: 58, spe: 30 },
17229
+ abilities: { 0: "Compound Eyes", H: "Shed Skin" },
17230
+ heightm: 0.2,
17231
+ weightkg: 1,
17232
+ color: "Brown",
17233
+ evos: ["Rabsca"],
17234
+ eggGroups: ["Bug"],
17229
17235
  },
17230
- pawmi: {
17236
+ rabsca: {
17231
17237
  num: 954,
17232
- name: "Pawmi",
17233
- types: ["Electric"],
17234
- baseStats: { hp: 45, atk: 50, def: 20, spa: 40, spd: 25, spe: 60 },
17235
- abilities: { 0: "Static", 1: "Natural Cure", H: "Iron Fist" },
17238
+ name: "Rabsca",
17239
+ types: ["Bug", "Psychic"],
17240
+ baseStats: { hp: 75, atk: 50, def: 85, spa: 115, spd: 100, spe: 45 },
17241
+ abilities: { 0: "Synchronize", H: "Telepathy" },
17236
17242
  heightm: 0.3,
17237
- weightkg: 2.5,
17238
- color: "Yellow",
17239
- evos: ["Pawmo"],
17240
- eggGroups: ["Field"],
17243
+ weightkg: 3.5,
17244
+ color: "Green",
17245
+ prevo: "Rellor",
17246
+ evoType: "other",
17247
+ evoCondition: "walk 1000 steps in Let's Go",
17248
+ eggGroups: ["Bug"],
17241
17249
  },
17242
- pawmo: {
17250
+ flittle: {
17243
17251
  num: 955,
17244
- name: "Pawmo",
17245
- types: ["Electric", "Fighting"],
17246
- baseStats: { hp: 60, atk: 75, def: 40, spa: 50, spd: 40, spe: 85 },
17247
- abilities: { 0: "Volt Absorb", 1: "Natural Cure", H: "Iron Fist" },
17248
- heightm: 0.4,
17249
- weightkg: 6.5,
17252
+ name: "Flittle",
17253
+ types: ["Psychic"],
17254
+ baseStats: { hp: 30, atk: 35, def: 30, spa: 55, spd: 40, spe: 75 },
17255
+ abilities: { 0: "Anticipation", 1: "Frisk", H: "Speed Boost" },
17256
+ heightm: 0.2,
17257
+ weightkg: 1.5,
17250
17258
  color: "Yellow",
17251
- prevo: "Pawmi",
17252
- evoLevel: 18,
17253
- evos: ["Pawmot"],
17254
- eggGroups: ["Field"],
17259
+ evos: ["Espathra"],
17260
+ eggGroups: ["Flying"],
17255
17261
  },
17256
- pawmot: {
17262
+ espathra: {
17257
17263
  num: 956,
17258
- name: "Pawmot",
17259
- types: ["Electric", "Fighting"],
17260
- baseStats: { hp: 70, atk: 115, def: 70, spa: 70, spd: 60, spe: 105 },
17261
- abilities: { 0: "Volt Absorb", 1: "Natural Cure", H: "Iron Fist" },
17262
- heightm: 0.9,
17263
- weightkg: 41,
17264
+ name: "Espathra",
17265
+ types: ["Psychic"],
17266
+ baseStats: { hp: 95, atk: 60, def: 60, spa: 101, spd: 60, spe: 105 },
17267
+ abilities: { 0: "Opportunist", 1: "Frisk", H: "Speed Boost" },
17268
+ heightm: 1.9,
17269
+ weightkg: 90,
17264
17270
  color: "Yellow",
17265
- prevo: "Pawmo",
17266
- evoType: "other",
17267
- evoCondition: "walk 1000 steps in Let's Go",
17268
- eggGroups: ["Field"],
17271
+ prevo: "Flittle",
17272
+ evoLevel: 35,
17273
+ eggGroups: ["Flying"],
17269
17274
  },
17270
- wattrel: {
17275
+ tinkatink: {
17271
17276
  num: 957,
17272
- name: "Wattrel",
17273
- types: ["Electric", "Flying"],
17274
- baseStats: { hp: 40, atk: 40, def: 35, spa: 55, spd: 40, spe: 70 },
17275
- abilities: { 0: "Wind Power", 1: "Volt Absorb", H: "Competitive" },
17277
+ name: "Tinkatink",
17278
+ types: ["Fairy", "Steel"],
17279
+ gender: "F",
17280
+ baseStats: { hp: 50, atk: 45, def: 45, spa: 35, spd: 64, spe: 58 },
17281
+ abilities: { 0: "Mold Breaker", 1: "Own Tempo", H: "Pickpocket" },
17276
17282
  heightm: 0.4,
17277
- weightkg: 3.6,
17278
- color: "Black",
17279
- evos: ["Kilowattrel"],
17280
- eggGroups: ["Water 1", "Flying"],
17283
+ weightkg: 8.9,
17284
+ color: "Pink",
17285
+ evos: ["Tinkatuff"],
17286
+ eggGroups: ["Fairy"],
17281
17287
  },
17282
- kilowattrel: {
17288
+ tinkatuff: {
17283
17289
  num: 958,
17284
- name: "Kilowattrel",
17285
- types: ["Electric", "Flying"],
17286
- baseStats: { hp: 70, atk: 70, def: 60, spa: 105, spd: 60, spe: 125 },
17287
- abilities: { 0: "Wind Power", 1: "Volt Absorb", H: "Competitive" },
17288
- heightm: 1.4,
17289
- weightkg: 38.6,
17290
- color: "Yellow",
17291
- prevo: "Wattrel",
17292
- evoLevel: 25,
17293
- eggGroups: ["Water 1", "Flying"],
17290
+ name: "Tinkatuff",
17291
+ types: ["Fairy", "Steel"],
17292
+ gender: "F",
17293
+ baseStats: { hp: 65, atk: 55, def: 55, spa: 45, spd: 82, spe: 78 },
17294
+ abilities: { 0: "Mold Breaker", 1: "Own Tempo", H: "Pickpocket" },
17295
+ heightm: 0.7,
17296
+ weightkg: 59.1,
17297
+ color: "Pink",
17298
+ prevo: "Tinkatink",
17299
+ evoLevel: 24,
17300
+ evos: ["Tinkaton"],
17301
+ eggGroups: ["Fairy"],
17294
17302
  },
17295
- bombirdier: {
17303
+ tinkaton: {
17296
17304
  num: 959,
17305
+ name: "Tinkaton",
17306
+ types: ["Fairy", "Steel"],
17307
+ gender: "F",
17308
+ baseStats: { hp: 85, atk: 75, def: 77, spa: 70, spd: 105, spe: 94 },
17309
+ abilities: { 0: "Mold Breaker", 1: "Own Tempo", H: "Pickpocket" },
17310
+ heightm: 0.7,
17311
+ weightkg: 112.8,
17312
+ color: "Pink",
17313
+ prevo: "Tinkatuff",
17314
+ evoLevel: 38,
17315
+ eggGroups: ["Fairy"],
17316
+ },
17317
+ wiglett: {
17318
+ num: 960,
17319
+ name: "Wiglett",
17320
+ types: ["Water"],
17321
+ baseStats: { hp: 10, atk: 55, def: 25, spa: 35, spd: 25, spe: 95 },
17322
+ abilities: { 0: "Gooey", 1: "Rattled", H: "Sand Veil" },
17323
+ heightm: 1.2,
17324
+ weightkg: 1.8,
17325
+ color: "White",
17326
+ evos: ["Wugtrio"],
17327
+ eggGroups: ["Water 3"],
17328
+ },
17329
+ wugtrio: {
17330
+ num: 961,
17331
+ name: "Wugtrio",
17332
+ types: ["Water"],
17333
+ baseStats: { hp: 35, atk: 100, def: 50, spa: 50, spd: 70, spe: 120 },
17334
+ abilities: { 0: "Gooey", 1: "Rattled", H: "Sand Veil" },
17335
+ heightm: 1.2,
17336
+ weightkg: 5.4,
17337
+ color: "Red",
17338
+ prevo: "Wiglett",
17339
+ evoLevel: 26,
17340
+ eggGroups: ["Water 3"],
17341
+ },
17342
+ bombirdier: {
17343
+ num: 962,
17297
17344
  name: "Bombirdier",
17298
17345
  types: ["Flying", "Dark"],
17299
17346
  baseStats: { hp: 70, atk: 103, def: 85, spa: 60, spd: 85, spe: 82 },
@@ -17303,122 +17350,98 @@ exports.Pokedex = {
17303
17350
  color: "White",
17304
17351
  eggGroups: ["Flying"],
17305
17352
  },
17306
- squawkabilly: {
17307
- num: 960,
17308
- name: "Squawkabilly",
17309
- baseForme: "Green",
17310
- types: ["Normal", "Flying"],
17311
- baseStats: { hp: 82, atk: 96, def: 51, spa: 45, spd: 51, spe: 92 },
17312
- abilities: { 0: "Intimidate", 1: "Hustle", H: "Guts" },
17313
- heightm: 0.6,
17314
- weightkg: 2.4,
17315
- color: "Green",
17316
- otherFormes: ["Squawkabilly-Blue", "Squawkabilly-Yellow", "Squawkabilly-White"],
17317
- formeOrder: ["Squawkabilly", "Squawkabilly-Blue", "Squawkabilly-Yellow", "Squawkabilly-White"],
17318
- eggGroups: ["Flying"],
17319
- },
17320
- squawkabillyblue: {
17321
- num: 960,
17322
- name: "Squawkabilly-Blue",
17323
- baseSpecies: "Squawkabilly",
17324
- forme: "Blue",
17325
- types: ["Normal", "Flying"],
17326
- baseStats: { hp: 82, atk: 96, def: 51, spa: 45, spd: 51, spe: 92 },
17327
- abilities: { 0: "Intimidate", 1: "Hustle", H: "Guts" },
17328
- heightm: 0.6,
17329
- weightkg: 2.4,
17353
+ finizen: {
17354
+ num: 963,
17355
+ name: "Finizen",
17356
+ types: ["Water"],
17357
+ baseStats: { hp: 70, atk: 45, def: 40, spa: 45, spd: 40, spe: 75 },
17358
+ abilities: { 0: "Water Veil" },
17359
+ heightm: 1.3,
17360
+ weightkg: 60.2,
17330
17361
  color: "Blue",
17331
- eggGroups: ["Flying"],
17332
- },
17333
- squawkabillyyellow: {
17334
- num: 960,
17335
- name: "Squawkabilly-Yellow",
17336
- baseSpecies: "Squawkabilly",
17337
- forme: "Yellow",
17338
- types: ["Normal", "Flying"],
17339
- baseStats: { hp: 82, atk: 96, def: 51, spa: 45, spd: 51, spe: 92 },
17340
- abilities: { 0: "Intimidate", 1: "Hustle", H: "Sheer Force" },
17341
- heightm: 0.6,
17342
- weightkg: 2.4,
17343
- color: "Yellow",
17344
- eggGroups: ["Flying"],
17345
- },
17346
- squawkabillywhite: {
17347
- num: 960,
17348
- name: "Squawkabilly-White",
17349
- baseSpecies: "Squawkabilly",
17350
- forme: "White",
17351
- types: ["Normal", "Flying"],
17352
- baseStats: { hp: 82, atk: 96, def: 51, spa: 45, spd: 51, spe: 92 },
17353
- abilities: { 0: "Intimidate", 1: "Hustle", H: "Sheer Force" },
17354
- heightm: 0.6,
17355
- weightkg: 2.4,
17356
- color: "White",
17357
- eggGroups: ["Flying"],
17358
- },
17359
- flamigo: {
17360
- num: 961,
17361
- name: "Flamigo",
17362
- types: ["Flying", "Fighting"],
17363
- baseStats: { hp: 82, atk: 115, def: 74, spa: 75, spd: 64, spe: 90 },
17364
- abilities: { 0: "Scrappy", 1: "Tangled Feet", H: "Costar" },
17365
- heightm: 1.6,
17366
- weightkg: 37,
17367
- color: "Pink",
17368
- eggGroups: ["Flying"],
17362
+ evos: ["Palafin"],
17363
+ eggGroups: ["Field", "Water 2"],
17369
17364
  },
17370
- klawf: {
17371
- num: 962,
17372
- name: "Klawf",
17373
- types: ["Rock"],
17374
- baseStats: { hp: 70, atk: 100, def: 115, spa: 35, spd: 55, spe: 75 },
17375
- abilities: { 0: "Anger Shell", 1: "Shell Armor", H: "Regenerator" },
17365
+ palafin: {
17366
+ num: 964,
17367
+ name: "Palafin",
17368
+ baseForme: "Zero",
17369
+ types: ["Water"],
17370
+ baseStats: { hp: 100, atk: 70, def: 72, spa: 53, spd: 62, spe: 100 },
17371
+ abilities: { 0: "Zero to Hero" },
17376
17372
  heightm: 1.3,
17377
- weightkg: 79,
17378
- color: "Red",
17379
- eggGroups: ["Water 3"],
17373
+ weightkg: 60.2,
17374
+ color: "Blue",
17375
+ prevo: "Finizen",
17376
+ evoLevel: 38,
17377
+ otherFormes: ["Palafin-Hero"],
17378
+ formeOrder: ["Palafin", "Palafin-Hero"],
17379
+ eggGroups: ["Field", "Water 2"],
17380
17380
  },
17381
- nacli: {
17382
- num: 963,
17383
- name: "Nacli",
17384
- types: ["Rock"],
17385
- baseStats: { hp: 55, atk: 55, def: 75, spa: 35, spd: 35, spe: 25 },
17386
- abilities: { 0: "Purifying Salt", 1: "Sturdy", H: "Clear Body" },
17387
- heightm: 0.4,
17388
- weightkg: 16,
17389
- color: "Brown",
17390
- evos: ["Naclstack"],
17381
+ palafinhero: {
17382
+ num: 964,
17383
+ name: "Palafin-Hero",
17384
+ baseSpecies: "Palafin",
17385
+ forme: "Hero",
17386
+ types: ["Water"],
17387
+ baseStats: { hp: 100, atk: 160, def: 97, spa: 106, spd: 87, spe: 100 },
17388
+ abilities: { 0: "Zero to Hero" },
17389
+ heightm: 1.8,
17390
+ weightkg: 97.4,
17391
+ color: "Blue",
17392
+ eggGroups: ["Field", "Water 2"],
17393
+ requiredAbility: "Zero to Hero",
17394
+ battleOnly: "Palafin",
17395
+ },
17396
+ varoom: {
17397
+ num: 965,
17398
+ name: "Varoom",
17399
+ types: ["Steel", "Poison"],
17400
+ baseStats: { hp: 45, atk: 70, def: 63, spa: 30, spd: 45, spe: 47 },
17401
+ abilities: { 0: "Overcoat", H: "Slow Start" },
17402
+ heightm: 1,
17403
+ weightkg: 35,
17404
+ color: "Gray",
17405
+ evos: ["Revavroom"],
17391
17406
  eggGroups: ["Mineral"],
17392
17407
  },
17393
- naclstack: {
17394
- num: 964,
17395
- name: "Naclstack",
17396
- types: ["Rock"],
17397
- baseStats: { hp: 60, atk: 60, def: 100, spa: 35, spd: 65, spe: 35 },
17398
- abilities: { 0: "Purifying Salt", 1: "Sturdy", H: "Clear Body" },
17399
- heightm: 0.5,
17400
- weightkg: 105,
17401
- color: "Brown",
17402
- prevo: "Nacli",
17403
- evoLevel: 24,
17404
- evos: ["Garganacl"],
17408
+ revavroom: {
17409
+ num: 966,
17410
+ name: "Revavroom",
17411
+ types: ["Steel", "Poison"],
17412
+ baseStats: { hp: 80, atk: 119, def: 90, spa: 54, spd: 67, spe: 90 },
17413
+ abilities: { 0: "Overcoat", H: "Filter" },
17414
+ heightm: 1.8,
17415
+ weightkg: 120,
17416
+ color: "Gray",
17417
+ prevo: "Varoom",
17418
+ evoLevel: 40,
17405
17419
  eggGroups: ["Mineral"],
17406
17420
  },
17407
- garganacl: {
17408
- num: 965,
17409
- name: "Garganacl",
17410
- types: ["Rock"],
17411
- baseStats: { hp: 100, atk: 100, def: 130, spa: 45, spd: 90, spe: 35 },
17412
- abilities: { 0: "Purifying Salt", 1: "Sturdy", H: "Clear Body" },
17421
+ cyclizar: {
17422
+ num: 967,
17423
+ name: "Cyclizar",
17424
+ types: ["Dragon", "Normal"],
17425
+ baseStats: { hp: 70, atk: 95, def: 65, spa: 85, spd: 65, spe: 121 },
17426
+ abilities: { 0: "Shed Skin", H: "Regenerator" },
17427
+ heightm: 1.6,
17428
+ weightkg: 63,
17429
+ color: "Green",
17430
+ eggGroups: ["Field"],
17431
+ },
17432
+ orthworm: {
17433
+ num: 968,
17434
+ name: "Orthworm",
17435
+ types: ["Steel"],
17436
+ baseStats: { hp: 70, atk: 85, def: 145, spa: 60, spd: 55, spe: 65 },
17437
+ abilities: { 0: "Earth Eater", H: "Sand Veil" },
17413
17438
  heightm: 2.5,
17414
- weightkg: 240,
17415
- color: "Brown",
17416
- prevo: "Naclstack",
17417
- evoLevel: 38,
17418
- eggGroups: ["Mineral"],
17439
+ weightkg: 310,
17440
+ color: "Pink",
17441
+ eggGroups: ["Field"],
17419
17442
  },
17420
17443
  glimmet: {
17421
- num: 966,
17444
+ num: 969,
17422
17445
  name: "Glimmet",
17423
17446
  types: ["Rock", "Poison"],
17424
17447
  baseStats: { hp: 48, atk: 35, def: 42, spa: 105, spd: 60, spe: 60 },
@@ -17430,7 +17453,7 @@ exports.Pokedex = {
17430
17453
  eggGroups: ["Mineral"],
17431
17454
  },
17432
17455
  glimmora: {
17433
- num: 967,
17456
+ num: 970,
17434
17457
  name: "Glimmora",
17435
17458
  types: ["Rock", "Poison"],
17436
17459
  baseStats: { hp: 83, atk: 55, def: 90, spa: 130, spd: 81, spe: 86 },
@@ -17442,155 +17465,195 @@ exports.Pokedex = {
17442
17465
  evoLevel: 35,
17443
17466
  eggGroups: ["Mineral"],
17444
17467
  },
17445
- shroodle: {
17446
- num: 968,
17447
- name: "Shroodle",
17448
- types: ["Poison", "Normal"],
17449
- baseStats: { hp: 40, atk: 65, def: 35, spa: 40, spd: 35, spe: 75 },
17450
- abilities: { 0: "Unburden", 1: "Pickpocket", H: "Prankster" },
17451
- heightm: 0.2,
17452
- weightkg: 0.7,
17453
- color: "Gray",
17454
- evos: ["Grafaiai"],
17468
+ greavard: {
17469
+ num: 971,
17470
+ name: "Greavard",
17471
+ types: ["Ghost"],
17472
+ baseStats: { hp: 50, atk: 61, def: 60, spa: 30, spd: 55, spe: 34 },
17473
+ abilities: { 0: "Pickup", H: "Fluffy" },
17474
+ heightm: 0.6,
17475
+ weightkg: 35,
17476
+ color: "White",
17477
+ evos: ["Houndstone"],
17455
17478
  eggGroups: ["Field"],
17456
17479
  },
17457
- grafaiai: {
17458
- num: 969,
17459
- name: "Grafaiai",
17460
- types: ["Poison", "Normal"],
17461
- baseStats: { hp: 63, atk: 95, def: 65, spa: 80, spd: 72, spe: 110 },
17462
- abilities: { 0: "Unburden", 1: "Poison Touch", H: "Prankster" },
17463
- heightm: 0.7,
17464
- weightkg: 27.2,
17465
- color: "Gray",
17466
- prevo: "Shroodle",
17467
- evoLevel: 28,
17480
+ houndstone: {
17481
+ num: 972,
17482
+ name: "Houndstone",
17483
+ types: ["Ghost"],
17484
+ baseStats: { hp: 72, atk: 101, def: 100, spa: 50, spd: 97, spe: 68 },
17485
+ abilities: { 0: "Sand Rush", H: "Fluffy" },
17486
+ heightm: 2,
17487
+ weightkg: 15,
17488
+ color: "White",
17489
+ prevo: "Greavard",
17490
+ evoLevel: 30,
17491
+ evoCondition: "at night",
17468
17492
  eggGroups: ["Field"],
17469
17493
  },
17470
- fidough: {
17471
- num: 970,
17472
- name: "Fidough",
17473
- types: ["Fairy"],
17474
- baseStats: { hp: 37, atk: 55, def: 70, spa: 30, spd: 55, spe: 65 },
17475
- abilities: { 0: "Own Tempo", H: "Klutz" },
17476
- heightm: 0.3,
17477
- weightkg: 10.9,
17478
- color: "Yellow",
17479
- evos: ["Dachsbun"],
17480
- eggGroups: ["Field", "Mineral"],
17494
+ flamigo: {
17495
+ num: 973,
17496
+ name: "Flamigo",
17497
+ types: ["Flying", "Fighting"],
17498
+ baseStats: { hp: 82, atk: 115, def: 74, spa: 75, spd: 64, spe: 90 },
17499
+ abilities: { 0: "Scrappy", 1: "Tangled Feet", H: "Costar" },
17500
+ heightm: 1.6,
17501
+ weightkg: 37,
17502
+ color: "Pink",
17503
+ eggGroups: ["Flying"],
17481
17504
  },
17482
- dachsbun: {
17483
- num: 971,
17484
- name: "Dachsbun",
17485
- types: ["Fairy"],
17486
- baseStats: { hp: 57, atk: 80, def: 115, spa: 50, spd: 80, spe: 95 },
17487
- abilities: { 0: "Well-Baked Body", H: "Aroma Veil" },
17488
- heightm: 0.5,
17489
- weightkg: 14.9,
17490
- color: "Brown",
17491
- prevo: "Fidough",
17492
- evoLevel: 26,
17493
- eggGroups: ["Field", "Mineral"],
17505
+ cetoddle: {
17506
+ num: 974,
17507
+ name: "Cetoddle",
17508
+ types: ["Ice"],
17509
+ baseStats: { hp: 108, atk: 68, def: 45, spa: 30, spd: 40, spe: 43 },
17510
+ abilities: { 0: "Thick Fat", 1: "Snow Cloak", H: "Sheer Force" },
17511
+ heightm: 1.2,
17512
+ weightkg: 45,
17513
+ color: "White",
17514
+ evos: ["Cetitan"],
17515
+ eggGroups: ["Field"],
17494
17516
  },
17495
- maschiff: {
17496
- num: 972,
17497
- name: "Maschiff",
17498
- types: ["Dark"],
17499
- baseStats: { hp: 60, atk: 78, def: 60, spa: 40, spd: 51, spe: 51 },
17500
- abilities: { 0: "Intimidate", 1: "Run Away", H: "Stakeout" },
17501
- heightm: 0.5,
17502
- weightkg: 16,
17503
- color: "Brown",
17504
- evos: ["Mabosstiff"],
17517
+ cetitan: {
17518
+ num: 975,
17519
+ name: "Cetitan",
17520
+ types: ["Ice"],
17521
+ baseStats: { hp: 170, atk: 113, def: 65, spa: 45, spd: 55, spe: 73 },
17522
+ abilities: { 0: "Thick Fat", 1: "Slush Rush", H: "Sheer Force" },
17523
+ heightm: 4.5,
17524
+ weightkg: 700,
17525
+ color: "White",
17526
+ prevo: "Cetoddle",
17527
+ evoType: "useItem",
17528
+ evoItem: "Ice Stone",
17505
17529
  eggGroups: ["Field"],
17506
17530
  },
17507
- mabosstiff: {
17508
- num: 973,
17509
- name: "Mabosstiff",
17510
- types: ["Dark"],
17511
- baseStats: { hp: 80, atk: 120, def: 90, spa: 60, spd: 70, spe: 85 },
17512
- abilities: { 0: "Intimidate", 1: "Guard Dog", H: "Stakeout" },
17513
- heightm: 1.1,
17514
- weightkg: 61,
17531
+ veluza: {
17532
+ num: 976,
17533
+ name: "Veluza",
17534
+ types: ["Water", "Psychic"],
17535
+ baseStats: { hp: 90, atk: 102, def: 73, spa: 78, spd: 65, spe: 70 },
17536
+ abilities: { 0: "Mold Breaker", H: "Sharpness" },
17537
+ heightm: 2.5,
17538
+ weightkg: 90,
17515
17539
  color: "Gray",
17516
- prevo: "Maschiff",
17517
- evoLevel: 30,
17518
- eggGroups: ["Field"],
17540
+ eggGroups: ["Water 2"],
17519
17541
  },
17520
- bramblin: {
17521
- num: 974,
17522
- name: "Bramblin",
17523
- types: ["Grass", "Ghost"],
17524
- baseStats: { hp: 40, atk: 65, def: 30, spa: 45, spd: 35, spe: 60 },
17525
- abilities: { 0: "Wind Rider", H: "Infiltrator" },
17526
- heightm: 0.6,
17527
- weightkg: 0.6,
17528
- color: "Brown",
17529
- evos: ["Brambleghast"],
17530
- eggGroups: ["Grass"],
17542
+ dondozo: {
17543
+ num: 977,
17544
+ name: "Dondozo",
17545
+ types: ["Water"],
17546
+ baseStats: { hp: 150, atk: 100, def: 115, spa: 65, spd: 65, spe: 35 },
17547
+ abilities: { 0: "Unaware", 1: "Oblivious", H: "Water Veil" },
17548
+ heightm: 12,
17549
+ weightkg: 220,
17550
+ color: "Blue",
17551
+ eggGroups: ["Water 2"],
17531
17552
  },
17532
- brambleghast: {
17533
- num: 975,
17534
- name: "Brambleghast",
17535
- types: ["Grass", "Ghost"],
17536
- baseStats: { hp: 55, atk: 115, def: 70, spa: 80, spd: 70, spe: 90 },
17537
- abilities: { 0: "Wind Rider", H: "Infiltrator" },
17553
+ tatsugiri: {
17554
+ num: 978,
17555
+ name: "Tatsugiri",
17556
+ baseForme: "Curly",
17557
+ types: ["Dragon", "Water"],
17558
+ baseStats: { hp: 68, atk: 50, def: 60, spa: 120, spd: 95, spe: 82 },
17559
+ abilities: { 0: "Commander", H: "Storm Drain" },
17560
+ heightm: 0.3,
17561
+ weightkg: 8,
17562
+ color: "Pink",
17563
+ cosmeticFormes: ["Tatsugiri-Droopy", "Tatsugiri-Stretchy"],
17564
+ formeOrder: ["Tatsugiri", "Tatsugiri-Droopy", "Tatsugiri-Stretchy"],
17565
+ eggGroups: ["Water 2"],
17566
+ },
17567
+ annihilape: {
17568
+ num: 979,
17569
+ name: "Annihilape",
17570
+ types: ["Fighting", "Ghost"],
17571
+ baseStats: { hp: 110, atk: 115, def: 80, spa: 50, spd: 90, spe: 90 },
17572
+ abilities: { 0: "Vital Spirit", 1: "Inner Focus", H: "Defiant" },
17538
17573
  heightm: 1.2,
17539
- weightkg: 6,
17540
- color: "Brown",
17541
- prevo: "Bramblin",
17574
+ weightkg: 56,
17575
+ color: "Gray",
17576
+ prevo: "Primeape",
17542
17577
  evoType: "other",
17543
- evoCondition: "Walk 1000 steps in Let's Go",
17544
- eggGroups: ["Grass"],
17578
+ evoCondition: "Use Rage Fist 20 times and level-up",
17579
+ eggGroups: ["Field"],
17545
17580
  },
17546
- gimmighoul: {
17547
- num: 976,
17548
- name: "Gimmighoul",
17549
- baseForme: "Chest",
17550
- types: ["Ghost"],
17551
- gender: "N",
17552
- baseStats: { hp: 45, atk: 30, def: 70, spa: 75, spd: 70, spe: 10 },
17553
- abilities: { 0: "Rattled" },
17554
- heightm: 0.3,
17555
- weightkg: 5,
17581
+ clodsire: {
17582
+ num: 980,
17583
+ name: "Clodsire",
17584
+ types: ["Poison", "Ground"],
17585
+ baseStats: { hp: 130, atk: 75, def: 60, spa: 45, spd: 100, spe: 20 },
17586
+ abilities: { 0: "Poison Point", 1: "Water Absorb", H: "Unaware" },
17587
+ heightm: 1.8,
17588
+ weightkg: 223,
17589
+ color: "Brown",
17590
+ prevo: "Wooper-Paldea",
17591
+ evoLevel: 20,
17592
+ eggGroups: ["Water 1", "Field"],
17593
+ },
17594
+ farigiraf: {
17595
+ num: 981,
17596
+ name: "Farigiraf",
17597
+ types: ["Normal", "Psychic"],
17598
+ baseStats: { hp: 120, atk: 90, def: 70, spa: 110, spd: 70, spe: 60 },
17599
+ abilities: { 0: "Cud Chew", 1: "Armor Tail", H: "Sap Sipper" },
17600
+ heightm: 3.2,
17601
+ weightkg: 160,
17556
17602
  color: "Brown",
17557
- evos: ["Gholdengo"],
17558
- otherFormes: ["Gimmighoul-Roaming"],
17559
- formeOrder: ["Gimmighoul", "Gimmighoul-Roaming"],
17560
- eggGroups: ["Undiscovered"],
17603
+ prevo: "Girafarig",
17604
+ evoType: "levelMove",
17605
+ evoMove: "Twin Beam",
17606
+ eggGroups: ["Field"],
17561
17607
  },
17562
- gimmighoulroaming: {
17563
- num: 976,
17564
- name: "Gimmighoul-Roaming",
17565
- baseSpecies: "Gimmighoul",
17566
- forme: "Roaming",
17567
- types: ["Ghost"],
17568
- gender: "N",
17569
- baseStats: { hp: 45, atk: 30, def: 25, spa: 75, spd: 45, spe: 80 },
17570
- abilities: { 0: "Run Away" },
17571
- heightm: 0.1,
17572
- weightkg: 0.1,
17573
- color: "Blue",
17574
- evos: ["Gholdengo"],
17575
- eggGroups: ["Undiscovered"],
17608
+ dudunsparce: {
17609
+ num: 982,
17610
+ name: "Dudunsparce",
17611
+ baseForme: "Two-Segment",
17612
+ types: ["Normal"],
17613
+ baseStats: { hp: 125, atk: 100, def: 80, spa: 85, spd: 75, spe: 55 },
17614
+ abilities: { 0: "Serene Grace", 1: "Run Away", H: "Rattled" },
17615
+ heightm: 3.6,
17616
+ weightkg: 39.2,
17617
+ color: "Yellow",
17618
+ prevo: "Dunsparce",
17619
+ evoType: "levelMove",
17620
+ evoMove: "Hyper Drill",
17621
+ otherFormes: ["Dudunsparce-Three-Segment"],
17622
+ formeOrder: ["Dudunsparce", "Dudunsparce-Three-Segment"],
17623
+ eggGroups: ["Field"],
17576
17624
  },
17577
- gholdengo: {
17578
- num: 977,
17579
- name: "Gholdengo",
17580
- types: ["Steel", "Ghost"],
17581
- gender: "N",
17582
- baseStats: { hp: 87, atk: 60, def: 95, spa: 133, spd: 91, spe: 84 },
17583
- abilities: { 0: "Good as Gold" },
17584
- heightm: 1.2,
17585
- weightkg: 30,
17625
+ dudunsparcethreesegment: {
17626
+ num: 982,
17627
+ name: "Dudunsparce-Three-Segment",
17628
+ baseSpecies: "Dudunsparce",
17629
+ forme: "Three-Segment",
17630
+ types: ["Normal"],
17631
+ baseStats: { hp: 125, atk: 100, def: 80, spa: 85, spd: 75, spe: 55 },
17632
+ abilities: { 0: "Serene Grace", 1: "Run Away", H: "Rattled" },
17633
+ heightm: 4.5,
17634
+ weightkg: 47.4,
17586
17635
  color: "Yellow",
17587
- prevo: "Gimmighoul",
17636
+ prevo: "Dunsparce",
17637
+ evoType: "levelMove",
17638
+ evoMove: "Hyper Drill",
17639
+ eggGroups: ["Field"],
17640
+ },
17641
+ kingambit: {
17642
+ num: 983,
17643
+ name: "Kingambit",
17644
+ types: ["Dark", "Steel"],
17645
+ baseStats: { hp: 100, atk: 135, def: 120, spa: 60, spd: 85, spe: 50 },
17646
+ abilities: { 0: "Defiant", 1: "Supreme Overlord", H: "Pressure" },
17647
+ heightm: 2,
17648
+ weightkg: 120,
17649
+ color: "Black",
17650
+ prevo: "Bisharp",
17588
17651
  evoType: "other",
17589
- evoCondition: "Give 999 Coins",
17590
- eggGroups: ["Undiscovered"],
17652
+ evoCondition: "Defeat 3 Bisharp leading Pawniard and level-up",
17653
+ eggGroups: ["Human-Like"],
17591
17654
  },
17592
17655
  greattusk: {
17593
- num: 978,
17656
+ num: 984,
17594
17657
  name: "Great Tusk",
17595
17658
  types: ["Ground", "Fighting"],
17596
17659
  gender: "N",
@@ -17602,48 +17665,8 @@ exports.Pokedex = {
17602
17665
  tags: ["Sub-Legendary", "Paradox"],
17603
17666
  eggGroups: ["Undiscovered"],
17604
17667
  },
17605
- brutebonnet: {
17606
- num: 979,
17607
- name: "Brute Bonnet",
17608
- types: ["Grass", "Dark"],
17609
- gender: "N",
17610
- baseStats: { hp: 111, atk: 127, def: 99, spa: 79, spd: 99, spe: 55 },
17611
- abilities: { 0: "Protosynthesis" },
17612
- heightm: 1.2,
17613
- weightkg: 21,
17614
- color: "Gray",
17615
- tags: ["Sub-Legendary", "Paradox"],
17616
- eggGroups: ["Undiscovered"],
17617
- },
17618
- /*
17619
- placeholder1: {
17620
- num: 980,
17621
- name: "Great Tusk",
17622
- types: ["Ground", "Fighting"],
17623
- gender: "N",
17624
- baseStats: {hp: 115, atk: 131, def: 131, spa: 53, spd: 53, spe: 87},
17625
- abilities: {0: "Protosynthesis"},
17626
- heightm: 3.2,
17627
- weightkg: 160,
17628
- color: "Black",
17629
- eggGroups: ["Undiscovered"],
17630
- },
17631
- */
17632
- sandyshocks: {
17633
- num: 981,
17634
- name: "Sandy Shocks",
17635
- types: ["Electric", "Ground"],
17636
- gender: "N",
17637
- baseStats: { hp: 85, atk: 81, def: 97, spa: 121, spd: 85, spe: 101 },
17638
- abilities: { 0: "Protosynthesis" },
17639
- heightm: 2.3,
17640
- weightkg: 60,
17641
- color: "Gray",
17642
- tags: ["Sub-Legendary", "Paradox"],
17643
- eggGroups: ["Undiscovered"],
17644
- },
17645
17668
  screamtail: {
17646
- num: 982,
17669
+ num: 985,
17647
17670
  name: "Scream Tail",
17648
17671
  types: ["Fairy", "Psychic"],
17649
17672
  gender: "N",
@@ -17655,8 +17678,21 @@ exports.Pokedex = {
17655
17678
  tags: ["Sub-Legendary", "Paradox"],
17656
17679
  eggGroups: ["Undiscovered"],
17657
17680
  },
17681
+ brutebonnet: {
17682
+ num: 986,
17683
+ name: "Brute Bonnet",
17684
+ types: ["Grass", "Dark"],
17685
+ gender: "N",
17686
+ baseStats: { hp: 111, atk: 127, def: 99, spa: 79, spd: 99, spe: 55 },
17687
+ abilities: { 0: "Protosynthesis" },
17688
+ heightm: 1.2,
17689
+ weightkg: 21,
17690
+ color: "Gray",
17691
+ tags: ["Sub-Legendary", "Paradox"],
17692
+ eggGroups: ["Undiscovered"],
17693
+ },
17658
17694
  fluttermane: {
17659
- num: 983,
17695
+ num: 987,
17660
17696
  name: "Flutter Mane",
17661
17697
  types: ["Ghost", "Fairy"],
17662
17698
  gender: "N",
@@ -17669,7 +17705,7 @@ exports.Pokedex = {
17669
17705
  eggGroups: ["Undiscovered"],
17670
17706
  },
17671
17707
  slitherwing: {
17672
- num: 984,
17708
+ num: 988,
17673
17709
  name: "Slither Wing",
17674
17710
  types: ["Bug", "Fighting"],
17675
17711
  gender: "N",
@@ -17681,21 +17717,21 @@ exports.Pokedex = {
17681
17717
  tags: ["Sub-Legendary", "Paradox"],
17682
17718
  eggGroups: ["Undiscovered"],
17683
17719
  },
17684
- roaringmoon: {
17685
- num: 985,
17686
- name: "Roaring Moon",
17687
- types: ["Dragon", "Dark"],
17720
+ sandyshocks: {
17721
+ num: 989,
17722
+ name: "Sandy Shocks",
17723
+ types: ["Electric", "Ground"],
17688
17724
  gender: "N",
17689
- baseStats: { hp: 105, atk: 139, def: 71, spa: 55, spd: 101, spe: 119 },
17725
+ baseStats: { hp: 85, atk: 81, def: 97, spa: 121, spd: 85, spe: 101 },
17690
17726
  abilities: { 0: "Protosynthesis" },
17691
- heightm: 2,
17692
- weightkg: 380,
17693
- color: "Green",
17727
+ heightm: 2.3,
17728
+ weightkg: 60,
17729
+ color: "Gray",
17694
17730
  tags: ["Sub-Legendary", "Paradox"],
17695
17731
  eggGroups: ["Undiscovered"],
17696
17732
  },
17697
17733
  irontreads: {
17698
- num: 986,
17734
+ num: 990,
17699
17735
  name: "Iron Treads",
17700
17736
  types: ["Ground", "Steel"],
17701
17737
  gender: "N",
@@ -17707,35 +17743,21 @@ exports.Pokedex = {
17707
17743
  tags: ["Sub-Legendary", "Paradox"],
17708
17744
  eggGroups: ["Undiscovered"],
17709
17745
  },
17710
- /*
17711
- placeholder2: {
17712
- num: 987,
17713
- name: "Iron Treads",
17714
- types: ["Ground", "Steel"],
17715
- gender: "N",
17716
- baseStats: {hp: 90, atk: 112, def: 120, spa: 72, spd: 70, spe: 106},
17717
- abilities: {0: "Quark Drive"},
17718
- heightm: 3.2,
17719
- weightkg: 160,
17720
- color: "Black",
17721
- eggGroups: ["Undiscovered"],
17722
- },
17723
- */
17724
- ironmoth: {
17725
- num: 988,
17726
- name: "Iron Moth",
17727
- types: ["Fire", "Poison"],
17746
+ ironbundle: {
17747
+ num: 991,
17748
+ name: "Iron Bundle",
17749
+ types: ["Ice", "Water"],
17728
17750
  gender: "N",
17729
- baseStats: { hp: 80, atk: 70, def: 60, spa: 140, spd: 110, spe: 110 },
17751
+ baseStats: { hp: 56, atk: 80, def: 114, spa: 124, spd: 60, spe: 136 },
17730
17752
  abilities: { 0: "Quark Drive" },
17731
- heightm: 1.2,
17732
- weightkg: 36,
17733
- color: "Yellow",
17753
+ heightm: 0.6,
17754
+ weightkg: 11,
17755
+ color: "Red",
17734
17756
  tags: ["Sub-Legendary", "Paradox"],
17735
17757
  eggGroups: ["Undiscovered"],
17736
17758
  },
17737
17759
  ironhands: {
17738
- num: 989,
17760
+ num: 992,
17739
17761
  name: "Iron Hands",
17740
17762
  types: ["Fighting", "Electric"],
17741
17763
  gender: "N",
@@ -17748,7 +17770,7 @@ exports.Pokedex = {
17748
17770
  eggGroups: ["Undiscovered"],
17749
17771
  },
17750
17772
  ironjugulis: {
17751
- num: 990,
17773
+ num: 993,
17752
17774
  name: "Iron Jugulis",
17753
17775
  types: ["Dark", "Flying"],
17754
17776
  gender: "N",
@@ -17760,8 +17782,21 @@ exports.Pokedex = {
17760
17782
  tags: ["Sub-Legendary", "Paradox"],
17761
17783
  eggGroups: ["Undiscovered"],
17762
17784
  },
17785
+ ironmoth: {
17786
+ num: 994,
17787
+ name: "Iron Moth",
17788
+ types: ["Fire", "Poison"],
17789
+ gender: "N",
17790
+ baseStats: { hp: 80, atk: 70, def: 60, spa: 140, spd: 110, spe: 110 },
17791
+ abilities: { 0: "Quark Drive" },
17792
+ heightm: 1.2,
17793
+ weightkg: 36,
17794
+ color: "Yellow",
17795
+ tags: ["Sub-Legendary", "Paradox"],
17796
+ eggGroups: ["Undiscovered"],
17797
+ },
17763
17798
  ironthorns: {
17764
- num: 991,
17799
+ num: 995,
17765
17800
  name: "Iron Thorns",
17766
17801
  types: ["Rock", "Electric"],
17767
17802
  gender: "N",
@@ -17773,47 +17808,106 @@ exports.Pokedex = {
17773
17808
  tags: ["Sub-Legendary", "Paradox"],
17774
17809
  eggGroups: ["Undiscovered"],
17775
17810
  },
17776
- ironbundle: {
17777
- num: 992,
17778
- name: "Iron Bundle",
17779
- types: ["Ice", "Water"],
17811
+ frigibax: {
17812
+ num: 996,
17813
+ name: "Frigibax",
17814
+ types: ["Dragon", "Ice"],
17815
+ baseStats: { hp: 65, atk: 75, def: 45, spa: 35, spd: 45, spe: 55 },
17816
+ abilities: { 0: "Thermal Exchange", H: "Ice Body" },
17817
+ heightm: 0.5,
17818
+ weightkg: 17,
17819
+ color: "Gray",
17820
+ evos: ["Arctibax"],
17821
+ eggGroups: ["Dragon", "Mineral"],
17822
+ },
17823
+ arctibax: {
17824
+ num: 997,
17825
+ name: "Arctibax",
17826
+ types: ["Dragon", "Ice"],
17827
+ baseStats: { hp: 90, atk: 95, def: 66, spa: 45, spd: 65, spe: 62 },
17828
+ abilities: { 0: "Thermal Exchange", H: "Ice Body" },
17829
+ heightm: 0.8,
17830
+ weightkg: 30,
17831
+ color: "Gray",
17832
+ prevo: "Frigibax",
17833
+ evoLevel: 35,
17834
+ evos: ["Baxcalibur"],
17835
+ eggGroups: ["Dragon", "Mineral"],
17836
+ },
17837
+ baxcalibur: {
17838
+ num: 998,
17839
+ name: "Baxcalibur",
17840
+ types: ["Dragon", "Ice"],
17841
+ baseStats: { hp: 115, atk: 145, def: 92, spa: 75, spd: 86, spe: 87 },
17842
+ abilities: { 0: "Thermal Exchange", H: "Ice Body" },
17843
+ heightm: 2.1,
17844
+ weightkg: 210,
17845
+ color: "Gray",
17846
+ prevo: "Arctibax",
17847
+ evoLevel: 54,
17848
+ eggGroups: ["Dragon", "Mineral"],
17849
+ },
17850
+ gimmighoul: {
17851
+ num: 999,
17852
+ name: "Gimmighoul",
17853
+ baseForme: "Chest",
17854
+ types: ["Ghost"],
17855
+ gender: "N",
17856
+ baseStats: { hp: 45, atk: 30, def: 70, spa: 75, spd: 70, spe: 10 },
17857
+ abilities: { 0: "Rattled" },
17858
+ heightm: 0.3,
17859
+ weightkg: 5,
17860
+ color: "Brown",
17861
+ evos: ["Gholdengo"],
17862
+ otherFormes: ["Gimmighoul-Roaming"],
17863
+ formeOrder: ["Gimmighoul", "Gimmighoul-Roaming"],
17864
+ eggGroups: ["Undiscovered"],
17865
+ },
17866
+ gimmighoulroaming: {
17867
+ num: 999,
17868
+ name: "Gimmighoul-Roaming",
17869
+ baseSpecies: "Gimmighoul",
17870
+ forme: "Roaming",
17871
+ types: ["Ghost"],
17780
17872
  gender: "N",
17781
- baseStats: { hp: 56, atk: 80, def: 114, spa: 124, spd: 60, spe: 136 },
17782
- abilities: { 0: "Quark Drive" },
17783
- heightm: 0.6,
17784
- weightkg: 11,
17785
- color: "Red",
17786
- tags: ["Sub-Legendary", "Paradox"],
17873
+ baseStats: { hp: 45, atk: 30, def: 25, spa: 75, spd: 45, spe: 80 },
17874
+ abilities: { 0: "Run Away" },
17875
+ heightm: 0.1,
17876
+ weightkg: 0.1,
17877
+ color: "Blue",
17878
+ evos: ["Gholdengo"],
17787
17879
  eggGroups: ["Undiscovered"],
17788
17880
  },
17789
- ironvaliant: {
17790
- num: 993,
17791
- name: "Iron Valiant",
17792
- types: ["Fairy", "Fighting"],
17881
+ gholdengo: {
17882
+ num: 1000,
17883
+ name: "Gholdengo",
17884
+ types: ["Steel", "Ghost"],
17793
17885
  gender: "N",
17794
- baseStats: { hp: 74, atk: 130, def: 90, spa: 120, spd: 60, spe: 116 },
17795
- abilities: { 0: "Quark Drive" },
17796
- heightm: 1.4,
17797
- weightkg: 35,
17798
- color: "White",
17799
- tags: ["Sub-Legendary", "Paradox"],
17886
+ baseStats: { hp: 87, atk: 60, def: 95, spa: 133, spd: 91, spe: 84 },
17887
+ abilities: { 0: "Good as Gold" },
17888
+ heightm: 1.2,
17889
+ weightkg: 30,
17890
+ color: "Yellow",
17891
+ prevo: "Gimmighoul",
17892
+ evoType: "other",
17893
+ evoCondition: "Give 999 Coins",
17800
17894
  eggGroups: ["Undiscovered"],
17801
17895
  },
17802
- tinglu: {
17803
- num: 994,
17804
- name: "Ting-Lu",
17805
- types: ["Dark", "Ground"],
17896
+ wochien: {
17897
+ num: 1001,
17898
+ name: "Wo-Chien",
17899
+ types: ["Dark", "Grass"],
17806
17900
  gender: "N",
17807
- baseStats: { hp: 155, atk: 110, def: 125, spa: 55, spd: 80, spe: 45 },
17808
- abilities: { 0: "Vessel of Ruin" },
17809
- heightm: 2.7,
17810
- weightkg: 699.7,
17901
+ baseStats: { hp: 85, atk: 85, def: 100, spa: 95, spd: 135, spe: 70 },
17902
+ abilities: { 0: "Tablets of Ruin" },
17903
+ heightm: 1.5,
17904
+ weightkg: 74.2,
17811
17905
  color: "Brown",
17812
17906
  tags: ["Sub-Legendary"],
17813
17907
  eggGroups: ["Undiscovered"],
17814
17908
  },
17815
17909
  chienpao: {
17816
- num: 995,
17910
+ num: 1002,
17817
17911
  name: "Chien-Pao",
17818
17912
  types: ["Dark", "Ice"],
17819
17913
  gender: "N",
@@ -17825,21 +17919,21 @@ exports.Pokedex = {
17825
17919
  tags: ["Sub-Legendary"],
17826
17920
  eggGroups: ["Undiscovered"],
17827
17921
  },
17828
- wochien: {
17829
- num: 996,
17830
- name: "Wo-Chien",
17831
- types: ["Dark", "Grass"],
17922
+ tinglu: {
17923
+ num: 1003,
17924
+ name: "Ting-Lu",
17925
+ types: ["Dark", "Ground"],
17832
17926
  gender: "N",
17833
- baseStats: { hp: 85, atk: 85, def: 100, spa: 95, spd: 135, spe: 70 },
17834
- abilities: { 0: "Tablets of Ruin" },
17835
- heightm: 1.5,
17836
- weightkg: 74.2,
17927
+ baseStats: { hp: 155, atk: 110, def: 125, spa: 55, spd: 80, spe: 45 },
17928
+ abilities: { 0: "Vessel of Ruin" },
17929
+ heightm: 2.7,
17930
+ weightkg: 699.7,
17837
17931
  color: "Brown",
17838
17932
  tags: ["Sub-Legendary"],
17839
17933
  eggGroups: ["Undiscovered"],
17840
17934
  },
17841
17935
  chiyu: {
17842
- num: 997,
17936
+ num: 1004,
17843
17937
  name: "Chi-Yu",
17844
17938
  types: ["Dark", "Fire"],
17845
17939
  gender: "N",
@@ -17851,8 +17945,34 @@ exports.Pokedex = {
17851
17945
  tags: ["Sub-Legendary"],
17852
17946
  eggGroups: ["Undiscovered"],
17853
17947
  },
17948
+ roaringmoon: {
17949
+ num: 1005,
17950
+ name: "Roaring Moon",
17951
+ types: ["Dragon", "Dark"],
17952
+ gender: "N",
17953
+ baseStats: { hp: 105, atk: 139, def: 71, spa: 55, spd: 101, spe: 119 },
17954
+ abilities: { 0: "Protosynthesis" },
17955
+ heightm: 2,
17956
+ weightkg: 380,
17957
+ color: "Green",
17958
+ tags: ["Sub-Legendary", "Paradox"],
17959
+ eggGroups: ["Undiscovered"],
17960
+ },
17961
+ ironvaliant: {
17962
+ num: 1006,
17963
+ name: "Iron Valiant",
17964
+ types: ["Fairy", "Fighting"],
17965
+ gender: "N",
17966
+ baseStats: { hp: 74, atk: 130, def: 90, spa: 120, spd: 60, spe: 116 },
17967
+ abilities: { 0: "Quark Drive" },
17968
+ heightm: 1.4,
17969
+ weightkg: 35,
17970
+ color: "White",
17971
+ tags: ["Sub-Legendary", "Paradox"],
17972
+ eggGroups: ["Undiscovered"],
17973
+ },
17854
17974
  koraidon: {
17855
- num: 998,
17975
+ num: 1007,
17856
17976
  name: "Koraidon",
17857
17977
  types: ["Fighting", "Dragon"],
17858
17978
  gender: "N",
@@ -17865,7 +17985,7 @@ exports.Pokedex = {
17865
17985
  eggGroups: ["Undiscovered"],
17866
17986
  },
17867
17987
  miraidon: {
17868
- num: 999,
17988
+ num: 1008,
17869
17989
  name: "Miraidon",
17870
17990
  types: ["Electric", "Dragon"],
17871
17991
  gender: "N",
@@ -17877,154 +17997,6 @@ exports.Pokedex = {
17877
17997
  tags: ["Restricted Legendary"],
17878
17998
  eggGroups: ["Undiscovered"],
17879
17999
  },
17880
- tinkatink: {
17881
- num: 1000,
17882
- name: "Tinkatink",
17883
- types: ["Fairy", "Steel"],
17884
- gender: "F",
17885
- baseStats: { hp: 50, atk: 45, def: 45, spa: 35, spd: 64, spe: 58 },
17886
- abilities: { 0: "Mold Breaker", 1: "Own Tempo", H: "Pickpocket" },
17887
- heightm: 0.4,
17888
- weightkg: 8.9,
17889
- color: "Pink",
17890
- evos: ["Tinkatuff"],
17891
- eggGroups: ["Fairy"],
17892
- },
17893
- tinkatuff: {
17894
- num: 1001,
17895
- name: "Tinkatuff",
17896
- types: ["Fairy", "Steel"],
17897
- gender: "F",
17898
- baseStats: { hp: 65, atk: 55, def: 55, spa: 45, spd: 82, spe: 78 },
17899
- abilities: { 0: "Mold Breaker", 1: "Own Tempo", H: "Pickpocket" },
17900
- heightm: 0.7,
17901
- weightkg: 59.1,
17902
- color: "Pink",
17903
- prevo: "Tinkatink",
17904
- evoLevel: 24,
17905
- evos: ["Tinkaton"],
17906
- eggGroups: ["Fairy"],
17907
- },
17908
- tinkaton: {
17909
- num: 1002,
17910
- name: "Tinkaton",
17911
- types: ["Fairy", "Steel"],
17912
- gender: "F",
17913
- baseStats: { hp: 85, atk: 75, def: 77, spa: 70, spd: 105, spe: 94 },
17914
- abilities: { 0: "Mold Breaker", 1: "Own Tempo", H: "Pickpocket" },
17915
- heightm: 0.7,
17916
- weightkg: 112.8,
17917
- color: "Pink",
17918
- prevo: "Tinkatuff",
17919
- evoLevel: 38,
17920
- eggGroups: ["Fairy"],
17921
- },
17922
- charcadet: {
17923
- num: 1003,
17924
- name: "Charcadet",
17925
- types: ["Fire"],
17926
- baseStats: { hp: 40, atk: 50, def: 40, spa: 50, spd: 40, spe: 35 },
17927
- abilities: { 0: "Flash Fire", H: "Flame Body" },
17928
- heightm: 0.6,
17929
- weightkg: 10.5,
17930
- color: "Red",
17931
- evos: ["Armarouge", "Ceruledge"],
17932
- eggGroups: ["Human-Like"],
17933
- },
17934
- armarouge: {
17935
- num: 1004,
17936
- name: "Armarouge",
17937
- types: ["Fire", "Psychic"],
17938
- baseStats: { hp: 85, atk: 60, def: 100, spa: 125, spd: 80, spe: 75 },
17939
- abilities: { 0: "Flash Fire", H: "Weak Armor" },
17940
- heightm: 1.5,
17941
- weightkg: 85,
17942
- color: "Red",
17943
- prevo: "Charcadet",
17944
- evoType: "useItem",
17945
- evoItem: "Auspicious Armor",
17946
- eggGroups: ["Human-Like"],
17947
- },
17948
- ceruledge: {
17949
- num: 1005,
17950
- name: "Ceruledge",
17951
- types: ["Fire", "Ghost"],
17952
- baseStats: { hp: 75, atk: 125, def: 80, spa: 60, spd: 100, spe: 85 },
17953
- abilities: { 0: "Flash Fire", H: "Weak Armor" },
17954
- heightm: 1.6,
17955
- weightkg: 62,
17956
- color: "Blue",
17957
- prevo: "Charcadet",
17958
- evoType: "useItem",
17959
- evoItem: "Malicious Armor",
17960
- eggGroups: ["Human-Like"],
17961
- },
17962
- toedscool: {
17963
- num: 1006,
17964
- name: "Toedscool",
17965
- types: ["Ground", "Grass"],
17966
- baseStats: { hp: 40, atk: 40, def: 35, spa: 50, spd: 100, spe: 70 },
17967
- abilities: { 0: "Mycelium Might" },
17968
- heightm: 0.9,
17969
- weightkg: 33,
17970
- color: "Yellow",
17971
- evos: ["Toedscruel"],
17972
- eggGroups: ["Field"],
17973
- },
17974
- toedscruel: {
17975
- num: 1007,
17976
- name: "Toedscruel",
17977
- types: ["Ground", "Grass"],
17978
- baseStats: { hp: 80, atk: 70, def: 65, spa: 80, spd: 120, spe: 100 },
17979
- abilities: { 0: "Mycelium Might" },
17980
- heightm: 1.9,
17981
- weightkg: 58,
17982
- color: "Black",
17983
- prevo: "Toedscool",
17984
- evoLevel: 30,
17985
- eggGroups: ["Field"],
17986
- },
17987
- kingambit: {
17988
- num: 1008,
17989
- name: "Kingambit",
17990
- types: ["Dark", "Steel"],
17991
- baseStats: { hp: 100, atk: 135, def: 120, spa: 60, spd: 85, spe: 50 },
17992
- abilities: { 0: "Defiant", 1: "Supreme Overlord", H: "Pressure" },
17993
- heightm: 2,
17994
- weightkg: 120,
17995
- color: "Black",
17996
- prevo: "Bisharp",
17997
- evoType: "other",
17998
- evoCondition: "Defeat 3 Bisharp leading Pawniard and level-up",
17999
- eggGroups: ["Human-Like"],
18000
- },
18001
- clodsire: {
18002
- num: 1009,
18003
- name: "Clodsire",
18004
- types: ["Poison", "Ground"],
18005
- baseStats: { hp: 130, atk: 75, def: 60, spa: 45, spd: 100, spe: 20 },
18006
- abilities: { 0: "Poison Point", 1: "Water Absorb", H: "Unaware" },
18007
- heightm: 1.8,
18008
- weightkg: 223,
18009
- color: "Brown",
18010
- prevo: "Wooper-Paldea",
18011
- evoLevel: 20,
18012
- eggGroups: ["Water 1", "Field"],
18013
- },
18014
- annihilape: {
18015
- num: 1010,
18016
- name: "Annihilape",
18017
- types: ["Fighting", "Ghost"],
18018
- baseStats: { hp: 110, atk: 115, def: 80, spa: 50, spd: 90, spe: 90 },
18019
- abilities: { 0: "Vital Spirit", 1: "Inner Focus", H: "Defiant" },
18020
- heightm: 1.2,
18021
- weightkg: 56,
18022
- color: "Gray",
18023
- prevo: "Primeape",
18024
- evoType: "other",
18025
- evoCondition: "Use Rage Fist 20 times and level-up",
18026
- eggGroups: ["Field"],
18027
- },
18028
18000
  missingno: {
18029
18001
  num: 0,
18030
18002
  name: "MissingNo.",