@pkmn/sim 0.8.4 → 0.8.5

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 (246) hide show
  1. package/build/cjs/config/formats.js +101 -153
  2. package/build/cjs/config/formats.js.map +1 -1
  3. package/build/cjs/data/abilities.js +9 -2
  4. package/build/cjs/data/abilities.js.map +1 -1
  5. package/build/cjs/data/conditions.js +0 -3
  6. package/build/cjs/data/conditions.js.map +1 -1
  7. package/build/cjs/data/formats-data.js +28 -25
  8. package/build/cjs/data/formats-data.js.map +1 -1
  9. package/build/cjs/data/items.js +2 -2
  10. package/build/cjs/data/items.js.map +1 -1
  11. package/build/cjs/data/legality.js +424 -104
  12. package/build/cjs/data/legality.js.map +1 -1
  13. package/build/cjs/data/mods/gen1/formats-data.js +22 -22
  14. package/build/cjs/data/mods/gen1/moves.js +6 -8
  15. package/build/cjs/data/mods/gen1/moves.js.map +1 -1
  16. package/build/cjs/data/mods/gen2/formats-data.js +43 -43
  17. package/build/cjs/data/mods/gen2/formats-data.js.map +1 -1
  18. package/build/cjs/data/mods/gen2/moves.js +4 -7
  19. package/build/cjs/data/mods/gen2/moves.js.map +1 -1
  20. package/build/cjs/data/mods/gen3/formats-data.js +32 -32
  21. package/build/cjs/data/mods/gen3/formats-data.js.map +1 -1
  22. package/build/cjs/data/mods/gen3/moves.js +15 -10
  23. package/build/cjs/data/mods/gen3/moves.js.map +1 -1
  24. package/build/cjs/data/mods/gen3/scripts.js +11 -6
  25. package/build/cjs/data/mods/gen3/scripts.js.map +1 -1
  26. package/build/cjs/data/mods/gen4/moves.js +48 -43
  27. package/build/cjs/data/mods/gen4/moves.js.map +1 -1
  28. package/build/cjs/data/mods/gen4/scripts.js +11 -6
  29. package/build/cjs/data/mods/gen4/scripts.js.map +1 -1
  30. package/build/cjs/data/mods/gen5/moves.js +44 -66
  31. package/build/cjs/data/mods/gen5/moves.js.map +1 -1
  32. package/build/cjs/data/mods/gen6/moves.js +1 -1
  33. package/build/cjs/data/mods/gen6/moves.js.map +1 -1
  34. package/build/cjs/data/mods/gen7/moves.js +21 -9
  35. package/build/cjs/data/mods/gen7/moves.js.map +1 -1
  36. package/build/cjs/data/mods/gen8/moves.js +6 -2
  37. package/build/cjs/data/mods/gen8/moves.js.map +1 -1
  38. package/build/cjs/data/moves.js +733 -732
  39. package/build/cjs/data/moves.js.map +1 -1
  40. package/build/cjs/data/rulesets.js +23 -38
  41. package/build/cjs/data/rulesets.js.map +1 -1
  42. package/build/cjs/data/text/abilities.js +2 -1
  43. package/build/cjs/data/text/abilities.js.map +1 -1
  44. package/build/cjs/data/text/moves.js +1 -1
  45. package/build/cjs/sim/battle-actions.js +19 -20
  46. package/build/cjs/sim/battle-actions.js.map +1 -1
  47. package/build/cjs/sim/battle.js +2 -3
  48. package/build/cjs/sim/battle.js.map +1 -1
  49. package/build/cjs/sim/dex-conditions.d.ts +6 -0
  50. package/build/cjs/sim/dex-conditions.js.map +1 -1
  51. package/build/cjs/sim/dex-formats.d.ts +2 -0
  52. package/build/cjs/sim/dex-formats.js +1 -0
  53. package/build/cjs/sim/dex-formats.js.map +1 -1
  54. package/build/cjs/sim/dex-moves.d.ts +1 -4
  55. package/build/cjs/sim/dex-moves.js +0 -1
  56. package/build/cjs/sim/dex-moves.js.map +1 -1
  57. package/build/cjs/sim/team-validator.js +1 -1
  58. package/build/cjs/sim/team-validator.js.map +1 -1
  59. package/build/cjs/sim/tools/runner.js +1 -1
  60. package/build/cjs/sim/tools/runner.js.map +1 -1
  61. package/build/esm/config/formats.mjs +101 -153
  62. package/build/esm/config/formats.mjs.map +1 -1
  63. package/build/esm/data/abilities.mjs +9 -2
  64. package/build/esm/data/abilities.mjs.map +1 -1
  65. package/build/esm/data/conditions.mjs +0 -3
  66. package/build/esm/data/conditions.mjs.map +1 -1
  67. package/build/esm/data/formats-data.mjs +28 -25
  68. package/build/esm/data/formats-data.mjs.map +1 -1
  69. package/build/esm/data/items.mjs +2 -2
  70. package/build/esm/data/items.mjs.map +1 -1
  71. package/build/esm/data/legality.mjs +424 -104
  72. package/build/esm/data/legality.mjs.map +1 -1
  73. package/build/esm/data/mods/gen1/formats-data.mjs +22 -22
  74. package/build/esm/data/mods/gen1/moves.mjs +6 -8
  75. package/build/esm/data/mods/gen1/moves.mjs.map +1 -1
  76. package/build/esm/data/mods/gen2/formats-data.mjs +43 -43
  77. package/build/esm/data/mods/gen2/formats-data.mjs.map +1 -1
  78. package/build/esm/data/mods/gen2/moves.mjs +4 -7
  79. package/build/esm/data/mods/gen2/moves.mjs.map +1 -1
  80. package/build/esm/data/mods/gen3/formats-data.mjs +32 -32
  81. package/build/esm/data/mods/gen3/formats-data.mjs.map +1 -1
  82. package/build/esm/data/mods/gen3/moves.mjs +15 -10
  83. package/build/esm/data/mods/gen3/moves.mjs.map +1 -1
  84. package/build/esm/data/mods/gen3/scripts.mjs +11 -6
  85. package/build/esm/data/mods/gen3/scripts.mjs.map +1 -1
  86. package/build/esm/data/mods/gen4/moves.mjs +48 -43
  87. package/build/esm/data/mods/gen4/moves.mjs.map +1 -1
  88. package/build/esm/data/mods/gen4/scripts.mjs +11 -6
  89. package/build/esm/data/mods/gen4/scripts.mjs.map +1 -1
  90. package/build/esm/data/mods/gen5/moves.mjs +44 -66
  91. package/build/esm/data/mods/gen5/moves.mjs.map +1 -1
  92. package/build/esm/data/mods/gen6/moves.mjs +1 -1
  93. package/build/esm/data/mods/gen6/moves.mjs.map +1 -1
  94. package/build/esm/data/mods/gen7/moves.mjs +21 -9
  95. package/build/esm/data/mods/gen7/moves.mjs.map +1 -1
  96. package/build/esm/data/mods/gen8/moves.mjs +6 -2
  97. package/build/esm/data/mods/gen8/moves.mjs.map +1 -1
  98. package/build/esm/data/moves.mjs +733 -732
  99. package/build/esm/data/moves.mjs.map +1 -1
  100. package/build/esm/data/rulesets.mjs +23 -38
  101. package/build/esm/data/rulesets.mjs.map +1 -1
  102. package/build/esm/data/text/abilities.mjs +2 -1
  103. package/build/esm/data/text/abilities.mjs.map +1 -1
  104. package/build/esm/data/text/moves.mjs +1 -1
  105. package/build/esm/sim/battle-actions.mjs +19 -20
  106. package/build/esm/sim/battle-actions.mjs.map +1 -1
  107. package/build/esm/sim/battle.mjs +2 -3
  108. package/build/esm/sim/battle.mjs.map +1 -1
  109. package/build/esm/sim/dex-conditions.d.mts +6 -0
  110. package/build/esm/sim/dex-conditions.mjs.map +1 -1
  111. package/build/esm/sim/dex-formats.d.mts +2 -0
  112. package/build/esm/sim/dex-formats.mjs +1 -0
  113. package/build/esm/sim/dex-formats.mjs.map +1 -1
  114. package/build/esm/sim/dex-moves.d.mts +1 -4
  115. package/build/esm/sim/dex-moves.mjs +0 -1
  116. package/build/esm/sim/dex-moves.mjs.map +1 -1
  117. package/build/esm/sim/team-validator.mjs +1 -1
  118. package/build/esm/sim/team-validator.mjs.map +1 -1
  119. package/build/esm/sim/tools/runner.mjs +1 -1
  120. package/build/esm/sim/tools/runner.mjs.map +1 -1
  121. package/package.json +1 -1
  122. package/build/types/config/formats.d.ts +0 -1
  123. package/build/types/data/abilities.d.ts +0 -3
  124. package/build/types/data/aliases.d.ts +0 -3
  125. package/build/types/data/conditions.d.ts +0 -3
  126. package/build/types/data/formats-data.d.ts +0 -3
  127. package/build/types/data/index.d.ts +0 -11
  128. package/build/types/data/items.d.ts +0 -3
  129. package/build/types/data/learnsets.d.ts +0 -3
  130. package/build/types/data/legality.d.ts +0 -3
  131. package/build/types/data/mods/gen1/conditions.d.ts +0 -12
  132. package/build/types/data/mods/gen1/formats-data.d.ts +0 -3
  133. package/build/types/data/mods/gen1/index.d.ts +0 -7
  134. package/build/types/data/mods/gen1/moves.d.ts +0 -7
  135. package/build/types/data/mods/gen1/pokedex.d.ts +0 -3
  136. package/build/types/data/mods/gen1/rulesets.d.ts +0 -3
  137. package/build/types/data/mods/gen1/scripts.d.ts +0 -6
  138. package/build/types/data/mods/gen1/typechart.d.ts +0 -10
  139. package/build/types/data/mods/gen2/conditions.d.ts +0 -3
  140. package/build/types/data/mods/gen2/formats-data.d.ts +0 -3
  141. package/build/types/data/mods/gen2/index.d.ts +0 -8
  142. package/build/types/data/mods/gen2/items.d.ts +0 -3
  143. package/build/types/data/mods/gen2/learnsets.d.ts +0 -3
  144. package/build/types/data/mods/gen2/legality.d.ts +0 -3
  145. package/build/types/data/mods/gen2/moves.d.ts +0 -6
  146. package/build/types/data/mods/gen2/pokedex.d.ts +0 -3
  147. package/build/types/data/mods/gen2/rulesets.d.ts +0 -3
  148. package/build/types/data/mods/gen2/scripts.d.ts +0 -4
  149. package/build/types/data/mods/gen2/typechart.d.ts +0 -3
  150. package/build/types/data/mods/gen3/abilities.d.ts +0 -3
  151. package/build/types/data/mods/gen3/conditions.d.ts +0 -3
  152. package/build/types/data/mods/gen3/formats-data.d.ts +0 -3
  153. package/build/types/data/mods/gen3/index.d.ts +0 -7
  154. package/build/types/data/mods/gen3/items.d.ts +0 -3
  155. package/build/types/data/mods/gen3/moves.d.ts +0 -6
  156. package/build/types/data/mods/gen3/rulesets.d.ts +0 -3
  157. package/build/types/data/mods/gen3/scripts.d.ts +0 -1
  158. package/build/types/data/mods/gen4/abilities.d.ts +0 -3
  159. package/build/types/data/mods/gen4/conditions.d.ts +0 -3
  160. package/build/types/data/mods/gen4/formats-data.d.ts +0 -3
  161. package/build/types/data/mods/gen4/index.d.ts +0 -8
  162. package/build/types/data/mods/gen4/items.d.ts +0 -3
  163. package/build/types/data/mods/gen4/moves.d.ts +0 -3
  164. package/build/types/data/mods/gen4/pokedex.d.ts +0 -3
  165. package/build/types/data/mods/gen4/rulesets.d.ts +0 -3
  166. package/build/types/data/mods/gen4/scripts.d.ts +0 -1
  167. package/build/types/data/mods/gen5/abilities.d.ts +0 -3
  168. package/build/types/data/mods/gen5/conditions.d.ts +0 -3
  169. package/build/types/data/mods/gen5/formats-data.d.ts +0 -3
  170. package/build/types/data/mods/gen5/index.d.ts +0 -9
  171. package/build/types/data/mods/gen5/items.d.ts +0 -3
  172. package/build/types/data/mods/gen5/moves.d.ts +0 -3
  173. package/build/types/data/mods/gen5/pokedex.d.ts +0 -3
  174. package/build/types/data/mods/gen5/rulesets.d.ts +0 -3
  175. package/build/types/data/mods/gen5/scripts.d.ts +0 -1
  176. package/build/types/data/mods/gen5/typechart.d.ts +0 -3
  177. package/build/types/data/mods/gen6/abilities.d.ts +0 -3
  178. package/build/types/data/mods/gen6/conditions.d.ts +0 -3
  179. package/build/types/data/mods/gen6/formats-data.d.ts +0 -3
  180. package/build/types/data/mods/gen6/index.d.ts +0 -8
  181. package/build/types/data/mods/gen6/items.d.ts +0 -3
  182. package/build/types/data/mods/gen6/learnsets.d.ts +0 -3
  183. package/build/types/data/mods/gen6/legality.d.ts +0 -3
  184. package/build/types/data/mods/gen6/moves.d.ts +0 -3
  185. package/build/types/data/mods/gen6/pokedex.d.ts +0 -3
  186. package/build/types/data/mods/gen6/scripts.d.ts +0 -1
  187. package/build/types/data/mods/gen6/typechart.d.ts +0 -3
  188. package/build/types/data/mods/gen7/abilities.d.ts +0 -3
  189. package/build/types/data/mods/gen7/formats-data.d.ts +0 -3
  190. package/build/types/data/mods/gen7/index.d.ts +0 -7
  191. package/build/types/data/mods/gen7/items.d.ts +0 -3
  192. package/build/types/data/mods/gen7/moves.d.ts +0 -3
  193. package/build/types/data/mods/gen7/pokedex.d.ts +0 -3
  194. package/build/types/data/mods/gen7/rulesets.d.ts +0 -3
  195. package/build/types/data/mods/gen7/scripts.d.ts +0 -1
  196. package/build/types/data/mods/gen8/abilities.d.ts +0 -3
  197. package/build/types/data/mods/gen8/formats-data.d.ts +0 -3
  198. package/build/types/data/mods/gen8/index.d.ts +0 -7
  199. package/build/types/data/mods/gen8/items.d.ts +0 -3
  200. package/build/types/data/mods/gen8/learnsets.d.ts +0 -3
  201. package/build/types/data/mods/gen8/legality.d.ts +0 -3
  202. package/build/types/data/mods/gen8/moves.d.ts +0 -3
  203. package/build/types/data/mods/gen8/pokedex.d.ts +0 -3
  204. package/build/types/data/mods/gen8/rulesets.d.ts +0 -3
  205. package/build/types/data/mods/gen8/scripts.d.ts +0 -1
  206. package/build/types/data/moves.d.ts +0 -3
  207. package/build/types/data/natures.d.ts +0 -3
  208. package/build/types/data/pokedex.d.ts +0 -3
  209. package/build/types/data/pokemongo.d.ts +0 -31
  210. package/build/types/data/rulesets.d.ts +0 -3
  211. package/build/types/data/scripts.d.ts +0 -1
  212. package/build/types/data/tags.d.ts +0 -15
  213. package/build/types/data/text/abilities.d.ts +0 -3
  214. package/build/types/data/text/default.d.ts +0 -3
  215. package/build/types/data/text/items.d.ts +0 -3
  216. package/build/types/data/text/moves.d.ts +0 -3
  217. package/build/types/data/typechart.d.ts +0 -3
  218. package/build/types/lib/index.d.ts +0 -2
  219. package/build/types/lib/streams.d.ts +0 -1
  220. package/build/types/lib/utils.d.ts +0 -139
  221. package/build/types/sim/battle-actions.d.ts +0 -90
  222. package/build/types/sim/battle-queue.d.ts +0 -164
  223. package/build/types/sim/battle-stream.d.ts +0 -67
  224. package/build/types/sim/battle.d.ts +0 -396
  225. package/build/types/sim/dex-abilities.d.ts +0 -35
  226. package/build/types/sim/dex-conditions.d.ts +0 -518
  227. package/build/types/sim/dex-data.d.ts +0 -169
  228. package/build/types/sim/dex-formats.d.ts +0 -170
  229. package/build/types/sim/dex-items.d.ts +0 -110
  230. package/build/types/sim/dex-moves.d.ts +0 -441
  231. package/build/types/sim/dex-species.d.ts +0 -289
  232. package/build/types/sim/dex.d.ts +0 -162
  233. package/build/types/sim/exported-global-types.d.ts +0 -510
  234. package/build/types/sim/field.d.ts +0 -30
  235. package/build/types/sim/global-types.d.ts +0 -510
  236. package/build/types/sim/index.d.ts +0 -13
  237. package/build/types/sim/pokemon.d.ts +0 -427
  238. package/build/types/sim/prng.d.ts +0 -97
  239. package/build/types/sim/side.d.ts +0 -127
  240. package/build/types/sim/state.d.ts +0 -42
  241. package/build/types/sim/team-validator.d.ts +0 -198
  242. package/build/types/sim/teams.d.ts +0 -26
  243. package/build/types/sim/tools/exhaustive-runner.d.ts +0 -52
  244. package/build/types/sim/tools/index.d.ts +0 -2
  245. package/build/types/sim/tools/random-player-ai.d.ts +0 -32
  246. package/build/types/sim/tools/runner.d.ts +0 -41
@@ -1,12 +0,0 @@
1
- /**
2
- * Status worked very differently in Gen 1.
3
- * - Sleep lasted longer, had no reset on switch and took a whole turn to wake up.
4
- * - Frozen only thaws when hit by fire or Haze.
5
- *
6
- * Stat boosts (-speed, -atk) also worked differently, so they are
7
- * separated as volatile statuses that are applied on switch in, removed
8
- * under certain conditions and re-applied under other conditions.
9
- */
10
- export declare const Conditions: {
11
- [id: string]: ModdedConditionData;
12
- };
@@ -1,3 +0,0 @@
1
- export declare const FormatsData: {
2
- [k: string]: ModdedSpeciesFormatsData;
3
- };
@@ -1,7 +0,0 @@
1
- export { Conditions } from './conditions';
2
- export { Rulesets } from './rulesets';
3
- export { FormatsData } from './formats-data';
4
- export { Moves } from './moves';
5
- export { Pokedex } from './pokedex';
6
- export { Scripts } from './scripts';
7
- export { TypeChart } from './typechart';
@@ -1,7 +0,0 @@
1
- /**
2
- * A lot of Gen 1 moves have to be updated due to different mechanics.
3
- * Some moves have had major changes, such as Bite's typing.
4
- */
5
- export declare const Moves: {
6
- [k: string]: ModdedMoveData;
7
- };
@@ -1,3 +0,0 @@
1
- export declare const Pokedex: {
2
- [k: string]: ModdedSpeciesData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Rulesets: {
2
- [k: string]: ModdedFormatData;
3
- };
@@ -1,6 +0,0 @@
1
- /**
2
- * Gen 1 mechanics are fairly different to those we know on current gen.
3
- * Therefor we need to make a lot of changes to the battle engine for this game simulation.
4
- * This generation inherits all the changes from older generations, that must be taken into account when editing code.
5
- */
6
- export declare const Scripts: ModdedBattleScriptsData;
@@ -1,10 +0,0 @@
1
- /**
2
- * Types were different on Gen 1.
3
- * We had no steel nor dark types and there were a couple of important differences:
4
- * Bug and Poison were weak to eachother
5
- * Ice was neutral to fire
6
- * Psychic was immune to ghost
7
- */
8
- export declare const TypeChart: {
9
- [k: string]: ModdedTypeData | null;
10
- };
@@ -1,3 +0,0 @@
1
- export declare const Conditions: {
2
- [k: string]: ModdedConditionData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const FormatsData: {
2
- [k: string]: ModdedSpeciesFormatsData;
3
- };
@@ -1,8 +0,0 @@
1
- export { Conditions } from './conditions';
2
- export { Rulesets } from './rulesets';
3
- export { FormatsData } from './formats-data';
4
- export { Items } from './items';
5
- export { Moves } from './moves';
6
- export { Pokedex } from './pokedex';
7
- export { Scripts } from './scripts';
8
- export { TypeChart } from './typechart';
@@ -1,3 +0,0 @@
1
- export declare const Items: {
2
- [k: string]: ModdedItemData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Learnsets: {
2
- [k: string]: ModdedLearnsetData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Legality: {
2
- [k: string]: ModdedLearnsetData;
3
- };
@@ -1,6 +0,0 @@
1
- /**
2
- * Gen 2 moves
3
- */
4
- export declare const Moves: {
5
- [k: string]: ModdedMoveData;
6
- };
@@ -1,3 +0,0 @@
1
- export declare const Pokedex: {
2
- [k: string]: ModdedSpeciesData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Rulesets: {
2
- [k: string]: ModdedFormatData;
3
- };
@@ -1,4 +0,0 @@
1
- /**
2
- * Gen 2 scripts.
3
- */
4
- export declare const Scripts: ModdedBattleScriptsData;
@@ -1,3 +0,0 @@
1
- export declare const TypeChart: {
2
- [k: string]: ModdedTypeData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Abilities: {
2
- [k: string]: ModdedAbilityData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Conditions: {
2
- [k: string]: ModdedConditionData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const FormatsData: {
2
- [k: string]: ModdedSpeciesFormatsData;
3
- };
@@ -1,7 +0,0 @@
1
- export { Abilities } from './abilities';
2
- export { Conditions } from './conditions';
3
- export { Rulesets } from './rulesets';
4
- export { FormatsData } from './formats-data';
5
- export { Items } from './items';
6
- export { Moves } from './moves';
7
- export { Scripts } from './scripts';
@@ -1,3 +0,0 @@
1
- export declare const Items: {
2
- [k: string]: ModdedItemData;
3
- };
@@ -1,6 +0,0 @@
1
- /**
2
- * Gen 3 moves
3
- */
4
- export declare const Moves: {
5
- [k: string]: ModdedMoveData;
6
- };
@@ -1,3 +0,0 @@
1
- export declare const Rulesets: {
2
- [k: string]: ModdedFormatData;
3
- };
@@ -1 +0,0 @@
1
- export declare const Scripts: ModdedBattleScriptsData;
@@ -1,3 +0,0 @@
1
- export declare const Abilities: {
2
- [k: string]: ModdedAbilityData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Conditions: {
2
- [k: string]: ModdedConditionData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const FormatsData: {
2
- [k: string]: ModdedSpeciesFormatsData;
3
- };
@@ -1,8 +0,0 @@
1
- export { Abilities } from './abilities';
2
- export { Conditions } from './conditions';
3
- export { Rulesets } from './rulesets';
4
- export { FormatsData } from './formats-data';
5
- export { Items } from './items';
6
- export { Moves } from './moves';
7
- export { Pokedex } from './pokedex';
8
- export { Scripts } from './scripts';
@@ -1,3 +0,0 @@
1
- export declare const Items: {
2
- [k: string]: ModdedItemData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Moves: {
2
- [k: string]: ModdedMoveData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Pokedex: {
2
- [k: string]: ModdedSpeciesData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Rulesets: {
2
- [k: string]: ModdedFormatData;
3
- };
@@ -1 +0,0 @@
1
- export declare const Scripts: ModdedBattleScriptsData;
@@ -1,3 +0,0 @@
1
- export declare const Abilities: {
2
- [k: string]: ModdedAbilityData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Conditions: {
2
- [k: string]: ModdedConditionData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const FormatsData: {
2
- [k: string]: ModdedSpeciesFormatsData;
3
- };
@@ -1,9 +0,0 @@
1
- export { Abilities } from './abilities';
2
- export { Conditions } from './conditions';
3
- export { Rulesets } from './rulesets';
4
- export { FormatsData } from './formats-data';
5
- export { Items } from './items';
6
- export { Moves } from './moves';
7
- export { Pokedex } from './pokedex';
8
- export { Scripts } from './scripts';
9
- export { TypeChart } from './typechart';
@@ -1,3 +0,0 @@
1
- export declare const Items: {
2
- [k: string]: ModdedItemData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Moves: {
2
- [k: string]: ModdedMoveData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Pokedex: {
2
- [k: string]: ModdedSpeciesData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Rulesets: {
2
- [k: string]: ModdedFormatData;
3
- };
@@ -1 +0,0 @@
1
- export declare const Scripts: ModdedBattleScriptsData;
@@ -1,3 +0,0 @@
1
- export declare const TypeChart: {
2
- [k: string]: ModdedTypeData | null;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Abilities: {
2
- [k: string]: ModdedAbilityData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Conditions: {
2
- [k: string]: ModdedConditionData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const FormatsData: {
2
- [k: string]: ModdedSpeciesFormatsData;
3
- };
@@ -1,8 +0,0 @@
1
- export { Abilities } from './abilities';
2
- export { Conditions } from './conditions';
3
- export { FormatsData } from './formats-data';
4
- export { Items } from './items';
5
- export { Moves } from './moves';
6
- export { Pokedex } from './pokedex';
7
- export { Scripts } from './scripts';
8
- export { TypeChart } from './typechart';
@@ -1,3 +0,0 @@
1
- export declare const Items: {
2
- [k: string]: ModdedItemData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Learnsets: {
2
- [k: string]: ModdedLearnsetData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Legality: {
2
- [k: string]: ModdedLearnsetData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Moves: {
2
- [k: string]: ModdedMoveData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Pokedex: {
2
- [k: string]: ModdedSpeciesData;
3
- };
@@ -1 +0,0 @@
1
- export declare const Scripts: ModdedBattleScriptsData;
@@ -1,3 +0,0 @@
1
- export declare const TypeChart: {
2
- [k: string]: ModdedTypeData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Abilities: {
2
- [k: string]: ModdedAbilityData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const FormatsData: {
2
- [k: string]: ModdedSpeciesFormatsData;
3
- };
@@ -1,7 +0,0 @@
1
- export { Abilities } from './abilities';
2
- export { Rulesets } from './rulesets';
3
- export { FormatsData } from './formats-data';
4
- export { Items } from './items';
5
- export { Moves } from './moves';
6
- export { Pokedex } from './pokedex';
7
- export { Scripts } from './scripts';
@@ -1,3 +0,0 @@
1
- export declare const Items: {
2
- [k: string]: ModdedItemData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Moves: {
2
- [k: string]: ModdedMoveData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Pokedex: {
2
- [k: string]: ModdedSpeciesData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Rulesets: {
2
- [k: string]: ModdedFormatData;
3
- };
@@ -1 +0,0 @@
1
- export declare const Scripts: ModdedBattleScriptsData;
@@ -1,3 +0,0 @@
1
- export declare const Abilities: {
2
- [k: string]: ModdedAbilityData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const FormatsData: {
2
- [k: string]: SpeciesFormatsData;
3
- };
@@ -1,7 +0,0 @@
1
- export { Abilities } from './abilities';
2
- export { Items } from './items';
3
- export { Rulesets } from './rulesets';
4
- export { FormatsData } from './formats-data';
5
- export { Moves } from './moves';
6
- export { Pokedex } from './pokedex';
7
- export { Scripts } from './scripts';
@@ -1,3 +0,0 @@
1
- export declare const Items: {
2
- [k: string]: ModdedItemData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Learnsets: {
2
- [k: string]: ModdedLearnsetData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Legality: {
2
- [k: string]: ModdedLearnsetData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Moves: {
2
- [k: string]: ModdedMoveData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Pokedex: {
2
- [k: string]: ModdedSpeciesData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Rulesets: {
2
- [k: string]: ModdedFormatData;
3
- };
@@ -1 +0,0 @@
1
- export declare const Scripts: ModdedBattleScriptsData;
@@ -1,3 +0,0 @@
1
- export declare const Moves: {
2
- [moveid: string]: MoveData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Natures: {
2
- [k: string]: NatureData;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const Pokedex: {
2
- [speciesid: string]: SpeciesData;
3
- };
@@ -1,31 +0,0 @@
1
- /**
2
- * A listing of every Pokemon that can be obtained from Pokemon GO and how the can be obtained.
3
- * If a Pokemon is not listed here, it cannot be obtained from Pokemon GO.
4
- *
5
- * Key:
6
- * - Origin:
7
- * - wild: Can be found in the overworld, either as a regular spawn or through a similar source such as GO Snapshot
8
- * - egg: Hatches from 2, 5, or 10 km eggs
9
- * - giovanni: Shadow Pokemon rescued from Giovanni and purified
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
12
- * - research: Reward from field research, special research, or research breakthrough
13
- * If the Pokemon is obtainable from the wild, other sources do not need to be included due to redundancy.
14
- * For shinies that can't be obtained from the wild, all other sources should be included.
15
- *
16
- * - Shiny origin restrictions:
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
19
- *
20
- * - Trade restrictions:
21
- * - notrade: This Pokemon cannot be traded at all
22
- * - specialtrade: This Pokemon must be traded in a special trade
23
- *
24
- * Certain sources have been excluded from this list, which are:
25
- * - GO Battle League: same level and IV floor as raid bosses, and all from GO Battle League have also been in raids
26
- * - Shadow Pokemon: most can also be obtained from the wild, and those that can't are from defeating Giovanni, which
27
- * is handled as as its own encounter
28
- */
29
- export declare const PokemonGoData: {
30
- [source: string]: PokemonGoData;
31
- };
@@ -1,3 +0,0 @@
1
- export declare const Rulesets: {
2
- [k: string]: FormatData;
3
- };
@@ -1 +0,0 @@
1
- export declare const Scripts: BattleScriptsData;
@@ -1,15 +0,0 @@
1
- import { Ability, Item, Move, Species } from '../sim/exported-global-types';
2
- interface TagData {
3
- name: string;
4
- desc?: string;
5
- speciesFilter?: (species: Species) => boolean;
6
- moveFilter?: (move: Move) => boolean;
7
- genericFilter?: (thing: Species | Move | Item | Ability) => boolean;
8
- speciesNumCol?: (species: Species) => number;
9
- moveNumCol?: (move: Move) => number;
10
- genericNumCol?: (thing: Species | Move | Item | Ability) => number;
11
- }
12
- export declare const Tags: {
13
- [id: string]: TagData;
14
- };
15
- export {};
@@ -1,3 +0,0 @@
1
- export declare const AbilitiesText: {
2
- [k: string]: AbilityText;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const DefaultText: {
2
- [k: string]: DefaultText;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const ItemsText: {
2
- [k: string]: ItemText;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const MovesText: {
2
- [k: string]: MoveText;
3
- };
@@ -1,3 +0,0 @@
1
- export declare const TypeChart: {
2
- [k: string]: TypeData;
3
- };
@@ -1,2 +0,0 @@
1
- export * as Streams from './streams';
2
- export * as Utils from './utils';
@@ -1 +0,0 @@
1
- export * from "@pkmn/streams";