mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 06:45:24 +01:00
* Add caching for test matchers types to improve ts performance * add skipLibCheck to tsconfig.json * Bump package versions * Move tm species map to its own file * Turn on ts-nocheck in pokemon-level-moves * Move initBiomes to own file * Add types to methods in ME encounter phase utils * Fix spacing --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
18 lines
748 B
TypeScript
18 lines
748 B
TypeScript
import type { Ability } from "#abilities/ability";
|
|
import type { PokemonSpecies } from "#data/pokemon-species";
|
|
import type { SpeciesId } from "#enums/species-id";
|
|
import type { ModifierTypes } from "#modifiers/modifier-type";
|
|
import type { Move } from "#moves/move";
|
|
import type { BiomeDepths, CatchableSpecies } from "#types/biomes";
|
|
|
|
export const allAbilities: Ability[] = [];
|
|
export const allMoves: Move[] = [];
|
|
export const allSpecies: PokemonSpecies[] = [];
|
|
|
|
// TODO: Figure out what this is used for and provide an appropriate tsdoc comment
|
|
export const modifierTypes = {} as ModifierTypes;
|
|
|
|
export const catchableSpecies: CatchableSpecies = {};
|
|
export const biomeDepths: BiomeDepths = {};
|
|
export const uncatchableSpecies: SpeciesId[] = [];
|