@pkmn/sim 0.7.46 → 0.7.48

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 (97) hide show
  1. package/build/cjs/config/formats.js +228 -134
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/abilities.js +9 -6
  4. package/build/cjs/data/abilities.js.map +1 -1
  5. package/build/cjs/data/aliases.js +3 -3
  6. package/build/cjs/data/aliases.js.map +1 -1
  7. package/build/cjs/data/formats-data.js +185 -174
  8. package/build/cjs/data/formats-data.js.map +1 -1
  9. package/build/cjs/data/items.js +25 -4
  10. package/build/cjs/data/items.js.map +1 -1
  11. package/build/cjs/data/learnsets.js +157 -4
  12. package/build/cjs/data/learnsets.js.map +1 -1
  13. package/build/cjs/data/legality.js +260 -50
  14. package/build/cjs/data/legality.js.map +1 -1
  15. package/build/cjs/data/mods/gen2/scripts.js +3 -3
  16. package/build/cjs/data/mods/gen2/scripts.js.map +1 -1
  17. package/build/cjs/data/mods/gen3/formats-data.js +2 -2
  18. package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
  19. package/build/cjs/data/mods/gen3/scripts.js +1 -1
  20. package/build/cjs/data/mods/gen3/scripts.js.map +1 -1
  21. package/build/cjs/data/mods/gen4/moves.js +4 -4
  22. package/build/cjs/data/mods/gen4/moves.js.map +1 -1
  23. package/build/cjs/data/mods/gen5/formats-data.js +1 -1
  24. package/build/cjs/data/mods/gen5/formats-data.js.map +1 -1
  25. package/build/cjs/data/mods/gen5/moves.js +1 -1
  26. package/build/cjs/data/mods/gen5/moves.js.map +1 -1
  27. package/build/cjs/data/moves.js +13 -18
  28. package/build/cjs/data/moves.js.map +1 -1
  29. package/build/cjs/data/pokedex.js +39 -3
  30. package/build/cjs/data/pokedex.js.map +1 -1
  31. package/build/cjs/data/pokemongo.js +987 -0
  32. package/build/cjs/data/pokemongo.js.map +1 -0
  33. package/build/cjs/data/rulesets.js +51 -0
  34. package/build/cjs/data/rulesets.js.map +1 -1
  35. package/build/cjs/sim/battle-actions.js +8 -7
  36. package/build/cjs/sim/battle-actions.js.map +1 -1
  37. package/build/cjs/sim/dex-species.js +4 -0
  38. package/build/cjs/sim/dex-species.js.map +1 -1
  39. package/build/cjs/sim/dex.js +3 -2
  40. package/build/cjs/sim/dex.js.map +1 -1
  41. package/build/cjs/sim/pokemon.js +3 -0
  42. package/build/cjs/sim/pokemon.js.map +1 -1
  43. package/build/cjs/sim/team-validator.js +389 -67
  44. package/build/cjs/sim/team-validator.js.map +1 -1
  45. package/build/esm/config/formats.mjs +228 -134
  46. package/build/esm/config/formats.mjs.map +1 -1
  47. package/build/esm/data/abilities.mjs +9 -6
  48. package/build/esm/data/abilities.mjs.map +1 -1
  49. package/build/esm/data/aliases.mjs +3 -3
  50. package/build/esm/data/aliases.mjs.map +1 -1
  51. package/build/esm/data/formats-data.mjs +185 -174
  52. package/build/esm/data/formats-data.mjs.map +1 -1
  53. package/build/esm/data/items.mjs +25 -4
  54. package/build/esm/data/items.mjs.map +1 -1
  55. package/build/esm/data/learnsets.mjs +157 -4
  56. package/build/esm/data/learnsets.mjs.map +1 -1
  57. package/build/esm/data/legality.mjs +260 -50
  58. package/build/esm/data/legality.mjs.map +1 -1
  59. package/build/esm/data/mods/gen2/scripts.mjs +3 -3
  60. package/build/esm/data/mods/gen2/scripts.mjs.map +1 -1
  61. package/build/esm/data/mods/gen3/formats-data.mjs +2 -2
  62. package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
  63. package/build/esm/data/mods/gen3/scripts.mjs +1 -1
  64. package/build/esm/data/mods/gen3/scripts.mjs.map +1 -1
  65. package/build/esm/data/mods/gen4/moves.mjs +4 -4
  66. package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
  67. package/build/esm/data/mods/gen5/formats-data.mjs +1 -1
  68. package/build/esm/data/mods/gen5/formats-data.mjs.map +1 -1
  69. package/build/esm/data/mods/gen5/moves.mjs +1 -1
  70. package/build/esm/data/mods/gen5/moves.mjs.map +1 -1
  71. package/build/esm/data/moves.mjs +13 -18
  72. package/build/esm/data/moves.mjs.map +1 -1
  73. package/build/esm/data/pokedex.mjs +39 -3
  74. package/build/esm/data/pokedex.mjs.map +1 -1
  75. package/build/esm/data/pokemongo.mjs +984 -0
  76. package/build/esm/data/pokemongo.mjs.map +1 -0
  77. package/build/esm/data/rulesets.mjs +51 -0
  78. package/build/esm/data/rulesets.mjs.map +1 -1
  79. package/build/esm/sim/battle-actions.mjs +8 -7
  80. package/build/esm/sim/battle-actions.mjs.map +1 -1
  81. package/build/esm/sim/dex-species.mjs +4 -0
  82. package/build/esm/sim/dex-species.mjs.map +1 -1
  83. package/build/esm/sim/dex.mjs +3 -2
  84. package/build/esm/sim/dex.mjs.map +1 -1
  85. package/build/esm/sim/pokemon.mjs +3 -0
  86. package/build/esm/sim/pokemon.mjs.map +1 -1
  87. package/build/esm/sim/team-validator.mjs +389 -67
  88. package/build/esm/sim/team-validator.mjs.map +1 -1
  89. package/build/types/data/pokemongo.d.ts +31 -0
  90. package/build/types/sim/battle-actions.d.ts +1 -1
  91. package/build/types/sim/dex-species.d.ts +12 -0
  92. package/build/types/sim/dex.d.ts +3 -2
  93. package/build/types/sim/exported-global-types.d.ts +16 -2
  94. package/build/types/sim/global-types.d.ts +16 -2
  95. package/build/types/sim/pokemon.d.ts +2 -0
  96. package/build/types/sim/team-validator.d.ts +24 -1
  97. package/package.json +1 -1
@@ -168,8 +168,11 @@ export const Legality = {
168
168
  },
169
169
  charizard: {
170
170
  learnset: {
171
+ acrobatics: ['9S11'],
171
172
  airslash: ['6S1', '6S2'],
173
+ bellydrum: ['9S11'],
172
174
  blastburn: ['6S4'],
175
+ crunch: ['9S11'],
173
176
  dragonclaw: ['7S6', '7S7', '6S2'],
174
177
  dragondance: ['7S9'],
175
178
  dragonrage: ['7S6', '7S7', '7S8', '6S2', '3S0'],
@@ -181,7 +184,7 @@ export const Legality = {
181
184
  firespin: ['6S5', '3S0'],
182
185
  flameburst: ['6S1', '6S5'],
183
186
  flamethrower: ['8S10', '7S8', '6S5'],
184
- flareblitz: ['7S6', '7S7', '7S9', '6S4'],
187
+ flareblitz: ['9S11', '7S6', '7S7', '7S9', '6S4'],
185
188
  fly: ['7S6', '7S7', '7S9'],
186
189
  focusblast: ['6S3'],
187
190
  holdhands: ['6S3'],
@@ -273,6 +276,14 @@ export const Legality = {
273
276
  nature: 'Adamant',
274
277
  moves: ['flamethrower', 'dragontail', 'slash', 'seismictoss'],
275
278
  pokeball: 'pokeball'
279
+ },
280
+ {
281
+ generation: 9,
282
+ level: 50,
283
+ nature: 'Adamant',
284
+ ivs: { hp: 20, atk: 31, def: 20, spa: 20, spd: 20, spe: 31 },
285
+ moves: ['crunch', 'flareblitz', 'acrobatics', 'bellydrum'],
286
+ pokeball: 'pokeball'
276
287
  }
277
288
  ]
278
289
  },
@@ -572,18 +583,19 @@ export const Legality = {
572
583
  },
573
584
  pichu: {
574
585
  learnset: {
575
- charge: ['4S5'],
586
+ charge: ['9S6', '4S5'],
576
587
  charm: ['3S0', '3S1', '3S2', '3S3'],
577
588
  endeavor: ['4S5'],
578
- endure: ['4S5'],
589
+ endure: ['9S6', '4S5'],
579
590
  followme: ['3S3'],
580
591
  grassknot: ['4S4'],
592
+ helpinghand: ['9S6'],
581
593
  return: ['4S4'],
582
594
  surf: ['3S0'],
583
595
  teeterdance: ['3S2'],
584
596
  thunderbolt: ['4S4'],
585
597
  thundershock: ['3S0', '3S1', '3S2', '3S3'],
586
- volttackle: ['4S4', '4S5'],
598
+ volttackle: ['9S6', '4S4', '4S5'],
587
599
  wish: ['3S1']
588
600
  },
589
601
  eventData: [
@@ -592,7 +604,8 @@ export const Legality = {
592
604
  level: 5,
593
605
  shiny: 1,
594
606
  moves: ['thundershock', 'charm', 'surf'],
595
- pokeball: 'pokeball'
607
+ pokeball: 'pokeball',
608
+ emeraldEventEgg: true
596
609
  },
597
610
  {
598
611
  generation: 3,
@@ -613,7 +626,8 @@ export const Legality = {
613
626
  level: 5,
614
627
  shiny: 1,
615
628
  moves: ['thundershock', 'charm', 'followme'],
616
- pokeball: 'pokeball'
629
+ pokeball: 'pokeball',
630
+ emeraldEventEgg: true
617
631
  },
618
632
  {
619
633
  generation: 4,
@@ -629,6 +643,15 @@ export const Legality = {
629
643
  nature: 'Jolly',
630
644
  moves: ['charge', 'volttackle', 'endeavor', 'endure'],
631
645
  pokeball: 'cherishball'
646
+ },
647
+ {
648
+ generation: 9,
649
+ level: 30,
650
+ shiny: true,
651
+ gender: 'M',
652
+ nature: 'Jolly',
653
+ moves: ['charge', 'volttackle', 'endure', 'helpinghand'],
654
+ pokeball: 'cherishball'
632
655
  }
633
656
  ]
634
657
  },
@@ -657,10 +680,10 @@ export const Legality = {
657
680
  bestow: ['7S44', '6S42'],
658
681
  brickbreak: ['5S26'],
659
682
  celebrate: [
660
- '8S50', '8S51',
661
- '8S52', '7S43',
662
- '7S48', '6S31',
663
- '6S41'
683
+ '9S55', '8S50',
684
+ '8S51', '8S52',
685
+ '7S43', '7S48',
686
+ '6S31', '6S41'
664
687
  ],
665
688
  charm: ['6S36'],
666
689
  counter: ['7S48'],
@@ -702,14 +725,20 @@ export const Legality = {
702
725
  megakick: ['6S32'],
703
726
  nuzzle: ['7S47', '6S36', '6S38'],
704
727
  playnice: [
705
- '8S50', '7S43',
706
- '7S44', '7S45',
707
- '6S31', '6S35',
708
- '6S36', '6S38',
709
- '6S40', '6S42'
728
+ '9S55', '8S50',
729
+ '7S43', '7S44',
730
+ '7S45', '6S31',
731
+ '6S35', '6S36',
732
+ '6S38', '6S40',
733
+ '6S42'
710
734
  ],
711
735
  playrough: ['9S54'],
712
- present: ['4S12', '4S15', '4S17', '4S18', '4S20', '4S22'],
736
+ present: [
737
+ '9S55', '4S12',
738
+ '4S15', '4S17',
739
+ '4S18', '4S20',
740
+ '4S22'
741
+ ],
713
742
  protect: ['5S27', '4S14', '4S16'],
714
743
  quickattack: [
715
744
  '9S53', '8S50', '7S43',
@@ -754,12 +783,12 @@ export const Legality = {
754
783
  '3S8'
755
784
  ],
756
785
  thunderbolt: [
757
- '8S51', '7S49', '6S33',
758
- '6S34', '6S37', '5S26',
759
- '5S27', '5S30', '4S11',
760
- '4S13', '4S18', '4S21',
761
- '3S0', '3S6', '3S7',
762
- '3S8'
786
+ '9S55', '8S51', '7S49',
787
+ '6S33', '6S34', '6S37',
788
+ '5S26', '5S27', '5S30',
789
+ '4S11', '4S13', '4S18',
790
+ '4S21', '3S0', '3S6',
791
+ '3S7', '3S8'
763
792
  ],
764
793
  thundershock: [
765
794
  '9S53', '8S50',
@@ -1173,6 +1202,14 @@ export const Legality = {
1173
1202
  isHidden: true,
1174
1203
  moves: ['thunder', 'surf', 'playrough', 'irontail'],
1175
1204
  pokeball: 'pokeball'
1205
+ },
1206
+ {
1207
+ generation: 9,
1208
+ level: 25,
1209
+ gender: 'M',
1210
+ ivs: { hp: 25, atk: 25, def: 25, spa: 25, spd: 25, spe: 25 },
1211
+ moves: ['celebrate', 'playnice', 'present', 'thunderbolt'],
1212
+ pokeball: 'cherishball'
1176
1213
  }
1177
1214
  ],
1178
1215
  encounters: [
@@ -1625,7 +1662,8 @@ export const Legality = {
1625
1662
  shiny: 1,
1626
1663
  abilities: ['cutecharm'],
1627
1664
  moves: ['sing', 'charm', 'defensecurl', 'tickle'],
1628
- pokeball: 'pokeball'
1665
+ pokeball: 'pokeball',
1666
+ emeraldEventEgg: true
1629
1667
  }
1630
1668
  ]
1631
1669
  },
@@ -1908,7 +1946,8 @@ export const Legality = {
1908
1946
  level: 5,
1909
1947
  shiny: 1,
1910
1948
  moves: ['watersport', 'scratch', 'tailwhip', 'mudsport'],
1911
- pokeball: 'pokeball'
1949
+ pokeball: 'pokeball',
1950
+ emeraldEventEgg: true
1912
1951
  }
1913
1952
  ],
1914
1953
  encounters: [{ generation: 1, level: 15 }]
@@ -2003,11 +2042,11 @@ export const Legality = {
2003
2042
  arcanine: {
2004
2043
  learnset: {
2005
2044
  crunch: ['4S0'],
2006
- extremespeed: ['7S1', '4S0'],
2007
- flareblitz: ['7S1', '4S0'],
2008
- protect: ['7S1'],
2045
+ extremespeed: ['9S2', '7S1', '4S0'],
2046
+ flareblitz: ['9S2', '7S1', '4S0'],
2047
+ protect: ['9S2', '7S1'],
2009
2048
  thunderfang: ['4S0'],
2010
- willowisp: ['7S1']
2049
+ willowisp: ['9S2', '7S1']
2011
2050
  },
2012
2051
  eventData: [
2013
2052
  {
@@ -2023,6 +2062,17 @@ export const Legality = {
2023
2062
  abilities: ['intimidate'],
2024
2063
  moves: ['flareblitz', 'extremespeed', 'willowisp', 'protect'],
2025
2064
  pokeball: 'cherishball'
2065
+ },
2066
+ {
2067
+ generation: 9,
2068
+ level: 50,
2069
+ shiny: true,
2070
+ gender: 'F',
2071
+ nature: 'Adamant',
2072
+ abilities: ['intimidate'],
2073
+ ivs: { hp: 31, atk: 31, def: 31, spa: 8, spd: 31, spe: 31 },
2074
+ moves: ['flareblitz', 'extremespeed', 'willowisp', 'protect'],
2075
+ pokeball: 'cherishball'
2026
2076
  }
2027
2077
  ]
2028
2078
  },
@@ -4738,13 +4788,30 @@ export const Legality = {
4738
4788
  },
4739
4789
  mew: {
4740
4790
  learnset: {
4791
+ airslash: ['9S26'],
4741
4792
  amnesia: ['4S17'],
4742
4793
  ancientpower: ['4S14'],
4743
- aurasphere: ['4S14', '4S15', '4S16', '4S17', '4S18', '4S19'],
4794
+ aurasphere: [
4795
+ '9S26', '4S14',
4796
+ '4S15', '4S16',
4797
+ '4S17', '4S18',
4798
+ '4S19'
4799
+ ],
4744
4800
  barrier: ['7S24', '4S15'],
4801
+ darkpulse: ['9S26'],
4802
+ dazzlinggleam: ['9S26'],
4803
+ dragonpulse: ['9S26'],
4804
+ earthpower: ['9S26'],
4805
+ energyball: ['9S26'],
4745
4806
  fakeout: ['3S2', '3S3'],
4746
4807
  feintattack: ['3S4', '3S5'],
4808
+ flamethrower: ['9S26'],
4809
+ flashcannon: ['9S26'],
4810
+ hypervoice: ['9S26'],
4747
4811
  hypnosis: ['4S20', '3S6', '3S7'],
4812
+ icebeam: ['9S26'],
4813
+ lifedew: ['9S26'],
4814
+ lightscreen: ['9S26'],
4748
4815
  megapunch: ['4S16', '3S0'],
4749
4816
  metronome: [
4750
4817
  '7S24', '4S14',
@@ -4753,10 +4820,17 @@ export const Legality = {
4753
4820
  '4S19', '3S0'
4754
4821
  ],
4755
4822
  nightshade: ['3S8', '3S9'],
4823
+ pollenpuff: ['9S26'],
4756
4824
  pound: ['8S25', '7S23', '6S22', '4S21', '3S0', '3S1'],
4825
+ powergem: ['9S26'],
4757
4826
  psychic: ['7S24', '4S19'],
4827
+ psyshock: ['9S26'],
4758
4828
  return: ['4S20'],
4759
4829
  roleplay: ['3S10', '3S11'],
4830
+ shadowball: ['9S26'],
4831
+ sludgebomb: ['9S26'],
4832
+ surf: ['9S26'],
4833
+ swift: ['9S26'],
4760
4834
  synthesis: ['4S20'],
4761
4835
  teleport: [
4762
4836
  '4S14', '4S15',
@@ -4764,6 +4838,7 @@ export const Legality = {
4764
4838
  '4S18', '4S19',
4765
4839
  '4S20'
4766
4840
  ],
4841
+ thunderbolt: ['9S26'],
4767
4842
  transform: ['7S24', '4S18', '3S0', '3S1'],
4768
4843
  zapcannon: ['3S12', '3S13']
4769
4844
  },
@@ -4838,7 +4913,25 @@ export const Legality = {
4838
4913
  moves: ['psychic', 'barrier', 'metronome', 'transform'],
4839
4914
  pokeball: 'cherishball'
4840
4915
  },
4841
- { generation: 8, level: 1, moves: ['pound'], pokeball: 'pokeball' }
4916
+ { generation: 8, level: 1, moves: ['pound'], pokeball: 'pokeball' },
4917
+ {
4918
+ generation: 9,
4919
+ level: 5,
4920
+ moves: [
4921
+ 'pollenpuff', 'darkpulse',
4922
+ 'dragonpulse', 'thunderbolt',
4923
+ 'dazzlinggleam', 'aurasphere',
4924
+ 'flamethrower', 'airslash',
4925
+ 'shadowball', 'energyball',
4926
+ 'earthpower', 'icebeam',
4927
+ 'hypervoice', 'sludgebomb',
4928
+ 'psyshock', 'powergem',
4929
+ 'flashcannon', 'surf',
4930
+ 'swift', 'lightscreen',
4931
+ 'lifedew'
4932
+ ],
4933
+ pokeball: 'pokeball'
4934
+ }
4842
4935
  ],
4843
4936
  eventOnly: true
4844
4937
  },
@@ -5250,7 +5343,8 @@ export const Legality = {
5250
5343
  level: 5,
5251
5344
  shiny: 1,
5252
5345
  moves: ['splash', 'charm', 'encore', 'tickle'],
5253
- pokeball: 'pokeball'
5346
+ pokeball: 'pokeball',
5347
+ emeraldEventEgg: true
5254
5348
  }
5255
5349
  ]
5256
5350
  },
@@ -5542,7 +5636,8 @@ export const Legality = {
5542
5636
  level: 5,
5543
5637
  shiny: 1,
5544
5638
  moves: ['tackle', 'mudsport'],
5545
- pokeball: 'pokeball'
5639
+ pokeball: 'pokeball',
5640
+ emeraldEventEgg: true
5546
5641
  },
5547
5642
  {
5548
5643
  generation: 7,
@@ -6525,7 +6620,8 @@ export const Legality = {
6525
6620
  shiny: 1,
6526
6621
  abilities: ['pickup'],
6527
6622
  moves: ['tackle', 'growl', 'tailwhip', 'extremespeed'],
6528
- pokeball: 'pokeball'
6623
+ pokeball: 'pokeball',
6624
+ emeraldEventEgg: true
6529
6625
  }
6530
6626
  ],
6531
6627
  encounters: [{ generation: 3, level: 2 }]
@@ -6640,7 +6736,8 @@ export const Legality = {
6640
6736
  level: 5,
6641
6737
  shiny: 1,
6642
6738
  moves: ['peck', 'growl', 'focusenergy', 'featherdance'],
6643
- pokeball: 'pokeball'
6739
+ pokeball: 'pokeball',
6740
+ emeraldEventEgg: true
6644
6741
  }
6645
6742
  ],
6646
6743
  encounters: [{ generation: 3, level: 4 }]
@@ -6737,7 +6834,8 @@ export const Legality = {
6737
6834
  level: 5,
6738
6835
  shiny: 1,
6739
6836
  moves: ['bubble', 'mudsport'],
6740
- pokeball: 'pokeball'
6837
+ pokeball: 'pokeball',
6838
+ emeraldEventEgg: true
6741
6839
  },
6742
6840
  {
6743
6841
  generation: 3,
@@ -6803,7 +6901,8 @@ export const Legality = {
6803
6901
  level: 5,
6804
6902
  shiny: 1,
6805
6903
  moves: ['pound', 'uproar', 'teeterdance'],
6806
- pokeball: 'pokeball'
6904
+ pokeball: 'pokeball',
6905
+ emeraldEventEgg: true
6807
6906
  }
6808
6907
  ]
6809
6908
  },
@@ -6880,7 +6979,8 @@ export const Legality = {
6880
6979
  shiny: 1,
6881
6980
  abilities: ['cutecharm'],
6882
6981
  moves: ['tackle', 'growl', 'tailwhip', 'payday'],
6883
- pokeball: 'pokeball'
6982
+ pokeball: 'pokeball',
6983
+ emeraldEventEgg: true
6884
6984
  },
6885
6985
  {
6886
6986
  generation: 3,
@@ -6888,7 +6988,8 @@ export const Legality = {
6888
6988
  shiny: 1,
6889
6989
  abilities: ['cutecharm'],
6890
6990
  moves: ['growl', 'tackle', 'tailwhip', 'rollout'],
6891
- pokeball: 'pokeball'
6991
+ pokeball: 'pokeball',
6992
+ emeraldEventEgg: true
6892
6993
  },
6893
6994
  {
6894
6995
  generation: 3,
@@ -7129,7 +7230,8 @@ export const Legality = {
7129
7230
  level: 5,
7130
7231
  shiny: 1,
7131
7232
  moves: ['growl', 'thunderwave', 'watersport'],
7132
- pokeball: 'pokeball'
7233
+ pokeball: 'pokeball',
7234
+ emeraldEventEgg: true
7133
7235
  },
7134
7236
  {
7135
7237
  generation: 3,
@@ -7153,7 +7255,8 @@ export const Legality = {
7153
7255
  level: 5,
7154
7256
  shiny: 1,
7155
7257
  moves: ['growl', 'thunderwave', 'mudsport'],
7156
- pokeball: 'pokeball'
7258
+ pokeball: 'pokeball',
7259
+ emeraldEventEgg: true
7157
7260
  },
7158
7261
  {
7159
7262
  generation: 3,
@@ -7342,7 +7445,8 @@ export const Legality = {
7342
7445
  shiny: 1,
7343
7446
  abilities: ['owntempo'],
7344
7447
  moves: ['splash', 'uproar'],
7345
- pokeball: 'pokeball'
7448
+ pokeball: 'pokeball',
7449
+ emeraldEventEgg: true
7346
7450
  }
7347
7451
  ]
7348
7452
  },
@@ -7355,7 +7459,8 @@ export const Legality = {
7355
7459
  level: 5,
7356
7460
  shiny: 1,
7357
7461
  moves: ['tackle', 'uproar', 'sing'],
7358
- pokeball: 'pokeball'
7462
+ pokeball: 'pokeball',
7463
+ emeraldEventEgg: true
7359
7464
  }
7360
7465
  ]
7361
7466
  },
@@ -7399,7 +7504,8 @@ export const Legality = {
7399
7504
  level: 5,
7400
7505
  shiny: 1,
7401
7506
  moves: ['poisonsting', 'leer', 'absorb', 'encore'],
7402
- pokeball: 'pokeball'
7507
+ pokeball: 'pokeball',
7508
+ emeraldEventEgg: true
7403
7509
  }
7404
7510
  ]
7405
7511
  },
@@ -7428,7 +7534,8 @@ export const Legality = {
7428
7534
  level: 5,
7429
7535
  shiny: 1,
7430
7536
  moves: ['peck', 'growl', 'falseswipe'],
7431
- pokeball: 'pokeball'
7537
+ pokeball: 'pokeball',
7538
+ emeraldEventEgg: true
7432
7539
  },
7433
7540
  {
7434
7541
  generation: 5,
@@ -7651,7 +7758,8 @@ export const Legality = {
7651
7758
  level: 5,
7652
7759
  shiny: 1,
7653
7760
  moves: ['bubble', 'watersport'],
7654
- pokeball: 'pokeball'
7761
+ pokeball: 'pokeball',
7762
+ emeraldEventEgg: true
7655
7763
  }
7656
7764
  ]
7657
7765
  },
@@ -9453,11 +9561,11 @@ export const Legality = {
9453
9561
  },
9454
9562
  gastrodoneast: {
9455
9563
  learnset: {
9456
- earthpower: ['8S1', '8S0'],
9457
- icebeam: ['8S1', '8S0'],
9458
- protect: ['8S1', '8S0'],
9564
+ earthpower: ['9S2', '8S1', '8S0'],
9565
+ icebeam: ['9S2', '8S1', '8S0'],
9566
+ protect: ['9S2', '8S1', '8S0'],
9459
9567
  surf: ['8S0'],
9460
- yawn: ['8S1']
9568
+ yawn: ['9S2', '8S1']
9461
9569
  },
9462
9570
  eventData: [
9463
9571
  {
@@ -9479,6 +9587,16 @@ export const Legality = {
9479
9587
  ivs: { hp: 31, atk: 0, def: 31, spa: 31, spd: 31, spe: 0 },
9480
9588
  moves: ['protect', 'yawn', 'icebeam', 'earthpower'],
9481
9589
  pokeball: 'cherishball'
9590
+ },
9591
+ {
9592
+ generation: 9,
9593
+ level: 50,
9594
+ gender: 'M',
9595
+ nature: 'Bold',
9596
+ abilities: ['stormdrain'],
9597
+ ivs: { hp: 31, atk: 0, def: 31, spa: 31, spd: 31, spe: 8 },
9598
+ moves: ['protect', 'yawn', 'icebeam', 'earthpower'],
9599
+ pokeball: 'cherishball'
9482
9600
  }
9483
9601
  ],
9484
9602
  encounters: [{ generation: 4, level: 20 }]
@@ -9486,7 +9604,36 @@ export const Legality = {
9486
9604
  drifblim: { encounters: [{ generation: 7, level: 11, pokeball: 'pokeball' }] },
9487
9605
  purugly: { encounters: [{ generation: 6, level: 32, maxEggMoves: 1 }] },
9488
9606
  skuntank: { encounters: [{ generation: 4, level: 29 }] },
9489
- bronzong: { encounters: [{ generation: 6, level: 30 }] },
9607
+ bronzong: {
9608
+ learnset: {
9609
+ bodypress: ['9S0'],
9610
+ flashcannon: ['9S1'],
9611
+ gyroball: ['9S1'],
9612
+ hypnosis: ['9S1'],
9613
+ irondefense: ['9S0'],
9614
+ protect: ['9S0'],
9615
+ psychic: ['9S1'],
9616
+ trickroom: ['9S0']
9617
+ },
9618
+ eventData: [
9619
+ {
9620
+ generation: 9,
9621
+ level: 50,
9622
+ nature: 'Relaxed',
9623
+ ivs: { hp: 31, atk: 31, def: 31, spa: 22, spd: 31, spe: 0 },
9624
+ moves: ['bodypress', 'irondefense', 'protect', 'trickroom'],
9625
+ pokeball: 'cherishball'
9626
+ },
9627
+ {
9628
+ generation: 9,
9629
+ level: 50,
9630
+ nature: 'Modest',
9631
+ moves: ['flashcannon', 'gyroball', 'psychic', 'hypnosis'],
9632
+ pokeball: 'cherishball'
9633
+ }
9634
+ ],
9635
+ encounters: [{ generation: 6, level: 30 }]
9636
+ },
9490
9637
  chatot: {
9491
9638
  learnset: { chatter: ['4S0'], furyattack: ['4S0'], mirrormove: ['4S0'], taunt: ['4S0'] },
9492
9639
  eventData: [
@@ -14303,6 +14450,26 @@ export const Legality = {
14303
14450
  }
14304
14451
  ]
14305
14452
  },
14453
+ grimmsnarl: {
14454
+ learnset: {
14455
+ lightscreen: ['9S0'],
14456
+ reflect: ['9S0'],
14457
+ spiritbreak: ['9S0'],
14458
+ thunderwave: ['9S0']
14459
+ },
14460
+ eventData: [
14461
+ {
14462
+ generation: 9,
14463
+ level: 50,
14464
+ nature: 'Calm',
14465
+ shiny: true,
14466
+ abilities: ['prankster'],
14467
+ ivs: { hp: 31, atk: 0, def: 31, spa: 31, spd: 31, spe: 31 },
14468
+ moves: ['thunderwave', 'spiritbreak', 'reflect', 'lightscreen'],
14469
+ pokeball: 'cherishball'
14470
+ }
14471
+ ]
14472
+ },
14306
14473
  milcery: {
14307
14474
  learnset: {
14308
14475
  attract: ['8S0'],
@@ -14631,6 +14798,33 @@ export const Legality = {
14631
14798
  ],
14632
14799
  eventOnly: true
14633
14800
  },
14801
+ lechonk: {
14802
+ learnset: { covet: ['9S0'], dig: ['9S0'], mudshot: ['9S0'], terablast: ['9S0'] },
14803
+ eventData: [
14804
+ {
14805
+ generation: 9,
14806
+ level: 15,
14807
+ gender: 'M',
14808
+ isHidden: true,
14809
+ moves: ['terablast', 'mudshot', 'covet', 'dig'],
14810
+ pokeball: 'cherishball'
14811
+ }
14812
+ ]
14813
+ },
14814
+ palafin: {
14815
+ learnset: { haze: ['9S0'], jetpunch: ['9S0'], protect: ['9S0'], wavecrash: ['9S0'] },
14816
+ eventData: [
14817
+ {
14818
+ generation: 9,
14819
+ level: 50,
14820
+ gender: 'F',
14821
+ nature: 'Adamant',
14822
+ ivs: { hp: 31, atk: 31, def: 31, spa: 17, spd: 31, spe: 31 },
14823
+ moves: ['jetpunch', 'wavecrash', 'haze', 'protect'],
14824
+ pokeball: 'cherishball'
14825
+ }
14826
+ ]
14827
+ },
14634
14828
  orthworm: {
14635
14829
  learnset: { headbutt: ['9S0'], irontail: ['9S0'], sandstorm: ['9S0'], wrap: ['9S0'] },
14636
14830
  eventData: [
@@ -14657,6 +14851,22 @@ export const Legality = {
14657
14851
  }
14658
14852
  ]
14659
14853
  },
14854
+ tatsugiristretchy: {
14855
+ learnset: {
14856
+ celebrate: ['9S0'],
14857
+ dracometeor: ['9S0'],
14858
+ helpinghand: ['9S0'],
14859
+ muddywater: ['9S0']
14860
+ },
14861
+ eventData: [
14862
+ {
14863
+ generation: 9,
14864
+ level: 50,
14865
+ moves: ['dracometeor', 'muddywater', 'helpinghand', 'celebrate'],
14866
+ pokeball: 'cherishball'
14867
+ }
14868
+ ]
14869
+ },
14660
14870
  bombirdier: {
14661
14871
  learnset: { pluck: ['9S0'], rockthrow: ['9S0'], torment: ['9S0'], wingattack: ['9S0'] },
14662
14872
  eventData: [