@pkmn/mods 0.4.23 → 0.5.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.
- package/README.md +1 -0
- package/build/gen8bdsp/formats-data.js +288 -281
- package/build/gen8bdsp/formats-data.js.map +1 -1
- package/build/gen8bdsp/items.js +3 -1
- package/build/gen8bdsp/items.js.map +1 -1
- package/build/gen8bdsp/learnsets.js +737 -0
- package/build/gen8bdsp/learnsets.js.map +1 -1
- package/build/gen8bdsp/pokedex.js +68 -0
- package/build/gen8bdsp/pokedex.js.map +1 -1
- package/build/index.d.ts +5 -5
- package/build/index.js +2 -0
- package/build/index.js.map +1 -1
- package/package.json +4 -4
- package/src/gen8bdsp/formats-data.ts +288 -281
- package/src/gen8bdsp/items.ts +3 -1
- package/src/gen8bdsp/learnsets.ts +737 -0
- package/src/gen8bdsp/pokedex.ts +68 -0
- package/src/index.ts +1 -0
package/src/gen8bdsp/items.ts
CHANGED
|
@@ -94,6 +94,8 @@ export const Items: {[k: string]: ModdedItemData} = {
|
|
|
94
94
|
for (const pokemon of this.getAllActive()) {
|
|
95
95
|
if (pokemon.switchFlag === true) return;
|
|
96
96
|
}
|
|
97
|
+
// TODO: Confirm mechanics
|
|
98
|
+
this.add("-activate", target, "item: Eject Button");
|
|
97
99
|
target.switchFlag = true;
|
|
98
100
|
source.switchFlag = false;
|
|
99
101
|
}
|
|
@@ -268,7 +270,7 @@ export const Items: {[k: string]: ModdedItemData} = {
|
|
|
268
270
|
inherit: true,
|
|
269
271
|
isNonstandard: "Past",
|
|
270
272
|
},
|
|
271
|
-
|
|
273
|
+
psychicseed: {
|
|
272
274
|
inherit: true,
|
|
273
275
|
isNonstandard: "Past",
|
|
274
276
|
},
|