@pkmn/sim 0.9.37 → 0.10.0

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 (243) hide show
  1. package/build/cjs/config/formats.js +185 -173
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/abilities.js +62 -72
  4. package/build/cjs/data/abilities.js.map +1 -1
  5. package/build/cjs/data/aliases.js +11 -4
  6. package/build/cjs/data/aliases.js.map +1 -1
  7. package/build/cjs/data/formats-data.js +164 -64
  8. package/build/cjs/data/formats-data.js.map +1 -1
  9. package/build/cjs/data/items.js +406 -2
  10. package/build/cjs/data/items.js.map +1 -1
  11. package/build/cjs/data/legality.js +548 -113
  12. package/build/cjs/data/legality.js.map +1 -1
  13. package/build/cjs/data/mods/gen1/conditions.js +12 -1
  14. package/build/cjs/data/mods/gen1/conditions.js.map +1 -1
  15. package/build/cjs/data/mods/gen1/scripts.js +14 -28
  16. package/build/cjs/data/mods/gen1/scripts.js.map +1 -1
  17. package/build/cjs/data/mods/gen2/formats-data.js +2 -2
  18. package/build/cjs/data/mods/gen2/formats-data.js.map +1 -1
  19. package/build/cjs/data/mods/gen3/abilities.js +1 -3
  20. package/build/cjs/data/mods/gen3/abilities.js.map +1 -1
  21. package/build/cjs/data/mods/gen3/formats-data.js +5 -11
  22. package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
  23. package/build/cjs/data/mods/gen3/moves.js +24 -0
  24. package/build/cjs/data/mods/gen3/moves.js.map +1 -1
  25. package/build/cjs/data/mods/gen4/abilities.js +2 -14
  26. package/build/cjs/data/mods/gen4/abilities.js.map +1 -1
  27. package/build/cjs/data/mods/gen4/formats-data.js.map +1 -1
  28. package/build/cjs/data/mods/gen4/moves.js +37 -6
  29. package/build/cjs/data/mods/gen4/moves.js.map +1 -1
  30. package/build/cjs/data/mods/gen5/abilities.js +4 -0
  31. package/build/cjs/data/mods/gen5/abilities.js.map +1 -1
  32. package/build/cjs/data/mods/gen5/formats-data.js.map +1 -1
  33. package/build/cjs/data/mods/gen6/pokedex.js +104 -0
  34. package/build/cjs/data/mods/gen6/pokedex.js.map +1 -1
  35. package/build/cjs/data/mods/gen7/abilities.js +11 -26
  36. package/build/cjs/data/mods/gen7/abilities.js.map +1 -1
  37. package/build/cjs/data/mods/gen7/formats-data.js +1 -1
  38. package/build/cjs/data/mods/gen7/formats-data.js.map +1 -1
  39. package/build/cjs/data/mods/gen7/pokedex.js +96 -0
  40. package/build/cjs/data/mods/gen7/pokedex.js.map +1 -1
  41. package/build/cjs/data/mods/gen8/abilities.js +0 -3
  42. package/build/cjs/data/mods/gen8/abilities.js.map +1 -1
  43. package/build/cjs/data/mods/gen8bdsp/abilities.d.ts +1 -0
  44. package/build/cjs/data/mods/gen8bdsp/abilities.js +42 -0
  45. package/build/cjs/data/mods/gen8bdsp/abilities.js.map +1 -0
  46. package/build/cjs/data/mods/gen8bdsp/formats-data.d.ts +1 -0
  47. package/build/cjs/data/mods/gen8bdsp/formats-data.js +1837 -0
  48. package/build/cjs/data/mods/gen8bdsp/formats-data.js.map +1 -0
  49. package/build/cjs/data/mods/gen8bdsp/index.d.ts +6 -0
  50. package/build/cjs/data/mods/gen8bdsp/index.js +16 -0
  51. package/build/cjs/data/mods/gen8bdsp/index.js.map +1 -0
  52. package/build/cjs/data/mods/gen8bdsp/items.d.ts +1 -0
  53. package/build/cjs/data/mods/gen8bdsp/items.js +831 -0
  54. package/build/cjs/data/mods/gen8bdsp/items.js.map +1 -0
  55. package/build/cjs/data/mods/gen8bdsp/learnsets.d.ts +3 -0
  56. package/build/cjs/data/mods/gen8bdsp/learnsets.js +25784 -0
  57. package/build/cjs/data/mods/gen8bdsp/learnsets.js.map +1 -0
  58. package/build/cjs/data/mods/gen8bdsp/legality.d.ts +3 -0
  59. package/build/cjs/data/mods/gen8bdsp/legality.js +242 -0
  60. package/build/cjs/data/mods/gen8bdsp/legality.js.map +1 -0
  61. package/build/cjs/data/mods/gen8bdsp/moves.d.ts +1 -0
  62. package/build/cjs/data/mods/gen8bdsp/moves.js +919 -0
  63. package/build/cjs/data/mods/gen8bdsp/moves.js.map +1 -0
  64. package/build/cjs/data/mods/gen8bdsp/pokedex.d.ts +1 -0
  65. package/build/cjs/data/mods/gen8bdsp/pokedex.js +99 -0
  66. package/build/cjs/data/mods/gen8bdsp/pokedex.js.map +1 -0
  67. package/build/cjs/data/mods/gen8bdsp/scripts.d.ts +1 -0
  68. package/build/cjs/data/mods/gen8bdsp/scripts.js +15 -0
  69. package/build/cjs/data/mods/gen8bdsp/scripts.js.map +1 -0
  70. package/build/cjs/data/mods/gen8legends/formats-data.d.ts +1 -0
  71. package/build/cjs/data/mods/gen8legends/formats-data.js +2775 -0
  72. package/build/cjs/data/mods/gen8legends/formats-data.js.map +1 -0
  73. package/build/cjs/data/mods/gen8legends/index.d.ts +2 -0
  74. package/build/cjs/data/mods/gen8legends/index.js +8 -0
  75. package/build/cjs/data/mods/gen8legends/index.js.map +1 -0
  76. package/build/cjs/data/mods/gen8legends/learnsets.d.ts +3 -0
  77. package/build/cjs/data/mods/gen8legends/learnsets.js +5553 -0
  78. package/build/cjs/data/mods/gen8legends/learnsets.js.map +1 -0
  79. package/build/cjs/data/mods/gen8legends/legality.d.ts +3 -0
  80. package/build/cjs/data/mods/gen8legends/legality.js +149 -0
  81. package/build/cjs/data/mods/gen8legends/legality.js.map +1 -0
  82. package/build/cjs/data/mods/gen8legends/scripts.d.ts +1 -0
  83. package/build/cjs/data/mods/gen8legends/scripts.js +8 -0
  84. package/build/cjs/data/mods/gen8legends/scripts.js.map +1 -0
  85. package/build/cjs/data/moves.js +53 -55
  86. package/build/cjs/data/moves.js.map +1 -1
  87. package/build/cjs/data/pokedex.js +735 -10
  88. package/build/cjs/data/pokedex.js.map +1 -1
  89. package/build/cjs/data/rulesets.js +78 -0
  90. package/build/cjs/data/rulesets.js.map +1 -1
  91. package/build/cjs/data/text/items.js +108 -0
  92. package/build/cjs/data/text/items.js.map +1 -1
  93. package/build/cjs/data/text/moves.js +6 -2
  94. package/build/cjs/data/text/moves.js.map +1 -1
  95. package/build/cjs/sim/battle-actions.js +17 -7
  96. package/build/cjs/sim/battle-actions.js.map +1 -1
  97. package/build/cjs/sim/battle-queue.d.ts +11 -6
  98. package/build/cjs/sim/battle-queue.js.map +1 -1
  99. package/build/cjs/sim/battle.d.ts +2 -2
  100. package/build/cjs/sim/battle.js +23 -28
  101. package/build/cjs/sim/battle.js.map +1 -1
  102. package/build/cjs/sim/dex-conditions.d.ts +2 -1
  103. package/build/cjs/sim/dex-conditions.js.map +1 -1
  104. package/build/cjs/sim/dex-formats.d.ts +2 -0
  105. package/build/cjs/sim/dex-formats.js +12 -1
  106. package/build/cjs/sim/dex-formats.js.map +1 -1
  107. package/build/cjs/sim/dex-species.d.ts +13 -2
  108. package/build/cjs/sim/dex-species.js +40 -19
  109. package/build/cjs/sim/dex-species.js.map +1 -1
  110. package/build/cjs/sim/dex.js +11 -0
  111. package/build/cjs/sim/dex.js.map +1 -1
  112. package/build/cjs/sim/exported-global-types.d.ts +5 -4
  113. package/build/cjs/sim/global-types.d.ts +5 -4
  114. package/build/cjs/sim/pokemon.d.ts +6 -4
  115. package/build/cjs/sim/pokemon.js +31 -24
  116. package/build/cjs/sim/pokemon.js.map +1 -1
  117. package/build/cjs/sim/side.js +11 -41
  118. package/build/cjs/sim/side.js.map +1 -1
  119. package/build/cjs/sim/team-validator.d.ts +1 -0
  120. package/build/cjs/sim/team-validator.js +50 -18
  121. package/build/cjs/sim/team-validator.js.map +1 -1
  122. package/build/esm/config/formats.mjs +185 -173
  123. package/build/esm/config/formats.mjs.map +1 -1
  124. package/build/esm/data/abilities.mjs +62 -72
  125. package/build/esm/data/abilities.mjs.map +1 -1
  126. package/build/esm/data/aliases.mjs +11 -4
  127. package/build/esm/data/aliases.mjs.map +1 -1
  128. package/build/esm/data/formats-data.mjs +164 -64
  129. package/build/esm/data/formats-data.mjs.map +1 -1
  130. package/build/esm/data/items.mjs +406 -2
  131. package/build/esm/data/items.mjs.map +1 -1
  132. package/build/esm/data/legality.mjs +548 -113
  133. package/build/esm/data/legality.mjs.map +1 -1
  134. package/build/esm/data/mods/gen1/conditions.mjs +12 -1
  135. package/build/esm/data/mods/gen1/conditions.mjs.map +1 -1
  136. package/build/esm/data/mods/gen1/scripts.mjs +14 -28
  137. package/build/esm/data/mods/gen1/scripts.mjs.map +1 -1
  138. package/build/esm/data/mods/gen2/formats-data.mjs +2 -2
  139. package/build/esm/data/mods/gen2/formats-data.mjs.map +1 -1
  140. package/build/esm/data/mods/gen3/abilities.mjs +1 -3
  141. package/build/esm/data/mods/gen3/abilities.mjs.map +1 -1
  142. package/build/esm/data/mods/gen3/formats-data.mjs +5 -11
  143. package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
  144. package/build/esm/data/mods/gen3/moves.mjs +24 -0
  145. package/build/esm/data/mods/gen3/moves.mjs.map +1 -1
  146. package/build/esm/data/mods/gen4/abilities.mjs +2 -14
  147. package/build/esm/data/mods/gen4/abilities.mjs.map +1 -1
  148. package/build/esm/data/mods/gen4/formats-data.mjs.map +1 -1
  149. package/build/esm/data/mods/gen4/moves.mjs +37 -6
  150. package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
  151. package/build/esm/data/mods/gen5/abilities.mjs +4 -0
  152. package/build/esm/data/mods/gen5/abilities.mjs.map +1 -1
  153. package/build/esm/data/mods/gen5/formats-data.mjs.map +1 -1
  154. package/build/esm/data/mods/gen6/pokedex.mjs +104 -0
  155. package/build/esm/data/mods/gen6/pokedex.mjs.map +1 -1
  156. package/build/esm/data/mods/gen7/abilities.mjs +11 -26
  157. package/build/esm/data/mods/gen7/abilities.mjs.map +1 -1
  158. package/build/esm/data/mods/gen7/formats-data.mjs +1 -1
  159. package/build/esm/data/mods/gen7/formats-data.mjs.map +1 -1
  160. package/build/esm/data/mods/gen7/pokedex.mjs +96 -0
  161. package/build/esm/data/mods/gen7/pokedex.mjs.map +1 -1
  162. package/build/esm/data/mods/gen8/abilities.mjs +0 -3
  163. package/build/esm/data/mods/gen8/abilities.mjs.map +1 -1
  164. package/build/esm/data/mods/gen8bdsp/abilities.d.mts +1 -0
  165. package/build/esm/data/mods/gen8bdsp/abilities.mjs +39 -0
  166. package/build/esm/data/mods/gen8bdsp/abilities.mjs.map +1 -0
  167. package/build/esm/data/mods/gen8bdsp/formats-data.d.mts +1 -0
  168. package/build/esm/data/mods/gen8bdsp/formats-data.mjs +1834 -0
  169. package/build/esm/data/mods/gen8bdsp/formats-data.mjs.map +1 -0
  170. package/build/esm/data/mods/gen8bdsp/index.d.mts +6 -0
  171. package/build/esm/data/mods/gen8bdsp/index.mjs +7 -0
  172. package/build/esm/data/mods/gen8bdsp/index.mjs.map +1 -0
  173. package/build/esm/data/mods/gen8bdsp/items.d.mts +1 -0
  174. package/build/esm/data/mods/gen8bdsp/items.mjs +828 -0
  175. package/build/esm/data/mods/gen8bdsp/items.mjs.map +1 -0
  176. package/build/esm/data/mods/gen8bdsp/learnsets.d.mts +3 -0
  177. package/build/esm/data/mods/gen8bdsp/learnsets.mjs +25781 -0
  178. package/build/esm/data/mods/gen8bdsp/learnsets.mjs.map +1 -0
  179. package/build/esm/data/mods/gen8bdsp/legality.d.mts +3 -0
  180. package/build/esm/data/mods/gen8bdsp/legality.mjs +239 -0
  181. package/build/esm/data/mods/gen8bdsp/legality.mjs.map +1 -0
  182. package/build/esm/data/mods/gen8bdsp/moves.d.mts +1 -0
  183. package/build/esm/data/mods/gen8bdsp/moves.mjs +916 -0
  184. package/build/esm/data/mods/gen8bdsp/moves.mjs.map +1 -0
  185. package/build/esm/data/mods/gen8bdsp/pokedex.d.mts +1 -0
  186. package/build/esm/data/mods/gen8bdsp/pokedex.mjs +96 -0
  187. package/build/esm/data/mods/gen8bdsp/pokedex.mjs.map +1 -0
  188. package/build/esm/data/mods/gen8bdsp/scripts.d.mts +1 -0
  189. package/build/esm/data/mods/gen8bdsp/scripts.mjs +12 -0
  190. package/build/esm/data/mods/gen8bdsp/scripts.mjs.map +1 -0
  191. package/build/esm/data/mods/gen8legends/formats-data.d.mts +1 -0
  192. package/build/esm/data/mods/gen8legends/formats-data.mjs +2772 -0
  193. package/build/esm/data/mods/gen8legends/formats-data.mjs.map +1 -0
  194. package/build/esm/data/mods/gen8legends/index.d.mts +2 -0
  195. package/build/esm/data/mods/gen8legends/index.mjs +3 -0
  196. package/build/esm/data/mods/gen8legends/index.mjs.map +1 -0
  197. package/build/esm/data/mods/gen8legends/learnsets.d.mts +3 -0
  198. package/build/esm/data/mods/gen8legends/learnsets.mjs +5550 -0
  199. package/build/esm/data/mods/gen8legends/learnsets.mjs.map +1 -0
  200. package/build/esm/data/mods/gen8legends/legality.d.mts +3 -0
  201. package/build/esm/data/mods/gen8legends/legality.mjs +146 -0
  202. package/build/esm/data/mods/gen8legends/legality.mjs.map +1 -0
  203. package/build/esm/data/mods/gen8legends/scripts.d.mts +1 -0
  204. package/build/esm/data/mods/gen8legends/scripts.mjs +5 -0
  205. package/build/esm/data/mods/gen8legends/scripts.mjs.map +1 -0
  206. package/build/esm/data/moves.mjs +53 -55
  207. package/build/esm/data/moves.mjs.map +1 -1
  208. package/build/esm/data/pokedex.mjs +735 -10
  209. package/build/esm/data/pokedex.mjs.map +1 -1
  210. package/build/esm/data/rulesets.mjs +78 -0
  211. package/build/esm/data/rulesets.mjs.map +1 -1
  212. package/build/esm/data/text/items.mjs +108 -0
  213. package/build/esm/data/text/items.mjs.map +1 -1
  214. package/build/esm/data/text/moves.mjs +6 -2
  215. package/build/esm/data/text/moves.mjs.map +1 -1
  216. package/build/esm/sim/battle-actions.mjs +17 -7
  217. package/build/esm/sim/battle-actions.mjs.map +1 -1
  218. package/build/esm/sim/battle-queue.d.mts +11 -6
  219. package/build/esm/sim/battle-queue.mjs.map +1 -1
  220. package/build/esm/sim/battle.d.mts +2 -2
  221. package/build/esm/sim/battle.mjs +23 -28
  222. package/build/esm/sim/battle.mjs.map +1 -1
  223. package/build/esm/sim/dex-conditions.d.mts +2 -1
  224. package/build/esm/sim/dex-conditions.mjs.map +1 -1
  225. package/build/esm/sim/dex-formats.d.mts +2 -0
  226. package/build/esm/sim/dex-formats.mjs +12 -1
  227. package/build/esm/sim/dex-formats.mjs.map +1 -1
  228. package/build/esm/sim/dex-species.d.mts +13 -2
  229. package/build/esm/sim/dex-species.mjs +40 -19
  230. package/build/esm/sim/dex-species.mjs.map +1 -1
  231. package/build/esm/sim/dex.mjs +11 -0
  232. package/build/esm/sim/dex.mjs.map +1 -1
  233. package/build/esm/sim/exported-global-types.d.mts +5 -4
  234. package/build/esm/sim/global-types.d.mts +5 -4
  235. package/build/esm/sim/pokemon.d.mts +6 -4
  236. package/build/esm/sim/pokemon.mjs +31 -24
  237. package/build/esm/sim/pokemon.mjs.map +1 -1
  238. package/build/esm/sim/side.mjs +11 -41
  239. package/build/esm/sim/side.mjs.map +1 -1
  240. package/build/esm/sim/team-validator.d.mts +1 -0
  241. package/build/esm/sim/team-validator.mjs +50 -18
  242. package/build/esm/sim/team-validator.mjs.map +1 -1
  243. package/package.json +2 -2
@@ -0,0 +1,916 @@
1
+ export const Moves = {
2
+ accelerock: {
3
+ inherit: true,
4
+ isNonstandard: "Past",
5
+ },
6
+ anchorshot: {
7
+ inherit: true,
8
+ isNonstandard: "Past",
9
+ },
10
+ appleacid: {
11
+ inherit: true,
12
+ isNonstandard: "Past",
13
+ },
14
+ astralbarrage: {
15
+ inherit: true,
16
+ isNonstandard: "Past",
17
+ },
18
+ aurawheel: {
19
+ inherit: true,
20
+ isNonstandard: "Past",
21
+ },
22
+ banefulbunker: {
23
+ inherit: true,
24
+ isNonstandard: "Past",
25
+ },
26
+ behemothbash: {
27
+ inherit: true,
28
+ isNonstandard: "Past",
29
+ },
30
+ behemothblade: {
31
+ inherit: true,
32
+ isNonstandard: "Past",
33
+ },
34
+ blueflare: {
35
+ inherit: true,
36
+ isNonstandard: "Past",
37
+ },
38
+ boltbeak: {
39
+ inherit: true,
40
+ isNonstandard: "Past",
41
+ },
42
+ boltstrike: {
43
+ inherit: true,
44
+ isNonstandard: "Past",
45
+ },
46
+ branchpoke: {
47
+ inherit: true,
48
+ isNonstandard: "Past",
49
+ },
50
+ breakingswipe: {
51
+ inherit: true,
52
+ isNonstandard: "Past",
53
+ },
54
+ brutalswing: {
55
+ inherit: true,
56
+ isNonstandard: "Past",
57
+ },
58
+ burningjealousy: {
59
+ inherit: true,
60
+ isNonstandard: "Past",
61
+ },
62
+ celebrate: {
63
+ inherit: true,
64
+ isNonstandard: "Past",
65
+ },
66
+ chatter: {
67
+ inherit: true,
68
+ isNonstandard: null,
69
+ },
70
+ clangingscales: {
71
+ inherit: true,
72
+ isNonstandard: "Past",
73
+ },
74
+ clangoroussoul: {
75
+ inherit: true,
76
+ isNonstandard: "Past",
77
+ },
78
+ coaching: {
79
+ inherit: true,
80
+ isNonstandard: "Past",
81
+ },
82
+ coreenforcer: {
83
+ inherit: true,
84
+ isNonstandard: "Past",
85
+ },
86
+ corrosivegas: {
87
+ inherit: true,
88
+ isNonstandard: "Past",
89
+ },
90
+ courtchange: {
91
+ inherit: true,
92
+ isNonstandard: "Past",
93
+ },
94
+ craftyshield: {
95
+ inherit: true,
96
+ isNonstandard: "Past",
97
+ },
98
+ darkestlariat: {
99
+ inherit: true,
100
+ isNonstandard: "Past",
101
+ },
102
+ darkvoid: {
103
+ inherit: true,
104
+ isNonstandard: null,
105
+ },
106
+ decorate: {
107
+ inherit: true,
108
+ isNonstandard: "Past",
109
+ },
110
+ diamondstorm: {
111
+ inherit: true,
112
+ isNonstandard: "Past",
113
+ },
114
+ doubleironbash: {
115
+ inherit: true,
116
+ isNonstandard: "Past",
117
+ },
118
+ dragondarts: {
119
+ inherit: true,
120
+ isNonstandard: "Past",
121
+ },
122
+ dragonenergy: {
123
+ inherit: true,
124
+ isNonstandard: "Past",
125
+ },
126
+ dragonhammer: {
127
+ inherit: true,
128
+ flags: { contact: 1, protect: 1, mirror: 1, metronome: 1 },
129
+ },
130
+ drumbeating: {
131
+ inherit: true,
132
+ isNonstandard: "Past",
133
+ },
134
+ dualwingbeat: {
135
+ inherit: true,
136
+ isNonstandard: "Past",
137
+ },
138
+ dynamaxcannon: {
139
+ inherit: true,
140
+ isNonstandard: "Past",
141
+ },
142
+ eeriespell: {
143
+ inherit: true,
144
+ isNonstandard: "Past",
145
+ },
146
+ electrify: {
147
+ inherit: true,
148
+ isNonstandard: "Past",
149
+ },
150
+ electroweb: {
151
+ inherit: true,
152
+ isNonstandard: "Past",
153
+ },
154
+ eternabeam: {
155
+ inherit: true,
156
+ isNonstandard: "Past",
157
+ },
158
+ expandingforce: {
159
+ inherit: true,
160
+ isNonstandard: "Past",
161
+ },
162
+ fairylock: {
163
+ inherit: true,
164
+ isNonstandard: "Past",
165
+ },
166
+ falsesurrender: {
167
+ inherit: true,
168
+ isNonstandard: "Past",
169
+ },
170
+ fierydance: {
171
+ inherit: true,
172
+ isNonstandard: "Past",
173
+ },
174
+ fierywrath: {
175
+ inherit: true,
176
+ isNonstandard: "Past",
177
+ },
178
+ firelash: {
179
+ inherit: true,
180
+ isNonstandard: "Past",
181
+ },
182
+ firepledge: {
183
+ inherit: true,
184
+ isNonstandard: "Past",
185
+ },
186
+ firstimpression: {
187
+ inherit: true,
188
+ isNonstandard: "Past",
189
+ },
190
+ fishiousrend: {
191
+ inherit: true,
192
+ isNonstandard: "Past",
193
+ },
194
+ flash: {
195
+ inherit: true,
196
+ isNonstandard: null,
197
+ },
198
+ fleurcannon: {
199
+ inherit: true,
200
+ isNonstandard: "Past",
201
+ },
202
+ flipturn: {
203
+ inherit: true,
204
+ isNonstandard: "Past",
205
+ },
206
+ floralhealing: {
207
+ inherit: true,
208
+ isNonstandard: "Past",
209
+ },
210
+ flyingpress: {
211
+ inherit: true,
212
+ isNonstandard: "Past",
213
+ },
214
+ forestscurse: {
215
+ inherit: true,
216
+ isNonstandard: "Past",
217
+ },
218
+ freezeshock: {
219
+ inherit: true,
220
+ isNonstandard: "Past",
221
+ },
222
+ freezingglare: {
223
+ inherit: true,
224
+ isNonstandard: "Past",
225
+ },
226
+ fusionbolt: {
227
+ inherit: true,
228
+ isNonstandard: "Past",
229
+ },
230
+ fusionflare: {
231
+ inherit: true,
232
+ isNonstandard: "Past",
233
+ },
234
+ geargrind: {
235
+ inherit: true,
236
+ isNonstandard: "Past",
237
+ },
238
+ gearup: {
239
+ inherit: true,
240
+ isNonstandard: "Past",
241
+ },
242
+ geomancy: {
243
+ inherit: true,
244
+ isNonstandard: "Past",
245
+ },
246
+ glaciallance: {
247
+ inherit: true,
248
+ isNonstandard: "Past",
249
+ },
250
+ glaciate: {
251
+ inherit: true,
252
+ isNonstandard: "Past",
253
+ },
254
+ gmaxbefuddle: {
255
+ inherit: true,
256
+ isNonstandard: "Past",
257
+ },
258
+ gmaxcannonade: {
259
+ inherit: true,
260
+ isNonstandard: "Past",
261
+ },
262
+ gmaxcentiferno: {
263
+ inherit: true,
264
+ isNonstandard: "Past",
265
+ },
266
+ gmaxchistrike: {
267
+ inherit: true,
268
+ isNonstandard: "Past",
269
+ },
270
+ gmaxcuddle: {
271
+ inherit: true,
272
+ isNonstandard: "Past",
273
+ },
274
+ gmaxdepletion: {
275
+ inherit: true,
276
+ isNonstandard: "Past",
277
+ },
278
+ gmaxdrumsolo: {
279
+ inherit: true,
280
+ isNonstandard: "Past",
281
+ },
282
+ gmaxfinale: {
283
+ inherit: true,
284
+ isNonstandard: "Past",
285
+ },
286
+ gmaxfireball: {
287
+ inherit: true,
288
+ isNonstandard: "Past",
289
+ },
290
+ gmaxfoamburst: {
291
+ inherit: true,
292
+ isNonstandard: "Past",
293
+ },
294
+ gmaxgoldrush: {
295
+ inherit: true,
296
+ isNonstandard: "Past",
297
+ },
298
+ gmaxgravitas: {
299
+ inherit: true,
300
+ isNonstandard: "Past",
301
+ },
302
+ gmaxhydrosnipe: {
303
+ inherit: true,
304
+ isNonstandard: "Past",
305
+ },
306
+ gmaxmalodor: {
307
+ inherit: true,
308
+ isNonstandard: "Past",
309
+ },
310
+ gmaxmeltdown: {
311
+ inherit: true,
312
+ isNonstandard: "Past",
313
+ },
314
+ gmaxoneblow: {
315
+ inherit: true,
316
+ isNonstandard: "Past",
317
+ },
318
+ gmaxrapidflow: {
319
+ inherit: true,
320
+ isNonstandard: "Past",
321
+ },
322
+ gmaxreplenish: {
323
+ inherit: true,
324
+ isNonstandard: "Past",
325
+ },
326
+ gmaxresonance: {
327
+ inherit: true,
328
+ isNonstandard: "Past",
329
+ },
330
+ gmaxsandblast: {
331
+ inherit: true,
332
+ isNonstandard: "Past",
333
+ },
334
+ gmaxsmite: {
335
+ inherit: true,
336
+ isNonstandard: "Past",
337
+ },
338
+ gmaxsnooze: {
339
+ inherit: true,
340
+ isNonstandard: "Past",
341
+ },
342
+ gmaxsteelsurge: {
343
+ inherit: true,
344
+ isNonstandard: "Past",
345
+ },
346
+ gmaxstonesurge: {
347
+ inherit: true,
348
+ isNonstandard: "Past",
349
+ },
350
+ gmaxstunshock: {
351
+ inherit: true,
352
+ isNonstandard: "Past",
353
+ },
354
+ gmaxsweetness: {
355
+ inherit: true,
356
+ isNonstandard: "Past",
357
+ },
358
+ gmaxtartness: {
359
+ inherit: true,
360
+ isNonstandard: "Past",
361
+ },
362
+ gmaxterror: {
363
+ inherit: true,
364
+ isNonstandard: "Past",
365
+ },
366
+ gmaxvinelash: {
367
+ inherit: true,
368
+ isNonstandard: "Past",
369
+ },
370
+ gmaxvolcalith: {
371
+ inherit: true,
372
+ isNonstandard: "Past",
373
+ },
374
+ gmaxvoltcrash: {
375
+ inherit: true,
376
+ isNonstandard: "Past",
377
+ },
378
+ gmaxwildfire: {
379
+ inherit: true,
380
+ isNonstandard: "Past",
381
+ },
382
+ gmaxwindrage: {
383
+ inherit: true,
384
+ isNonstandard: "Past",
385
+ },
386
+ grasspledge: {
387
+ inherit: true,
388
+ isNonstandard: "Past",
389
+ },
390
+ grassyglide: {
391
+ inherit: true,
392
+ isNonstandard: "Past",
393
+ },
394
+ gravapple: {
395
+ inherit: true,
396
+ isNonstandard: "Past",
397
+ },
398
+ happyhour: {
399
+ inherit: true,
400
+ isNonstandard: "Past",
401
+ },
402
+ headcharge: {
403
+ inherit: true,
404
+ isNonstandard: "Past",
405
+ },
406
+ heartswap: {
407
+ inherit: true,
408
+ isNonstandard: null,
409
+ },
410
+ heatcrash: {
411
+ inherit: true,
412
+ isNonstandard: "Past",
413
+ },
414
+ hiddenpower: {
415
+ inherit: true,
416
+ isNonstandard: null,
417
+ },
418
+ hiddenpowerbug: {
419
+ inherit: true,
420
+ isNonstandard: null,
421
+ },
422
+ hiddenpowerdark: {
423
+ inherit: true,
424
+ isNonstandard: null,
425
+ },
426
+ hiddenpowerdragon: {
427
+ inherit: true,
428
+ isNonstandard: null,
429
+ },
430
+ hiddenpowerelectric: {
431
+ inherit: true,
432
+ isNonstandard: null,
433
+ },
434
+ hiddenpowerfighting: {
435
+ inherit: true,
436
+ isNonstandard: null,
437
+ },
438
+ hiddenpowerfire: {
439
+ inherit: true,
440
+ isNonstandard: null,
441
+ },
442
+ hiddenpowerflying: {
443
+ inherit: true,
444
+ isNonstandard: null,
445
+ },
446
+ hiddenpowerghost: {
447
+ inherit: true,
448
+ isNonstandard: null,
449
+ },
450
+ hiddenpowergrass: {
451
+ inherit: true,
452
+ isNonstandard: null,
453
+ },
454
+ hiddenpowerground: {
455
+ inherit: true,
456
+ isNonstandard: null,
457
+ },
458
+ hiddenpowerice: {
459
+ inherit: true,
460
+ isNonstandard: null,
461
+ },
462
+ hiddenpowerpoison: {
463
+ inherit: true,
464
+ isNonstandard: null,
465
+ },
466
+ hiddenpowerpsychic: {
467
+ inherit: true,
468
+ isNonstandard: null,
469
+ },
470
+ hiddenpowerrock: {
471
+ inherit: true,
472
+ isNonstandard: null,
473
+ },
474
+ hiddenpowersteel: {
475
+ inherit: true,
476
+ isNonstandard: null,
477
+ },
478
+ hiddenpowerwater: {
479
+ inherit: true,
480
+ isNonstandard: null,
481
+ },
482
+ holdback: {
483
+ inherit: true,
484
+ isNonstandard: "Past",
485
+ },
486
+ holdhands: {
487
+ inherit: true,
488
+ isNonstandard: "Past",
489
+ },
490
+ hornleech: {
491
+ inherit: true,
492
+ isNonstandard: "Past",
493
+ },
494
+ iceburn: {
495
+ inherit: true,
496
+ isNonstandard: "Past",
497
+ },
498
+ instruct: {
499
+ inherit: true,
500
+ isNonstandard: "Past",
501
+ },
502
+ jawlock: {
503
+ inherit: true,
504
+ isNonstandard: "Past",
505
+ },
506
+ judgment: {
507
+ inherit: true,
508
+ isNonstandard: null,
509
+ },
510
+ junglehealing: {
511
+ inherit: true,
512
+ isNonstandard: "Past",
513
+ },
514
+ kingsshield: {
515
+ inherit: true,
516
+ isNonstandard: "Past",
517
+ },
518
+ landswrath: {
519
+ inherit: true,
520
+ isNonstandard: "Past",
521
+ },
522
+ lashout: {
523
+ inherit: true,
524
+ isNonstandard: "Past",
525
+ },
526
+ magicpowder: {
527
+ inherit: true,
528
+ isNonstandard: "Past",
529
+ },
530
+ matblock: {
531
+ inherit: true,
532
+ isNonstandard: "Past",
533
+ },
534
+ maxairstream: {
535
+ inherit: true,
536
+ isNonstandard: "Past",
537
+ },
538
+ maxdarkness: {
539
+ inherit: true,
540
+ isNonstandard: "Past",
541
+ },
542
+ maxflare: {
543
+ inherit: true,
544
+ isNonstandard: "Past",
545
+ },
546
+ maxflutterby: {
547
+ inherit: true,
548
+ isNonstandard: "Past",
549
+ },
550
+ maxgeyser: {
551
+ inherit: true,
552
+ isNonstandard: "Past",
553
+ },
554
+ maxguard: {
555
+ inherit: true,
556
+ isNonstandard: "Past",
557
+ },
558
+ maxhailstorm: {
559
+ inherit: true,
560
+ isNonstandard: "Past",
561
+ },
562
+ maxknuckle: {
563
+ inherit: true,
564
+ isNonstandard: "Past",
565
+ },
566
+ maxlightning: {
567
+ inherit: true,
568
+ isNonstandard: "Past",
569
+ },
570
+ maxmindstorm: {
571
+ inherit: true,
572
+ isNonstandard: "Past",
573
+ },
574
+ maxooze: {
575
+ inherit: true,
576
+ isNonstandard: "Past",
577
+ },
578
+ maxovergrowth: {
579
+ inherit: true,
580
+ isNonstandard: "Past",
581
+ },
582
+ maxphantasm: {
583
+ inherit: true,
584
+ isNonstandard: "Past",
585
+ },
586
+ maxquake: {
587
+ inherit: true,
588
+ isNonstandard: "Past",
589
+ },
590
+ maxrockfall: {
591
+ inherit: true,
592
+ isNonstandard: "Past",
593
+ },
594
+ maxstarfall: {
595
+ inherit: true,
596
+ isNonstandard: "Past",
597
+ },
598
+ maxsteelspike: {
599
+ inherit: true,
600
+ isNonstandard: "Past",
601
+ },
602
+ maxstrike: {
603
+ inherit: true,
604
+ isNonstandard: "Past",
605
+ },
606
+ maxwyrmwind: {
607
+ inherit: true,
608
+ isNonstandard: "Past",
609
+ },
610
+ meteorassault: {
611
+ inherit: true,
612
+ isNonstandard: "Past",
613
+ },
614
+ meteorbeam: {
615
+ inherit: true,
616
+ isNonstandard: "Past",
617
+ },
618
+ metronome: {
619
+ inherit: true,
620
+ desc: "A random move is selected for use, other than After You, Belch, Body Press, Chatter, Copycat, Counter, Covet, Destiny Bond, Detect, Dragon Ascent, Endure, Feint, Focus Punch, Follow Me, Helping Hand, Life Dew, Metronome, Mimic, Mirror Coat, Nature Power, Origin Pulse, Precipice Blades, Protect, Quash, Quick Guard, Rage Powder, Sketch, Sleep Talk, Snarl, Snore, Spiky Shield, Struggle, Switcheroo, Thief, Transform, Trick, or Wide Guard.",
621
+ shortDesc: "Picks a random move.",
622
+ },
623
+ mindblown: {
624
+ inherit: true,
625
+ isNonstandard: "Past",
626
+ },
627
+ mistyexplosion: {
628
+ inherit: true,
629
+ isNonstandard: "Past",
630
+ },
631
+ moongeistbeam: {
632
+ inherit: true,
633
+ isNonstandard: "Past",
634
+ },
635
+ multiattack: {
636
+ inherit: true,
637
+ isNonstandard: "Past",
638
+ },
639
+ naturesmadness: {
640
+ inherit: true,
641
+ isNonstandard: "Past",
642
+ },
643
+ nightdaze: {
644
+ inherit: true,
645
+ isNonstandard: "Past",
646
+ },
647
+ noretreat: {
648
+ inherit: true,
649
+ isNonstandard: "Past",
650
+ },
651
+ oblivionwing: {
652
+ inherit: true,
653
+ isNonstandard: "Past",
654
+ },
655
+ obstruct: {
656
+ inherit: true,
657
+ isNonstandard: "Past",
658
+ },
659
+ octolock: {
660
+ inherit: true,
661
+ isNonstandard: "Past",
662
+ },
663
+ overdrive: {
664
+ inherit: true,
665
+ isNonstandard: "Past",
666
+ },
667
+ paraboliccharge: {
668
+ inherit: true,
669
+ isNonstandard: "Past",
670
+ },
671
+ photongeyser: {
672
+ inherit: true,
673
+ isNonstandard: "Past",
674
+ },
675
+ plasmafists: {
676
+ inherit: true,
677
+ isNonstandard: "Past",
678
+ },
679
+ pollenpuff: {
680
+ inherit: true,
681
+ isNonstandard: "Past",
682
+ },
683
+ poltergeist: {
684
+ inherit: true,
685
+ isNonstandard: "Past",
686
+ },
687
+ powertrip: {
688
+ inherit: true,
689
+ isNonstandard: "Past",
690
+ },
691
+ prismaticlaser: {
692
+ inherit: true,
693
+ isNonstandard: "Past",
694
+ },
695
+ psychicfangs: {
696
+ inherit: true,
697
+ isNonstandard: "Past",
698
+ },
699
+ psychicterrain: {
700
+ inherit: true,
701
+ isNonstandard: "Past",
702
+ },
703
+ psychoboost: {
704
+ inherit: true,
705
+ isNonstandard: null,
706
+ },
707
+ purify: {
708
+ inherit: true,
709
+ isNonstandard: "Past",
710
+ },
711
+ pyroball: {
712
+ inherit: true,
713
+ isNonstandard: "Past",
714
+ },
715
+ risingvoltage: {
716
+ inherit: true,
717
+ isNonstandard: "Past",
718
+ },
719
+ rockclimb: {
720
+ inherit: true,
721
+ isNonstandard: null,
722
+ },
723
+ sacredsword: {
724
+ inherit: true,
725
+ isNonstandard: "Past",
726
+ },
727
+ scaleshot: {
728
+ inherit: true,
729
+ isNonstandard: "Past",
730
+ },
731
+ scorchingsands: {
732
+ inherit: true,
733
+ isNonstandard: "Past",
734
+ },
735
+ searingshot: {
736
+ inherit: true,
737
+ isNonstandard: "Past",
738
+ },
739
+ secretsword: {
740
+ inherit: true,
741
+ isNonstandard: "Past",
742
+ },
743
+ seedflare: {
744
+ inherit: true,
745
+ isNonstandard: null,
746
+ },
747
+ shadowbone: {
748
+ inherit: true,
749
+ isNonstandard: "Past",
750
+ },
751
+ shellsidearm: {
752
+ inherit: true,
753
+ isNonstandard: "Past",
754
+ },
755
+ shelltrap: {
756
+ inherit: true,
757
+ isNonstandard: "Past",
758
+ },
759
+ shiftgear: {
760
+ inherit: true,
761
+ isNonstandard: "Past",
762
+ },
763
+ shoreup: {
764
+ inherit: true,
765
+ isNonstandard: "Past",
766
+ },
767
+ sketch: {
768
+ inherit: true,
769
+ isNonstandard: null,
770
+ },
771
+ skittersmack: {
772
+ inherit: true,
773
+ isNonstandard: "Past",
774
+ },
775
+ snaptrap: {
776
+ inherit: true,
777
+ isNonstandard: "Past",
778
+ },
779
+ snipeshot: {
780
+ inherit: true,
781
+ isNonstandard: "Past",
782
+ },
783
+ solarblade: {
784
+ inherit: true,
785
+ isNonstandard: "Past",
786
+ },
787
+ sparklingaria: {
788
+ inherit: true,
789
+ isNonstandard: "Past",
790
+ },
791
+ spectralthief: {
792
+ inherit: true,
793
+ isNonstandard: "Past",
794
+ },
795
+ speedswap: {
796
+ inherit: true,
797
+ isNonstandard: "Past",
798
+ },
799
+ spiritbreak: {
800
+ inherit: true,
801
+ isNonstandard: "Past",
802
+ },
803
+ spiritshackle: {
804
+ inherit: true,
805
+ isNonstandard: "Past",
806
+ },
807
+ steameruption: {
808
+ inherit: true,
809
+ isNonstandard: "Past",
810
+ },
811
+ steelbeam: {
812
+ inherit: true,
813
+ isNonstandard: "Past",
814
+ },
815
+ steelroller: {
816
+ inherit: true,
817
+ isNonstandard: "Past",
818
+ },
819
+ strangesteam: {
820
+ inherit: true,
821
+ isNonstandard: "Past",
822
+ },
823
+ stuffcheeks: {
824
+ inherit: true,
825
+ isNonstandard: "Past",
826
+ },
827
+ sunsteelstrike: {
828
+ inherit: true,
829
+ isNonstandard: "Past",
830
+ },
831
+ surgingstrikes: {
832
+ inherit: true,
833
+ isNonstandard: "Past",
834
+ },
835
+ tailglow: {
836
+ inherit: true,
837
+ isNonstandard: null,
838
+ },
839
+ tailslap: {
840
+ inherit: true,
841
+ isNonstandard: "Past",
842
+ },
843
+ tarshot: {
844
+ inherit: true,
845
+ isNonstandard: "Past",
846
+ },
847
+ teatime: {
848
+ inherit: true,
849
+ isNonstandard: "Past",
850
+ },
851
+ technoblast: {
852
+ inherit: true,
853
+ isNonstandard: "Past",
854
+ },
855
+ terrainpulse: {
856
+ inherit: true,
857
+ isNonstandard: "Past",
858
+ },
859
+ thousandarrows: {
860
+ inherit: true,
861
+ isNonstandard: "Past",
862
+ },
863
+ thousandwaves: {
864
+ inherit: true,
865
+ isNonstandard: "Past",
866
+ },
867
+ thundercage: {
868
+ inherit: true,
869
+ isNonstandard: "Past",
870
+ },
871
+ thunderouskick: {
872
+ inherit: true,
873
+ isNonstandard: "Past",
874
+ },
875
+ topsyturvy: {
876
+ inherit: true,
877
+ isNonstandard: "Past",
878
+ },
879
+ toxicthread: {
880
+ inherit: true,
881
+ isNonstandard: null,
882
+ },
883
+ trickortreat: {
884
+ inherit: true,
885
+ isNonstandard: "Past",
886
+ },
887
+ tripleaxel: {
888
+ inherit: true,
889
+ isNonstandard: "Past",
890
+ },
891
+ tropkick: {
892
+ inherit: true,
893
+ isNonstandard: "Past",
894
+ },
895
+ vcreate: {
896
+ inherit: true,
897
+ isNonstandard: "Past",
898
+ },
899
+ waterpledge: {
900
+ inherit: true,
901
+ isNonstandard: "Past",
902
+ },
903
+ watershuriken: {
904
+ inherit: true,
905
+ isNonstandard: "Past",
906
+ },
907
+ wickedblow: {
908
+ inherit: true,
909
+ isNonstandard: "Past",
910
+ },
911
+ zingzap: {
912
+ inherit: true,
913
+ isNonstandard: "Past",
914
+ },
915
+ };
916
+ //# sourceMappingURL=moves.mjs.map