From f8ca7660d313b257d8792778bc116073a7943da0 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Sun, 12 May 2024 15:22:36 +0200 Subject: [PATCH] Updated japanese config.ts with nature and growth --- src/locales/jp/config.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/locales/jp/config.ts b/src/locales/jp/config.ts index 99bf3921b..b91f3e4b9 100644 --- a/src/locales/jp/config.ts +++ b/src/locales/jp/config.ts @@ -2,15 +2,16 @@ 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"; -import { nature } from "./nature"; export const jpConfig = { @@ -26,5 +27,6 @@ export const jpConfig = { pokemon: pokemon, starterSelectUiHandler: starterSelectUiHandler, tutorial: tutorial, - nature: nature + nature: nature, + growth: growth }