2024-05-13 17:18:24 +01:00
|
|
|
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 { nature } from "./nature";
|
|
|
|
import { pokeball } from "./pokeball";
|
|
|
|
import { pokemon } from "./pokemon";
|
|
|
|
import { pokemonStat } from "./pokemon-stat";
|
|
|
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
|
|
|
import { tutorial } from "./tutorial";
|
2024-05-15 18:31:18 +01:00
|
|
|
import { weather } from "./weather";
|
2024-05-13 17:18:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
export const ptBrConfig = {
|
|
|
|
ability: ability,
|
|
|
|
battle: battle,
|
|
|
|
commandUiHandler: commandUiHandler,
|
|
|
|
fightUiHandler: fightUiHandler,
|
|
|
|
menuUiHandler: menuUiHandler,
|
|
|
|
menu: menu,
|
|
|
|
move: move,
|
|
|
|
pokeball: pokeball,
|
|
|
|
pokemonStat: pokemonStat,
|
|
|
|
pokemon: pokemon,
|
|
|
|
starterSelectUiHandler: starterSelectUiHandler,
|
|
|
|
tutorial: tutorial,
|
|
|
|
nature: nature,
|
2024-05-15 18:31:18 +01:00
|
|
|
growth: growth,
|
|
|
|
weather: weather
|
2024-05-13 17:18:24 +01:00
|
|
|
}
|