mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-10 18:25:54 +00:00
15 lines
629 B
TypeScript
15 lines
629 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
|
||
|
export const modifierSelectUiHandler: SimpleTranslationEntries = {
|
||
|
"transfer": "Transfer",
|
||
|
"reroll": "Reroll",
|
||
|
"lockRarities": "Lock Rarities",
|
||
|
"checkTeam": "Check Team",
|
||
|
"transferDesc": "Transfer a held item from one Pokémon to another.",
|
||
|
"rerollDesc": "Spend money to reroll your item options.",
|
||
|
"lockRaritiesDesc": "Lock item rarities on reroll (affects reroll cost).",
|
||
|
"checkTeamDesc": "Check your team or use a form changing item.",
|
||
|
"rerollCost": "₽{{formattedMoney}}",
|
||
|
"itemCost": "₽{{formattedMoney}}"
|
||
|
} as const;
|