diff --git a/src/locales/ko/config.ts b/src/locales/ko/config.ts
index a9a7938de0c..80736f45341 100644
--- a/src/locales/ko/config.ts
+++ b/src/locales/ko/config.ts
@@ -24,5 +24,7 @@ export const koConfig = {
     pokemonStat: pokemonStat,
     pokemon: pokemon,
     starterSelectUiHandler: starterSelectUiHandler,
-    tutorial: tutorial
+    tutorial: tutorial,
+    nature: nature,
+    growth: growth
 }
\ No newline at end of file
diff --git a/src/locales/ko/growth.ts b/src/locales/ko/growth.ts
new file mode 100644
index 00000000000..16ad9a441f5
--- /dev/null
+++ b/src/locales/ko/growth.ts
@@ -0,0 +1,10 @@
+import { SimpleTranslationEntries } from "#app/plugins/i18n";
+
+export const growth: SimpleTranslationEntries = {
+    "Erratic": "불규칙",
+    "Fast": "빠름",
+    "Medium_Fast": "중간 빠름",
+    "Medium_Slow": "중간 느림",
+    "Slow": "느림",
+    "Fluctuating": "변동"
+} as const;
\ No newline at end of file
diff --git a/src/locales/ko/nature.ts b/src/locales/ko/nature.ts
new file mode 100644
index 00000000000..eb613d23278
--- /dev/null
+++ b/src/locales/ko/nature.ts
@@ -0,0 +1,29 @@
+import { SimpleTranslationEntries } from "#app/plugins/i18n";
+
+export const nature: SimpleTranslationEntries = {
+  "Hardy": "노력",
+  "Lonely": "외로움",
+  "Brave": "용감",
+  "Adamant": "고집",
+  "Naughty": "개구쟁이",
+  "Bold": "대담",
+  "Docile": "온순",
+  "Relaxed": "무사태평",
+  "Impish": "장난꾸러기",
+  "Lax": "촐랑",
+  "Timid": "겁쟁이",
+  "Hasty": "성급",
+  "Serious": "성실",
+  "Jolly": "명랑",
+  "Naive": "천진난만",
+  "Modest": "조심",
+  "Mild": "의젓",
+  "Quiet": "냉정",
+  "Bashful": "수줍음",
+  "Rash": "덜렁",
+  "Calm": "차분",
+  "Gentle": "얌전",
+  "Sassy": "건방",
+  "Careful": "신중",
+  "Quirky": "변덕"
+} as const;
\ No newline at end of file