@pkmn/sim 0.5.5 → 0.5.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.
- package/build/config/formats.js +325 -254
- package/build/config/formats.js.map +1 -1
- package/build/data/aliases.js +4 -4
- package/build/data/aliases.js.map +1 -1
- package/build/data/formats-data.js +130 -17
- package/build/data/formats-data.js.map +1 -1
- package/build/data/items.js +2 -2
- package/build/data/items.js.map +1 -1
- package/build/data/learnsets.js +6 -5
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen2/moves.js +13 -1
- package/build/data/mods/gen2/moves.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +3 -3
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen4/formats-data.js +4 -4
- package/build/data/mods/gen4/formats-data.js.map +1 -1
- package/build/data/mods/gen4/moves.js +7 -5
- package/build/data/mods/gen4/moves.js.map +1 -1
- package/build/data/mods/gen5/formats-data.js +1 -1
- package/build/data/mods/gen5/formats-data.js.map +1 -1
- package/build/data/mods/gen5/moves.js +6 -4
- package/build/data/mods/gen5/moves.js.map +1 -1
- package/build/data/mods/gen6/formats-data.js +3 -2
- package/build/data/mods/gen6/formats-data.js.map +1 -1
- package/build/data/mods/gen6/items.js +2 -2
- package/build/data/mods/gen6/items.js.map +1 -1
- package/build/data/mods/gen7/formats-data.js +2 -1
- package/build/data/mods/gen7/formats-data.js.map +1 -1
- package/build/data/mods/gen7/moves.js +3 -3
- package/build/data/mods/gen7/moves.js.map +1 -1
- package/build/data/mods/gen7/pokedex.js +4 -0
- package/build/data/mods/gen7/pokedex.js.map +1 -1
- package/build/data/moves.js +6 -5
- package/build/data/moves.js.map +1 -1
- package/build/data/pokedex.js +480 -11
- package/build/data/pokedex.js.map +1 -1
- package/build/data/rulesets.js +26 -1
- package/build/data/rulesets.js.map +1 -1
- package/build/sim/battle.js +23 -22
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-species.js +5 -2
- package/build/sim/dex-species.js.map +1 -1
- package/build/sim/exported-global-types.d.ts +1 -0
- package/build/sim/global-types.d.ts +1 -0
- package/build/sim/team-validator.js +11 -0
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +327 -257
- package/data/aliases.ts +4 -4
- package/data/formats-data.ts +130 -17
- package/data/items.ts +2 -2
- package/data/learnsets.ts +6 -5
- package/data/mods/gen2/moves.ts +13 -1
- package/data/mods/gen3/formats-data.ts +3 -3
- package/data/mods/gen4/formats-data.ts +4 -4
- package/data/mods/gen4/moves.ts +6 -4
- package/data/mods/gen5/formats-data.ts +1 -1
- package/data/mods/gen5/moves.ts +6 -4
- package/data/mods/gen6/formats-data.ts +3 -2
- package/data/mods/gen6/items.ts +2 -2
- package/data/mods/gen7/formats-data.ts +2 -1
- package/data/mods/gen7/moves.ts +3 -3
- package/data/mods/gen7/pokedex.ts +4 -0
- package/data/moves.ts +6 -5
- package/data/pokedex.ts +480 -11
- package/data/rulesets.ts +23 -1
- package/package.json +2 -2
- package/sim/battle.ts +24 -23
- package/sim/dex-species.ts +5 -2
- package/sim/exported-global-types.ts +1 -0
- package/sim/global-types.ts +1 -0
- package/sim/team-validator.ts +13 -0
package/build/data/pokedex.js
CHANGED
|
@@ -1416,6 +1416,23 @@ exports.Pokedex = {
|
|
|
1416
1416
|
color: "Brown",
|
|
1417
1417
|
evos: ["Arcanine"],
|
|
1418
1418
|
eggGroups: ["Field"],
|
|
1419
|
+
otherFormes: ["Growlithe-Hisui"],
|
|
1420
|
+
formeOrder: ["Growlithe", "Growlithe-Hisui"],
|
|
1421
|
+
},
|
|
1422
|
+
growlithehisui: {
|
|
1423
|
+
num: 58,
|
|
1424
|
+
name: "Growlithe-Hisui",
|
|
1425
|
+
baseSpecies: "Growlithe",
|
|
1426
|
+
forme: "Hisui",
|
|
1427
|
+
types: ["Fire", "Rock"],
|
|
1428
|
+
genderRatio: { M: 0.75, F: 0.25 },
|
|
1429
|
+
baseStats: { hp: 60, atk: 75, def: 45, spa: 65, spd: 50, spe: 55 },
|
|
1430
|
+
abilities: { 0: "Intimidate", 1: "Flash Fire", H: "Justified" },
|
|
1431
|
+
heightm: 0.8,
|
|
1432
|
+
weightkg: 22.7,
|
|
1433
|
+
color: "Brown",
|
|
1434
|
+
evos: ["Arcanine-Hisui"],
|
|
1435
|
+
eggGroups: ["Field"],
|
|
1419
1436
|
},
|
|
1420
1437
|
arcanine: {
|
|
1421
1438
|
num: 59,
|
|
@@ -1431,6 +1448,25 @@ exports.Pokedex = {
|
|
|
1431
1448
|
evoType: "useItem",
|
|
1432
1449
|
evoItem: "Fire Stone",
|
|
1433
1450
|
eggGroups: ["Field"],
|
|
1451
|
+
otherFormes: ["Arcanine-Hisui"],
|
|
1452
|
+
formeOrder: ["Arcanine", "Arcanine-Hisui"],
|
|
1453
|
+
},
|
|
1454
|
+
arcaninehisui: {
|
|
1455
|
+
num: 59,
|
|
1456
|
+
name: "Arcanine-Hisui",
|
|
1457
|
+
baseSpecies: "Arcanine",
|
|
1458
|
+
forme: "Hisui",
|
|
1459
|
+
types: ["Fire", "Rock"],
|
|
1460
|
+
genderRatio: { M: 0.75, F: 0.25 },
|
|
1461
|
+
baseStats: { hp: 95, atk: 115, def: 80, spa: 95, spd: 80, spe: 90 },
|
|
1462
|
+
abilities: { 0: "Intimidate", 1: "Flash Fire", H: "Justified" },
|
|
1463
|
+
heightm: 2,
|
|
1464
|
+
weightkg: 168,
|
|
1465
|
+
color: "Brown",
|
|
1466
|
+
prevo: "Growlithe-Hisui",
|
|
1467
|
+
evoType: "useItem",
|
|
1468
|
+
evoItem: "Fire Stone",
|
|
1469
|
+
eggGroups: ["Field"],
|
|
1434
1470
|
},
|
|
1435
1471
|
poliwag: {
|
|
1436
1472
|
num: 60,
|
|
@@ -2223,6 +2259,23 @@ exports.Pokedex = {
|
|
|
2223
2259
|
color: "Red",
|
|
2224
2260
|
evos: ["Electrode"],
|
|
2225
2261
|
eggGroups: ["Mineral"],
|
|
2262
|
+
otherFormes: ["Voltorb-Hisui"],
|
|
2263
|
+
formeOrder: ["Voltorb", "Voltorb-Hisui"],
|
|
2264
|
+
},
|
|
2265
|
+
voltorbhisui: {
|
|
2266
|
+
num: 100,
|
|
2267
|
+
name: "Voltorb-Hisui",
|
|
2268
|
+
baseSpecies: "Voltorb",
|
|
2269
|
+
forme: "Hisui",
|
|
2270
|
+
types: ["Electric", "Grass"],
|
|
2271
|
+
gender: "N",
|
|
2272
|
+
baseStats: { hp: 40, atk: 30, def: 50, spa: 55, spd: 55, spe: 100 },
|
|
2273
|
+
abilities: { 0: "Soundproof", 1: "Static", H: "Aftermath" },
|
|
2274
|
+
heightm: 0.5,
|
|
2275
|
+
weightkg: 13,
|
|
2276
|
+
color: "Red",
|
|
2277
|
+
evos: ["Electrode-Hisui"],
|
|
2278
|
+
eggGroups: ["Mineral"],
|
|
2226
2279
|
},
|
|
2227
2280
|
electrode: {
|
|
2228
2281
|
num: 101,
|
|
@@ -2237,6 +2290,25 @@ exports.Pokedex = {
|
|
|
2237
2290
|
prevo: "Voltorb",
|
|
2238
2291
|
evoLevel: 30,
|
|
2239
2292
|
eggGroups: ["Mineral"],
|
|
2293
|
+
otherFormes: ["Electrode-Hisui"],
|
|
2294
|
+
formeOrder: ["Electrode", "Electrode-Hisui"],
|
|
2295
|
+
},
|
|
2296
|
+
electrodehisui: {
|
|
2297
|
+
num: 101,
|
|
2298
|
+
name: "Electrode-Hisui",
|
|
2299
|
+
baseSpecies: "Electrode",
|
|
2300
|
+
forme: "Hisui",
|
|
2301
|
+
types: ["Electric", "Grass"],
|
|
2302
|
+
gender: "N",
|
|
2303
|
+
baseStats: { hp: 60, atk: 50, def: 70, spa: 80, spd: 80, spe: 150 },
|
|
2304
|
+
abilities: { 0: "Soundproof", 1: "Static", H: "Aftermath" },
|
|
2305
|
+
heightm: 1.2,
|
|
2306
|
+
weightkg: 71,
|
|
2307
|
+
color: "Red",
|
|
2308
|
+
prevo: "Voltorb-Hisui",
|
|
2309
|
+
evoType: "useItem",
|
|
2310
|
+
evoItem: "Leaf Stone",
|
|
2311
|
+
eggGroups: ["Mineral"],
|
|
2240
2312
|
},
|
|
2241
2313
|
exeggcute: {
|
|
2242
2314
|
num: 102,
|
|
@@ -2629,7 +2701,7 @@ exports.Pokedex = {
|
|
|
2629
2701
|
heightm: 1.5,
|
|
2630
2702
|
weightkg: 56,
|
|
2631
2703
|
color: "Green",
|
|
2632
|
-
evos: ["Scizor"],
|
|
2704
|
+
evos: ["Scizor", "Kleavor"],
|
|
2633
2705
|
eggGroups: ["Bug"],
|
|
2634
2706
|
},
|
|
2635
2707
|
jynx: {
|
|
@@ -3262,7 +3334,7 @@ exports.Pokedex = {
|
|
|
3262
3334
|
color: "Yellow",
|
|
3263
3335
|
prevo: "Cyndaquil",
|
|
3264
3336
|
evoLevel: 14,
|
|
3265
|
-
evos: ["Typhlosion"],
|
|
3337
|
+
evos: ["Typhlosion", "Typhlosion-Hisui"],
|
|
3266
3338
|
eggGroups: ["Field"],
|
|
3267
3339
|
},
|
|
3268
3340
|
typhlosion: {
|
|
@@ -3278,6 +3350,24 @@ exports.Pokedex = {
|
|
|
3278
3350
|
prevo: "Quilava",
|
|
3279
3351
|
evoLevel: 36,
|
|
3280
3352
|
eggGroups: ["Field"],
|
|
3353
|
+
otherFormes: ["Typhlosion-Hisui"],
|
|
3354
|
+
formeOrder: ["Typhlosion", "Typhlosion-Hisui"],
|
|
3355
|
+
},
|
|
3356
|
+
typhlosionhisui: {
|
|
3357
|
+
num: 157,
|
|
3358
|
+
name: "Typhlosion-Hisui",
|
|
3359
|
+
baseSpecies: "Typhlosion",
|
|
3360
|
+
forme: "Hisui",
|
|
3361
|
+
types: ["Fire", "Ghost"],
|
|
3362
|
+
genderRatio: { M: 0.875, F: 0.125 },
|
|
3363
|
+
baseStats: { hp: 73, atk: 84, def: 78, spa: 119, spd: 85, spe: 95 },
|
|
3364
|
+
abilities: { 0: "Blaze", H: "Flash Fire" },
|
|
3365
|
+
heightm: 1.6,
|
|
3366
|
+
weightkg: 69.8,
|
|
3367
|
+
color: "Yellow",
|
|
3368
|
+
prevo: "Quilava",
|
|
3369
|
+
evoLevel: 36,
|
|
3370
|
+
eggGroups: ["Field"],
|
|
3281
3371
|
},
|
|
3282
3372
|
totodile: {
|
|
3283
3373
|
num: 158,
|
|
@@ -4051,6 +4141,22 @@ exports.Pokedex = {
|
|
|
4051
4141
|
weightkg: 3.9,
|
|
4052
4142
|
color: "Gray",
|
|
4053
4143
|
eggGroups: ["Water 2"],
|
|
4144
|
+
otherFormes: ["Qwilfish-Hisui"],
|
|
4145
|
+
formeOrder: ["Qwilfish", "Qwilfish-Hisui"],
|
|
4146
|
+
},
|
|
4147
|
+
qwilfishhisui: {
|
|
4148
|
+
num: 211,
|
|
4149
|
+
name: "Qwilfish-Hisui",
|
|
4150
|
+
baseSpecies: "Qwilfish",
|
|
4151
|
+
forme: "Hisui",
|
|
4152
|
+
types: ["Dark", "Poison"],
|
|
4153
|
+
baseStats: { hp: 65, atk: 95, def: 85, spa: 55, spd: 55, spe: 85 },
|
|
4154
|
+
abilities: { 0: "Poison Point", 1: "Swift Swim", H: "Intimidate" },
|
|
4155
|
+
heightm: 0.5,
|
|
4156
|
+
weightkg: 3.9,
|
|
4157
|
+
color: "Gray",
|
|
4158
|
+
evos: ["Overqwil"],
|
|
4159
|
+
eggGroups: ["Water 2"],
|
|
4054
4160
|
},
|
|
4055
4161
|
scizor: {
|
|
4056
4162
|
num: 212,
|
|
@@ -4131,6 +4237,22 @@ exports.Pokedex = {
|
|
|
4131
4237
|
color: "Black",
|
|
4132
4238
|
evos: ["Weavile"],
|
|
4133
4239
|
eggGroups: ["Field"],
|
|
4240
|
+
otherFormes: ["Sneasel-Hisui"],
|
|
4241
|
+
formeOrder: ["Sneasel", "Sneasel-Hisui"],
|
|
4242
|
+
},
|
|
4243
|
+
sneaselhisui: {
|
|
4244
|
+
num: 215,
|
|
4245
|
+
name: "Sneasel-Hisui",
|
|
4246
|
+
baseSpecies: "Sneasel",
|
|
4247
|
+
forme: "Hisui",
|
|
4248
|
+
types: ["Fighting", "Poison"],
|
|
4249
|
+
baseStats: { hp: 55, atk: 95, def: 55, spa: 35, spd: 75, spe: 115 },
|
|
4250
|
+
abilities: { 0: "Inner Focus", 1: "Keen Eye", H: "Poison Touch" },
|
|
4251
|
+
heightm: 0.9,
|
|
4252
|
+
weightkg: 27,
|
|
4253
|
+
color: "Black",
|
|
4254
|
+
evos: ["Sneasler"],
|
|
4255
|
+
eggGroups: ["Field"],
|
|
4134
4256
|
},
|
|
4135
4257
|
teddiursa: {
|
|
4136
4258
|
num: 216,
|
|
@@ -4155,6 +4277,7 @@ exports.Pokedex = {
|
|
|
4155
4277
|
color: "Brown",
|
|
4156
4278
|
prevo: "Teddiursa",
|
|
4157
4279
|
evoLevel: 30,
|
|
4280
|
+
evos: ["Ursaluna"],
|
|
4158
4281
|
eggGroups: ["Field"],
|
|
4159
4282
|
},
|
|
4160
4283
|
slugma: {
|
|
@@ -4404,6 +4527,7 @@ exports.Pokedex = {
|
|
|
4404
4527
|
heightm: 1.4,
|
|
4405
4528
|
weightkg: 71.2,
|
|
4406
4529
|
color: "Brown",
|
|
4530
|
+
evos: ["Wyrdeer"],
|
|
4407
4531
|
eggGroups: ["Field"],
|
|
4408
4532
|
},
|
|
4409
4533
|
smeargle: {
|
|
@@ -8382,6 +8506,23 @@ exports.Pokedex = {
|
|
|
8382
8506
|
tags: ["Restricted Legendary"],
|
|
8383
8507
|
color: "White",
|
|
8384
8508
|
eggGroups: ["Undiscovered"],
|
|
8509
|
+
otherFormes: ["Dialga-Origin"],
|
|
8510
|
+
formeOrder: ["Dialga", "Dialga-Origin"],
|
|
8511
|
+
},
|
|
8512
|
+
dialgaorigin: {
|
|
8513
|
+
num: 483,
|
|
8514
|
+
name: "Dialga-Origin",
|
|
8515
|
+
baseSpecies: "Dialga",
|
|
8516
|
+
forme: "Origin",
|
|
8517
|
+
types: ["Steel", "Dragon"],
|
|
8518
|
+
gender: "N",
|
|
8519
|
+
baseStats: { hp: 100, atk: 100, def: 120, spa: 150, spd: 120, spe: 90 },
|
|
8520
|
+
abilities: { 0: "Pressure", H: "Telepathy" },
|
|
8521
|
+
heightm: 7,
|
|
8522
|
+
weightkg: 850,
|
|
8523
|
+
color: "White",
|
|
8524
|
+
eggGroups: ["Undiscovered"],
|
|
8525
|
+
gen: 8,
|
|
8385
8526
|
},
|
|
8386
8527
|
palkia: {
|
|
8387
8528
|
num: 484,
|
|
@@ -8395,6 +8536,23 @@ exports.Pokedex = {
|
|
|
8395
8536
|
color: "Purple",
|
|
8396
8537
|
tags: ["Restricted Legendary"],
|
|
8397
8538
|
eggGroups: ["Undiscovered"],
|
|
8539
|
+
otherFormes: ["Palkia-Origin"],
|
|
8540
|
+
formeOrder: ["Palkia", "Palkia-Origin"],
|
|
8541
|
+
},
|
|
8542
|
+
palkiaorigin: {
|
|
8543
|
+
num: 484,
|
|
8544
|
+
name: "Palkia-Origin",
|
|
8545
|
+
baseSpecies: "Palkia",
|
|
8546
|
+
forme: "Origin",
|
|
8547
|
+
types: ["Water", "Dragon"],
|
|
8548
|
+
gender: "N",
|
|
8549
|
+
baseStats: { hp: 90, atk: 100, def: 100, spa: 150, spd: 120, spe: 120 },
|
|
8550
|
+
abilities: { 0: "Pressure", H: "Telepathy" },
|
|
8551
|
+
heightm: 6.3,
|
|
8552
|
+
weightkg: 660,
|
|
8553
|
+
color: "Purple",
|
|
8554
|
+
eggGroups: ["Undiscovered"],
|
|
8555
|
+
gen: 8,
|
|
8398
8556
|
},
|
|
8399
8557
|
heatran: {
|
|
8400
8558
|
num: 485,
|
|
@@ -8950,7 +9108,7 @@ exports.Pokedex = {
|
|
|
8950
9108
|
color: "Blue",
|
|
8951
9109
|
prevo: "Oshawott",
|
|
8952
9110
|
evoLevel: 17,
|
|
8953
|
-
evos: ["Samurott"],
|
|
9111
|
+
evos: ["Samurott", "Samurott-Hisui"],
|
|
8954
9112
|
eggGroups: ["Field"],
|
|
8955
9113
|
},
|
|
8956
9114
|
samurott: {
|
|
@@ -8966,6 +9124,24 @@ exports.Pokedex = {
|
|
|
8966
9124
|
prevo: "Dewott",
|
|
8967
9125
|
evoLevel: 36,
|
|
8968
9126
|
eggGroups: ["Field"],
|
|
9127
|
+
otherFormes: ["Samurott-Hisui"],
|
|
9128
|
+
formeOrder: ["Samurott", "Samurott-Hisui"],
|
|
9129
|
+
},
|
|
9130
|
+
samurotthisui: {
|
|
9131
|
+
num: 503,
|
|
9132
|
+
name: "Samurott-Hisui",
|
|
9133
|
+
baseSpecies: "Samurott",
|
|
9134
|
+
forme: "Hisui",
|
|
9135
|
+
types: ["Water", "Dark"],
|
|
9136
|
+
genderRatio: { M: 0.875, F: 0.125 },
|
|
9137
|
+
baseStats: { hp: 90, atk: 108, def: 80, spa: 100, spd: 65, spe: 85 },
|
|
9138
|
+
abilities: { 0: "Torrent", H: "Shell Armor" },
|
|
9139
|
+
heightm: 1.5,
|
|
9140
|
+
weightkg: 58.2,
|
|
9141
|
+
color: "Blue",
|
|
9142
|
+
prevo: "Dewott",
|
|
9143
|
+
evoLevel: 36,
|
|
9144
|
+
eggGroups: ["Field"],
|
|
8969
9145
|
},
|
|
8970
9146
|
patrat: {
|
|
8971
9147
|
num: 504,
|
|
@@ -9565,7 +9741,7 @@ exports.Pokedex = {
|
|
|
9565
9741
|
heightm: 0.5,
|
|
9566
9742
|
weightkg: 6.6,
|
|
9567
9743
|
color: "Green",
|
|
9568
|
-
evos: ["Lilligant"],
|
|
9744
|
+
evos: ["Lilligant", "Lilligant-Hisui"],
|
|
9569
9745
|
eggGroups: ["Grass"],
|
|
9570
9746
|
},
|
|
9571
9747
|
lilligant: {
|
|
@@ -9582,6 +9758,25 @@ exports.Pokedex = {
|
|
|
9582
9758
|
evoType: "useItem",
|
|
9583
9759
|
evoItem: "Sun Stone",
|
|
9584
9760
|
eggGroups: ["Grass"],
|
|
9761
|
+
otherFormes: ["Lilligant-Hisui"],
|
|
9762
|
+
formeOrder: ["Lilligant", "Lilligant-Hisui"],
|
|
9763
|
+
},
|
|
9764
|
+
lilliganthisui: {
|
|
9765
|
+
num: 549,
|
|
9766
|
+
name: "Lilligant-Hisui",
|
|
9767
|
+
baseSpecies: "Lilligant",
|
|
9768
|
+
forme: "Hisui",
|
|
9769
|
+
types: ["Grass", "Fighting"],
|
|
9770
|
+
gender: "F",
|
|
9771
|
+
baseStats: { hp: 70, atk: 105, def: 75, spa: 50, spd: 75, spe: 105 },
|
|
9772
|
+
abilities: { 0: "Chlorophyll", 1: "Hustle", H: "Leaf Guard" },
|
|
9773
|
+
heightm: 1.2,
|
|
9774
|
+
weightkg: 19.2,
|
|
9775
|
+
color: "Green",
|
|
9776
|
+
prevo: "Petilil",
|
|
9777
|
+
evoType: "useItem",
|
|
9778
|
+
evoItem: "Sun Stone",
|
|
9779
|
+
eggGroups: ["Grass"],
|
|
9585
9780
|
},
|
|
9586
9781
|
basculin: {
|
|
9587
9782
|
num: 550,
|
|
@@ -9594,8 +9789,8 @@ exports.Pokedex = {
|
|
|
9594
9789
|
weightkg: 18,
|
|
9595
9790
|
color: "Green",
|
|
9596
9791
|
eggGroups: ["Water 2"],
|
|
9597
|
-
otherFormes: ["Basculin-Blue-Striped"],
|
|
9598
|
-
formeOrder: ["Basculin", "Basculin-Blue-Striped"],
|
|
9792
|
+
otherFormes: ["Basculin-Blue-Striped", "Basculin-White-Striped"],
|
|
9793
|
+
formeOrder: ["Basculin", "Basculin-Blue-Striped", "Basculin-White-Striped"],
|
|
9599
9794
|
},
|
|
9600
9795
|
basculinbluestriped: {
|
|
9601
9796
|
num: 550,
|
|
@@ -9610,6 +9805,21 @@ exports.Pokedex = {
|
|
|
9610
9805
|
color: "Green",
|
|
9611
9806
|
eggGroups: ["Water 2"],
|
|
9612
9807
|
},
|
|
9808
|
+
basculinwhitestriped: {
|
|
9809
|
+
num: 550,
|
|
9810
|
+
name: "Basculin-White-Striped",
|
|
9811
|
+
baseSpecies: "Basculin",
|
|
9812
|
+
forme: "White-Striped",
|
|
9813
|
+
types: ["Water"],
|
|
9814
|
+
baseStats: { hp: 70, atk: 92, def: 65, spa: 80, spd: 55, spe: 98 },
|
|
9815
|
+
abilities: { 0: "Rattled", 1: "Adaptability", H: "Mold Breaker" },
|
|
9816
|
+
heightm: 1,
|
|
9817
|
+
weightkg: 18,
|
|
9818
|
+
color: "Green",
|
|
9819
|
+
evos: ["Basculegion", "Basculegion-F"],
|
|
9820
|
+
eggGroups: ["Water 2"],
|
|
9821
|
+
gen: 8,
|
|
9822
|
+
},
|
|
9613
9823
|
sandile: {
|
|
9614
9824
|
num: 551,
|
|
9615
9825
|
name: "Sandile",
|
|
@@ -9958,6 +10168,23 @@ exports.Pokedex = {
|
|
|
9958
10168
|
color: "Gray",
|
|
9959
10169
|
evos: ["Zoroark"],
|
|
9960
10170
|
eggGroups: ["Field"],
|
|
10171
|
+
otherFormes: ["Zorua-Hisui"],
|
|
10172
|
+
formeOrder: ["Zorua", "Zorua-Hisui"],
|
|
10173
|
+
},
|
|
10174
|
+
zoruahisui: {
|
|
10175
|
+
num: 570,
|
|
10176
|
+
name: "Zorua-Hisui",
|
|
10177
|
+
baseSpecies: "Zorua",
|
|
10178
|
+
forme: "Hisui",
|
|
10179
|
+
types: ["Normal", "Ghost"],
|
|
10180
|
+
genderRatio: { M: 0.875, F: 0.125 },
|
|
10181
|
+
baseStats: { hp: 35, atk: 60, def: 40, spa: 85, spd: 40, spe: 70 },
|
|
10182
|
+
abilities: { 0: "Illusion" },
|
|
10183
|
+
heightm: 0.7,
|
|
10184
|
+
weightkg: 12.5,
|
|
10185
|
+
color: "Gray",
|
|
10186
|
+
evos: ["Zoroark-Hisui"],
|
|
10187
|
+
eggGroups: ["Field"],
|
|
9961
10188
|
},
|
|
9962
10189
|
zoroark: {
|
|
9963
10190
|
num: 571,
|
|
@@ -9972,6 +10199,24 @@ exports.Pokedex = {
|
|
|
9972
10199
|
prevo: "Zorua",
|
|
9973
10200
|
evoLevel: 30,
|
|
9974
10201
|
eggGroups: ["Field"],
|
|
10202
|
+
otherFormes: ["Zoroark-Hisui"],
|
|
10203
|
+
formeOrder: ["Zoroark", "Zoroark-Hisui"],
|
|
10204
|
+
},
|
|
10205
|
+
zoroarkhisui: {
|
|
10206
|
+
num: 571,
|
|
10207
|
+
name: "Zoroark-Hisui",
|
|
10208
|
+
baseSpecies: "Zoroark",
|
|
10209
|
+
forme: "Hisui",
|
|
10210
|
+
types: ["Normal", "Ghost"],
|
|
10211
|
+
genderRatio: { M: 0.875, F: 0.125 },
|
|
10212
|
+
baseStats: { hp: 55, atk: 100, def: 60, spa: 125, spd: 60, spe: 110 },
|
|
10213
|
+
abilities: { 0: "Illusion" },
|
|
10214
|
+
heightm: 1.6,
|
|
10215
|
+
weightkg: 73,
|
|
10216
|
+
color: "Gray",
|
|
10217
|
+
prevo: "Zorua-Hisui",
|
|
10218
|
+
evoLevel: 30,
|
|
10219
|
+
eggGroups: ["Field"],
|
|
9975
10220
|
},
|
|
9976
10221
|
minccino: {
|
|
9977
10222
|
num: 572,
|
|
@@ -10709,7 +10954,7 @@ exports.Pokedex = {
|
|
|
10709
10954
|
heightm: 0.5,
|
|
10710
10955
|
weightkg: 10.5,
|
|
10711
10956
|
color: "White",
|
|
10712
|
-
evos: ["Braviary"],
|
|
10957
|
+
evos: ["Braviary", "Braviary-Hisui"],
|
|
10713
10958
|
eggGroups: ["Flying"],
|
|
10714
10959
|
},
|
|
10715
10960
|
braviary: {
|
|
@@ -10725,6 +10970,24 @@ exports.Pokedex = {
|
|
|
10725
10970
|
prevo: "Rufflet",
|
|
10726
10971
|
evoLevel: 54,
|
|
10727
10972
|
eggGroups: ["Flying"],
|
|
10973
|
+
otherFormes: ["Braviary-Hisui"],
|
|
10974
|
+
formeOrder: ["Braviary", "Braviary-Hisui"],
|
|
10975
|
+
},
|
|
10976
|
+
braviaryhisui: {
|
|
10977
|
+
num: 628,
|
|
10978
|
+
name: "Braviary-Hisui",
|
|
10979
|
+
baseSpecies: "Braviary",
|
|
10980
|
+
forme: "Hisui",
|
|
10981
|
+
types: ["Psychic", "Flying"],
|
|
10982
|
+
gender: "M",
|
|
10983
|
+
baseStats: { hp: 110, atk: 83, def: 70, spa: 112, spd: 70, spe: 65 },
|
|
10984
|
+
abilities: { 0: "Keen Eye", 1: "Sheer Force", H: "Defiant" },
|
|
10985
|
+
heightm: 1.7,
|
|
10986
|
+
weightkg: 43.4,
|
|
10987
|
+
color: "Red",
|
|
10988
|
+
prevo: "Rufflet",
|
|
10989
|
+
evoLevel: 54,
|
|
10990
|
+
eggGroups: ["Flying"],
|
|
10728
10991
|
},
|
|
10729
10992
|
vullaby: {
|
|
10730
10993
|
num: 629,
|
|
@@ -12051,7 +12314,7 @@ exports.Pokedex = {
|
|
|
12051
12314
|
heightm: 0.3,
|
|
12052
12315
|
weightkg: 2.8,
|
|
12053
12316
|
color: "Purple",
|
|
12054
|
-
evos: ["Sliggoo"],
|
|
12317
|
+
evos: ["Sliggoo", "Sliggoo-Hisui"],
|
|
12055
12318
|
eggGroups: ["Dragon"],
|
|
12056
12319
|
},
|
|
12057
12320
|
sliggoo: {
|
|
@@ -12067,6 +12330,24 @@ exports.Pokedex = {
|
|
|
12067
12330
|
evoLevel: 40,
|
|
12068
12331
|
evos: ["Goodra"],
|
|
12069
12332
|
eggGroups: ["Dragon"],
|
|
12333
|
+
otherFormes: ["Sliggoo-Hisui"],
|
|
12334
|
+
formeOrder: ["Sliggoo", "Sliggoo-Hisui"],
|
|
12335
|
+
},
|
|
12336
|
+
sliggoohisui: {
|
|
12337
|
+
num: 705,
|
|
12338
|
+
name: "Sliggoo-Hisui",
|
|
12339
|
+
baseSpecies: "Sliggoo",
|
|
12340
|
+
forme: "Hisui",
|
|
12341
|
+
types: ["Steel", "Dragon"],
|
|
12342
|
+
baseStats: { hp: 58, atk: 75, def: 83, spa: 83, spd: 113, spe: 40 },
|
|
12343
|
+
abilities: { 0: "Sap Sipper", 1: "Overcoat", H: "Gooey" },
|
|
12344
|
+
heightm: 0.7,
|
|
12345
|
+
weightkg: 68.5,
|
|
12346
|
+
color: "Purple",
|
|
12347
|
+
prevo: "Goomy",
|
|
12348
|
+
evoLevel: 40,
|
|
12349
|
+
evos: ["Goodra-Hisui"],
|
|
12350
|
+
eggGroups: ["Dragon"],
|
|
12070
12351
|
},
|
|
12071
12352
|
goodra: {
|
|
12072
12353
|
num: 706,
|
|
@@ -12080,6 +12361,23 @@ exports.Pokedex = {
|
|
|
12080
12361
|
prevo: "Sliggoo",
|
|
12081
12362
|
evoLevel: 50,
|
|
12082
12363
|
eggGroups: ["Dragon"],
|
|
12364
|
+
otherFormes: ["Goodra-Hisui"],
|
|
12365
|
+
formeOrder: ["Goodra", "Goodra-Hisui"],
|
|
12366
|
+
},
|
|
12367
|
+
goodrahisui: {
|
|
12368
|
+
num: 706,
|
|
12369
|
+
name: "Goodra-Hisui",
|
|
12370
|
+
baseSpecies: "Goodra",
|
|
12371
|
+
forme: "Hisui",
|
|
12372
|
+
types: ["Steel", "Dragon"],
|
|
12373
|
+
baseStats: { hp: 80, atk: 100, def: 100, spa: 110, spd: 150, spe: 60 },
|
|
12374
|
+
abilities: { 0: "Sap Sipper", 1: "Overcoat", H: "Gooey" },
|
|
12375
|
+
heightm: 1.7,
|
|
12376
|
+
weightkg: 334.1,
|
|
12377
|
+
color: "Purple",
|
|
12378
|
+
prevo: "Sliggoo-Hisui",
|
|
12379
|
+
evoLevel: 50,
|
|
12380
|
+
eggGroups: ["Dragon"],
|
|
12083
12381
|
},
|
|
12084
12382
|
klefki: {
|
|
12085
12383
|
num: 707,
|
|
@@ -12244,7 +12542,7 @@ exports.Pokedex = {
|
|
|
12244
12542
|
heightm: 1,
|
|
12245
12543
|
weightkg: 99.5,
|
|
12246
12544
|
color: "Blue",
|
|
12247
|
-
evos: ["Avalugg"],
|
|
12545
|
+
evos: ["Avalugg", "Avalugg-Hisui"],
|
|
12248
12546
|
eggGroups: ["Monster", "Mineral"],
|
|
12249
12547
|
},
|
|
12250
12548
|
avalugg: {
|
|
@@ -12259,6 +12557,23 @@ exports.Pokedex = {
|
|
|
12259
12557
|
prevo: "Bergmite",
|
|
12260
12558
|
evoLevel: 37,
|
|
12261
12559
|
eggGroups: ["Monster", "Mineral"],
|
|
12560
|
+
otherFormes: ["Avalugg-Hisui"],
|
|
12561
|
+
formeOrder: ["Avalugg", "Avalugg-Hisui"],
|
|
12562
|
+
},
|
|
12563
|
+
avalugghisui: {
|
|
12564
|
+
num: 713,
|
|
12565
|
+
name: "Avalugg-Hisui",
|
|
12566
|
+
baseSpecies: "Avalugg",
|
|
12567
|
+
forme: "Hisui",
|
|
12568
|
+
types: ["Ice", "Rock"],
|
|
12569
|
+
baseStats: { hp: 95, atk: 127, def: 184, spa: 34, spd: 36, spe: 38 },
|
|
12570
|
+
abilities: { 0: "Strong Jaw", 1: "Ice Body", H: "Sturdy" },
|
|
12571
|
+
heightm: 1.4,
|
|
12572
|
+
weightkg: 262.4,
|
|
12573
|
+
color: "Blue",
|
|
12574
|
+
prevo: "Bergmite",
|
|
12575
|
+
evoLevel: 37,
|
|
12576
|
+
eggGroups: ["Monster", "Mineral"],
|
|
12262
12577
|
},
|
|
12263
12578
|
noibat: {
|
|
12264
12579
|
num: 714,
|
|
@@ -12477,7 +12792,7 @@ exports.Pokedex = {
|
|
|
12477
12792
|
color: "Brown",
|
|
12478
12793
|
prevo: "Rowlet",
|
|
12479
12794
|
evoLevel: 17,
|
|
12480
|
-
evos: ["Decidueye"],
|
|
12795
|
+
evos: ["Decidueye", "Decidueye-Hisui"],
|
|
12481
12796
|
eggGroups: ["Flying"],
|
|
12482
12797
|
},
|
|
12483
12798
|
decidueye: {
|
|
@@ -12493,6 +12808,24 @@ exports.Pokedex = {
|
|
|
12493
12808
|
prevo: "Dartrix",
|
|
12494
12809
|
evoLevel: 34,
|
|
12495
12810
|
eggGroups: ["Flying"],
|
|
12811
|
+
otherFormes: ["Decidueye-Hisui"],
|
|
12812
|
+
formeOrder: ["Decidueye", "Decidueye-Hisui"],
|
|
12813
|
+
},
|
|
12814
|
+
decidueyehisui: {
|
|
12815
|
+
num: 724,
|
|
12816
|
+
name: "Decidueye-Hisui",
|
|
12817
|
+
baseSpecies: "Decidueye",
|
|
12818
|
+
forme: "Hisui",
|
|
12819
|
+
types: ["Grass", "Fighting"],
|
|
12820
|
+
genderRatio: { M: 0.875, F: 0.125 },
|
|
12821
|
+
baseStats: { hp: 88, atk: 112, def: 80, spa: 95, spd: 95, spe: 60 },
|
|
12822
|
+
abilities: { 0: "Overgrow", H: "Long Reach" },
|
|
12823
|
+
heightm: 1.6,
|
|
12824
|
+
weightkg: 37,
|
|
12825
|
+
color: "Brown",
|
|
12826
|
+
prevo: "Dartrix",
|
|
12827
|
+
evoLevel: 36,
|
|
12828
|
+
eggGroups: ["Flying"],
|
|
12496
12829
|
},
|
|
12497
12830
|
litten: {
|
|
12498
12831
|
num: 725,
|
|
@@ -15981,6 +16314,142 @@ exports.Pokedex = {
|
|
|
15981
16314
|
eggGroups: ["Undiscovered"],
|
|
15982
16315
|
changesFrom: "Calyrex",
|
|
15983
16316
|
},
|
|
16317
|
+
wyrdeer: {
|
|
16318
|
+
num: 899,
|
|
16319
|
+
name: "Wyrdeer",
|
|
16320
|
+
types: ["Normal", "Psychic"],
|
|
16321
|
+
baseStats: { hp: 103, atk: 105, def: 72, spa: 105, spd: 75, spe: 65 },
|
|
16322
|
+
abilities: { 0: "Intimidate", 1: "Frisk", H: "Sap Sipper" },
|
|
16323
|
+
heightm: 1.8,
|
|
16324
|
+
weightkg: 95.1,
|
|
16325
|
+
color: "Gray",
|
|
16326
|
+
prevo: "Stantler",
|
|
16327
|
+
evoType: "other",
|
|
16328
|
+
evoCondition: "Use Agile style Psyshield Bash 20 times",
|
|
16329
|
+
eggGroups: ["Field"],
|
|
16330
|
+
},
|
|
16331
|
+
kleavor: {
|
|
16332
|
+
num: 900,
|
|
16333
|
+
name: "Kleavor",
|
|
16334
|
+
types: ["Bug", "Rock"],
|
|
16335
|
+
baseStats: { hp: 70, atk: 135, def: 95, spa: 45, spd: 70, spe: 85 },
|
|
16336
|
+
abilities: { 0: "Swarm", 1: "Sheer Force", H: "Steadfast" },
|
|
16337
|
+
heightm: 1.8,
|
|
16338
|
+
weightkg: 89,
|
|
16339
|
+
color: "Brown",
|
|
16340
|
+
prevo: "Scyther",
|
|
16341
|
+
evoType: "other",
|
|
16342
|
+
evoCondition: "Black Augurite",
|
|
16343
|
+
eggGroups: ["Bug"],
|
|
16344
|
+
},
|
|
16345
|
+
ursaluna: {
|
|
16346
|
+
num: 901,
|
|
16347
|
+
name: "Ursaluna",
|
|
16348
|
+
types: ["Ground", "Normal"],
|
|
16349
|
+
baseStats: { hp: 130, atk: 140, def: 105, spa: 45, spd: 80, spe: 50 },
|
|
16350
|
+
abilities: { 0: "Guts", 1: "Bulletproof", H: "Unnerve" },
|
|
16351
|
+
heightm: 2.4,
|
|
16352
|
+
weightkg: 290,
|
|
16353
|
+
color: "Brown",
|
|
16354
|
+
prevo: "Ursaring",
|
|
16355
|
+
evoType: "other",
|
|
16356
|
+
evoCondition: "Peat Block when there's a full moon",
|
|
16357
|
+
eggGroups: ["Field"],
|
|
16358
|
+
},
|
|
16359
|
+
basculegion: {
|
|
16360
|
+
num: 902,
|
|
16361
|
+
name: "Basculegion",
|
|
16362
|
+
baseForme: "M",
|
|
16363
|
+
types: ["Water", "Ghost"],
|
|
16364
|
+
gender: "M",
|
|
16365
|
+
baseStats: { hp: 120, atk: 112, def: 65, spa: 80, spd: 75, spe: 78 },
|
|
16366
|
+
abilities: { 0: "Rattled", 1: "Adaptability", H: "Mold Breaker" },
|
|
16367
|
+
heightm: 3,
|
|
16368
|
+
weightkg: 110,
|
|
16369
|
+
color: "Green",
|
|
16370
|
+
prevo: "Basculin-White-Striped",
|
|
16371
|
+
evoType: "other",
|
|
16372
|
+
evoCondition: "Receive 294+ recoil from one move without fainting",
|
|
16373
|
+
eggGroups: ["Water 2"],
|
|
16374
|
+
otherFormes: ["Basculegion-F"],
|
|
16375
|
+
formeOrder: ["Basculegion", "Basculegion-F"],
|
|
16376
|
+
},
|
|
16377
|
+
basculegionf: {
|
|
16378
|
+
num: 902,
|
|
16379
|
+
name: "Basculegion-F",
|
|
16380
|
+
baseSpecies: "Basculegion",
|
|
16381
|
+
forme: "F",
|
|
16382
|
+
types: ["Water", "Ghost"],
|
|
16383
|
+
gender: "F",
|
|
16384
|
+
baseStats: { hp: 120, atk: 92, def: 65, spa: 100, spd: 75, spe: 78 },
|
|
16385
|
+
abilities: { 0: "Rattled", 1: "Adaptability", H: "Mold Breaker" },
|
|
16386
|
+
heightm: 3,
|
|
16387
|
+
weightkg: 110,
|
|
16388
|
+
color: "Green",
|
|
16389
|
+
prevo: "Basculin-White-Striped",
|
|
16390
|
+
evoType: "other",
|
|
16391
|
+
evoCondition: "Receive 294+ recoil from one move without fainting",
|
|
16392
|
+
eggGroups: ["Water 2"],
|
|
16393
|
+
},
|
|
16394
|
+
sneasler: {
|
|
16395
|
+
num: 903,
|
|
16396
|
+
name: "Sneasler",
|
|
16397
|
+
types: ["Fighting", "Poison"],
|
|
16398
|
+
baseStats: { hp: 80, atk: 130, def: 60, spa: 40, spd: 80, spe: 120 },
|
|
16399
|
+
abilities: { 0: "Pressure", H: "Poison Touch" },
|
|
16400
|
+
heightm: 1.3,
|
|
16401
|
+
weightkg: 43,
|
|
16402
|
+
color: "Gray",
|
|
16403
|
+
prevo: "Sneasel-Hisui",
|
|
16404
|
+
evoType: "useItem",
|
|
16405
|
+
evoItem: "Razor Claw",
|
|
16406
|
+
eggGroups: ["Field"],
|
|
16407
|
+
},
|
|
16408
|
+
overqwil: {
|
|
16409
|
+
num: 904,
|
|
16410
|
+
name: "Overqwil",
|
|
16411
|
+
types: ["Dark", "Poison"],
|
|
16412
|
+
baseStats: { hp: 85, atk: 115, def: 95, spa: 65, spd: 65, spe: 85 },
|
|
16413
|
+
abilities: { 0: "Poison Point", 1: "Swift Swim", H: "Intimidate" },
|
|
16414
|
+
heightm: 0.5,
|
|
16415
|
+
weightkg: 3.9,
|
|
16416
|
+
color: "Black",
|
|
16417
|
+
prevo: "Qwilfish-Hisui",
|
|
16418
|
+
evoType: "other",
|
|
16419
|
+
evoCondition: "Use Strong style Barb Barrage 20 times",
|
|
16420
|
+
eggGroups: ["Water 2"],
|
|
16421
|
+
},
|
|
16422
|
+
enamorus: {
|
|
16423
|
+
num: 905,
|
|
16424
|
+
name: "Enamorus",
|
|
16425
|
+
baseForme: "Incarnate",
|
|
16426
|
+
types: ["Fairy", "Flying"],
|
|
16427
|
+
gender: "F",
|
|
16428
|
+
baseStats: { hp: 74, atk: 115, def: 70, spa: 135, spd: 80, spe: 106 },
|
|
16429
|
+
abilities: { 0: "Healer", H: "Contrary" },
|
|
16430
|
+
heightm: 1.6,
|
|
16431
|
+
weightkg: 48,
|
|
16432
|
+
color: "Brown",
|
|
16433
|
+
tags: ["Sub-Legendary"],
|
|
16434
|
+
eggGroups: ["Undiscovered"],
|
|
16435
|
+
otherFormes: ["Enamorus-Therian"],
|
|
16436
|
+
formeOrder: ["Enamorus", "Enamorus-Therian"],
|
|
16437
|
+
},
|
|
16438
|
+
enamorustherian: {
|
|
16439
|
+
num: 905,
|
|
16440
|
+
name: "Enamorus-Therian",
|
|
16441
|
+
baseSpecies: "Enamorus",
|
|
16442
|
+
forme: "Therian",
|
|
16443
|
+
types: ["Fairy", "Flying"],
|
|
16444
|
+
gender: "F",
|
|
16445
|
+
baseStats: { hp: 74, atk: 115, def: 110, spa: 135, spd: 100, spe: 46 },
|
|
16446
|
+
abilities: { 0: "Overcoat" },
|
|
16447
|
+
heightm: 1.6,
|
|
16448
|
+
weightkg: 48,
|
|
16449
|
+
color: "Brown",
|
|
16450
|
+
eggGroups: ["Undiscovered"],
|
|
16451
|
+
changesFrom: "Enamorus",
|
|
16452
|
+
},
|
|
15984
16453
|
missingno: {
|
|
15985
16454
|
num: 0,
|
|
15986
16455
|
name: "MissingNo.",
|
|
@@ -16064,7 +16533,7 @@ exports.Pokedex = {
|
|
|
16064
16533
|
name: "Pyroak",
|
|
16065
16534
|
types: ["Fire", "Grass"],
|
|
16066
16535
|
baseStats: { hp: 120, atk: 70, def: 105, spa: 95, spd: 90, spe: 60 },
|
|
16067
|
-
abilities: { 0: "Rock Head", 1: "Battle Armor", H: "
|
|
16536
|
+
abilities: { 0: "Rock Head", 1: "Battle Armor", H: "Contrary" },
|
|
16068
16537
|
heightm: 2.1,
|
|
16069
16538
|
weightkg: 168,
|
|
16070
16539
|
color: "Brown",
|