@pkmn/sim 0.10.3 → 0.10.4
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.
- package/build/cjs/config/formats.js +55 -40
- package/build/cjs/config/formats.js.map +1 -1
- package/build/cjs/data/aliases.js +3 -3
- package/build/cjs/data/aliases.js.map +1 -1
- package/build/cjs/data/formats-data.js +142 -48
- package/build/cjs/data/formats-data.js.map +1 -1
- package/build/cjs/data/items.js +288 -1
- package/build/cjs/data/items.js.map +1 -1
- package/build/cjs/data/legality.js +21 -2
- package/build/cjs/data/legality.js.map +1 -1
- package/build/cjs/data/mods/gen1/formats-data.js +20 -20
- package/build/cjs/data/mods/gen1/formats-data.js.map +1 -1
- package/build/cjs/data/mods/gen1/scripts.js +1 -1
- package/build/cjs/data/mods/gen1/scripts.js.map +1 -1
- package/build/cjs/data/mods/gen3/items.js +2 -2
- package/build/cjs/data/mods/gen3/items.js.map +1 -1
- package/build/cjs/data/mods/gen8/moves.js +1 -1
- package/build/cjs/data/mods/gen8/moves.js.map +1 -1
- package/build/cjs/data/moves.js +1 -1
- package/build/cjs/data/moves.js.map +1 -1
- package/build/cjs/data/pokedex.js +406 -16
- package/build/cjs/data/pokedex.js.map +1 -1
- package/build/cjs/data/rulesets.js +12 -3
- package/build/cjs/data/rulesets.js.map +1 -1
- package/build/cjs/sim/battle-actions.js +9 -1
- package/build/cjs/sim/battle-actions.js.map +1 -1
- package/build/cjs/sim/dex-items.d.ts +2 -2
- package/build/cjs/sim/team-validator.js +8 -2
- package/build/cjs/sim/team-validator.js.map +1 -1
- package/build/esm/config/formats.mjs +55 -40
- package/build/esm/config/formats.mjs.map +1 -1
- package/build/esm/data/aliases.mjs +3 -3
- package/build/esm/data/aliases.mjs.map +1 -1
- package/build/esm/data/formats-data.mjs +142 -48
- package/build/esm/data/formats-data.mjs.map +1 -1
- package/build/esm/data/items.mjs +288 -1
- package/build/esm/data/items.mjs.map +1 -1
- package/build/esm/data/legality.mjs +21 -2
- package/build/esm/data/legality.mjs.map +1 -1
- package/build/esm/data/mods/gen1/formats-data.mjs +20 -20
- package/build/esm/data/mods/gen1/formats-data.mjs.map +1 -1
- package/build/esm/data/mods/gen1/scripts.mjs +1 -1
- package/build/esm/data/mods/gen1/scripts.mjs.map +1 -1
- package/build/esm/data/mods/gen3/items.mjs +2 -2
- package/build/esm/data/mods/gen3/items.mjs.map +1 -1
- package/build/esm/data/mods/gen8/moves.mjs +1 -1
- package/build/esm/data/mods/gen8/moves.mjs.map +1 -1
- package/build/esm/data/moves.mjs +1 -1
- package/build/esm/data/moves.mjs.map +1 -1
- package/build/esm/data/pokedex.mjs +406 -16
- package/build/esm/data/pokedex.mjs.map +1 -1
- package/build/esm/data/rulesets.mjs +12 -3
- package/build/esm/data/rulesets.mjs.map +1 -1
- package/build/esm/sim/battle-actions.mjs +9 -1
- package/build/esm/sim/battle-actions.mjs.map +1 -1
- package/build/esm/sim/dex-items.d.mts +2 -2
- package/build/esm/sim/team-validator.mjs +8 -2
- package/build/esm/sim/team-validator.mjs.map +1 -1
- package/package.json +1 -1
- package/build/cjs/eslint.config.d.mts +0 -2
- package/build/cjs/eslint.config.mjs +0 -41
- package/build/cjs/eslint.config.mjs.map +0 -1
|
@@ -803,8 +803,8 @@ export const Pokedex = {
|
|
|
803
803
|
evoType: "useItem",
|
|
804
804
|
evoItem: "Thunder Stone",
|
|
805
805
|
eggGroups: ["Field", "Fairy"],
|
|
806
|
-
otherFormes: ["Raichu-Alola"],
|
|
807
|
-
formeOrder: ["Raichu", "Raichu-Alola"],
|
|
806
|
+
otherFormes: ["Raichu-Alola", "Raichu-Mega-X", "Raichu-Mega-Y"],
|
|
807
|
+
formeOrder: ["Raichu", "Raichu-Alola", "Raichu-Mega-X", "Raichu-Mega-Y"],
|
|
808
808
|
},
|
|
809
809
|
raichualola: {
|
|
810
810
|
num: 26,
|
|
@@ -823,6 +823,36 @@ export const Pokedex = {
|
|
|
823
823
|
evoRegion: "Alola",
|
|
824
824
|
eggGroups: ["Field", "Fairy"],
|
|
825
825
|
},
|
|
826
|
+
raichumegax: {
|
|
827
|
+
num: 26,
|
|
828
|
+
name: "Raichu-Mega-X",
|
|
829
|
+
baseSpecies: "Raichu",
|
|
830
|
+
forme: "Mega-X",
|
|
831
|
+
types: ["Electric"],
|
|
832
|
+
baseStats: { hp: 60, atk: 135, def: 95, spa: 90, spd: 95, spe: 110 },
|
|
833
|
+
abilities: { 0: "Surge Surfer" },
|
|
834
|
+
heightm: 1.2,
|
|
835
|
+
weightkg: 38,
|
|
836
|
+
color: "Yellow",
|
|
837
|
+
eggGroups: ["Field", "Fairy"],
|
|
838
|
+
requiredItem: "Raichunite X",
|
|
839
|
+
gen: 9,
|
|
840
|
+
},
|
|
841
|
+
raichumegay: {
|
|
842
|
+
num: 26,
|
|
843
|
+
name: "Raichu-Mega-Y",
|
|
844
|
+
baseSpecies: "Raichu",
|
|
845
|
+
forme: "Mega-Y",
|
|
846
|
+
types: ["Electric"],
|
|
847
|
+
baseStats: { hp: 60, atk: 100, def: 55, spa: 160, spd: 80, spe: 130 },
|
|
848
|
+
abilities: { 0: "Surge Surfer" },
|
|
849
|
+
heightm: 1,
|
|
850
|
+
weightkg: 26,
|
|
851
|
+
color: "Yellow",
|
|
852
|
+
eggGroups: ["Field", "Fairy"],
|
|
853
|
+
requiredItem: "Raichunite Y",
|
|
854
|
+
gen: 9,
|
|
855
|
+
},
|
|
826
856
|
sandshrew: {
|
|
827
857
|
num: 27,
|
|
828
858
|
name: "Sandshrew",
|
|
@@ -6626,6 +6656,23 @@ export const Pokedex = {
|
|
|
6626
6656
|
evoCondition: "at night",
|
|
6627
6657
|
eggGroups: ["Amorphous"],
|
|
6628
6658
|
canHatch: true,
|
|
6659
|
+
otherFormes: ["Chimecho-Mega"],
|
|
6660
|
+
formeOrder: ["Chimecho", "Chimecho-Mega"],
|
|
6661
|
+
},
|
|
6662
|
+
chimechomega: {
|
|
6663
|
+
num: 358,
|
|
6664
|
+
name: "Chimecho-Mega",
|
|
6665
|
+
baseSpecies: "Chimecho",
|
|
6666
|
+
forme: "Mega",
|
|
6667
|
+
types: ["Psychic", "Steel"],
|
|
6668
|
+
baseStats: { hp: 75, atk: 50, def: 110, spa: 135, spd: 120, spe: 65 },
|
|
6669
|
+
abilities: { 0: "Levitate" },
|
|
6670
|
+
heightm: 1.2,
|
|
6671
|
+
weightkg: 8,
|
|
6672
|
+
color: "Blue",
|
|
6673
|
+
eggGroups: ["Amorphous"],
|
|
6674
|
+
requiredItem: "Chimechite",
|
|
6675
|
+
gen: 9,
|
|
6629
6676
|
},
|
|
6630
6677
|
absol: {
|
|
6631
6678
|
num: 359,
|
|
@@ -6637,8 +6684,8 @@ export const Pokedex = {
|
|
|
6637
6684
|
weightkg: 47,
|
|
6638
6685
|
color: "White",
|
|
6639
6686
|
eggGroups: ["Field"],
|
|
6640
|
-
otherFormes: ["Absol-Mega"],
|
|
6641
|
-
formeOrder: ["Absol", "Absol-Mega"],
|
|
6687
|
+
otherFormes: ["Absol-Mega", "Absol-Mega-Z"],
|
|
6688
|
+
formeOrder: ["Absol", "Absol-Mega", "Absol-Mega-Z"],
|
|
6642
6689
|
},
|
|
6643
6690
|
absolmega: {
|
|
6644
6691
|
num: 359,
|
|
@@ -6654,6 +6701,21 @@ export const Pokedex = {
|
|
|
6654
6701
|
eggGroups: ["Field"],
|
|
6655
6702
|
requiredItem: "Absolite",
|
|
6656
6703
|
},
|
|
6704
|
+
absolmegaz: {
|
|
6705
|
+
num: 359,
|
|
6706
|
+
name: "Absol-Mega-Z",
|
|
6707
|
+
baseSpecies: "Absol",
|
|
6708
|
+
forme: "Mega-Z",
|
|
6709
|
+
types: ["Dark", "Ghost"],
|
|
6710
|
+
baseStats: { hp: 65, atk: 154, def: 60, spa: 75, spd: 60, spe: 151 },
|
|
6711
|
+
abilities: { 0: "Magic Bounce" },
|
|
6712
|
+
heightm: 1.2,
|
|
6713
|
+
weightkg: 49,
|
|
6714
|
+
color: "Black",
|
|
6715
|
+
eggGroups: ["Field"],
|
|
6716
|
+
requiredItem: "Absolite Z",
|
|
6717
|
+
gen: 9,
|
|
6718
|
+
},
|
|
6657
6719
|
wynaut: {
|
|
6658
6720
|
num: 360,
|
|
6659
6721
|
name: "Wynaut",
|
|
@@ -7352,6 +7414,23 @@ export const Pokedex = {
|
|
|
7352
7414
|
prevo: "Staravia",
|
|
7353
7415
|
evoLevel: 34,
|
|
7354
7416
|
eggGroups: ["Flying"],
|
|
7417
|
+
otherFormes: ["Staraptor-Mega"],
|
|
7418
|
+
formeOrder: ["Staraptor", "Staraptor-Mega"],
|
|
7419
|
+
},
|
|
7420
|
+
staraptormega: {
|
|
7421
|
+
num: 398,
|
|
7422
|
+
name: "Staraptor-Mega",
|
|
7423
|
+
baseSpecies: "Staraptor",
|
|
7424
|
+
forme: "Mega",
|
|
7425
|
+
types: ["Fighting", "Flying"],
|
|
7426
|
+
baseStats: { hp: 85, atk: 140, def: 100, spa: 60, spd: 90, spe: 110 },
|
|
7427
|
+
abilities: { 0: "Intimidate", H: "Reckless" },
|
|
7428
|
+
heightm: 1.9,
|
|
7429
|
+
weightkg: 50,
|
|
7430
|
+
color: "Gray",
|
|
7431
|
+
eggGroups: ["Flying"],
|
|
7432
|
+
requiredItem: "Staraptite",
|
|
7433
|
+
gen: 9,
|
|
7355
7434
|
},
|
|
7356
7435
|
bidoof: {
|
|
7357
7436
|
num: 399,
|
|
@@ -8066,8 +8145,8 @@ export const Pokedex = {
|
|
|
8066
8145
|
prevo: "Gabite",
|
|
8067
8146
|
evoLevel: 48,
|
|
8068
8147
|
eggGroups: ["Monster", "Dragon"],
|
|
8069
|
-
otherFormes: ["Garchomp-Mega"],
|
|
8070
|
-
formeOrder: ["Garchomp", "Garchomp-Mega"],
|
|
8148
|
+
otherFormes: ["Garchomp-Mega", "Garchomp-Mega-Z"],
|
|
8149
|
+
formeOrder: ["Garchomp", "Garchomp-Mega", "Garchomp-Mega-Z"],
|
|
8071
8150
|
},
|
|
8072
8151
|
garchompmega: {
|
|
8073
8152
|
num: 445,
|
|
@@ -8083,6 +8162,21 @@ export const Pokedex = {
|
|
|
8083
8162
|
eggGroups: ["Monster", "Dragon"],
|
|
8084
8163
|
requiredItem: "Garchompite",
|
|
8085
8164
|
},
|
|
8165
|
+
garchompmegaz: {
|
|
8166
|
+
num: 445,
|
|
8167
|
+
name: "Garchomp-Mega-Z",
|
|
8168
|
+
baseSpecies: "Garchomp",
|
|
8169
|
+
forme: "Mega-Z",
|
|
8170
|
+
types: ["Dragon"],
|
|
8171
|
+
baseStats: { hp: 108, atk: 130, def: 85, spa: 141, spd: 85, spe: 151 },
|
|
8172
|
+
abilities: { 0: "Sand Force" },
|
|
8173
|
+
heightm: 1.9,
|
|
8174
|
+
weightkg: 99,
|
|
8175
|
+
color: "Blue",
|
|
8176
|
+
eggGroups: ["Monster", "Dragon"],
|
|
8177
|
+
requiredItem: "Garchompite Z",
|
|
8178
|
+
gen: 9,
|
|
8179
|
+
},
|
|
8086
8180
|
munchlax: {
|
|
8087
8181
|
num: 446,
|
|
8088
8182
|
name: "Munchlax",
|
|
@@ -8125,8 +8219,8 @@ export const Pokedex = {
|
|
|
8125
8219
|
evoType: "levelFriendship",
|
|
8126
8220
|
evoCondition: "during the day",
|
|
8127
8221
|
eggGroups: ["Field", "Human-Like"],
|
|
8128
|
-
otherFormes: ["Lucario-Mega"],
|
|
8129
|
-
formeOrder: ["Lucario", "Lucario-Mega"],
|
|
8222
|
+
otherFormes: ["Lucario-Mega", "Lucario-Mega-Z"],
|
|
8223
|
+
formeOrder: ["Lucario", "Lucario-Mega", "Lucario-Mega-Z"],
|
|
8130
8224
|
},
|
|
8131
8225
|
lucariomega: {
|
|
8132
8226
|
num: 448,
|
|
@@ -8143,6 +8237,22 @@ export const Pokedex = {
|
|
|
8143
8237
|
eggGroups: ["Field", "Human-Like"],
|
|
8144
8238
|
requiredItem: "Lucarionite",
|
|
8145
8239
|
},
|
|
8240
|
+
lucariomegaz: {
|
|
8241
|
+
num: 448,
|
|
8242
|
+
name: "Lucario-Mega-Z",
|
|
8243
|
+
baseSpecies: "Lucario",
|
|
8244
|
+
forme: "Mega-Z",
|
|
8245
|
+
types: ["Fighting", "Steel"],
|
|
8246
|
+
genderRatio: { M: 0.875, F: 0.125 },
|
|
8247
|
+
baseStats: { hp: 70, atk: 100, def: 70, spa: 164, spd: 70, spe: 151 },
|
|
8248
|
+
abilities: { 0: "Adaptability" },
|
|
8249
|
+
heightm: 1.3,
|
|
8250
|
+
weightkg: 49.4,
|
|
8251
|
+
color: "Gray",
|
|
8252
|
+
eggGroups: ["Field", "Human-Like"],
|
|
8253
|
+
requiredItem: "Lucarionite Z",
|
|
8254
|
+
gen: 9,
|
|
8255
|
+
},
|
|
8146
8256
|
hippopotas: {
|
|
8147
8257
|
num: 449,
|
|
8148
8258
|
name: "Hippopotas",
|
|
@@ -8809,6 +8919,24 @@ export const Pokedex = {
|
|
|
8809
8919
|
color: "Brown",
|
|
8810
8920
|
tags: ["Sub-Legendary"],
|
|
8811
8921
|
eggGroups: ["Undiscovered"],
|
|
8922
|
+
otherFormes: ["Heatran-Mega"],
|
|
8923
|
+
formeOrder: ["Heatran", "Heatran-Mega"],
|
|
8924
|
+
},
|
|
8925
|
+
heatranmega: {
|
|
8926
|
+
num: 485,
|
|
8927
|
+
name: "Heatran-Mega",
|
|
8928
|
+
baseSpecies: "Heatran",
|
|
8929
|
+
forme: "Mega",
|
|
8930
|
+
types: ["Fire", "Steel"],
|
|
8931
|
+
baseStats: { hp: 91, atk: 120, def: 106, spa: 175, spd: 141, spe: 67 },
|
|
8932
|
+
abilities: { 0: "Flash Fire", H: "Flame Body" },
|
|
8933
|
+
heightm: 2.8,
|
|
8934
|
+
weightkg: 570,
|
|
8935
|
+
color: "Brown",
|
|
8936
|
+
tags: ["Sub-Legendary"],
|
|
8937
|
+
eggGroups: ["Undiscovered"],
|
|
8938
|
+
requiredItem: "Heatranite",
|
|
8939
|
+
gen: 9,
|
|
8812
8940
|
},
|
|
8813
8941
|
regigigas: {
|
|
8814
8942
|
num: 486,
|
|
@@ -8906,6 +9034,25 @@ export const Pokedex = {
|
|
|
8906
9034
|
color: "Black",
|
|
8907
9035
|
tags: ["Mythical"],
|
|
8908
9036
|
eggGroups: ["Undiscovered"],
|
|
9037
|
+
otherFormes: ["Darkrai-Mega"],
|
|
9038
|
+
formeOrder: ["Darkrai", "Darkrai-Mega"],
|
|
9039
|
+
},
|
|
9040
|
+
darkraimega: {
|
|
9041
|
+
num: 491,
|
|
9042
|
+
name: "Darkrai-Mega",
|
|
9043
|
+
baseSpecies: "Darkrai",
|
|
9044
|
+
forme: "Mega",
|
|
9045
|
+
types: ["Dark"],
|
|
9046
|
+
gender: "N",
|
|
9047
|
+
baseStats: { hp: 70, atk: 120, def: 130, spa: 165, spd: 130, spe: 85 },
|
|
9048
|
+
abilities: { 0: "Bad Dreams" },
|
|
9049
|
+
heightm: 3,
|
|
9050
|
+
weightkg: 240,
|
|
9051
|
+
color: "Black",
|
|
9052
|
+
tags: ["Mythical"],
|
|
9053
|
+
eggGroups: ["Undiscovered"],
|
|
9054
|
+
requiredItem: "Darkranite",
|
|
9055
|
+
gen: 9,
|
|
8909
9056
|
},
|
|
8910
9057
|
shaymin: {
|
|
8911
9058
|
num: 492,
|
|
@@ -11275,6 +11422,24 @@ export const Pokedex = {
|
|
|
11275
11422
|
prevo: "Golett",
|
|
11276
11423
|
evoLevel: 43,
|
|
11277
11424
|
eggGroups: ["Mineral"],
|
|
11425
|
+
otherFormes: ["Golurk-Mega"],
|
|
11426
|
+
formeOrder: ["Golurk", "Golurk-Mega"],
|
|
11427
|
+
},
|
|
11428
|
+
golurkmega: {
|
|
11429
|
+
num: 623,
|
|
11430
|
+
name: "Golurk-Mega",
|
|
11431
|
+
baseSpecies: "Golurk",
|
|
11432
|
+
forme: "Mega",
|
|
11433
|
+
types: ["Ground", "Ghost"],
|
|
11434
|
+
gender: "N",
|
|
11435
|
+
baseStats: { hp: 89, atk: 159, def: 105, spa: 70, spd: 105, spe: 55 },
|
|
11436
|
+
abilities: { 0: "Iron Fist", 1: "Klutz", H: "No Guard" },
|
|
11437
|
+
heightm: 4,
|
|
11438
|
+
weightkg: 330,
|
|
11439
|
+
color: "Green",
|
|
11440
|
+
eggGroups: ["Mineral"],
|
|
11441
|
+
requiredItem: "Golurkite",
|
|
11442
|
+
gen: 9,
|
|
11278
11443
|
},
|
|
11279
11444
|
pawniard: {
|
|
11280
11445
|
num: 624,
|
|
@@ -12537,8 +12702,8 @@ export const Pokedex = {
|
|
|
12537
12702
|
prevo: "Espurr",
|
|
12538
12703
|
evoLevel: 25,
|
|
12539
12704
|
eggGroups: ["Field"],
|
|
12540
|
-
otherFormes: ["Meowstic-F"],
|
|
12541
|
-
formeOrder: ["Meowstic", "Meowstic-F"],
|
|
12705
|
+
otherFormes: ["Meowstic-F", "Meowstic-M-Mega", "Meowstic-F-Mega"],
|
|
12706
|
+
formeOrder: ["Meowstic", "Meowstic-F", "Meowstic-M-Mega", "Meowstic-F-Mega"],
|
|
12542
12707
|
},
|
|
12543
12708
|
meowsticf: {
|
|
12544
12709
|
num: 678,
|
|
@@ -12556,6 +12721,40 @@ export const Pokedex = {
|
|
|
12556
12721
|
evoLevel: 25,
|
|
12557
12722
|
eggGroups: ["Field"],
|
|
12558
12723
|
},
|
|
12724
|
+
meowsticmmega: {
|
|
12725
|
+
num: 678,
|
|
12726
|
+
name: "Meowstic-M-Mega",
|
|
12727
|
+
baseSpecies: "Meowstic",
|
|
12728
|
+
forme: "M-Mega",
|
|
12729
|
+
types: ["Psychic"],
|
|
12730
|
+
gender: "M",
|
|
12731
|
+
baseStats: { hp: 74, atk: 48, def: 76, spa: 143, spd: 101, spe: 124 },
|
|
12732
|
+
abilities: { 0: "Keen Eye", 1: "Infiltrator", H: "Competitive" },
|
|
12733
|
+
heightm: 0.8,
|
|
12734
|
+
weightkg: 10.1,
|
|
12735
|
+
color: "Blue",
|
|
12736
|
+
eggGroups: ["Field"],
|
|
12737
|
+
requiredItem: "Meowsticite",
|
|
12738
|
+
battleOnly: "Meowstic",
|
|
12739
|
+
gen: 9,
|
|
12740
|
+
},
|
|
12741
|
+
meowsticfmega: {
|
|
12742
|
+
num: 678,
|
|
12743
|
+
name: "Meowstic-F-Mega",
|
|
12744
|
+
baseSpecies: "Meowstic",
|
|
12745
|
+
forme: "F-Mega",
|
|
12746
|
+
types: ["Psychic"],
|
|
12747
|
+
gender: "F",
|
|
12748
|
+
baseStats: { hp: 74, atk: 48, def: 76, spa: 143, spd: 101, spe: 124 },
|
|
12749
|
+
abilities: { 0: "Keen Eye", 1: "Infiltrator", H: "Competitive" },
|
|
12750
|
+
heightm: 0.8,
|
|
12751
|
+
weightkg: 10.1,
|
|
12752
|
+
color: "White",
|
|
12753
|
+
eggGroups: ["Field"],
|
|
12754
|
+
requiredItem: "Meowsticite",
|
|
12755
|
+
battleOnly: "Meowstic-F",
|
|
12756
|
+
gen: 9,
|
|
12757
|
+
},
|
|
12559
12758
|
honedge: {
|
|
12560
12759
|
num: 679,
|
|
12561
12760
|
name: "Honedge",
|
|
@@ -13751,6 +13950,23 @@ export const Pokedex = {
|
|
|
13751
13950
|
evoType: "useItem",
|
|
13752
13951
|
evoItem: "Ice Stone",
|
|
13753
13952
|
eggGroups: ["Water 3"],
|
|
13953
|
+
otherFormes: ["Crabominable-Mega"],
|
|
13954
|
+
formeOrder: ["Crabominable", "Crabominable-Mega"],
|
|
13955
|
+
},
|
|
13956
|
+
crabominablemega: {
|
|
13957
|
+
num: 740,
|
|
13958
|
+
name: "Crabominable-Mega",
|
|
13959
|
+
baseSpecies: "Crabominable",
|
|
13960
|
+
forme: "Mega",
|
|
13961
|
+
types: ["Fighting", "Ice"],
|
|
13962
|
+
baseStats: { hp: 97, atk: 157, def: 122, spa: 62, spd: 107, spe: 33 },
|
|
13963
|
+
abilities: { 0: "Hyper Cutter", 1: "Iron Fist", H: "Anger Point" },
|
|
13964
|
+
heightm: 2.6,
|
|
13965
|
+
weightkg: 252.8,
|
|
13966
|
+
color: "White",
|
|
13967
|
+
eggGroups: ["Water 3"],
|
|
13968
|
+
requiredItem: "Crabominite",
|
|
13969
|
+
gen: 9,
|
|
13754
13970
|
},
|
|
13755
13971
|
oricorio: {
|
|
13756
13972
|
num: 741,
|
|
@@ -14284,6 +14500,23 @@ export const Pokedex = {
|
|
|
14284
14500
|
prevo: "Wimpod",
|
|
14285
14501
|
evoLevel: 30,
|
|
14286
14502
|
eggGroups: ["Bug", "Water 3"],
|
|
14503
|
+
otherFormes: ["Golisopod-Mega"],
|
|
14504
|
+
formeOrder: ["Golisopod", "Golisopod-Mega"],
|
|
14505
|
+
},
|
|
14506
|
+
golisopodmega: {
|
|
14507
|
+
num: 768,
|
|
14508
|
+
name: "Golisopod-Mega",
|
|
14509
|
+
baseSpecies: "Golisopod",
|
|
14510
|
+
forme: "Mega",
|
|
14511
|
+
types: ["Bug", "Steel"],
|
|
14512
|
+
baseStats: { hp: 75, atk: 150, def: 175, spa: 70, spd: 120, spe: 40 },
|
|
14513
|
+
abilities: { 0: "Emergency Exit" },
|
|
14514
|
+
heightm: 2.3,
|
|
14515
|
+
weightkg: 148,
|
|
14516
|
+
color: "Gray",
|
|
14517
|
+
eggGroups: ["Bug", "Water 3"],
|
|
14518
|
+
requiredItem: "Golisopite",
|
|
14519
|
+
gen: 9,
|
|
14287
14520
|
},
|
|
14288
14521
|
sandygast: {
|
|
14289
14522
|
num: 769,
|
|
@@ -15192,8 +15425,8 @@ export const Pokedex = {
|
|
|
15192
15425
|
color: "Gray",
|
|
15193
15426
|
eggGroups: ["Undiscovered"],
|
|
15194
15427
|
tags: ["Mythical"],
|
|
15195
|
-
otherFormes: ["Magearna-Original"],
|
|
15196
|
-
formeOrder: ["Magearna", "Magearna-Original"],
|
|
15428
|
+
otherFormes: ["Magearna-Original", "Magearna-Mega", "Magearna-Original-Mega"],
|
|
15429
|
+
formeOrder: ["Magearna", "Magearna-Original", "Magearna-Mega", "Magearna-Original-Mega"],
|
|
15197
15430
|
},
|
|
15198
15431
|
magearnaoriginal: {
|
|
15199
15432
|
num: 801,
|
|
@@ -15209,6 +15442,39 @@ export const Pokedex = {
|
|
|
15209
15442
|
color: "Red",
|
|
15210
15443
|
eggGroups: ["Undiscovered"],
|
|
15211
15444
|
},
|
|
15445
|
+
magearnamega: {
|
|
15446
|
+
num: 801,
|
|
15447
|
+
name: "Magearna-Mega",
|
|
15448
|
+
baseSpecies: "Magearna",
|
|
15449
|
+
forme: "Mega",
|
|
15450
|
+
types: ["Steel", "Fairy"],
|
|
15451
|
+
gender: "N",
|
|
15452
|
+
baseStats: { hp: 80, atk: 125, def: 115, spa: 170, spd: 115, spe: 95 },
|
|
15453
|
+
abilities: { 0: "Soul-Heart" },
|
|
15454
|
+
heightm: 1.3,
|
|
15455
|
+
weightkg: 248.1,
|
|
15456
|
+
color: "Gray",
|
|
15457
|
+
eggGroups: ["Undiscovered"],
|
|
15458
|
+
requiredItem: "Magearnite",
|
|
15459
|
+
gen: 9,
|
|
15460
|
+
},
|
|
15461
|
+
magearnaoriginalmega: {
|
|
15462
|
+
num: 801,
|
|
15463
|
+
name: "Magearna-Original-Mega",
|
|
15464
|
+
baseSpecies: "Magearna",
|
|
15465
|
+
forme: "Original-Mega",
|
|
15466
|
+
types: ["Steel", "Fairy"],
|
|
15467
|
+
gender: "N",
|
|
15468
|
+
baseStats: { hp: 80, atk: 125, def: 115, spa: 170, spd: 115, spe: 95 },
|
|
15469
|
+
abilities: { 0: "Soul-Heart" },
|
|
15470
|
+
heightm: 1.3,
|
|
15471
|
+
weightkg: 248.1,
|
|
15472
|
+
color: "Red",
|
|
15473
|
+
eggGroups: ["Undiscovered"],
|
|
15474
|
+
requiredItem: "Magearnite",
|
|
15475
|
+
battleOnly: "Magearna-Original",
|
|
15476
|
+
gen: 9,
|
|
15477
|
+
},
|
|
15212
15478
|
marshadow: {
|
|
15213
15479
|
num: 802,
|
|
15214
15480
|
name: "Marshadow",
|
|
@@ -15290,6 +15556,25 @@ export const Pokedex = {
|
|
|
15290
15556
|
color: "Yellow",
|
|
15291
15557
|
tags: ["Mythical"],
|
|
15292
15558
|
eggGroups: ["Undiscovered"],
|
|
15559
|
+
otherFormes: ["Zeraora-Mega"],
|
|
15560
|
+
formeOrder: ["Zeraora", "Zeraora-Mega"],
|
|
15561
|
+
},
|
|
15562
|
+
zeraoramega: {
|
|
15563
|
+
num: 807,
|
|
15564
|
+
name: "Zeraora-Mega",
|
|
15565
|
+
baseSpecies: "Zeraora",
|
|
15566
|
+
forme: "Mega",
|
|
15567
|
+
types: ["Electric"],
|
|
15568
|
+
gender: "N",
|
|
15569
|
+
baseStats: { hp: 88, atk: 157, def: 75, spa: 147, spd: 80, spe: 153 },
|
|
15570
|
+
abilities: { 0: "Volt Absorb" },
|
|
15571
|
+
heightm: 1.5,
|
|
15572
|
+
weightkg: 44.5,
|
|
15573
|
+
color: "Yellow",
|
|
15574
|
+
tags: ["Mythical"],
|
|
15575
|
+
eggGroups: ["Undiscovered"],
|
|
15576
|
+
requiredItem: "Zeraorite",
|
|
15577
|
+
gen: 9,
|
|
15293
15578
|
},
|
|
15294
15579
|
meltan: {
|
|
15295
15580
|
num: 808,
|
|
@@ -17986,6 +18271,22 @@ export const Pokedex = {
|
|
|
17986
18271
|
evoType: "useItem",
|
|
17987
18272
|
evoItem: "Fire Stone",
|
|
17988
18273
|
eggGroups: ["Grass"],
|
|
18274
|
+
otherFormes: ["Scovillain-Mega"],
|
|
18275
|
+
formeOrder: ["Scovillain", "Scovillain-Mega"],
|
|
18276
|
+
},
|
|
18277
|
+
scovillainmega: {
|
|
18278
|
+
num: 952,
|
|
18279
|
+
name: "Scovillain-Mega",
|
|
18280
|
+
baseSpecies: "Scovillain",
|
|
18281
|
+
forme: "Mega",
|
|
18282
|
+
types: ["Grass", "Fire"],
|
|
18283
|
+
baseStats: { hp: 65, atk: 138, def: 85, spa: 138, spd: 85, spe: 75 },
|
|
18284
|
+
abilities: { 0: "Chlorophyll", 1: "Insomnia", H: "Moody" },
|
|
18285
|
+
heightm: 1.2,
|
|
18286
|
+
weightkg: 22,
|
|
18287
|
+
color: "Green",
|
|
18288
|
+
eggGroups: ["Grass"],
|
|
18289
|
+
requiredItem: "Scovillainite",
|
|
17989
18290
|
},
|
|
17990
18291
|
rellor: {
|
|
17991
18292
|
num: 953,
|
|
@@ -18230,6 +18531,22 @@ export const Pokedex = {
|
|
|
18230
18531
|
prevo: "Glimmet",
|
|
18231
18532
|
evoLevel: 35,
|
|
18232
18533
|
eggGroups: ["Mineral"],
|
|
18534
|
+
otherFormes: ["Glimmora-Mega"],
|
|
18535
|
+
formeOrder: ["Glimmora", "Glimmora-Mega"],
|
|
18536
|
+
},
|
|
18537
|
+
glimmoramega: {
|
|
18538
|
+
num: 970,
|
|
18539
|
+
name: "Glimmora-Mega",
|
|
18540
|
+
baseSpecies: "Glimmora",
|
|
18541
|
+
forme: "Mega",
|
|
18542
|
+
types: ["Rock", "Poison"],
|
|
18543
|
+
baseStats: { hp: 83, atk: 90, def: 105, spa: 150, spd: 96, spe: 101 },
|
|
18544
|
+
abilities: { 0: "Toxic Debris", H: "Corrosion" },
|
|
18545
|
+
heightm: 2.8,
|
|
18546
|
+
weightkg: 77,
|
|
18547
|
+
color: "Blue",
|
|
18548
|
+
eggGroups: ["Mineral"],
|
|
18549
|
+
requiredItem: "Glimmoranite",
|
|
18233
18550
|
},
|
|
18234
18551
|
greavard: {
|
|
18235
18552
|
num: 971,
|
|
@@ -18326,23 +18643,80 @@ export const Pokedex = {
|
|
|
18326
18643
|
heightm: 0.3,
|
|
18327
18644
|
weightkg: 8,
|
|
18328
18645
|
color: "Red",
|
|
18329
|
-
cosmeticFormes: ["Tatsugiri-Droopy", "Tatsugiri-Stretchy"],
|
|
18330
|
-
formeOrder: ["Tatsugiri", "Tatsugiri-Droopy", "Tatsugiri-Stretchy"],
|
|
18331
18646
|
eggGroups: ["Water 2"],
|
|
18647
|
+
otherFormes: ["Tatsugiri-Droopy", "Tatsugiri-Stretchy", "Tatsugiri-Curly-Mega", "Tatsugiri-Droopy-Mega", "Tatsugiri-Stretchy-Mega"],
|
|
18648
|
+
formeOrder: ["Tatsugiri", "Tatsugiri-Droopy", "Tatsugiri-Stretchy", "Tatsugiri-Curly-Mega", "Tatsugiri-Droopy-Mega", "Tatsugiri-Stretchy-Mega"],
|
|
18332
18649
|
},
|
|
18333
18650
|
tatsugiridroopy: {
|
|
18334
|
-
|
|
18651
|
+
num: 978,
|
|
18335
18652
|
name: "Tatsugiri-Droopy",
|
|
18336
18653
|
baseSpecies: "Tatsugiri",
|
|
18337
18654
|
forme: "Droopy",
|
|
18655
|
+
types: ["Dragon", "Water"],
|
|
18656
|
+
baseStats: { hp: 68, atk: 50, def: 60, spa: 120, spd: 95, spe: 82 },
|
|
18657
|
+
abilities: { 0: "Commander", H: "Storm Drain" },
|
|
18658
|
+
heightm: 0.3,
|
|
18659
|
+
weightkg: 8,
|
|
18338
18660
|
color: "Pink",
|
|
18661
|
+
eggGroups: ["Water 2"],
|
|
18339
18662
|
},
|
|
18340
18663
|
tatsugiristretchy: {
|
|
18341
|
-
|
|
18664
|
+
num: 978,
|
|
18342
18665
|
name: "Tatsugiri-Stretchy",
|
|
18343
18666
|
baseSpecies: "Tatsugiri",
|
|
18344
18667
|
forme: "Stretchy",
|
|
18668
|
+
types: ["Dragon", "Water"],
|
|
18669
|
+
baseStats: { hp: 68, atk: 50, def: 60, spa: 120, spd: 95, spe: 82 },
|
|
18670
|
+
abilities: { 0: "Commander", H: "Storm Drain" },
|
|
18671
|
+
heightm: 0.3,
|
|
18672
|
+
weightkg: 8,
|
|
18673
|
+
color: "Yellow",
|
|
18674
|
+
eggGroups: ["Water 2"],
|
|
18675
|
+
},
|
|
18676
|
+
tatsugiricurlymega: {
|
|
18677
|
+
num: 978,
|
|
18678
|
+
name: "Tatsugiri-Curly-Mega",
|
|
18679
|
+
baseSpecies: "Tatsugiri",
|
|
18680
|
+
forme: "Curly-Mega",
|
|
18681
|
+
types: ["Dragon", "Water"],
|
|
18682
|
+
baseStats: { hp: 68, atk: 65, def: 90, spa: 135, spd: 125, spe: 92 },
|
|
18683
|
+
abilities: { 0: "Commander", H: "Storm Drain" },
|
|
18684
|
+
heightm: 0.3,
|
|
18685
|
+
weightkg: 8,
|
|
18686
|
+
color: "Red",
|
|
18687
|
+
eggGroups: ["Water 2"],
|
|
18688
|
+
requiredItem: "Tatsugirinite",
|
|
18689
|
+
battleOnly: "Tatsugiri",
|
|
18690
|
+
},
|
|
18691
|
+
tatsugiridroopymega: {
|
|
18692
|
+
num: 978,
|
|
18693
|
+
name: "Tatsugiri-Droopy-Mega",
|
|
18694
|
+
baseSpecies: "Tatsugiri",
|
|
18695
|
+
forme: "Droopy-Mega",
|
|
18696
|
+
types: ["Dragon", "Water"],
|
|
18697
|
+
baseStats: { hp: 68, atk: 65, def: 90, spa: 135, spd: 125, spe: 92 },
|
|
18698
|
+
abilities: { 0: "Commander", H: "Storm Drain" },
|
|
18699
|
+
heightm: 0.3,
|
|
18700
|
+
weightkg: 8,
|
|
18701
|
+
color: "Pink",
|
|
18702
|
+
eggGroups: ["Water 2"],
|
|
18703
|
+
requiredItem: "Tatsugirinite",
|
|
18704
|
+
battleOnly: "Tatsugiri-Droopy",
|
|
18705
|
+
},
|
|
18706
|
+
tatsugiristretchymega: {
|
|
18707
|
+
num: 978,
|
|
18708
|
+
name: "Tatsugiri-Stretchy-Mega",
|
|
18709
|
+
baseSpecies: "Tatsugiri",
|
|
18710
|
+
forme: "Stretchy-Mega",
|
|
18711
|
+
types: ["Dragon", "Water"],
|
|
18712
|
+
baseStats: { hp: 68, atk: 65, def: 90, spa: 135, spd: 125, spe: 92 },
|
|
18713
|
+
abilities: { 0: "Commander", H: "Storm Drain" },
|
|
18714
|
+
heightm: 0.3,
|
|
18715
|
+
weightkg: 8,
|
|
18345
18716
|
color: "Yellow",
|
|
18717
|
+
eggGroups: ["Water 2"],
|
|
18718
|
+
requiredItem: "Tatsugirinite",
|
|
18719
|
+
battleOnly: "Tatsugiri-Stretchy",
|
|
18346
18720
|
},
|
|
18347
18721
|
annihilape: {
|
|
18348
18722
|
num: 979,
|
|
@@ -18626,6 +19000,22 @@ export const Pokedex = {
|
|
|
18626
19000
|
prevo: "Arctibax",
|
|
18627
19001
|
evoLevel: 54,
|
|
18628
19002
|
eggGroups: ["Dragon", "Mineral"],
|
|
19003
|
+
otherFormes: ["Baxcalibur-Mega"],
|
|
19004
|
+
formeOrder: ["Baxcalibur", "Baxcalibur-Mega"],
|
|
19005
|
+
},
|
|
19006
|
+
baxcaliburmega: {
|
|
19007
|
+
num: 998,
|
|
19008
|
+
name: "Baxcalibur-Mega",
|
|
19009
|
+
baseSpecies: "Baxcalibur",
|
|
19010
|
+
forme: "Mega",
|
|
19011
|
+
types: ["Dragon", "Ice"],
|
|
19012
|
+
baseStats: { hp: 115, atk: 175, def: 117, spa: 105, spd: 101, spe: 87 },
|
|
19013
|
+
abilities: { 0: "Thermal Exchange", H: "Ice Body" },
|
|
19014
|
+
heightm: 2.1,
|
|
19015
|
+
weightkg: 315,
|
|
19016
|
+
color: "Blue",
|
|
19017
|
+
eggGroups: ["Dragon", "Mineral"],
|
|
19018
|
+
requiredItem: "Baxcalibrite",
|
|
18629
19019
|
},
|
|
18630
19020
|
gimmighoul: {
|
|
18631
19021
|
num: 999,
|