2024-05-06 19:25:17 +01:00
|
|
|
import { ability } from "./ability";
|
2024-05-14 00:12:28 +01:00
|
|
|
import { abilityTriggers } from "./ability-trigger";
|
2024-05-06 19:25:17 +01:00
|
|
|
import { battle } from "./battle";
|
|
|
|
import { commandUiHandler } from "./command-ui-handler";
|
2024-05-16 09:31:50 +01:00
|
|
|
import { egg } from "./egg";
|
2024-05-06 19:25:17 +01:00
|
|
|
import { fightUiHandler } from "./fight-ui-handler";
|
2024-05-12 03:04:09 +01:00
|
|
|
import { growth } from "./growth";
|
2024-05-06 19:25:17 +01:00
|
|
|
import { menu } from "./menu";
|
|
|
|
import { menuUiHandler } from "./menu-ui-handler";
|
2024-05-16 05:32:45 +01:00
|
|
|
import { modifierType } from "./modifier-type";
|
2024-05-06 19:25:17 +01:00
|
|
|
import { move } from "./move";
|
2024-05-12 03:22:45 +01:00
|
|
|
import { nature } from "./nature";
|
2024-05-06 19:25:17 +01:00
|
|
|
import { pokeball } from "./pokeball";
|
|
|
|
import { pokemon } from "./pokemon";
|
2024-05-17 15:43:11 +01:00
|
|
|
import { pokemonInfo } from "./pokemon-info";
|
2024-05-16 23:52:01 +01:00
|
|
|
import { splashMessages } from "./splash-messages";
|
2024-05-06 19:25:17 +01:00
|
|
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
2024-05-16 23:52:01 +01:00
|
|
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
2024-05-06 19:25:17 +01:00
|
|
|
import { tutorial } from "./tutorial";
|
2024-05-15 18:31:18 +01:00
|
|
|
import { weather } from "./weather";
|
2024-05-17 11:21:35 +01:00
|
|
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
2024-05-17 11:09:08 +01:00
|
|
|
import { berry } from "./berry";
|
2024-05-06 19:25:17 +01:00
|
|
|
|
|
|
|
export const esConfig = {
|
|
|
|
ability: ability,
|
2024-05-14 00:12:28 +01:00
|
|
|
abilityTriggers: abilityTriggers,
|
2024-05-06 19:25:17 +01:00
|
|
|
battle: battle,
|
|
|
|
commandUiHandler: commandUiHandler,
|
2024-05-16 09:31:50 +01:00
|
|
|
egg: egg,
|
2024-05-06 19:25:17 +01:00
|
|
|
fightUiHandler: fightUiHandler,
|
2024-05-16 23:52:01 +01:00
|
|
|
growth: growth,
|
2024-05-06 19:25:17 +01:00
|
|
|
menu: menu,
|
2024-05-16 23:52:01 +01:00
|
|
|
menuUiHandler: menuUiHandler,
|
|
|
|
modifierType: modifierType,
|
2024-05-06 19:25:17 +01:00
|
|
|
move: move,
|
2024-05-16 23:52:01 +01:00
|
|
|
nature: nature,
|
2024-05-06 19:25:17 +01:00
|
|
|
pokeball: pokeball,
|
|
|
|
pokemon: pokemon,
|
2024-05-17 15:43:11 +01:00
|
|
|
pokemonInfo: pokemonInfo,
|
2024-05-16 23:52:01 +01:00
|
|
|
splashMessages: splashMessages,
|
2024-05-06 19:25:17 +01:00
|
|
|
starterSelectUiHandler: starterSelectUiHandler,
|
2024-05-16 10:05:25 +01:00
|
|
|
titles: titles,
|
|
|
|
trainerClasses: trainerClasses,
|
|
|
|
trainerNames: trainerNames,
|
2024-05-12 03:04:09 +01:00
|
|
|
tutorial: tutorial,
|
2024-05-16 05:32:45 +01:00
|
|
|
weather: weather,
|
2024-05-17 11:21:35 +01:00
|
|
|
battleMessageUiHandler: battleMessageUiHandler,
|
2024-05-17 11:09:08 +01:00
|
|
|
berry: berry,
|
2024-05-17 11:21:35 +01:00
|
|
|
}
|