@pkmn/sim 0.5.3 → 0.5.7
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 +402 -332
- 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 +183 -70
- package/build/data/formats-data.js.map +1 -1
- package/build/data/mods/gen1/formats-data.js +190 -190
- package/build/data/mods/gen1/formats-data.js.map +1 -1
- package/build/data/mods/gen1/moves.js +1 -2
- package/build/data/mods/gen1/moves.js.map +1 -1
- package/build/data/mods/gen2/formats-data.js +1 -1
- package/build/data/mods/gen2/formats-data.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +13 -13
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen4/moves.js +22 -0
- package/build/data/mods/gen4/moves.js.map +1 -1
- package/build/data/mods/gen5/formats-data.js +173 -156
- package/build/data/mods/gen5/formats-data.js.map +1 -1
- package/build/data/mods/gen6/formats-data.js +4 -3
- package/build/data/mods/gen6/formats-data.js.map +1 -1
- package/build/data/mods/gen7/formats-data.js +3 -2
- package/build/data/mods/gen7/formats-data.js.map +1 -1
- package/build/data/mods/gen7/moves.js +154 -0
- package/build/data/mods/gen7/moves.js.map +1 -1
- package/build/data/moves.js +38 -7
- 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 +12 -1
- package/build/data/rulesets.js.map +1 -1
- package/build/data/tags.d.ts +1 -0
- package/build/data/tags.js +4 -3
- package/build/data/tags.js.map +1 -1
- package/build/data/text/abilities.js +4 -4
- package/build/data/text/abilities.js.map +1 -1
- package/build/data/text/moves.js +18 -18
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle-actions.js +4 -1
- package/build/sim/battle-actions.js.map +1 -1
- package/build/sim/battle.js +23 -22
- package/build/sim/battle.js.map +1 -1
- package/build/sim/dex-formats.d.ts +1 -0
- package/build/sim/dex-formats.js +3 -2
- package/build/sim/dex-formats.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/index.d.ts +1 -0
- package/build/sim/index.js +3 -1
- package/build/sim/index.js.map +1 -1
- package/build/sim/team-validator.js +13 -0
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +422 -352
- package/data/aliases.ts +4 -4
- package/data/formats-data.ts +183 -70
- package/data/mods/gen1/formats-data.ts +190 -190
- package/data/mods/gen1/moves.ts +1 -2
- package/data/mods/gen2/formats-data.ts +1 -1
- package/data/mods/gen3/formats-data.ts +13 -13
- package/data/mods/gen4/moves.ts +21 -0
- package/data/mods/gen5/formats-data.ts +173 -156
- package/data/mods/gen6/formats-data.ts +4 -3
- package/data/mods/gen7/formats-data.ts +3 -2
- package/data/mods/gen7/moves.ts +150 -0
- package/data/moves.ts +37 -7
- package/data/pokedex.ts +480 -11
- package/data/rulesets.ts +11 -1
- package/data/tags.ts +6 -3
- package/data/text/abilities.ts +4 -4
- package/data/text/moves.ts +18 -18
- package/package.json +2 -2
- package/sim/battle-actions.ts +4 -1
- package/sim/battle.ts +24 -23
- package/sim/dex-formats.ts +4 -1
- package/sim/dex-species.ts +5 -2
- package/sim/exported-global-types.ts +1 -0
- package/sim/global-types.ts +1 -0
- package/sim/index.ts +1 -0
- package/sim/team-validator.ts +12 -0
package/data/pokedex.ts
CHANGED
|
@@ -1413,6 +1413,23 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
1413
1413
|
color: "Brown",
|
|
1414
1414
|
evos: ["Arcanine"],
|
|
1415
1415
|
eggGroups: ["Field"],
|
|
1416
|
+
otherFormes: ["Growlithe-Hisui"],
|
|
1417
|
+
formeOrder: ["Growlithe", "Growlithe-Hisui"],
|
|
1418
|
+
},
|
|
1419
|
+
growlithehisui: {
|
|
1420
|
+
num: 58,
|
|
1421
|
+
name: "Growlithe-Hisui",
|
|
1422
|
+
baseSpecies: "Growlithe",
|
|
1423
|
+
forme: "Hisui",
|
|
1424
|
+
types: ["Fire", "Rock"],
|
|
1425
|
+
genderRatio: {M: 0.75, F: 0.25},
|
|
1426
|
+
baseStats: {hp: 60, atk: 75, def: 45, spa: 65, spd: 50, spe: 55},
|
|
1427
|
+
abilities: {0: "Intimidate", 1: "Flash Fire", H: "Justified"},
|
|
1428
|
+
heightm: 0.8,
|
|
1429
|
+
weightkg: 22.7,
|
|
1430
|
+
color: "Brown",
|
|
1431
|
+
evos: ["Arcanine-Hisui"],
|
|
1432
|
+
eggGroups: ["Field"],
|
|
1416
1433
|
},
|
|
1417
1434
|
arcanine: {
|
|
1418
1435
|
num: 59,
|
|
@@ -1428,6 +1445,25 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
1428
1445
|
evoType: "useItem",
|
|
1429
1446
|
evoItem: "Fire Stone",
|
|
1430
1447
|
eggGroups: ["Field"],
|
|
1448
|
+
otherFormes: ["Arcanine-Hisui"],
|
|
1449
|
+
formeOrder: ["Arcanine", "Arcanine-Hisui"],
|
|
1450
|
+
},
|
|
1451
|
+
arcaninehisui: {
|
|
1452
|
+
num: 59,
|
|
1453
|
+
name: "Arcanine-Hisui",
|
|
1454
|
+
baseSpecies: "Arcanine",
|
|
1455
|
+
forme: "Hisui",
|
|
1456
|
+
types: ["Fire", "Rock"],
|
|
1457
|
+
genderRatio: {M: 0.75, F: 0.25},
|
|
1458
|
+
baseStats: {hp: 95, atk: 115, def: 80, spa: 95, spd: 80, spe: 90},
|
|
1459
|
+
abilities: {0: "Intimidate", 1: "Flash Fire", H: "Justified"},
|
|
1460
|
+
heightm: 2,
|
|
1461
|
+
weightkg: 168,
|
|
1462
|
+
color: "Brown",
|
|
1463
|
+
prevo: "Growlithe-Hisui",
|
|
1464
|
+
evoType: "useItem",
|
|
1465
|
+
evoItem: "Fire Stone",
|
|
1466
|
+
eggGroups: ["Field"],
|
|
1431
1467
|
},
|
|
1432
1468
|
poliwag: {
|
|
1433
1469
|
num: 60,
|
|
@@ -2220,6 +2256,23 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
2220
2256
|
color: "Red",
|
|
2221
2257
|
evos: ["Electrode"],
|
|
2222
2258
|
eggGroups: ["Mineral"],
|
|
2259
|
+
otherFormes: ["Voltorb-Hisui"],
|
|
2260
|
+
formeOrder: ["Voltorb", "Voltorb-Hisui"],
|
|
2261
|
+
},
|
|
2262
|
+
voltorbhisui: {
|
|
2263
|
+
num: 100,
|
|
2264
|
+
name: "Voltorb-Hisui",
|
|
2265
|
+
baseSpecies: "Voltorb",
|
|
2266
|
+
forme: "Hisui",
|
|
2267
|
+
types: ["Electric", "Grass"],
|
|
2268
|
+
gender: "N",
|
|
2269
|
+
baseStats: {hp: 40, atk: 30, def: 50, spa: 55, spd: 55, spe: 100},
|
|
2270
|
+
abilities: {0: "Soundproof", 1: "Static", H: "Aftermath"},
|
|
2271
|
+
heightm: 0.5,
|
|
2272
|
+
weightkg: 13,
|
|
2273
|
+
color: "Red",
|
|
2274
|
+
evos: ["Electrode-Hisui"],
|
|
2275
|
+
eggGroups: ["Mineral"],
|
|
2223
2276
|
},
|
|
2224
2277
|
electrode: {
|
|
2225
2278
|
num: 101,
|
|
@@ -2234,6 +2287,25 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
2234
2287
|
prevo: "Voltorb",
|
|
2235
2288
|
evoLevel: 30,
|
|
2236
2289
|
eggGroups: ["Mineral"],
|
|
2290
|
+
otherFormes: ["Electrode-Hisui"],
|
|
2291
|
+
formeOrder: ["Electrode", "Electrode-Hisui"],
|
|
2292
|
+
},
|
|
2293
|
+
electrodehisui: {
|
|
2294
|
+
num: 101,
|
|
2295
|
+
name: "Electrode-Hisui",
|
|
2296
|
+
baseSpecies: "Electrode",
|
|
2297
|
+
forme: "Hisui",
|
|
2298
|
+
types: ["Electric", "Grass"],
|
|
2299
|
+
gender: "N",
|
|
2300
|
+
baseStats: {hp: 60, atk: 50, def: 70, spa: 80, spd: 80, spe: 150},
|
|
2301
|
+
abilities: {0: "Soundproof", 1: "Static", H: "Aftermath"},
|
|
2302
|
+
heightm: 1.2,
|
|
2303
|
+
weightkg: 71,
|
|
2304
|
+
color: "Red",
|
|
2305
|
+
prevo: "Voltorb-Hisui",
|
|
2306
|
+
evoType: "useItem",
|
|
2307
|
+
evoItem: "Leaf Stone",
|
|
2308
|
+
eggGroups: ["Mineral"],
|
|
2237
2309
|
},
|
|
2238
2310
|
exeggcute: {
|
|
2239
2311
|
num: 102,
|
|
@@ -2626,7 +2698,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
2626
2698
|
heightm: 1.5,
|
|
2627
2699
|
weightkg: 56,
|
|
2628
2700
|
color: "Green",
|
|
2629
|
-
evos: ["Scizor"],
|
|
2701
|
+
evos: ["Scizor", "Kleavor"],
|
|
2630
2702
|
eggGroups: ["Bug"],
|
|
2631
2703
|
},
|
|
2632
2704
|
jynx: {
|
|
@@ -3259,7 +3331,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
3259
3331
|
color: "Yellow",
|
|
3260
3332
|
prevo: "Cyndaquil",
|
|
3261
3333
|
evoLevel: 14,
|
|
3262
|
-
evos: ["Typhlosion"],
|
|
3334
|
+
evos: ["Typhlosion", "Typhlosion-Hisui"],
|
|
3263
3335
|
eggGroups: ["Field"],
|
|
3264
3336
|
},
|
|
3265
3337
|
typhlosion: {
|
|
@@ -3275,6 +3347,24 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
3275
3347
|
prevo: "Quilava",
|
|
3276
3348
|
evoLevel: 36,
|
|
3277
3349
|
eggGroups: ["Field"],
|
|
3350
|
+
otherFormes: ["Typhlosion-Hisui"],
|
|
3351
|
+
formeOrder: ["Typhlosion", "Typhlosion-Hisui"],
|
|
3352
|
+
},
|
|
3353
|
+
typhlosionhisui: {
|
|
3354
|
+
num: 157,
|
|
3355
|
+
name: "Typhlosion-Hisui",
|
|
3356
|
+
baseSpecies: "Typhlosion",
|
|
3357
|
+
forme: "Hisui",
|
|
3358
|
+
types: ["Fire", "Ghost"],
|
|
3359
|
+
genderRatio: {M: 0.875, F: 0.125},
|
|
3360
|
+
baseStats: {hp: 73, atk: 84, def: 78, spa: 119, spd: 85, spe: 95},
|
|
3361
|
+
abilities: {0: "Blaze", H: "Flash Fire"},
|
|
3362
|
+
heightm: 1.6,
|
|
3363
|
+
weightkg: 69.8,
|
|
3364
|
+
color: "Yellow",
|
|
3365
|
+
prevo: "Quilava",
|
|
3366
|
+
evoLevel: 36,
|
|
3367
|
+
eggGroups: ["Field"],
|
|
3278
3368
|
},
|
|
3279
3369
|
totodile: {
|
|
3280
3370
|
num: 158,
|
|
@@ -4048,6 +4138,22 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
4048
4138
|
weightkg: 3.9,
|
|
4049
4139
|
color: "Gray",
|
|
4050
4140
|
eggGroups: ["Water 2"],
|
|
4141
|
+
otherFormes: ["Qwilfish-Hisui"],
|
|
4142
|
+
formeOrder: ["Qwilfish", "Qwilfish-Hisui"],
|
|
4143
|
+
},
|
|
4144
|
+
qwilfishhisui: {
|
|
4145
|
+
num: 211,
|
|
4146
|
+
name: "Qwilfish-Hisui",
|
|
4147
|
+
baseSpecies: "Qwilfish",
|
|
4148
|
+
forme: "Hisui",
|
|
4149
|
+
types: ["Dark", "Poison"],
|
|
4150
|
+
baseStats: {hp: 65, atk: 95, def: 85, spa: 55, spd: 55, spe: 85},
|
|
4151
|
+
abilities: {0: "Poison Point", 1: "Swift Swim", H: "Intimidate"},
|
|
4152
|
+
heightm: 0.5,
|
|
4153
|
+
weightkg: 3.9,
|
|
4154
|
+
color: "Gray",
|
|
4155
|
+
evos: ["Overqwil"],
|
|
4156
|
+
eggGroups: ["Water 2"],
|
|
4051
4157
|
},
|
|
4052
4158
|
scizor: {
|
|
4053
4159
|
num: 212,
|
|
@@ -4128,6 +4234,22 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
4128
4234
|
color: "Black",
|
|
4129
4235
|
evos: ["Weavile"],
|
|
4130
4236
|
eggGroups: ["Field"],
|
|
4237
|
+
otherFormes: ["Sneasel-Hisui"],
|
|
4238
|
+
formeOrder: ["Sneasel", "Sneasel-Hisui"],
|
|
4239
|
+
},
|
|
4240
|
+
sneaselhisui: {
|
|
4241
|
+
num: 215,
|
|
4242
|
+
name: "Sneasel-Hisui",
|
|
4243
|
+
baseSpecies: "Sneasel",
|
|
4244
|
+
forme: "Hisui",
|
|
4245
|
+
types: ["Fighting", "Poison"],
|
|
4246
|
+
baseStats: {hp: 55, atk: 95, def: 55, spa: 35, spd: 75, spe: 115},
|
|
4247
|
+
abilities: {0: "Inner Focus", 1: "Keen Eye", H: "Poison Touch"},
|
|
4248
|
+
heightm: 0.9,
|
|
4249
|
+
weightkg: 27,
|
|
4250
|
+
color: "Black",
|
|
4251
|
+
evos: ["Sneasler"],
|
|
4252
|
+
eggGroups: ["Field"],
|
|
4131
4253
|
},
|
|
4132
4254
|
teddiursa: {
|
|
4133
4255
|
num: 216,
|
|
@@ -4152,6 +4274,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
4152
4274
|
color: "Brown",
|
|
4153
4275
|
prevo: "Teddiursa",
|
|
4154
4276
|
evoLevel: 30,
|
|
4277
|
+
evos: ["Ursaluna"],
|
|
4155
4278
|
eggGroups: ["Field"],
|
|
4156
4279
|
},
|
|
4157
4280
|
slugma: {
|
|
@@ -4401,6 +4524,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
4401
4524
|
heightm: 1.4,
|
|
4402
4525
|
weightkg: 71.2,
|
|
4403
4526
|
color: "Brown",
|
|
4527
|
+
evos: ["Wyrdeer"],
|
|
4404
4528
|
eggGroups: ["Field"],
|
|
4405
4529
|
},
|
|
4406
4530
|
smeargle: {
|
|
@@ -8379,6 +8503,23 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
8379
8503
|
tags: ["Restricted Legendary"],
|
|
8380
8504
|
color: "White",
|
|
8381
8505
|
eggGroups: ["Undiscovered"],
|
|
8506
|
+
otherFormes: ["Dialga-Origin"],
|
|
8507
|
+
formeOrder: ["Dialga", "Dialga-Origin"],
|
|
8508
|
+
},
|
|
8509
|
+
dialgaorigin: {
|
|
8510
|
+
num: 483,
|
|
8511
|
+
name: "Dialga-Origin",
|
|
8512
|
+
baseSpecies: "Dialga",
|
|
8513
|
+
forme: "Origin",
|
|
8514
|
+
types: ["Steel", "Dragon"],
|
|
8515
|
+
gender: "N",
|
|
8516
|
+
baseStats: {hp: 100, atk: 100, def: 120, spa: 150, spd: 120, spe: 90},
|
|
8517
|
+
abilities: {0: "Pressure", H: "Telepathy"},
|
|
8518
|
+
heightm: 7,
|
|
8519
|
+
weightkg: 850,
|
|
8520
|
+
color: "White",
|
|
8521
|
+
eggGroups: ["Undiscovered"],
|
|
8522
|
+
gen: 8,
|
|
8382
8523
|
},
|
|
8383
8524
|
palkia: {
|
|
8384
8525
|
num: 484,
|
|
@@ -8392,6 +8533,23 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
8392
8533
|
color: "Purple",
|
|
8393
8534
|
tags: ["Restricted Legendary"],
|
|
8394
8535
|
eggGroups: ["Undiscovered"],
|
|
8536
|
+
otherFormes: ["Palkia-Origin"],
|
|
8537
|
+
formeOrder: ["Palkia", "Palkia-Origin"],
|
|
8538
|
+
},
|
|
8539
|
+
palkiaorigin: {
|
|
8540
|
+
num: 484,
|
|
8541
|
+
name: "Palkia-Origin",
|
|
8542
|
+
baseSpecies: "Palkia",
|
|
8543
|
+
forme: "Origin",
|
|
8544
|
+
types: ["Water", "Dragon"],
|
|
8545
|
+
gender: "N",
|
|
8546
|
+
baseStats: {hp: 90, atk: 100, def: 100, spa: 150, spd: 120, spe: 120},
|
|
8547
|
+
abilities: {0: "Pressure", H: "Telepathy"},
|
|
8548
|
+
heightm: 6.3,
|
|
8549
|
+
weightkg: 660,
|
|
8550
|
+
color: "Purple",
|
|
8551
|
+
eggGroups: ["Undiscovered"],
|
|
8552
|
+
gen: 8,
|
|
8395
8553
|
},
|
|
8396
8554
|
heatran: {
|
|
8397
8555
|
num: 485,
|
|
@@ -8947,7 +9105,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
8947
9105
|
color: "Blue",
|
|
8948
9106
|
prevo: "Oshawott",
|
|
8949
9107
|
evoLevel: 17,
|
|
8950
|
-
evos: ["Samurott"],
|
|
9108
|
+
evos: ["Samurott", "Samurott-Hisui"],
|
|
8951
9109
|
eggGroups: ["Field"],
|
|
8952
9110
|
},
|
|
8953
9111
|
samurott: {
|
|
@@ -8963,6 +9121,24 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
8963
9121
|
prevo: "Dewott",
|
|
8964
9122
|
evoLevel: 36,
|
|
8965
9123
|
eggGroups: ["Field"],
|
|
9124
|
+
otherFormes: ["Samurott-Hisui"],
|
|
9125
|
+
formeOrder: ["Samurott", "Samurott-Hisui"],
|
|
9126
|
+
},
|
|
9127
|
+
samurotthisui: {
|
|
9128
|
+
num: 503,
|
|
9129
|
+
name: "Samurott-Hisui",
|
|
9130
|
+
baseSpecies: "Samurott",
|
|
9131
|
+
forme: "Hisui",
|
|
9132
|
+
types: ["Water", "Dark"],
|
|
9133
|
+
genderRatio: {M: 0.875, F: 0.125},
|
|
9134
|
+
baseStats: {hp: 90, atk: 108, def: 80, spa: 100, spd: 65, spe: 85},
|
|
9135
|
+
abilities: {0: "Torrent", H: "Shell Armor"},
|
|
9136
|
+
heightm: 1.5,
|
|
9137
|
+
weightkg: 58.2,
|
|
9138
|
+
color: "Blue",
|
|
9139
|
+
prevo: "Dewott",
|
|
9140
|
+
evoLevel: 36,
|
|
9141
|
+
eggGroups: ["Field"],
|
|
8966
9142
|
},
|
|
8967
9143
|
patrat: {
|
|
8968
9144
|
num: 504,
|
|
@@ -9562,7 +9738,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
9562
9738
|
heightm: 0.5,
|
|
9563
9739
|
weightkg: 6.6,
|
|
9564
9740
|
color: "Green",
|
|
9565
|
-
evos: ["Lilligant"],
|
|
9741
|
+
evos: ["Lilligant", "Lilligant-Hisui"],
|
|
9566
9742
|
eggGroups: ["Grass"],
|
|
9567
9743
|
},
|
|
9568
9744
|
lilligant: {
|
|
@@ -9579,6 +9755,25 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
9579
9755
|
evoType: "useItem",
|
|
9580
9756
|
evoItem: "Sun Stone",
|
|
9581
9757
|
eggGroups: ["Grass"],
|
|
9758
|
+
otherFormes: ["Lilligant-Hisui"],
|
|
9759
|
+
formeOrder: ["Lilligant", "Lilligant-Hisui"],
|
|
9760
|
+
},
|
|
9761
|
+
lilliganthisui: {
|
|
9762
|
+
num: 549,
|
|
9763
|
+
name: "Lilligant-Hisui",
|
|
9764
|
+
baseSpecies: "Lilligant",
|
|
9765
|
+
forme: "Hisui",
|
|
9766
|
+
types: ["Grass", "Fighting"],
|
|
9767
|
+
gender: "F",
|
|
9768
|
+
baseStats: {hp: 70, atk: 105, def: 75, spa: 50, spd: 75, spe: 105},
|
|
9769
|
+
abilities: {0: "Chlorophyll", 1: "Hustle", H: "Leaf Guard"},
|
|
9770
|
+
heightm: 1.2,
|
|
9771
|
+
weightkg: 19.2,
|
|
9772
|
+
color: "Green",
|
|
9773
|
+
prevo: "Petilil",
|
|
9774
|
+
evoType: "useItem",
|
|
9775
|
+
evoItem: "Sun Stone",
|
|
9776
|
+
eggGroups: ["Grass"],
|
|
9582
9777
|
},
|
|
9583
9778
|
basculin: {
|
|
9584
9779
|
num: 550,
|
|
@@ -9591,8 +9786,8 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
9591
9786
|
weightkg: 18,
|
|
9592
9787
|
color: "Green",
|
|
9593
9788
|
eggGroups: ["Water 2"],
|
|
9594
|
-
otherFormes: ["Basculin-Blue-Striped"],
|
|
9595
|
-
formeOrder: ["Basculin", "Basculin-Blue-Striped"],
|
|
9789
|
+
otherFormes: ["Basculin-Blue-Striped", "Basculin-White-Striped"],
|
|
9790
|
+
formeOrder: ["Basculin", "Basculin-Blue-Striped", "Basculin-White-Striped"],
|
|
9596
9791
|
},
|
|
9597
9792
|
basculinbluestriped: {
|
|
9598
9793
|
num: 550,
|
|
@@ -9607,6 +9802,21 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
9607
9802
|
color: "Green",
|
|
9608
9803
|
eggGroups: ["Water 2"],
|
|
9609
9804
|
},
|
|
9805
|
+
basculinwhitestriped: {
|
|
9806
|
+
num: 550,
|
|
9807
|
+
name: "Basculin-White-Striped",
|
|
9808
|
+
baseSpecies: "Basculin",
|
|
9809
|
+
forme: "White-Striped",
|
|
9810
|
+
types: ["Water"],
|
|
9811
|
+
baseStats: {hp: 70, atk: 92, def: 65, spa: 80, spd: 55, spe: 98},
|
|
9812
|
+
abilities: {0: "Rattled", 1: "Adaptability", H: "Mold Breaker"},
|
|
9813
|
+
heightm: 1,
|
|
9814
|
+
weightkg: 18,
|
|
9815
|
+
color: "Green",
|
|
9816
|
+
evos: ["Basculegion", "Basculegion-F"],
|
|
9817
|
+
eggGroups: ["Water 2"],
|
|
9818
|
+
gen: 8,
|
|
9819
|
+
},
|
|
9610
9820
|
sandile: {
|
|
9611
9821
|
num: 551,
|
|
9612
9822
|
name: "Sandile",
|
|
@@ -9955,6 +10165,23 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
9955
10165
|
color: "Gray",
|
|
9956
10166
|
evos: ["Zoroark"],
|
|
9957
10167
|
eggGroups: ["Field"],
|
|
10168
|
+
otherFormes: ["Zorua-Hisui"],
|
|
10169
|
+
formeOrder: ["Zorua", "Zorua-Hisui"],
|
|
10170
|
+
},
|
|
10171
|
+
zoruahisui: {
|
|
10172
|
+
num: 570,
|
|
10173
|
+
name: "Zorua-Hisui",
|
|
10174
|
+
baseSpecies: "Zorua",
|
|
10175
|
+
forme: "Hisui",
|
|
10176
|
+
types: ["Normal", "Ghost"],
|
|
10177
|
+
genderRatio: {M: 0.875, F: 0.125},
|
|
10178
|
+
baseStats: {hp: 35, atk: 60, def: 40, spa: 85, spd: 40, spe: 70},
|
|
10179
|
+
abilities: {0: "Illusion"},
|
|
10180
|
+
heightm: 0.7,
|
|
10181
|
+
weightkg: 12.5,
|
|
10182
|
+
color: "Gray",
|
|
10183
|
+
evos: ["Zoroark-Hisui"],
|
|
10184
|
+
eggGroups: ["Field"],
|
|
9958
10185
|
},
|
|
9959
10186
|
zoroark: {
|
|
9960
10187
|
num: 571,
|
|
@@ -9969,6 +10196,24 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
9969
10196
|
prevo: "Zorua",
|
|
9970
10197
|
evoLevel: 30,
|
|
9971
10198
|
eggGroups: ["Field"],
|
|
10199
|
+
otherFormes: ["Zoroark-Hisui"],
|
|
10200
|
+
formeOrder: ["Zoroark", "Zoroark-Hisui"],
|
|
10201
|
+
},
|
|
10202
|
+
zoroarkhisui: {
|
|
10203
|
+
num: 571,
|
|
10204
|
+
name: "Zoroark-Hisui",
|
|
10205
|
+
baseSpecies: "Zoroark",
|
|
10206
|
+
forme: "Hisui",
|
|
10207
|
+
types: ["Normal", "Ghost"],
|
|
10208
|
+
genderRatio: {M: 0.875, F: 0.125},
|
|
10209
|
+
baseStats: {hp: 55, atk: 100, def: 60, spa: 125, spd: 60, spe: 110},
|
|
10210
|
+
abilities: {0: "Illusion"},
|
|
10211
|
+
heightm: 1.6,
|
|
10212
|
+
weightkg: 73,
|
|
10213
|
+
color: "Gray",
|
|
10214
|
+
prevo: "Zorua-Hisui",
|
|
10215
|
+
evoLevel: 30,
|
|
10216
|
+
eggGroups: ["Field"],
|
|
9972
10217
|
},
|
|
9973
10218
|
minccino: {
|
|
9974
10219
|
num: 572,
|
|
@@ -10706,7 +10951,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
10706
10951
|
heightm: 0.5,
|
|
10707
10952
|
weightkg: 10.5,
|
|
10708
10953
|
color: "White",
|
|
10709
|
-
evos: ["Braviary"],
|
|
10954
|
+
evos: ["Braviary", "Braviary-Hisui"],
|
|
10710
10955
|
eggGroups: ["Flying"],
|
|
10711
10956
|
},
|
|
10712
10957
|
braviary: {
|
|
@@ -10722,6 +10967,24 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
10722
10967
|
prevo: "Rufflet",
|
|
10723
10968
|
evoLevel: 54,
|
|
10724
10969
|
eggGroups: ["Flying"],
|
|
10970
|
+
otherFormes: ["Braviary-Hisui"],
|
|
10971
|
+
formeOrder: ["Braviary", "Braviary-Hisui"],
|
|
10972
|
+
},
|
|
10973
|
+
braviaryhisui: {
|
|
10974
|
+
num: 628,
|
|
10975
|
+
name: "Braviary-Hisui",
|
|
10976
|
+
baseSpecies: "Braviary",
|
|
10977
|
+
forme: "Hisui",
|
|
10978
|
+
types: ["Psychic", "Flying"],
|
|
10979
|
+
gender: "M",
|
|
10980
|
+
baseStats: {hp: 110, atk: 83, def: 70, spa: 112, spd: 70, spe: 65},
|
|
10981
|
+
abilities: {0: "Keen Eye", 1: "Sheer Force", H: "Defiant"},
|
|
10982
|
+
heightm: 1.7,
|
|
10983
|
+
weightkg: 43.4,
|
|
10984
|
+
color: "Red",
|
|
10985
|
+
prevo: "Rufflet",
|
|
10986
|
+
evoLevel: 54,
|
|
10987
|
+
eggGroups: ["Flying"],
|
|
10725
10988
|
},
|
|
10726
10989
|
vullaby: {
|
|
10727
10990
|
num: 629,
|
|
@@ -12048,7 +12311,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
12048
12311
|
heightm: 0.3,
|
|
12049
12312
|
weightkg: 2.8,
|
|
12050
12313
|
color: "Purple",
|
|
12051
|
-
evos: ["Sliggoo"],
|
|
12314
|
+
evos: ["Sliggoo", "Sliggoo-Hisui"],
|
|
12052
12315
|
eggGroups: ["Dragon"],
|
|
12053
12316
|
},
|
|
12054
12317
|
sliggoo: {
|
|
@@ -12064,6 +12327,24 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
12064
12327
|
evoLevel: 40,
|
|
12065
12328
|
evos: ["Goodra"],
|
|
12066
12329
|
eggGroups: ["Dragon"],
|
|
12330
|
+
otherFormes: ["Sliggoo-Hisui"],
|
|
12331
|
+
formeOrder: ["Sliggoo", "Sliggoo-Hisui"],
|
|
12332
|
+
},
|
|
12333
|
+
sliggoohisui: {
|
|
12334
|
+
num: 705,
|
|
12335
|
+
name: "Sliggoo-Hisui",
|
|
12336
|
+
baseSpecies: "Sliggoo",
|
|
12337
|
+
forme: "Hisui",
|
|
12338
|
+
types: ["Steel", "Dragon"],
|
|
12339
|
+
baseStats: {hp: 58, atk: 75, def: 83, spa: 83, spd: 113, spe: 40},
|
|
12340
|
+
abilities: {0: "Sap Sipper", 1: "Overcoat", H: "Gooey"},
|
|
12341
|
+
heightm: 0.7,
|
|
12342
|
+
weightkg: 68.5,
|
|
12343
|
+
color: "Purple",
|
|
12344
|
+
prevo: "Goomy",
|
|
12345
|
+
evoLevel: 40,
|
|
12346
|
+
evos: ["Goodra-Hisui"],
|
|
12347
|
+
eggGroups: ["Dragon"],
|
|
12067
12348
|
},
|
|
12068
12349
|
goodra: {
|
|
12069
12350
|
num: 706,
|
|
@@ -12077,6 +12358,23 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
12077
12358
|
prevo: "Sliggoo",
|
|
12078
12359
|
evoLevel: 50,
|
|
12079
12360
|
eggGroups: ["Dragon"],
|
|
12361
|
+
otherFormes: ["Goodra-Hisui"],
|
|
12362
|
+
formeOrder: ["Goodra", "Goodra-Hisui"],
|
|
12363
|
+
},
|
|
12364
|
+
goodrahisui: {
|
|
12365
|
+
num: 706,
|
|
12366
|
+
name: "Goodra-Hisui",
|
|
12367
|
+
baseSpecies: "Goodra",
|
|
12368
|
+
forme: "Hisui",
|
|
12369
|
+
types: ["Steel", "Dragon"],
|
|
12370
|
+
baseStats: {hp: 80, atk: 100, def: 100, spa: 110, spd: 150, spe: 60},
|
|
12371
|
+
abilities: {0: "Sap Sipper", 1: "Overcoat", H: "Gooey"},
|
|
12372
|
+
heightm: 1.7,
|
|
12373
|
+
weightkg: 334.1,
|
|
12374
|
+
color: "Purple",
|
|
12375
|
+
prevo: "Sliggoo-Hisui",
|
|
12376
|
+
evoLevel: 50,
|
|
12377
|
+
eggGroups: ["Dragon"],
|
|
12080
12378
|
},
|
|
12081
12379
|
klefki: {
|
|
12082
12380
|
num: 707,
|
|
@@ -12241,7 +12539,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
12241
12539
|
heightm: 1,
|
|
12242
12540
|
weightkg: 99.5,
|
|
12243
12541
|
color: "Blue",
|
|
12244
|
-
evos: ["Avalugg"],
|
|
12542
|
+
evos: ["Avalugg", "Avalugg-Hisui"],
|
|
12245
12543
|
eggGroups: ["Monster", "Mineral"],
|
|
12246
12544
|
},
|
|
12247
12545
|
avalugg: {
|
|
@@ -12256,6 +12554,23 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
12256
12554
|
prevo: "Bergmite",
|
|
12257
12555
|
evoLevel: 37,
|
|
12258
12556
|
eggGroups: ["Monster", "Mineral"],
|
|
12557
|
+
otherFormes: ["Avalugg-Hisui"],
|
|
12558
|
+
formeOrder: ["Avalugg", "Avalugg-Hisui"],
|
|
12559
|
+
},
|
|
12560
|
+
avalugghisui: {
|
|
12561
|
+
num: 713,
|
|
12562
|
+
name: "Avalugg-Hisui",
|
|
12563
|
+
baseSpecies: "Avalugg",
|
|
12564
|
+
forme: "Hisui",
|
|
12565
|
+
types: ["Ice", "Rock"],
|
|
12566
|
+
baseStats: {hp: 95, atk: 127, def: 184, spa: 34, spd: 36, spe: 38},
|
|
12567
|
+
abilities: {0: "Strong Jaw", 1: "Ice Body", H: "Sturdy"},
|
|
12568
|
+
heightm: 1.4,
|
|
12569
|
+
weightkg: 262.4,
|
|
12570
|
+
color: "Blue",
|
|
12571
|
+
prevo: "Bergmite",
|
|
12572
|
+
evoLevel: 37,
|
|
12573
|
+
eggGroups: ["Monster", "Mineral"],
|
|
12259
12574
|
},
|
|
12260
12575
|
noibat: {
|
|
12261
12576
|
num: 714,
|
|
@@ -12474,7 +12789,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
12474
12789
|
color: "Brown",
|
|
12475
12790
|
prevo: "Rowlet",
|
|
12476
12791
|
evoLevel: 17,
|
|
12477
|
-
evos: ["Decidueye"],
|
|
12792
|
+
evos: ["Decidueye", "Decidueye-Hisui"],
|
|
12478
12793
|
eggGroups: ["Flying"],
|
|
12479
12794
|
},
|
|
12480
12795
|
decidueye: {
|
|
@@ -12490,6 +12805,24 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
12490
12805
|
prevo: "Dartrix",
|
|
12491
12806
|
evoLevel: 34,
|
|
12492
12807
|
eggGroups: ["Flying"],
|
|
12808
|
+
otherFormes: ["Decidueye-Hisui"],
|
|
12809
|
+
formeOrder: ["Decidueye", "Decidueye-Hisui"],
|
|
12810
|
+
},
|
|
12811
|
+
decidueyehisui: {
|
|
12812
|
+
num: 724,
|
|
12813
|
+
name: "Decidueye-Hisui",
|
|
12814
|
+
baseSpecies: "Decidueye",
|
|
12815
|
+
forme: "Hisui",
|
|
12816
|
+
types: ["Grass", "Fighting"],
|
|
12817
|
+
genderRatio: {M: 0.875, F: 0.125},
|
|
12818
|
+
baseStats: {hp: 88, atk: 112, def: 80, spa: 95, spd: 95, spe: 60},
|
|
12819
|
+
abilities: {0: "Overgrow", H: "Long Reach"},
|
|
12820
|
+
heightm: 1.6,
|
|
12821
|
+
weightkg: 37,
|
|
12822
|
+
color: "Brown",
|
|
12823
|
+
prevo: "Dartrix",
|
|
12824
|
+
evoLevel: 36,
|
|
12825
|
+
eggGroups: ["Flying"],
|
|
12493
12826
|
},
|
|
12494
12827
|
litten: {
|
|
12495
12828
|
num: 725,
|
|
@@ -15978,6 +16311,142 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
15978
16311
|
eggGroups: ["Undiscovered"],
|
|
15979
16312
|
changesFrom: "Calyrex",
|
|
15980
16313
|
},
|
|
16314
|
+
wyrdeer: {
|
|
16315
|
+
num: 899,
|
|
16316
|
+
name: "Wyrdeer",
|
|
16317
|
+
types: ["Normal", "Psychic"],
|
|
16318
|
+
baseStats: {hp: 103, atk: 105, def: 72, spa: 105, spd: 75, spe: 65},
|
|
16319
|
+
abilities: {0: "Intimidate", 1: "Frisk", H: "Sap Sipper"},
|
|
16320
|
+
heightm: 1.8,
|
|
16321
|
+
weightkg: 95.1,
|
|
16322
|
+
color: "Gray",
|
|
16323
|
+
prevo: "Stantler",
|
|
16324
|
+
evoType: "other",
|
|
16325
|
+
evoCondition: "Use Agile style Psyshield Bash 20 times",
|
|
16326
|
+
eggGroups: ["Field"],
|
|
16327
|
+
},
|
|
16328
|
+
kleavor: {
|
|
16329
|
+
num: 900,
|
|
16330
|
+
name: "Kleavor",
|
|
16331
|
+
types: ["Bug", "Rock"],
|
|
16332
|
+
baseStats: {hp: 70, atk: 135, def: 95, spa: 45, spd: 70, spe: 85},
|
|
16333
|
+
abilities: {0: "Swarm", 1: "Sheer Force", H: "Steadfast"},
|
|
16334
|
+
heightm: 1.8,
|
|
16335
|
+
weightkg: 89,
|
|
16336
|
+
color: "Brown",
|
|
16337
|
+
prevo: "Scyther",
|
|
16338
|
+
evoType: "other",
|
|
16339
|
+
evoCondition: "Black Augurite",
|
|
16340
|
+
eggGroups: ["Bug"],
|
|
16341
|
+
},
|
|
16342
|
+
ursaluna: {
|
|
16343
|
+
num: 901,
|
|
16344
|
+
name: "Ursaluna",
|
|
16345
|
+
types: ["Ground", "Normal"],
|
|
16346
|
+
baseStats: {hp: 130, atk: 140, def: 105, spa: 45, spd: 80, spe: 50},
|
|
16347
|
+
abilities: {0: "Guts", 1: "Bulletproof", H: "Unnerve"},
|
|
16348
|
+
heightm: 2.4,
|
|
16349
|
+
weightkg: 290,
|
|
16350
|
+
color: "Brown",
|
|
16351
|
+
prevo: "Ursaring",
|
|
16352
|
+
evoType: "other",
|
|
16353
|
+
evoCondition: "Peat Block when there's a full moon",
|
|
16354
|
+
eggGroups: ["Field"],
|
|
16355
|
+
},
|
|
16356
|
+
basculegion: {
|
|
16357
|
+
num: 902,
|
|
16358
|
+
name: "Basculegion",
|
|
16359
|
+
baseForme: "M",
|
|
16360
|
+
types: ["Water", "Ghost"],
|
|
16361
|
+
gender: "M",
|
|
16362
|
+
baseStats: {hp: 120, atk: 112, def: 65, spa: 80, spd: 75, spe: 78},
|
|
16363
|
+
abilities: {0: "Rattled", 1: "Adaptability", H: "Mold Breaker"},
|
|
16364
|
+
heightm: 3,
|
|
16365
|
+
weightkg: 110,
|
|
16366
|
+
color: "Green",
|
|
16367
|
+
prevo: "Basculin-White-Striped",
|
|
16368
|
+
evoType: "other",
|
|
16369
|
+
evoCondition: "Receive 294+ recoil from one move without fainting",
|
|
16370
|
+
eggGroups: ["Water 2"],
|
|
16371
|
+
otherFormes: ["Basculegion-F"],
|
|
16372
|
+
formeOrder: ["Basculegion", "Basculegion-F"],
|
|
16373
|
+
},
|
|
16374
|
+
basculegionf: {
|
|
16375
|
+
num: 902,
|
|
16376
|
+
name: "Basculegion-F",
|
|
16377
|
+
baseSpecies: "Basculegion",
|
|
16378
|
+
forme: "F",
|
|
16379
|
+
types: ["Water", "Ghost"],
|
|
16380
|
+
gender: "F",
|
|
16381
|
+
baseStats: {hp: 120, atk: 92, def: 65, spa: 100, spd: 75, spe: 78},
|
|
16382
|
+
abilities: {0: "Rattled", 1: "Adaptability", H: "Mold Breaker"},
|
|
16383
|
+
heightm: 3,
|
|
16384
|
+
weightkg: 110,
|
|
16385
|
+
color: "Green",
|
|
16386
|
+
prevo: "Basculin-White-Striped",
|
|
16387
|
+
evoType: "other",
|
|
16388
|
+
evoCondition: "Receive 294+ recoil from one move without fainting",
|
|
16389
|
+
eggGroups: ["Water 2"],
|
|
16390
|
+
},
|
|
16391
|
+
sneasler: {
|
|
16392
|
+
num: 903,
|
|
16393
|
+
name: "Sneasler",
|
|
16394
|
+
types: ["Fighting", "Poison"],
|
|
16395
|
+
baseStats: {hp: 80, atk: 130, def: 60, spa: 40, spd: 80, spe: 120},
|
|
16396
|
+
abilities: {0: "Pressure", H: "Poison Touch"},
|
|
16397
|
+
heightm: 1.3,
|
|
16398
|
+
weightkg: 43,
|
|
16399
|
+
color: "Gray",
|
|
16400
|
+
prevo: "Sneasel-Hisui",
|
|
16401
|
+
evoType: "useItem",
|
|
16402
|
+
evoItem: "Razor Claw",
|
|
16403
|
+
eggGroups: ["Field"],
|
|
16404
|
+
},
|
|
16405
|
+
overqwil: {
|
|
16406
|
+
num: 904,
|
|
16407
|
+
name: "Overqwil",
|
|
16408
|
+
types: ["Dark", "Poison"],
|
|
16409
|
+
baseStats: {hp: 85, atk: 115, def: 95, spa: 65, spd: 65, spe: 85},
|
|
16410
|
+
abilities: {0: "Poison Point", 1: "Swift Swim", H: "Intimidate"},
|
|
16411
|
+
heightm: 0.5,
|
|
16412
|
+
weightkg: 3.9,
|
|
16413
|
+
color: "Black",
|
|
16414
|
+
prevo: "Qwilfish-Hisui",
|
|
16415
|
+
evoType: "other",
|
|
16416
|
+
evoCondition: "Use Strong style Barb Barrage 20 times",
|
|
16417
|
+
eggGroups: ["Water 2"],
|
|
16418
|
+
},
|
|
16419
|
+
enamorus: {
|
|
16420
|
+
num: 905,
|
|
16421
|
+
name: "Enamorus",
|
|
16422
|
+
baseForme: "Incarnate",
|
|
16423
|
+
types: ["Fairy", "Flying"],
|
|
16424
|
+
gender: "F",
|
|
16425
|
+
baseStats: {hp: 74, atk: 115, def: 70, spa: 135, spd: 80, spe: 106},
|
|
16426
|
+
abilities: {0: "Healer", H: "Contrary"},
|
|
16427
|
+
heightm: 1.6,
|
|
16428
|
+
weightkg: 48,
|
|
16429
|
+
color: "Brown",
|
|
16430
|
+
tags: ["Sub-Legendary"],
|
|
16431
|
+
eggGroups: ["Undiscovered"],
|
|
16432
|
+
otherFormes: ["Enamorus-Therian"],
|
|
16433
|
+
formeOrder: ["Enamorus", "Enamorus-Therian"],
|
|
16434
|
+
},
|
|
16435
|
+
enamorustherian: {
|
|
16436
|
+
num: 905,
|
|
16437
|
+
name: "Enamorus-Therian",
|
|
16438
|
+
baseSpecies: "Enamorus",
|
|
16439
|
+
forme: "Therian",
|
|
16440
|
+
types: ["Fairy", "Flying"],
|
|
16441
|
+
gender: "F",
|
|
16442
|
+
baseStats: {hp: 74, atk: 115, def: 110, spa: 135, spd: 100, spe: 46},
|
|
16443
|
+
abilities: {0: "Overcoat"},
|
|
16444
|
+
heightm: 1.6,
|
|
16445
|
+
weightkg: 48,
|
|
16446
|
+
color: "Brown",
|
|
16447
|
+
eggGroups: ["Undiscovered"],
|
|
16448
|
+
changesFrom: "Enamorus",
|
|
16449
|
+
},
|
|
15981
16450
|
missingno: {
|
|
15982
16451
|
num: 0,
|
|
15983
16452
|
name: "MissingNo.",
|
|
@@ -16917,7 +17386,7 @@ export const Pokedex: {[speciesid: string]: SpeciesData} = {
|
|
|
16917
17386
|
types: ["Poison", "Flying"],
|
|
16918
17387
|
gender: "N",
|
|
16919
17388
|
baseStats: {hp: 85, atk: 70, def: 113, spa: 118, spd: 90, spe: 64},
|
|
16920
|
-
abilities: {0: "Stamina"},
|
|
17389
|
+
abilities: {0: "Stamina", H: "Power of Alchemy"},
|
|
16921
17390
|
heightm: 0.8,
|
|
16922
17391
|
weightkg: 11.5,
|
|
16923
17392
|
color: "Purple",
|