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-06-02 00:53:13 +01:00
|
|
|
import { achv } from "./achv";
|
2024-05-06 19:25:17 +01:00
|
|
|
import { battle } from "./battle";
|
2024-06-02 00:53:13 +01:00
|
|
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
|
|
|
import { berry } from "./berry";
|
|
|
|
import { biome } from "./biome";
|
2024-06-08 06:07:23 +01:00
|
|
|
import { challenges } from "./challenges";
|
2024-05-06 19:25:17 +01:00
|
|
|
import { commandUiHandler } from "./command-ui-handler";
|
2024-06-02 00:53:13 +01:00
|
|
|
import {
|
|
|
|
PGFbattleSpecDialogue,
|
|
|
|
PGFdialogue,
|
|
|
|
PGFdoubleBattleDialogue,
|
|
|
|
PGFmiscDialogue,
|
|
|
|
PGMbattleSpecDialogue,
|
|
|
|
PGMdialogue,
|
|
|
|
PGMdoubleBattleDialogue,
|
|
|
|
PGMmiscDialogue
|
|
|
|
} from "./dialogue";
|
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-06-08 16:03:01 +01:00
|
|
|
import { gameMode } from "./game-mode";
|
2024-06-02 00:53:13 +01:00
|
|
|
import { gameStatsUiHandler } from "./game-stats-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-06-02 00:53:13 +01:00
|
|
|
import { pokemonInfoContainer } from "./pokemon-info-container";
|
2024-06-08 16:03:01 +01:00
|
|
|
import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler";
|
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-19 23:25:52 +01:00
|
|
|
import { voucher } from "./voucher";
|
2024-06-02 00:53:13 +01:00
|
|
|
import { weather } from "./weather";
|
2024-06-07 20:08:34 +01:00
|
|
|
import { partyUiHandler } from "./party-ui-handler";
|
2024-05-06 19:25:17 +01:00
|
|
|
|
|
|
|
export const esConfig = {
|
2024-05-23 16:03:10 +01:00
|
|
|
ability: ability,
|
|
|
|
abilityTriggers: abilityTriggers,
|
2024-06-02 00:53:13 +01:00
|
|
|
achv: achv,
|
2024-05-23 16:03:10 +01:00
|
|
|
battle: battle,
|
2024-06-02 00:53:13 +01:00
|
|
|
battleMessageUiHandler: battleMessageUiHandler,
|
|
|
|
berry: berry,
|
|
|
|
biome: biome,
|
2024-06-08 06:07:23 +01:00
|
|
|
challenges: challenges,
|
2024-05-23 16:03:10 +01:00
|
|
|
commandUiHandler: commandUiHandler,
|
2024-06-02 00:53:13 +01:00
|
|
|
PGMdialogue: PGMdialogue,
|
|
|
|
PGFdialogue: PGFdialogue,
|
|
|
|
PGMbattleSpecDialogue: PGMbattleSpecDialogue,
|
|
|
|
PGFbattleSpecDialogue: PGFbattleSpecDialogue,
|
|
|
|
PGMmiscDialogue: PGMmiscDialogue,
|
|
|
|
PGFmiscDialogue: PGFmiscDialogue,
|
|
|
|
PGMdoubleBattleDialogue: PGMdoubleBattleDialogue,
|
|
|
|
PGFdoubleBattleDialogue: PGFdoubleBattleDialogue,
|
2024-05-23 16:03:10 +01:00
|
|
|
egg: egg,
|
|
|
|
fightUiHandler: fightUiHandler,
|
2024-06-08 16:03:01 +01:00
|
|
|
gameMode: gameMode,
|
2024-06-02 00:53:13 +01:00
|
|
|
gameStatsUiHandler: gameStatsUiHandler,
|
2024-05-23 16:03:10 +01:00
|
|
|
growth: growth,
|
|
|
|
menu: menu,
|
|
|
|
menuUiHandler: menuUiHandler,
|
|
|
|
modifierType: modifierType,
|
|
|
|
move: move,
|
|
|
|
nature: nature,
|
|
|
|
pokeball: pokeball,
|
|
|
|
pokemon: pokemon,
|
|
|
|
pokemonInfo: pokemonInfo,
|
2024-06-02 00:53:13 +01:00
|
|
|
pokemonInfoContainer: pokemonInfoContainer,
|
2024-06-08 16:03:01 +01:00
|
|
|
saveSlotSelectUiHandler: saveSlotSelectUiHandler,
|
2024-05-23 16:03:10 +01:00
|
|
|
splashMessages: splashMessages,
|
|
|
|
starterSelectUiHandler: starterSelectUiHandler,
|
|
|
|
titles: titles,
|
|
|
|
trainerClasses: trainerClasses,
|
|
|
|
trainerNames: trainerNames,
|
|
|
|
tutorial: tutorial,
|
|
|
|
voucher: voucher,
|
2024-06-07 20:08:34 +01:00
|
|
|
weather: weather,
|
|
|
|
partyUiHandler: partyUiHandler
|
2024-05-23 16:03:10 +01:00
|
|
|
};
|