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