pokemon-showdown/lib
Guangcong Luo 13189fdb02
Update Dex API (#8181)
This is the change that renames:

- `Dex.getMove` -> `Dex.moves.get`
- `Dex.getAbility` -> `Dex.abilities.get`
- `Dex.getItem` -> `Dex.items.get`
- `Dex.getSpecies` -> `Dex.species.get`
- `Dex.getEffect` -> `Dex.conditions.get`
- `Dex.getNature` -> `Dex.natures.get`
- `Dex.getType` -> `Dex.types.get`
- `Dex.getFormat` -> `Dex.formats.get`

In addition, some other APIs have been updated:

- `getByID` methods have also been added to every other table.
- `Dex.moves.all()` now gets an array of all moves
  - Plus equivalent methods for `abilities`, `items`, `species`, `formats`, `natures`, `types`
  - Note: there's no `Dex.conditions.all()`
- new API: `Dex.stats` for naming/iterating stats
- `Dex.getEffectByID` -> `Dex.conditions.getByID`
- `Dex.getType` -> `Dex.types.get`
- `Dex.data.Formats` -> `Dex.data.Rulesets`
- `Dex.formats` -> now an array `Dex.formats.all()`
- `Dex.getRuleTable` -> `Dex.formats.getRuleTable`
- `Dex.validateFormat` -> `Dex.formats.validate`

Team functions have been split off into a new `sim/teams` package:

- `Dex.packTeam` -> `Teams.pack`
- `Dex.fastUnpackTeam` -> `Teams.unpack`
- `Dex.generateTeam` -> `Teams.generate`
- `Dex.stringifyTeam` -> `Teams.export`

`Teams.export` has also been rewritten to better match how it works in client.

This implements #8178
2021-04-08 03:00:37 -07:00
..
crashlogger.ts Update to latest eslint 2020-09-29 15:28:08 -07:00
DASHYCODE.md Clarify Dashycode documentation 2019-07-12 02:04:07 -05:00
dashycode.ts Remove last vestiges of tslint 2020-10-27 22:49:00 +00:00
fs.ts Lib: Add an index file for all exports (#7972) 2021-01-31 18:00:19 -08:00
index.ts Lib: Add an index file for all exports (#7972) 2021-01-31 18:00:19 -08:00
net.ts Lib: Add an index file for all exports (#7972) 2021-01-31 18:00:19 -08:00
process-manager.ts Support hotpatching User/Room/ProcessManager protos (#8095) 2021-03-08 05:23:17 -08:00
repl.ts Fix build errors 2020-11-30 13:17:52 -06:00
STREAMS.md Introduce chunk readers for ReadStream (#7215) 2020-09-27 08:55:59 -07:00
streams.ts Properly type Promises (#7712) 2020-11-19 23:19:42 -08:00
utils.ts Update Dex API (#8181) 2021-04-08 03:00:37 -07:00