mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-02 11:46:11 +00:00
e9ca17c519
* New growth rate lang files * Update i18n.ts, fixing overwrite * Added growth to lang conf files --------- Co-authored-by: rnicar <rj.nieto.car@gmail.com>
30 lines
945 B
TypeScript
30 lines
945 B
TypeScript
import { ability } from "./ability";
|
|
import { battle } from "./battle";
|
|
import { commandUiHandler } from "./command-ui-handler";
|
|
import { fightUiHandler } from "./fight-ui-handler";
|
|
import { growth } from "./growth";
|
|
import { menu } from "./menu";
|
|
import { menuUiHandler } from "./menu-ui-handler";
|
|
import { move } from "./move";
|
|
import { pokeball } from "./pokeball";
|
|
import { pokemon } from "./pokemon";
|
|
import { pokemonStat } from "./pokemon-stat";
|
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
|
import { tutorial } from "./tutorial";
|
|
|
|
|
|
export const esConfig = {
|
|
ability: ability,
|
|
battle: battle,
|
|
commandUiHandler: commandUiHandler,
|
|
fightUiHandler: fightUiHandler,
|
|
menuUiHandler: menuUiHandler,
|
|
menu: menu,
|
|
move: move,
|
|
pokeball: pokeball,
|
|
pokemonStat: pokemonStat,
|
|
pokemon: pokemon,
|
|
starterSelectUiHandler: starterSelectUiHandler,
|
|
tutorial: tutorial,
|
|
growth: growth
|
|
} |