mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 04:06:09 +00:00
10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const growth: SimpleTranslationEntries = {
|
||
|
"Erratic": "Erratic",
|
||
|
"Fast": "Fast",
|
||
|
"Medium_Fast": "Medium Fast",
|
||
|
"Medium_Slow": "Medium Slow",
|
||
|
"Slow": "Slow",
|
||
|
"Fluctuating": "Fluctuating"
|
||
|
} as const;
|