pokebedrock-showdown 0.1.2 → 0.1.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/.vscode/settings.json +4 -1
- package/README.md +2 -1
- package/data/pokedex.ts +20074 -20066
- package/dist/data/pokedex.js +8 -0
- package/dist/data/pokedex.js.map +2 -2
- package/dist/sim/battle.js.map +2 -2
- package/dist/sim/dex-species.d.ts +5 -0
- package/dist/sim/dex-species.js.map +2 -2
- package/dist/sim/pokemon.js +3 -3
- package/dist/sim/pokemon.js.map +2 -2
- package/dist/sim/random-battles-module-map.d.ts +2 -0
- package/dist/sim/random-battles-module-map.js +61 -0
- package/dist/sim/random-battles-module-map.js.map +7 -0
- package/dist/sim/teams.js +2 -1
- package/dist/sim/teams.js.map +2 -2
- package/package.json +1 -1
- package/sim/dex-species.ts +5 -0
- package/sim/pokemon.ts +2 -2
- package/sim/random-battles-module-map.ts +26 -0
- package/sim/teams.ts +3 -1
- package/tools/build-utils.js +57 -0
package/.vscode/settings.json
CHANGED
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ If your `smell-of-curry` and you want to release a new version, you can do the f
|
|
|
21
21
|
- **Reworked Config**: Modified to not use reading/writing to files as script api doesn't support that.
|
|
22
22
|
- **Better Type Safety**: Added more specific type definitions throughout the codebase.
|
|
23
23
|
- **ESM Compatibility**: Fixed compatibility issues with Minecraft Bedrock's Script API.
|
|
24
|
-
- **Removed Dynamic Requires**: `sim/dex` now uses a static import map to avoid dynamic requires (which is not supported in Minecraft Bedrock's Script API).
|
|
24
|
+
- **Removed Dynamic Requires**: `sim/dex` & `sim/teams` now uses a static import map to avoid dynamic requires (which is not supported in Minecraft Bedrock's Script API).
|
|
25
25
|
|
|
26
26
|
### Pokemon Data & Features:
|
|
27
27
|
- **UUID System**: Added a whole UUID system which allows pokemon to be searched easily by interpreter.
|
|
@@ -47,6 +47,7 @@ If your `smell-of-curry` and you want to release a new version, you can do the f
|
|
|
47
47
|
- `evoStatusEffect`: Required status condition for evolution
|
|
48
48
|
- `evoBiomes`: Required biomes for evolution
|
|
49
49
|
- `evoPriority`: Evolution priority system
|
|
50
|
+
- `evoCosmeticForme`: Required cosmetic forme for evolution
|
|
50
51
|
- `evoType`: Enhanced evolution type system
|
|
51
52
|
- `changeEvent`: Event that triggers forme changes
|
|
52
53
|
|