@pkmn/dex 0.7.3 → 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.
- package/README.md +1 -1
- package/build/index.d.ts +1 -0
- package/build/index.js +445 -361
- package/build/index.js.map +1 -1
- package/build/index.min.js +1 -1
- package/build/index.mjs +445 -361
- package/build/index.mjs.map +1 -1
- package/build/{learnsets-UXTEVWMG.js → learnsets-AOT4WV2G.js} +167 -29
- package/build/{learnsets-UXTEVWMG.js.map → learnsets-AOT4WV2G.js.map} +0 -0
- package/build/learnsets-ITBYYFZQ.js +148528 -0
- package/build/learnsets-ITBYYFZQ.js.map +1 -0
- package/build/{learnsets-C5W7H6N3.mjs → learnsets-NY5VS3XN.mjs} +167 -29
- package/build/{learnsets-C5W7H6N3.mjs.map → learnsets-NY5VS3XN.mjs.map} +0 -0
- package/build/learnsets-XBODKGKV.mjs +148528 -0
- package/build/learnsets-XBODKGKV.mjs.map +1 -0
- package/build/learnsets.min.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ assert(gens.get(9).types.totalEffectiveness('Dark', ['Ghost', 'Psychic']) === 4)
|
|
|
93
93
|
assert(gens.get(5).species.get('Dragapult') === undefined);
|
|
94
94
|
assert(gens.get(3).species.get('Chansey').prevo === undefined);
|
|
95
95
|
assert(Array.from(gens.get(1).species).length === 151);
|
|
96
|
-
assert(
|
|
96
|
+
assert(gens.get(6).stats.calc('atk', 100, 31, 252, 100, gen.natures.get('adamant')) === 328);
|
|
97
97
|
assert(await gens.get(4).learnsets.canLearn('Ursaring', 'Rock Climb'));
|
|
98
98
|
```
|
|
99
99
|
|
package/build/index.d.ts
CHANGED
|
@@ -186,6 +186,7 @@ declare class Move extends BasicEffect<T.MoveName> implements T.Move {
|
|
|
186
186
|
readonly tracksTarget?: boolean;
|
|
187
187
|
readonly willCrit?: boolean;
|
|
188
188
|
readonly hasCrashDamage?: boolean;
|
|
189
|
+
readonly hasSheerForce?: boolean;
|
|
189
190
|
readonly isConfusionSelfHit?: boolean;
|
|
190
191
|
readonly isFutureMove?: boolean;
|
|
191
192
|
readonly noMetronome?: T.MoveName[];
|