mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-12 08:36:09 +00:00
c7de17a46e
* organizing, translations and achv localization * localized for all languages * minor fix * minor fix 2 * minor fix 3 * Fixed Achivment Localization, Added german localization and fixes some issues with german localization at other parts * fix pickup description * Update French achv.ts * French typo correction achv.ts * eslint fixes * added zhTW * minor fix * Achivment Bar is localized and gets bigger when using german * Changed some things to make it not as Big * The Achivment Bar now grows with the context * Updated Achivment Names in german * Update French achv.ts * Vouchers now will show the correct descrption again * minor fix * minor fixes * "sub" to "semi" * minor fix * fixes warning and organizes some files * forgot about english * korean translations * test fix --------- Co-authored-by: Jannik Tappert <tappertjannik@googlemail.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad <adrien.grivel@hotmail.fr>
78 lines
2.5 KiB
TypeScript
78 lines
2.5 KiB
TypeScript
import { ability } from "./ability";
|
|
import { abilityTriggers } from "./ability-trigger";
|
|
import { achv } from "./achv";
|
|
import { battle } from "./battle";
|
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
|
import { berry } from "./berry";
|
|
import { biome } from "./biome";
|
|
import { commandUiHandler } from "./command-ui-handler";
|
|
import {
|
|
PGFbattleSpecDialogue,
|
|
PGFdialogue,
|
|
PGFdoubleBattleDialogue,
|
|
PGFmiscDialogue,
|
|
PGMbattleSpecDialogue,
|
|
PGMdialogue,
|
|
PGMdoubleBattleDialogue,
|
|
PGMmiscDialogue
|
|
} from "./dialogue";
|
|
import { egg } from "./egg";
|
|
import { fightUiHandler } from "./fight-ui-handler";
|
|
import { gameStatsUiHandler } from "./game-stats-ui-handler";
|
|
import { growth } from "./growth";
|
|
import { menu } from "./menu";
|
|
import { menuUiHandler } from "./menu-ui-handler";
|
|
import { modifierType } from "./modifier-type";
|
|
import { move } from "./move";
|
|
import { nature } from "./nature";
|
|
import { pokeball } from "./pokeball";
|
|
import { pokemon } from "./pokemon";
|
|
import { pokemonInfo } from "./pokemon-info";
|
|
import { pokemonInfoContainer } from "./pokemon-info-container";
|
|
import { splashMessages } from "./splash-messages";
|
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
|
import { tutorial } from "./tutorial";
|
|
import { voucher } from "./voucher";
|
|
import { weather } from "./weather";
|
|
|
|
export const ptBrConfig = {
|
|
ability: ability,
|
|
abilityTriggers: abilityTriggers,
|
|
achv: achv,
|
|
battle: battle,
|
|
battleMessageUiHandler: battleMessageUiHandler,
|
|
berry: berry,
|
|
biome: biome,
|
|
commandUiHandler: commandUiHandler,
|
|
PGMdialogue: PGMdialogue,
|
|
PGFdialogue: PGFdialogue,
|
|
PGMbattleSpecDialogue: PGMbattleSpecDialogue,
|
|
PGFbattleSpecDialogue: PGFbattleSpecDialogue,
|
|
PGMmiscDialogue: PGMmiscDialogue,
|
|
PGFmiscDialogue: PGFmiscDialogue,
|
|
PGMdoubleBattleDialogue: PGMdoubleBattleDialogue,
|
|
PGFdoubleBattleDialogue: PGFdoubleBattleDialogue,
|
|
egg: egg,
|
|
fightUiHandler: fightUiHandler,
|
|
gameStatsUiHandler: gameStatsUiHandler,
|
|
growth: growth,
|
|
menu: menu,
|
|
menuUiHandler: menuUiHandler,
|
|
modifierType: modifierType,
|
|
move: move,
|
|
nature: nature,
|
|
pokeball: pokeball,
|
|
pokemon: pokemon,
|
|
pokemonInfo: pokemonInfo,
|
|
pokemonInfoContainer: pokemonInfoContainer,
|
|
splashMessages: splashMessages,
|
|
starterSelectUiHandler: starterSelectUiHandler,
|
|
titles: titles,
|
|
trainerClasses: trainerClasses,
|
|
trainerNames: trainerNames,
|
|
tutorial: tutorial,
|
|
voucher: voucher,
|
|
weather: weather
|
|
};
|