@pkmn/sim 0.9.28 → 0.9.30

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 (89) hide show
  1. package/build/cjs/config/formats.js +17 -0
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/abilities.js +18 -21
  4. package/build/cjs/data/abilities.js.map +1 -1
  5. package/build/cjs/data/aliases.js +4 -2
  6. package/build/cjs/data/aliases.js.map +1 -1
  7. package/build/cjs/data/conditions.js +7 -7
  8. package/build/cjs/data/conditions.js.map +1 -1
  9. package/build/cjs/data/formats-data.js +12 -4
  10. package/build/cjs/data/formats-data.js.map +1 -1
  11. package/build/cjs/data/learnsets.js +176 -65
  12. package/build/cjs/data/learnsets.js.map +1 -1
  13. package/build/cjs/data/legality.js +39 -17
  14. package/build/cjs/data/legality.js.map +1 -1
  15. package/build/cjs/data/mods/gen3/formats-data.js +12 -12
  16. package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
  17. package/build/cjs/data/mods/gen4/moves.js +6 -2
  18. package/build/cjs/data/mods/gen4/moves.js.map +1 -1
  19. package/build/cjs/data/mods/gen5/abilities.js +13 -0
  20. package/build/cjs/data/mods/gen5/abilities.js.map +1 -1
  21. package/build/cjs/data/mods/gen5/moves.js +33 -0
  22. package/build/cjs/data/mods/gen5/moves.js.map +1 -1
  23. package/build/cjs/data/mods/gen7/moves.js +5 -2
  24. package/build/cjs/data/mods/gen7/moves.js.map +1 -1
  25. package/build/cjs/data/moves.js +34 -18
  26. package/build/cjs/data/moves.js.map +1 -1
  27. package/build/cjs/data/pokedex.js +50 -5
  28. package/build/cjs/data/pokedex.js.map +1 -1
  29. package/build/cjs/data/pokemongo.d.ts +2 -2
  30. package/build/cjs/data/pokemongo.js +292 -199
  31. package/build/cjs/data/pokemongo.js.map +1 -1
  32. package/build/cjs/data/text/default.js +1 -1
  33. package/build/cjs/data/text/default.js.map +1 -1
  34. package/build/cjs/sim/dex-species.js +1 -9
  35. package/build/cjs/sim/dex-species.js.map +1 -1
  36. package/build/cjs/sim/pokemon.js +5 -3
  37. package/build/cjs/sim/pokemon.js.map +1 -1
  38. package/build/cjs/sim/prng.d.ts +0 -1
  39. package/build/cjs/sim/prng.js +1 -41
  40. package/build/cjs/sim/prng.js.map +1 -1
  41. package/build/cjs/sim/team-validator.js +30 -11
  42. package/build/cjs/sim/team-validator.js.map +1 -1
  43. package/build/cjs/sim/tools/exhaustive-runner.js +1 -1
  44. package/build/cjs/sim/tools/exhaustive-runner.js.map +1 -1
  45. package/build/esm/config/formats.mjs +17 -0
  46. package/build/esm/config/formats.mjs.map +1 -1
  47. package/build/esm/data/abilities.mjs +18 -21
  48. package/build/esm/data/abilities.mjs.map +1 -1
  49. package/build/esm/data/aliases.mjs +4 -2
  50. package/build/esm/data/aliases.mjs.map +1 -1
  51. package/build/esm/data/conditions.mjs +7 -7
  52. package/build/esm/data/conditions.mjs.map +1 -1
  53. package/build/esm/data/formats-data.mjs +12 -4
  54. package/build/esm/data/formats-data.mjs.map +1 -1
  55. package/build/esm/data/learnsets.mjs +176 -65
  56. package/build/esm/data/learnsets.mjs.map +1 -1
  57. package/build/esm/data/legality.mjs +39 -17
  58. package/build/esm/data/legality.mjs.map +1 -1
  59. package/build/esm/data/mods/gen3/formats-data.mjs +12 -12
  60. package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
  61. package/build/esm/data/mods/gen4/moves.mjs +6 -2
  62. package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
  63. package/build/esm/data/mods/gen5/abilities.mjs +13 -0
  64. package/build/esm/data/mods/gen5/abilities.mjs.map +1 -1
  65. package/build/esm/data/mods/gen5/moves.mjs +33 -0
  66. package/build/esm/data/mods/gen5/moves.mjs.map +1 -1
  67. package/build/esm/data/mods/gen7/moves.mjs +5 -2
  68. package/build/esm/data/mods/gen7/moves.mjs.map +1 -1
  69. package/build/esm/data/moves.mjs +34 -18
  70. package/build/esm/data/moves.mjs.map +1 -1
  71. package/build/esm/data/pokedex.mjs +50 -5
  72. package/build/esm/data/pokedex.mjs.map +1 -1
  73. package/build/esm/data/pokemongo.d.mts +2 -2
  74. package/build/esm/data/pokemongo.mjs +292 -199
  75. package/build/esm/data/pokemongo.mjs.map +1 -1
  76. package/build/esm/data/text/default.mjs +1 -1
  77. package/build/esm/data/text/default.mjs.map +1 -1
  78. package/build/esm/sim/dex-species.mjs +1 -9
  79. package/build/esm/sim/dex-species.mjs.map +1 -1
  80. package/build/esm/sim/pokemon.mjs +5 -3
  81. package/build/esm/sim/pokemon.mjs.map +1 -1
  82. package/build/esm/sim/prng.d.mts +0 -1
  83. package/build/esm/sim/prng.mjs +1 -8
  84. package/build/esm/sim/prng.mjs.map +1 -1
  85. package/build/esm/sim/team-validator.mjs +30 -11
  86. package/build/esm/sim/team-validator.mjs.map +1 -1
  87. package/build/esm/sim/tools/exhaustive-runner.mjs +1 -1
  88. package/build/esm/sim/tools/exhaustive-runner.mjs.map +1 -1
  89. package/package.json +2 -2
@@ -8,14 +8,14 @@
8
8
  * - egg: Hatches from 2, 5, or 10 km eggs
9
9
  * - giovanni: Shadow Pokemon rescued from Giovanni and purified
10
10
  * - 12kmegg: Hatches from a 12 km egg, which is obtained from Team GO Rocket Leaders which unlock at level 8
11
- * - raid: Caught from defeating a raid boss
11
+ * - raid: Caught from defeating a raid boss (also used for GBL encounters)
12
12
  * - research: Reward from field research, special research, or research breakthrough
13
13
  * If the Pokemon is obtainable from the wild, other sources do not need to be included due to redundancy.
14
14
  * For shinies that can't be obtained from the wild, all other sources should be included.
15
15
  *
16
16
  * - Shiny origin restrictions:
17
17
  * - noshiny: This Pokemon's shiny form is unavailable in Pokemon GO
18
- * - nowildshiny: This Pokemon can't be obtained as shiny from the wild
18
+ * - (currently unused) nowildshiny: This Pokemon can't be obtained as shiny from the wild
19
19
  *
20
20
  * - Trade restrictions:
21
21
  * - notrade: This Pokemon cannot be traded at all
@@ -97,9 +97,9 @@ export const PokemonGoData = {
97
97
  mankey: { encounters: ['wild'] },
98
98
  primeape: { encounters: ['wild'] },
99
99
  growlithe: { encounters: ['wild'] },
100
- growlithehisui: { encounters: ['egg', 'raid', 'research', 'noshiny'] }, // wild encounter available on 2023-08-26
100
+ growlithehisui: { encounters: ['wild'] },
101
101
  arcanine: { encounters: ['wild'] },
102
- arcaninehisui: { encounters: ['egg', 'raid', 'research', 'noshiny'] }, // wild encounter available on 2023-08-26
102
+ arcaninehisui: { encounters: ['wild'] },
103
103
  poliwag: { encounters: ['wild'] },
104
104
  poliwhirl: { encounters: ['wild'] },
105
105
  poliwrath: { encounters: ['wild'] },
@@ -151,9 +151,9 @@ export const PokemonGoData = {
151
151
  krabby: { encounters: ['wild'] },
152
152
  kingler: { encounters: ['wild'] },
153
153
  voltorb: { encounters: ['wild'] },
154
- voltorbhisui: { encounters: ['wild', 'noshiny'] },
154
+ voltorbhisui: { encounters: ['wild'] },
155
155
  electrode: { encounters: ['wild'] },
156
- electrodehisui: { encounters: ['wild', 'noshiny'] },
156
+ electrodehisui: { encounters: ['wild'] },
157
157
  exeggcute: { encounters: ['wild'] },
158
158
  exeggutor: { encounters: ['wild'] },
159
159
  exeggutoralola: { encounters: ['wild'] },
@@ -239,6 +239,7 @@ export const PokemonGoData = {
239
239
  cyndaquil: { encounters: ['wild'] },
240
240
  quilava: { encounters: ['wild'] },
241
241
  typhlosion: { encounters: ['wild'] },
242
+ typhlosionhisui: { encounters: ['raid'] },
242
243
  totodile: { encounters: ['wild'] },
243
244
  croconaw: { encounters: ['wild'] },
244
245
  feraligatr: { encounters: ['wild'] },
@@ -276,6 +277,7 @@ export const PokemonGoData = {
276
277
  sunflora: { encounters: ['wild'] },
277
278
  yanma: { encounters: ['wild'] },
278
279
  wooper: { encounters: ['wild'] },
280
+ wooperpaldea: { encounters: ['wild'] },
279
281
  quagsire: { encounters: ['wild'] },
280
282
  espeon: { encounters: ['wild'] },
281
283
  umbreon: { encounters: ['wild'] },
@@ -295,7 +297,7 @@ export const PokemonGoData = {
295
297
  unownj: { encounters: ['wild'] },
296
298
  unownk: { encounters: ['wild', 'noshiny'] },
297
299
  unownl: { encounters: ['wild'] },
298
- unownm: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
300
+ unownm: { encounters: ['wild'] },
299
301
  unownn: { encounters: ['wild'] },
300
302
  unowno: { encounters: ['wild'] },
301
303
  unownp: { encounters: ['wild'] },
@@ -309,8 +311,8 @@ export const PokemonGoData = {
309
311
  unownx: { encounters: ['wild'] },
310
312
  unowny: { encounters: ['wild'] },
311
313
  unownz: { encounters: ['wild', 'noshiny'] },
312
- unownexclamation: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
313
- unownquestion: { encounters: ['wild', 'noshiny'] },
314
+ unownexclamation: { encounters: ['wild'] },
315
+ unownquestion: { encounters: ['wild'] },
314
316
  wobbuffet: { encounters: ['wild'] },
315
317
  girafarig: { encounters: ['wild'] },
316
318
  pineco: { encounters: ['wild'] },
@@ -321,12 +323,12 @@ export const PokemonGoData = {
321
323
  snubbull: { encounters: ['wild'] },
322
324
  granbull: { encounters: ['wild'] },
323
325
  qwilfish: { encounters: ['wild'] },
324
- qwilfishhisui: { encounters: ['wild', 'noshiny'] },
326
+ qwilfishhisui: { encounters: ['wild'] },
325
327
  scizor: { encounters: ['wild'] },
326
328
  shuckle: { encounters: ['wild'] },
327
329
  heracross: { encounters: ['wild'] },
328
330
  sneasel: { encounters: ['wild'] },
329
- sneaselhisui: { encounters: ['wild', 'noshiny'] },
331
+ sneaselhisui: { encounters: ['wild'] },
330
332
  teddiursa: { encounters: ['wild'] },
331
333
  ursaring: { encounters: ['wild'] },
332
334
  slugma: { encounters: ['wild'] },
@@ -334,6 +336,7 @@ export const PokemonGoData = {
334
336
  swinub: { encounters: ['wild'] },
335
337
  piloswine: { encounters: ['wild'] },
336
338
  corsola: { encounters: ['wild'] },
339
+ corsolagalar: { encounters: ['egg'] },
337
340
  remoraid: { encounters: ['wild'] },
338
341
  octillery: { encounters: ['wild'] },
339
342
  delibird: { encounters: ['wild'] },
@@ -494,8 +497,8 @@ export const PokemonGoData = {
494
497
  registeel: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
495
498
  latias: { encounters: ['wild'] },
496
499
  latios: { encounters: ['wild'] },
497
- kyogre: { encounters: ['raid', 'research', 'specialtrade'] },
498
- groudon: { encounters: ['raid', 'research', 'specialtrade'] },
500
+ kyogre: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
501
+ groudon: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
499
502
  rayquaza: { encounters: ['raid', 'research', 'specialtrade'] },
500
503
  jirachi: { encounters: ['research', 'notrade'] },
501
504
  deoxys: { encounters: ['raid', 'specialtrade'] },
@@ -531,14 +534,14 @@ export const PokemonGoData = {
531
534
  mothim: { encounters: ['wild'] },
532
535
  combee: { encounters: ['wild'] },
533
536
  vespiquen: { encounters: ['wild'] },
534
- pachirisu: { encounters: ['wild', 'noshiny'] },
537
+ pachirisu: { encounters: ['wild'] },
535
538
  buizel: { encounters: ['wild'] },
536
539
  floatzel: { encounters: ['wild'] },
537
540
  cherubi: { encounters: ['wild'] },
538
- shellos: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
539
- shelloseast: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
540
- gastrodon: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
541
- gastrodoneast: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
541
+ shellos: { encounters: ['wild'] },
542
+ shelloseast: { encounters: ['wild'] },
543
+ gastrodon: { encounters: ['wild'] },
544
+ gastrodoneast: { encounters: ['wild'] },
542
545
  ambipom: { encounters: ['wild'] },
543
546
  drifloon: { encounters: ['wild'] },
544
547
  drifblim: { encounters: ['wild'] },
@@ -548,29 +551,29 @@ export const PokemonGoData = {
548
551
  honchkrow: { encounters: ['wild'] },
549
552
  glameow: { encounters: ['wild'] },
550
553
  purugly: { encounters: ['wild'] },
551
- chingling: { encounters: ['egg', 'noshiny'] },
552
- stunky: { encounters: ['wild', 'noshiny'] },
553
- skuntank: { encounters: ['wild', 'noshiny'] },
554
+ chingling: { encounters: ['egg'] },
555
+ stunky: { encounters: ['wild'] },
556
+ skuntank: { encounters: ['wild'] },
554
557
  bronzor: { encounters: ['wild'] },
555
558
  bronzong: { encounters: ['wild'] },
556
559
  bonsly: { encounters: ['egg'] },
557
560
  mimejr: { encounters: ['egg'] },
558
561
  happiny: { encounters: ['egg'] },
559
- chatot: { encounters: ['wild', 'noshiny'] },
562
+ chatot: { encounters: ['wild'] },
560
563
  spiritomb: { encounters: ['research'] },
561
564
  gible: { encounters: ['wild'] },
562
565
  gabite: { encounters: ['wild'] },
563
566
  garchomp: { encounters: ['wild'] },
564
567
  munchlax: { encounters: ['egg'] },
565
568
  riolu: { encounters: ['egg'] },
566
- lucario: { encounters: ['egg', 'research'] }, // wild encounter available on 2023-08-18
569
+ lucario: { encounters: ['wild'] },
567
570
  hippopotas: { encounters: ['wild'] },
568
571
  hippowdon: { encounters: ['wild'] },
569
572
  skorupi: { encounters: ['wild'] },
570
573
  drapion: { encounters: ['wild'] },
571
574
  croagunk: { encounters: ['wild'] },
572
575
  toxicroak: { encounters: ['wild'] },
573
- carnivine: { encounters: ['wild', 'noshiny'] },
576
+ carnivine: { encounters: ['wild'] },
574
577
  finneon: { encounters: ['wild'] },
575
578
  lumineon: { encounters: ['wild'] },
576
579
  mantyke: { encounters: ['egg'] },
@@ -594,18 +597,18 @@ export const PokemonGoData = {
594
597
  probopass: { encounters: ['wild'] },
595
598
  dusknoir: { encounters: ['wild'] },
596
599
  froslass: { encounters: ['wild'] },
597
- rotom: { encounters: ['wild', 'noshiny'] },
600
+ rotom: { encounters: ['wild'] },
598
601
  uxie: { encounters: ['wild'] },
599
602
  mesprit: { encounters: ['wild'] },
600
603
  azelf: { encounters: ['wild'] },
601
604
  dialga: { encounters: ['raid', 'specialtrade'] },
602
- palkia: { encounters: ['raid', 'specialtrade'] },
603
- heatran: { encounters: ['raid', 'specialtrade'] },
604
- regigigas: { encounters: ['raid', 'research', 'specialtrade'] },
605
+ palkia: { encounters: ['giovanni', 'raid', 'specialtrade'] },
606
+ heatran: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
607
+ regigigas: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
605
608
  giratina: { encounters: ['raid', 'specialtrade'] },
606
- cresselia: { encounters: ['raid', 'research', 'specialtrade'] },
607
- darkrai: { encounters: ['raid', 'notrade'] },
608
- shaymin: { encounters: ['research', 'noshiny', 'notrade'] },
609
+ cresselia: { encounters: ['giovanni', 'raid', 'research', 'specialtrade'] },
610
+ darkrai: { encounters: ['raid', 'research', 'notrade'] },
611
+ shaymin: { encounters: ['research', 'notrade'] },
609
612
  victini: { encounters: ['research', 'noshiny', 'notrade'] },
610
613
  snivy: { encounters: ['wild'] },
611
614
  servine: { encounters: ['wild'] },
@@ -616,6 +619,7 @@ export const PokemonGoData = {
616
619
  oshawott: { encounters: ['wild'] },
617
620
  dewott: { encounters: ['wild'] },
618
621
  samurott: { encounters: ['wild'] },
622
+ samurotthisui: { encounters: ['raid'] },
619
623
  patrat: { encounters: ['wild'] },
620
624
  watchog: { encounters: ['wild'] },
621
625
  lillipup: { encounters: ['wild'] },
@@ -644,9 +648,9 @@ export const PokemonGoData = {
644
648
  drilbur: { encounters: ['wild'] },
645
649
  excadrill: { encounters: ['wild'] },
646
650
  audino: { encounters: ['wild'] },
647
- timburr: { encounters: ['egg', 'raid'] }, // wild encounter available on 2023-08-26
648
- gurdurr: { encounters: ['egg', 'raid'] }, // wild encounter available on 2023-08-26
649
- conkeldurr: { encounters: ['egg', 'raid'] }, // wild encounter available on 2023-08-26
651
+ timburr: { encounters: ['wild'] },
652
+ gurdurr: { encounters: ['wild'] },
653
+ conkeldurr: { encounters: ['wild'] },
650
654
  tympole: { encounters: ['wild'] },
651
655
  palpitoad: { encounters: ['wild'] },
652
656
  seismitoad: { encounters: ['wild'] },
@@ -660,23 +664,24 @@ export const PokemonGoData = {
660
664
  scolipede: { encounters: ['wild'] },
661
665
  cottonee: { encounters: ['wild'] },
662
666
  whimsicott: { encounters: ['wild'] },
663
- petilil: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
664
- lilligant: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
665
- basculin: { encounters: ['wild', 'noshiny'] },
666
- basculinbluestriped: { encounters: ['wild', 'noshiny'] },
667
- sandile: { encounters: ['12kmegg', 'research', 'noshiny'] },
668
- krokorok: { encounters: ['12kmegg', 'research', 'noshiny'] },
669
- krookodile: { encounters: ['12kmegg', 'research', 'noshiny'] },
667
+ petilil: { encounters: ['wild'] },
668
+ lilligant: { encounters: ['wild'] },
669
+ basculin: { encounters: ['wild', 'noshiny'] }, // Shiny available 2025-02-21
670
+ basculinbluestriped: { encounters: ['wild', 'noshiny'] }, // Shiny available 2025-02-21
671
+ basculinwhitestriped: { encounters: ['wild'] },
672
+ sandile: { encounters: ['12kmegg', 'raid', 'research'] },
673
+ krokorok: { encounters: ['12kmegg', 'raid', 'research'] },
674
+ krookodile: { encounters: ['12kmegg', 'raid', 'research'] },
670
675
  darumaka: { encounters: ['wild'] },
671
676
  darumakagalar: { encounters: ['wild'] },
672
677
  darmanitan: { encounters: ['wild'] },
673
678
  darmanitangalar: { encounters: ['wild'] },
674
- maractus: { encounters: ['wild', 'noshiny'] },
679
+ maractus: { encounters: ['wild', 'noshiny'] }, // Shiny available 2025-02-21
675
680
  dwebble: { encounters: ['wild'] },
676
681
  crustle: { encounters: ['wild'] },
677
- scraggy: { encounters: ['wild', 'noshiny'] },
678
- scrafty: { encounters: ['wild', 'noshiny'] },
679
- sigilyph: { encounters: ['wild', 'noshiny'] },
682
+ scraggy: { encounters: ['wild'] },
683
+ scrafty: { encounters: ['wild'] },
684
+ sigilyph: { encounters: ['wild'] },
680
685
  yamask: { encounters: ['wild'] },
681
686
  yamaskgalar: { encounters: ['egg', 'raid', 'research'] },
682
687
  cofagrigus: { encounters: ['wild'] },
@@ -686,22 +691,22 @@ export const PokemonGoData = {
686
691
  archeops: { encounters: ['wild'] },
687
692
  trubbish: { encounters: ['wild'] },
688
693
  garbodor: { encounters: ['wild'] },
689
- zorua: { encounters: ['wild', 'noshiny'] },
690
- zoroark: { encounters: ['wild', 'noshiny'] },
694
+ zorua: { encounters: ['wild'] },
695
+ zoroark: { encounters: ['wild'] },
691
696
  minccino: { encounters: ['wild'] },
692
697
  cinccino: { encounters: ['wild'] },
693
- gothita: { encounters: ['wild', 'noshiny'] },
694
- gothorita: { encounters: ['wild', 'noshiny'] },
695
- gothitelle: { encounters: ['wild', 'noshiny'] },
696
- solosis: { encounters: ['wild', 'noshiny'] },
697
- duosion: { encounters: ['wild', 'noshiny'] },
698
- reuniclus: { encounters: ['wild', 'noshiny'] },
699
- ducklett: { encounters: ['wild', 'noshiny'] },
700
- swanna: { encounters: ['wild', 'noshiny'] },
701
- vanillite: { encounters: ['wild', 'noshiny'] },
702
- vanillish: { encounters: ['wild', 'noshiny'] },
703
- vanilluxe: { encounters: ['wild', 'noshiny'] },
704
- deerling: { encounters: ['wild', 'noshiny'] },
698
+ gothita: { encounters: ['wild'] },
699
+ gothorita: { encounters: ['wild'] },
700
+ gothitelle: { encounters: ['wild'] },
701
+ solosis: { encounters: ['wild'] },
702
+ duosion: { encounters: ['wild'] },
703
+ reuniclus: { encounters: ['wild'] },
704
+ ducklett: { encounters: ['wild'] },
705
+ swanna: { encounters: ['wild'] },
706
+ vanillite: { encounters: ['wild'] },
707
+ vanillish: { encounters: ['wild'] },
708
+ vanilluxe: { encounters: ['wild'] },
709
+ deerling: { encounters: ['wild', 'noshiny'] }, // Shiny available 2025-02-21
705
710
  deerlingsummer: { encounters: ['wild', 'noshiny'] },
706
711
  deerlingautumn: { encounters: ['wild', 'noshiny'] },
707
712
  deerlingwinter: { encounters: ['wild', 'noshiny'] },
@@ -709,7 +714,7 @@ export const PokemonGoData = {
709
714
  sawsbucksummer: { encounters: ['wild', 'noshiny'] },
710
715
  sawsbuckautumn: { encounters: ['wild', 'noshiny'] },
711
716
  sawsbuckwinter: { encounters: ['wild', 'noshiny'] },
712
- emolga: { encounters: ['wild', 'noshiny'] },
717
+ emolga: { encounters: ['wild'] },
713
718
  karrablast: { encounters: ['wild'] },
714
719
  escavalier: { encounters: ['wild'] },
715
720
  foongus: { encounters: ['wild'] },
@@ -717,16 +722,16 @@ export const PokemonGoData = {
717
722
  frillish: { encounters: ['wild'] },
718
723
  jellicent: { encounters: ['wild'] },
719
724
  alomomola: { encounters: ['wild'] },
720
- joltik: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
721
- galvantula: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
725
+ joltik: { encounters: ['wild'] },
726
+ galvantula: { encounters: ['wild'] },
722
727
  ferroseed: { encounters: ['wild'] },
723
728
  ferrothorn: { encounters: ['wild'] },
724
729
  klink: { encounters: ['wild'] },
725
730
  klang: { encounters: ['wild'] },
726
731
  klinklang: { encounters: ['wild'] },
727
- tynamo: { encounters: ['wild', 'noshiny'] },
728
- eelektrik: { encounters: ['wild', 'noshiny'] },
729
- eelektross: { encounters: ['wild', 'noshiny'] },
732
+ tynamo: { encounters: ['wild'] },
733
+ eelektrik: { encounters: ['wild'] },
734
+ eelektross: { encounters: ['wild'] },
730
735
  elgyem: { encounters: ['wild'] },
731
736
  beheeyem: { encounters: ['wild'] },
732
737
  litwick: { encounters: ['wild'] },
@@ -737,22 +742,22 @@ export const PokemonGoData = {
737
742
  haxorus: { encounters: ['wild'] },
738
743
  cubchoo: { encounters: ['wild'] },
739
744
  beartic: { encounters: ['wild'] },
740
- cryogonal: { encounters: ['wild', 'noshiny'] },
745
+ cryogonal: { encounters: ['wild'] },
741
746
  shelmet: { encounters: ['wild'] },
742
747
  accelgor: { encounters: ['wild'] },
743
748
  stunfisk: { encounters: ['wild'] },
744
749
  stunfiskgalar: { encounters: ['wild'] },
745
- mienfoo: { encounters: ['wild', 'noshiny'] },
746
- mienshao: { encounters: ['wild', 'noshiny'] },
747
- druddigon: { encounters: ['raid', 'research'] },
748
- golett: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-18
749
- golurk: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-18
750
- pawniard: { encounters: ['12kmegg', 'research'] }, // wild encounter available on 2023-08-18
751
- bisharp: { encounters: ['12kmegg', 'research'] }, // wild encounter available on 2023-08-18
752
- bouffalant: { encounters: ['wild', 'noshiny'] },
750
+ mienfoo: { encounters: ['wild'] },
751
+ mienshao: { encounters: ['wild'] },
752
+ druddigon: { encounters: ['wild'] },
753
+ golett: { encounters: ['wild'] },
754
+ golurk: { encounters: ['wild'] },
755
+ pawniard: { encounters: ['wild'] },
756
+ bisharp: { encounters: ['wild'] },
757
+ bouffalant: { encounters: ['wild'] },
753
758
  rufflet: { encounters: ['wild'] },
754
759
  braviary: { encounters: ['wild'] },
755
- braviaryhisui: { encounters: ['raid'] },
760
+ braviaryhisui: { encounters: ['wild'] },
756
761
  vullaby: { encounters: ['wild'] },
757
762
  mandibuzz: { encounters: ['wild'] },
758
763
  heatmor: { encounters: ['wild'] },
@@ -760,16 +765,16 @@ export const PokemonGoData = {
760
765
  deino: { encounters: ['wild'] },
761
766
  zweilous: { encounters: ['wild'] },
762
767
  hydreigon: { encounters: ['wild'] },
763
- larvesta: { encounters: ['egg', 'noshiny'] },
764
- volcarona: { encounters: ['egg', 'noshiny'] },
765
- cobalion: { encounters: ['raid', 'specialtrade'] },
766
- terrakion: { encounters: ['raid', 'specialtrade'] },
767
- virizion: { encounters: ['raid', 'specialtrade'] },
768
- tornadus: { encounters: ['raid', 'specialtrade'] },
769
- thundurus: { encounters: ['raid', 'specialtrade'] },
768
+ larvesta: { encounters: ['egg'] },
769
+ volcarona: { encounters: ['egg'] },
770
+ cobalion: { encounters: ['raid', 'specialtrade'] }, // research available 2025-02-24
771
+ terrakion: { encounters: ['raid', 'specialtrade'] }, // research available 2025-02-24
772
+ virizion: { encounters: ['raid', 'specialtrade'] }, // research available 2025-02-24
773
+ tornadus: { encounters: ['raid', 'research', 'specialtrade'] }, // research available 2025-02-21
774
+ thundurus: { encounters: ['raid', 'research', 'specialtrade'] }, // research available 2025-02-21
770
775
  reshiram: { encounters: ['raid', 'specialtrade'] },
771
776
  zekrom: { encounters: ['raid', 'specialtrade'] },
772
- landorus: { encounters: ['raid', 'specialtrade'] },
777
+ landorus: { encounters: ['raid', 'research', 'specialtrade'] }, // research available 2025-02-21
773
778
  kyurem: { encounters: ['raid', 'specialtrade'] },
774
779
  // Kyurem-Black/White are not directly obtained from Pokemon GO but should be able to have legal Pokemon GO origin
775
780
  kyuremblack: { encounters: ['raid', 'specialtrade'] },
@@ -783,9 +788,9 @@ export const PokemonGoData = {
783
788
  fennekin: { encounters: ['wild'] },
784
789
  braixen: { encounters: ['wild'] },
785
790
  delphox: { encounters: ['wild'] },
786
- froakie: { encounters: ['wild', 'noshiny'] },
787
- frogadier: { encounters: ['wild', 'noshiny'] },
788
- greninja: { encounters: ['wild', 'noshiny'] },
791
+ froakie: { encounters: ['wild'] },
792
+ frogadier: { encounters: ['wild'] },
793
+ greninja: { encounters: ['wild'] },
789
794
  bunnelby: { encounters: ['wild'] },
790
795
  diggersby: { encounters: ['wild'] },
791
796
  fletchling: { encounters: ['wild'] },
@@ -793,45 +798,45 @@ export const PokemonGoData = {
793
798
  talonflame: { encounters: ['wild'] },
794
799
  // Scatterbug is actually obtained in a special type of encounter,
795
800
  // but the level and IV floors are the same as research encounters
796
- scatterbug: { encounters: ['research', 'noshiny'] },
797
- spewpa: { encounters: ['research', 'noshiny'] },
798
- vivillon: { encounters: ['research', 'noshiny'] },
799
- vivillonarchipelago: { encounters: ['research', 'noshiny'] },
800
- vivilloncontinent: { encounters: ['research', 'noshiny'] },
801
- vivillonelegant: { encounters: ['research', 'noshiny'] },
802
- vivillongarden: { encounters: ['research', 'noshiny'] },
803
- vivillonhighplains: { encounters: ['research', 'noshiny'] },
804
- vivillonicysnow: { encounters: ['research', 'noshiny'] },
805
- vivillonjungle: { encounters: ['research', 'noshiny'] },
806
- vivillonmarine: { encounters: ['research', 'noshiny'] },
807
- vivillonmodern: { encounters: ['research', 'noshiny'] },
808
- vivillonmonsoon: { encounters: ['research', 'noshiny'] },
809
- vivillonocean: { encounters: ['research', 'noshiny'] },
810
- vivillonpolar: { encounters: ['research', 'noshiny'] },
811
- vivillonriver: { encounters: ['research', 'noshiny'] },
812
- vivillonsandstorm: { encounters: ['research', 'noshiny'] },
813
- vivillonsavanna: { encounters: ['research', 'noshiny'] },
814
- vivillonsun: { encounters: ['research', 'noshiny'] },
815
- vivillontundra: { encounters: ['research', 'noshiny'] },
801
+ scatterbug: { encounters: ['research'] },
802
+ spewpa: { encounters: ['research'] },
803
+ vivillon: { encounters: ['research'] },
804
+ vivillonarchipelago: { encounters: ['research'] },
805
+ vivilloncontinent: { encounters: ['research'] },
806
+ vivillonelegant: { encounters: ['research'] },
807
+ vivillongarden: { encounters: ['research'] },
808
+ vivillonhighplains: { encounters: ['research'] },
809
+ vivillonicysnow: { encounters: ['research'] },
810
+ vivillonjungle: { encounters: ['research'] },
811
+ vivillonmarine: { encounters: ['research'] },
812
+ vivillonmodern: { encounters: ['research'] },
813
+ vivillonmonsoon: { encounters: ['research'] },
814
+ vivillonocean: { encounters: ['research'] },
815
+ vivillonpolar: { encounters: ['research'] },
816
+ vivillonriver: { encounters: ['research'] },
817
+ vivillonsandstorm: { encounters: ['research'] },
818
+ vivillonsavanna: { encounters: ['research'] },
819
+ vivillonsun: { encounters: ['research'] },
820
+ vivillontundra: { encounters: ['research'] },
816
821
  litleo: { encounters: ['wild'] },
817
822
  pyroar: { encounters: ['wild'] },
818
- flabebe: { encounters: ['wild', 'noshiny'] },
819
- flabebeblue: { encounters: ['wild', 'noshiny'] },
820
- flabebeorange: { encounters: ['wild', 'noshiny'] },
821
- flabebewhite: { encounters: ['wild', 'noshiny'] },
822
- flabebeyellow: { encounters: ['wild', 'noshiny'] },
823
- floette: { encounters: ['wild', 'noshiny'] },
824
- floetteblue: { encounters: ['wild', 'noshiny'] },
825
- floetteorange: { encounters: ['wild', 'noshiny'] },
826
- floettewhite: { encounters: ['wild', 'noshiny'] },
827
- floetteyellow: { encounters: ['wild', 'noshiny'] },
828
- florges: { encounters: ['wild', 'noshiny'] },
829
- florgesblue: { encounters: ['wild', 'noshiny'] },
830
- florgesorange: { encounters: ['wild', 'noshiny'] },
831
- florgeswhite: { encounters: ['wild', 'noshiny'] },
832
- florgesyellow: { encounters: ['wild', 'noshiny'] },
833
- pancham: { encounters: ['wild', '12kmegg', 'raid', 'research', 'nowildshiny'] },
834
- pangoro: { encounters: ['wild', '12kmegg', 'raid', 'research', 'nowildshiny'] },
823
+ flabebe: { encounters: ['wild'] },
824
+ flabebeblue: { encounters: ['wild'] },
825
+ flabebeorange: { encounters: ['wild'] },
826
+ flabebewhite: { encounters: ['wild'] },
827
+ flabebeyellow: { encounters: ['wild'] },
828
+ floette: { encounters: ['wild'] },
829
+ floetteblue: { encounters: ['wild'] },
830
+ floetteorange: { encounters: ['wild'] },
831
+ floettewhite: { encounters: ['wild'] },
832
+ floetteyellow: { encounters: ['wild'] },
833
+ florges: { encounters: ['wild'] },
834
+ florgesblue: { encounters: ['wild'] },
835
+ florgesorange: { encounters: ['wild'] },
836
+ florgeswhite: { encounters: ['wild'] },
837
+ florgesyellow: { encounters: ['wild'] },
838
+ pancham: { encounters: ['wild'] },
839
+ pangoro: { encounters: ['wild'] },
835
840
  furfrou: { encounters: ['wild'] },
836
841
  furfroudandy: { encounters: ['wild'] },
837
842
  furfroudebutante: { encounters: ['wild'] },
@@ -853,97 +858,105 @@ export const PokemonGoData = {
853
858
  malamar: { encounters: ['wild'] },
854
859
  binacle: { encounters: ['wild'] },
855
860
  barbaracle: { encounters: ['wild'] },
856
- skrelp: { encounters: ['wild', 'noshiny'] },
857
- dragalge: { encounters: ['wild', 'noshiny'] },
861
+ skrelp: { encounters: ['wild'] },
862
+ dragalge: { encounters: ['wild'] },
858
863
  clauncher: { encounters: ['wild'] },
859
864
  clawitzer: { encounters: ['wild'] },
860
865
  helioptile: { encounters: ['wild'] },
861
866
  heliolisk: { encounters: ['wild'] },
862
- tyrunt: { encounters: ['wild', 'noshiny'] },
863
- tyrantrum: { encounters: ['wild', 'noshiny'] },
864
- amaura: { encounters: ['wild', 'noshiny'] },
865
- aurorus: { encounters: ['wild', 'noshiny'] },
867
+ tyrunt: { encounters: ['wild'] },
868
+ tyrantrum: { encounters: ['wild'] },
869
+ amaura: { encounters: ['wild'] },
870
+ aurorus: { encounters: ['wild'] },
866
871
  sylveon: { encounters: ['wild'] },
867
872
  hawlucha: { encounters: ['wild', 'noshiny'] },
868
873
  dedenne: { encounters: ['wild'] },
869
874
  carbink: { encounters: ['research', 'noshiny'] },
870
- goomy: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
871
- sliggoo: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
872
- goodra: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
875
+ goomy: { encounters: ['wild'] },
876
+ sliggoo: { encounters: ['wild'] },
877
+ goodra: { encounters: ['wild'] },
873
878
  klefki: { encounters: ['wild', 'noshiny'] },
874
- phantump: { encounters: ['wild', 'noshiny'] },
875
- trevenant: { encounters: ['wild', 'noshiny'] },
876
- pumpkaboo: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
877
- pumpkaboolarge: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
878
- pumpkaboosmall: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
879
- pumpkaboosuper: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
880
- gourgeist: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
881
- gourgeistlarge: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
882
- gourgeistsmall: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
883
- gourgeistsuper: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
879
+ phantump: { encounters: ['wild'] },
880
+ trevenant: { encounters: ['wild'] },
881
+ pumpkaboo: { encounters: ['wild'] },
882
+ pumpkaboolarge: { encounters: ['wild'] },
883
+ pumpkaboosmall: { encounters: ['wild'] },
884
+ pumpkaboosuper: { encounters: ['wild'] },
885
+ gourgeist: { encounters: ['wild'] },
886
+ gourgeistlarge: { encounters: ['wild'] },
887
+ gourgeistsmall: { encounters: ['wild'] },
888
+ gourgeistsuper: { encounters: ['wild'] },
884
889
  bergmite: { encounters: ['wild'] },
885
890
  avalugg: { encounters: ['wild'] },
886
- avalugghisui: { encounters: ['raid'] },
891
+ avalugghisui: { encounters: ['wild'] },
887
892
  noibat: { encounters: ['wild'] },
888
893
  noivern: { encounters: ['wild'] },
889
894
  xerneas: { encounters: ['raid', 'specialtrade'] },
890
895
  yveltal: { encounters: ['raid', 'specialtrade'] },
891
- // zygarde: {encounters: ['research', 'noshiny']}, trading/transferring may be made available in the future
892
- // diancie: {encounters: ['research', 'noshiny', 'notrade']}, transferring may be made available in the future
896
+ // zygarde: {encounters: ['research', 'noshiny', 'notrade']},
897
+ diancie: { encounters: ['research', 'noshiny', 'notrade'] },
893
898
  hoopa: { encounters: ['raid', 'research', 'noshiny', 'notrade'] },
894
- rowlet: { encounters: ['wild', 'noshiny'] },
895
- dartrix: { encounters: ['wild', 'noshiny'] },
896
- decidueye: { encounters: ['wild', 'noshiny'] },
897
- litten: { encounters: ['wild', 'noshiny'] },
898
- torracat: { encounters: ['wild', 'noshiny'] },
899
- incineroar: { encounters: ['wild', 'noshiny'] },
900
- popplio: { encounters: ['wild', 'noshiny'] },
901
- brionne: { encounters: ['wild', 'noshiny'] },
902
- primarina: { encounters: ['wild', 'noshiny'] },
899
+ rowlet: { encounters: ['wild'] },
900
+ dartrix: { encounters: ['wild'] },
901
+ decidueye: { encounters: ['wild'] },
902
+ decidueyehisui: { encounters: ['raid'] },
903
+ litten: { encounters: ['wild'] },
904
+ torracat: { encounters: ['wild'] },
905
+ incineroar: { encounters: ['wild'] },
906
+ popplio: { encounters: ['wild'] },
907
+ brionne: { encounters: ['wild'] },
908
+ primarina: { encounters: ['wild'] },
903
909
  pikipek: { encounters: ['wild', 'noshiny'] },
904
910
  trumbeak: { encounters: ['wild', 'noshiny'] },
905
911
  toucannon: { encounters: ['wild', 'noshiny'] },
906
912
  yungoos: { encounters: ['wild'] },
907
913
  gumshoos: { encounters: ['wild'] },
908
- grubbin: { encounters: ['wild', 'noshiny'] },
909
- charjabug: { encounters: ['wild', 'noshiny'] },
910
- vikavolt: { encounters: ['wild', 'noshiny'] },
911
- crabrawler: { encounters: ['wild', 'noshiny'] },
912
- crabominable: { encounters: ['wild', 'noshiny'] },
913
- oricorio: { encounters: ['wild', 'noshiny'] },
914
- cutiefly: { encounters: ['wild', 'noshiny'] },
915
- ribombee: { encounters: ['wild', 'noshiny'] },
914
+ grubbin: { encounters: ['wild'] },
915
+ charjabug: { encounters: ['wild'] },
916
+ vikavolt: { encounters: ['wild'] },
917
+ crabrawler: { encounters: ['wild'] },
918
+ crabominable: { encounters: ['wild'] },
919
+ oricorio: { encounters: ['wild'] },
920
+ cutiefly: { encounters: ['wild'] },
921
+ ribombee: { encounters: ['wild'] },
916
922
  rockruff: { encounters: ['wild'] },
923
+ rockruffdusk: { encounters: ['wild'] },
917
924
  lycanroc: { encounters: ['wild'] },
918
925
  lycanrocmidnight: { encounters: ['wild'] },
919
- mareanie: { encounters: ['wild', 'noshiny'] },
920
- toxapex: { encounters: ['wild', 'noshiny'] },
921
- dewpider: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
922
- araquanid: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-04
926
+ lycanrocdusk: { encounters: ['wild'] },
927
+ mareanie: { encounters: ['wild'] },
928
+ toxapex: { encounters: ['wild'] },
929
+ // mudbray: {encounters: ['wild']}, available 2025-03-29
930
+ // mudsdale: {encounters: ['wild']},
931
+ dewpider: { encounters: ['wild'] },
932
+ araquanid: { encounters: ['wild'] },
923
933
  fomantis: { encounters: ['wild'] },
924
934
  lurantis: { encounters: ['wild'] },
925
- morelull: { encounters: ['wild', 'noshiny'] },
926
- shiinotic: { encounters: ['wild', 'noshiny'] },
927
- salandit: { encounters: ['12kmegg', 'noshiny'] },
928
- salazzle: { encounters: ['12kmegg', 'noshiny'] },
935
+ morelull: { encounters: ['wild'] },
936
+ shiinotic: { encounters: ['wild'] },
937
+ salandit: { encounters: ['12kmegg', 'research', 'noshiny'] },
938
+ salazzle: { encounters: ['12kmegg', 'research', 'noshiny'] },
929
939
  stufful: { encounters: ['wild'] },
930
940
  bewear: { encounters: ['wild'] },
931
- bounsweet: { encounters: ['wild', 'noshiny'] },
932
- steenee: { encounters: ['wild', 'noshiny'] },
933
- tsareena: { encounters: ['wild', 'noshiny'] },
941
+ bounsweet: { encounters: ['wild'] },
942
+ steenee: { encounters: ['wild'] },
943
+ tsareena: { encounters: ['wild'] },
934
944
  comfey: { encounters: ['wild', 'noshiny'] },
935
- oranguru: { encounters: ['wild', 'noshiny'] }, // shiny available on 2023-08-26
936
- wimpod: { encounters: ['wild', 'noshiny'] },
937
- golisopod: { encounters: ['wild', 'noshiny'] },
938
- sandygast: { encounters: ['raid', 'research', 'noshiny'] },
939
- palossand: { encounters: ['raid', 'research', 'noshiny'] },
940
- komala: { encounters: ['wild', 'noshiny'] },
941
- turtonator: { encounters: ['raid', 'research'] },
942
- togedemaru: { encounters: ['wild', 'noshiny'] },
945
+ oranguru: { encounters: ['wild'] },
946
+ passimian: { encounters: ['wild'] },
947
+ wimpod: { encounters: ['wild'] },
948
+ golisopod: { encounters: ['wild'] },
949
+ sandygast: { encounters: ['wild'] },
950
+ palossand: { encounters: ['wild'] },
951
+ komala: { encounters: ['wild'] },
952
+ turtonator: { encounters: ['egg', 'raid', 'research'] },
953
+ togedemaru: { encounters: ['wild'] },
943
954
  bruxish: { encounters: ['wild', 'noshiny'] },
944
- jangmoo: { encounters: ['wild', 'noshiny'] },
945
- hakamoo: { encounters: ['wild', 'noshiny'] },
946
- kommoo: { encounters: ['wild', 'noshiny'] },
955
+ drampa: { encounters: ['egg', 'raid', 'research'] },
956
+ dhelmise: { encounters: ['raid', 'noshiny'] },
957
+ jangmoo: { encounters: ['wild'] },
958
+ hakamoo: { encounters: ['wild'] },
959
+ kommoo: { encounters: ['wild'] },
947
960
  tapukoko: { encounters: ['raid'] },
948
961
  tapulele: { encounters: ['raid'] },
949
962
  tapubulu: { encounters: ['raid'] },
@@ -953,31 +966,111 @@ export const PokemonGoData = {
953
966
  solgaleo: { encounters: ['research', 'noshiny', 'specialtrade'] },
954
967
  lunala: { encounters: ['research', 'noshiny', 'specialtrade'] },
955
968
  nihilego: { encounters: ['raid', 'research', 'specialtrade'] },
956
- buzzwole: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
957
- pheromosa: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
958
- xurkitree: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
959
- celesteela: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
960
- kartana: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
961
- guzzlord: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
969
+ buzzwole: { encounters: ['raid', 'research', 'specialtrade'] },
970
+ pheromosa: { encounters: ['raid', 'research', 'specialtrade'] },
971
+ xurkitree: { encounters: ['raid', 'research', 'specialtrade'] },
972
+ celesteela: { encounters: ['raid', 'research', 'specialtrade'] },
973
+ kartana: { encounters: ['raid', 'research', 'specialtrade'] },
974
+ guzzlord: { encounters: ['raid', 'research', 'specialtrade'] },
975
+ poipole: { encounters: ['research', 'noshiny', 'specialtrade'] },
976
+ naganadel: { encounters: ['research', 'noshiny', 'specialtrade'] },
977
+ stakataka: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
978
+ blacephalon: { encounters: ['raid', 'research', 'noshiny', 'specialtrade'] },
979
+ necrozma: { encounters: ['raid', 'specialtrade'] },
962
980
  meltan: { encounters: ['wild'] },
963
981
  melmetal: { encounters: ['wild'] },
964
- skwovet: { encounters: ['wild', 'noshiny'] },
965
- greedent: { encounters: ['wild', 'noshiny'] },
982
+ grookey: { encounters: ['wild', 'noshiny'] },
983
+ thwackey: { encounters: ['wild', 'noshiny'] },
984
+ rillaboom: { encounters: ['wild', 'noshiny'] },
985
+ scorbunny: { encounters: ['wild', 'noshiny'] },
986
+ raboot: { encounters: ['wild', 'noshiny'] },
987
+ cinderace: { encounters: ['wild', 'noshiny'] },
988
+ sobble: { encounters: ['wild', 'noshiny'] },
989
+ drizzile: { encounters: ['wild', 'noshiny'] },
990
+ inteleon: { encounters: ['wild', 'noshiny'] },
991
+ skwovet: { encounters: ['wild'] },
992
+ greedent: { encounters: ['wild'] },
993
+ rookidee: { encounters: ['wild', 'noshiny'] },
994
+ corvisquire: { encounters: ['wild', 'noshiny'] },
995
+ corviknight: { encounters: ['wild', 'noshiny'] },
996
+ toxel: { encounters: ['egg'] },
997
+ toxtricity: { encounters: ['egg', 'raid', 'research'] },
998
+ toxtricitylowkey: { encounters: ['egg', 'raid', 'research'] },
999
+ sinistea: { encounters: ['raid', 'research', 'noshiny'] },
1000
+ sinisteaantique: { encounters: ['raid', 'research', 'noshiny'] },
1001
+ polteageist: { encounters: ['raid', 'research', 'noshiny'] },
1002
+ polteageistantique: { encounters: ['raid', 'research', 'noshiny'] },
1003
+ hatenna: { encounters: ['wild', 'noshiny'] },
1004
+ hattrem: { encounters: ['wild', 'noshiny'] },
1005
+ hatterene: { encounters: ['wild', 'noshiny'] },
966
1006
  obstagoon: { encounters: ['wild'] },
967
1007
  perrserker: { encounters: ['wild'] },
1008
+ cursola: { encounters: ['egg'] },
968
1009
  sirfetchd: { encounters: ['wild'] },
969
1010
  mrrime: { encounters: ['wild'] },
970
1011
  runerigus: { encounters: ['egg', 'raid', 'research'] },
971
- falinks: { encounters: ['wild', 'noshiny'] },
972
- zacian: { encounters: ['raid', 'noshiny', 'specialtrade'] },
973
- zamazenta: { encounters: ['raid', 'noshiny', 'specialtrade'] },
1012
+ falinks: { encounters: ['wild'] },
1013
+ stonjourner: { encounters: ['wild', 'noshiny'] },
1014
+ morpeko: { encounters: ['wild', 'noshiny'] },
1015
+ dreepy: { encounters: ['wild', 'noshiny'] },
1016
+ drakloak: { encounters: ['wild', 'noshiny'] },
1017
+ dragapult: { encounters: ['wild', 'noshiny'] },
1018
+ zacian: { encounters: ['raid', 'specialtrade'] },
1019
+ zamazenta: { encounters: ['raid', 'specialtrade'] },
974
1020
  zarude: { encounters: ['research', 'noshiny', 'notrade'] },
975
- regieleki: { encounters: ['raid', 'noshiny', 'specialtrade'] },
976
- regidrago: { encounters: ['raid', 'noshiny', 'specialtrade'] },
1021
+ regieleki: { encounters: ['raid', 'specialtrade'] },
1022
+ regidrago: { encounters: ['raid', 'specialtrade'] },
1023
+ wyrdeer: { encounters: ['wild'] },
977
1024
  kleavor: { encounters: ['wild'] },
978
1025
  ursaluna: { encounters: ['wild'] },
979
- sneasler: { encounters: ['wild', 'noshiny'] },
980
- overqwil: { encounters: ['wild', 'noshiny'] },
1026
+ sneasler: { encounters: ['wild'] },
1027
+ overqwil: { encounters: ['wild'] },
1028
+ enamorus: { encounters: ['raid', 'noshiny', 'specialtrade'] },
1029
+ sprigatito: { encounters: ['wild'] },
1030
+ floragato: { encounters: ['wild'] },
1031
+ meowscarada: { encounters: ['wild'] },
1032
+ fuecoco: { encounters: ['wild', 'noshiny'] }, // Shiny available 2025-03-08
1033
+ crocalor: { encounters: ['wild', 'noshiny'] },
1034
+ skeledirge: { encounters: ['wild', 'noshiny'] },
1035
+ quaxly: { encounters: ['wild', 'noshiny'] },
1036
+ quaxwell: { encounters: ['wild', 'noshiny'] },
1037
+ quaquaval: { encounters: ['wild', 'noshiny'] },
1038
+ lechonk: { encounters: ['wild'] },
1039
+ oinkologne: { encounters: ['wild'] },
1040
+ oinkolognef: { encounters: ['wild'] },
1041
+ nymble: { encounters: ['wild'] },
1042
+ lokix: { encounters: ['wild'] },
1043
+ tandemaus: { encounters: ['research', 'noshiny'] },
1044
+ maushold: { encounters: ['research', 'noshiny'] },
1045
+ mausholdfour: { encounters: ['research', 'noshiny'] },
1046
+ fidough: { encounters: ['wild', 'noshiny'] },
1047
+ dachsbun: { encounters: ['wild', 'noshiny'] },
1048
+ pawmi: { encounters: ['wild', 'noshiny'] },
1049
+ pawmo: { encounters: ['wild', 'noshiny'] },
1050
+ pawmot: { encounters: ['wild', 'noshiny'] },
1051
+ smoliv: { encounters: ['wild'] },
1052
+ dolliv: { encounters: ['wild'] },
1053
+ arboliva: { encounters: ['wild'] },
1054
+ charcadet: { encounters: ['egg', 'research', 'noshiny'] },
1055
+ armarouge: { encounters: ['egg', 'research', 'noshiny'] },
1056
+ ceruledge: { encounters: ['egg', 'research', 'noshiny'] },
1057
+ tadbulb: { encounters: ['wild', 'noshiny'] },
1058
+ bellibolt: { encounters: ['wild', 'noshiny'] },
1059
+ shroodle: { encounters: ['12kmegg', 'noshiny'] },
1060
+ grafaiai: { encounters: ['12kmegg', 'noshiny'] },
1061
+ wiglett: { encounters: ['wild', 'noshiny'] },
1062
+ wugtrio: { encounters: ['wild', 'noshiny'] },
1063
+ varoom: { encounters: ['12kmegg', 'noshiny'] },
1064
+ revavroom: { encounters: ['12kmegg', 'noshiny'] },
1065
+ greavard: { encounters: ['wild', 'noshiny'] },
1066
+ houndstone: { encounters: ['wild', 'noshiny'] },
1067
+ cetoddle: { encounters: ['wild'] },
1068
+ cetitan: { encounters: ['wild'] },
1069
+ annihilape: { encounters: ['wild'] },
1070
+ clodsire: { encounters: ['wild', 'noshiny'] },
1071
+ frigibax: { encounters: ['wild', 'noshiny'] },
1072
+ arctibax: { encounters: ['wild', 'noshiny'] },
1073
+ baxcalibur: { encounters: ['wild', 'noshiny'] },
981
1074
  gimmighoulroaming: { encounters: ['wild', 'noshiny'] },
982
1075
  gholdengo: { encounters: ['wild', 'noshiny'] },
983
1076
  };