@pkmn/data 0.7.2 → 0.7.4

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -94,7 +94,7 @@ assert(gens.get(9).types.totalEffectiveness('Dark', ['Ghost', 'Psychic']) === 4)
94
94
  assert(gens.get(5).species.get('Dragapult') === undefined);
95
95
  assert(gens.get(3).species.get('Chansey').prevo === undefined);
96
96
  assert(Array.from(gens.get(1).species).length === 151);
97
- assert(gen.stats.calc('atk', 100, 31, 252, 100, gen.natures.get('adamant')) === 328);
97
+ assert(gens.get(6).stats.calc('atk', 100, 31, 252, 100, gen.natures.get('adamant')) === 328);
98
98
  assert(await gens.get(4).learnsets.canLearn('Ursaring', 'Rock Climb'));
99
99
  ```
100
100
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pkmn/data",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "A forked implementation of the Pokémon Showdown client's data layer",
5
5
  "repository": "github:pkmn/ps",
6
6
  "license": "MIT",
@@ -16,12 +16,12 @@
16
16
  "build"
17
17
  ],
18
18
  "dependencies": {
19
- "@pkmn/dex-types": "^0.7.2"
19
+ "@pkmn/dex-types": "^0.7.4"
20
20
  },
21
21
  "devDependencies": {
22
- "@pkmn/dex": "^0.7.2",
23
- "@pkmn/mods": "^0.7.2",
24
- "@pkmn/sim": "^0.7.2",
22
+ "@pkmn/dex": "^0.7.4",
23
+ "@pkmn/mods": "^0.7.4",
24
+ "@pkmn/sim": "^0.7.4",
25
25
  "@smogon/calc": "^0.7.0"
26
26
  },
27
27
  "scripts": {