@pkmn/mods 0.10.2 → 0.10.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/build/gen3rs/index.d.mts +12 -2
- package/build/gen3rs/index.d.ts +12 -2
- package/build/gen3rs/index.js +9 -0
- package/build/gen3rs/index.js.map +1 -1
- package/build/gen3rs/index.mjs +9 -0
- package/build/gen3rs/index.mjs.map +1 -1
- package/build/gen7letsgo/index.js +1 -1
- package/build/gen7letsgo/index.js.map +1 -1
- package/build/gen7letsgo/index.mjs +1 -1
- package/build/gen7letsgo/index.mjs.map +1 -1
- package/build/index.d.mts +2 -2
- package/build/index.d.ts +2 -2
- package/package.json +4 -4
package/build/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _pkmn_dex_types from '@pkmn/dex-types';
|
|
2
2
|
import { Ability, AbilityData, Condition, Item, ItemData, Learnset, LearnsetData, Move, MoveData, Species, SpeciesData, Dex, DexTable, Nature, Type, ID, NatureData, TypeName, TypeData, GenID, DeepPartial, ModData, StatsTable } from '@pkmn/dex-types';
|
|
3
3
|
|
|
4
4
|
declare class ModdedDex<A extends Ability = Ability, AD extends AbilityData = AbilityData, C extends Condition = Condition, I extends Item = Item, ITD extends ItemData = ItemData, L extends Learnset = Learnset, LD extends LearnsetData = LearnsetData, M extends Move = Move, MD extends MoveData = MoveData, S extends Species = Species, SD extends SpeciesData = SpeciesData> implements Dex {
|
|
@@ -13,7 +13,7 @@ declare class ModdedDex<A extends Ability = Ability, AD extends AbilityData = Ab
|
|
|
13
13
|
readonly types: DexTable<Type>;
|
|
14
14
|
readonly formats: any;
|
|
15
15
|
constructor(dex: Dex);
|
|
16
|
-
get gen():
|
|
16
|
+
get gen(): _pkmn_dex_types.GenerationNum;
|
|
17
17
|
get modid(): ID;
|
|
18
18
|
get data(): {
|
|
19
19
|
Abilities: {
|
package/build/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _pkmn_dex_types from '@pkmn/dex-types';
|
|
2
2
|
import { Ability, AbilityData, Condition, Item, ItemData, Learnset, LearnsetData, Move, MoveData, Species, SpeciesData, Dex, DexTable, Nature, Type, ID, NatureData, TypeName, TypeData, GenID, DeepPartial, ModData, StatsTable } from '@pkmn/dex-types';
|
|
3
3
|
|
|
4
4
|
declare class ModdedDex<A extends Ability = Ability, AD extends AbilityData = AbilityData, C extends Condition = Condition, I extends Item = Item, ITD extends ItemData = ItemData, L extends Learnset = Learnset, LD extends LearnsetData = LearnsetData, M extends Move = Move, MD extends MoveData = MoveData, S extends Species = Species, SD extends SpeciesData = SpeciesData> implements Dex {
|
|
@@ -13,7 +13,7 @@ declare class ModdedDex<A extends Ability = Ability, AD extends AbilityData = Ab
|
|
|
13
13
|
readonly types: DexTable<Type>;
|
|
14
14
|
readonly formats: any;
|
|
15
15
|
constructor(dex: Dex);
|
|
16
|
-
get gen():
|
|
16
|
+
get gen(): _pkmn_dex_types.GenerationNum;
|
|
17
17
|
get modid(): ID;
|
|
18
18
|
get data(): {
|
|
19
19
|
Abilities: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pkmn/mods",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.4",
|
|
4
4
|
"description": "Support for non-standard mods to @pkmn/sim and @pkmn/dex",
|
|
5
5
|
"repository": "github:pkmn/ps",
|
|
6
6
|
"author": "Guangcong Luo <guangcongluo@gmail.com> (http://guangcongluo.com)",
|
|
@@ -114,11 +114,11 @@
|
|
|
114
114
|
"build"
|
|
115
115
|
],
|
|
116
116
|
"dependencies": {
|
|
117
|
-
"@pkmn/dex-types": "^0.10.
|
|
117
|
+
"@pkmn/dex-types": "^0.10.4"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
|
-
"@pkmn/dex": "^0.10.
|
|
121
|
-
"@pkmn/sim": "^0.10.
|
|
120
|
+
"@pkmn/dex": "^0.10.4",
|
|
121
|
+
"@pkmn/sim": "^0.10.4"
|
|
122
122
|
},
|
|
123
123
|
"scripts": {
|
|
124
124
|
"lint": "eslint --cache src",
|