pokebedrock-showdown 0.1.1 → 0.1.3
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 +3 -0
- 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 -4
- package/dist/sim/pokemon.js.map +2 -2
- package/package.json +5 -3
- package/sim/battle.ts +1 -0
- package/sim/dex-species.ts +5 -0
- package/sim/pokemon.ts +4 -4
package/.vscode/settings.json
CHANGED
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@ Try to keep this fork with the least amount of changes to the original codebase.
|
|
|
9
9
|
|
|
10
10
|
## Releasing a new NPM Version
|
|
11
11
|
|
|
12
|
+
If your `smell-of-curry` and you want to release a new version, you can do the following:
|
|
13
|
+
|
|
12
14
|
1. Update the version in `package.json`
|
|
13
15
|
2. Run `npm run build-npm`
|
|
14
16
|
3. Run `npm publish`
|
|
@@ -45,6 +47,7 @@ Try to keep this fork with the least amount of changes to the original codebase.
|
|
|
45
47
|
- `evoStatusEffect`: Required status condition for evolution
|
|
46
48
|
- `evoBiomes`: Required biomes for evolution
|
|
47
49
|
- `evoPriority`: Evolution priority system
|
|
50
|
+
- `evoCosmeticForme`: Required cosmetic forme for evolution
|
|
48
51
|
- `evoType`: Enhanced evolution type system
|
|
49
52
|
- `changeEvent`: Event that triggers forme changes
|
|
50
53
|
|