mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-11-27 05:28:19 +01:00
* Initial commits with logic to remove starters if they're in your party. Still need to make it work so that the starter selection cursor disappears when a starter is unselected * Updated code to be able to remove pokemon, including the side icons and cursor locations * Fixed popstarter to work with any index * Updating code to allow navigation of starter icons * Updating code to allow navigation of party starter icons * Updaing navigation of party icons * Updated logic to fix incorrect icon in top left of pokemon options when navigating the starter icons * Updated logic to include the ability to navigate and interact with the starter icons * Forgot to push the actual starter-select-ui-handler. Might be a bit hard to test things out without that :) * Removed some unnecessary comments * Fixed small bug with not being able to move from the far right to the gen selection when the starter icons were empty * Updated code to not be using a method to generate the party menu and made it more like it used to be. This should help with merge conflicts in the future * I committed the merged version but forgot to make the starter-select-ui-handler staged after making the changes * Accidentally broke challenges that had a specific typing requirement with last commit. This should fix it * Changed how navigation worked based on popular demand * Fixed code review comments * Accidentally left in a whole block of commented code. Intentionally removing it now * Started adding logic for mono type challenge runs to not break the game if the user tries to start a run with an invalid party * Updated the text to say the party is invalid * Updated logic to make invalid pokemon greyed out when no valid pokemon are in your party * Added comments on some code * Updated locales to include the key for trying to start with invalid parties during a challenge * Fixed some code from a bad merge where a challenge related param that was previously a number now needed to be a boolean and wasn't * Removed comment as per review
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
/**
|
|
* The menu namespace holds most miscellaneous text that isn't directly part of the game's
|
|
* contents or directly related to Pokemon data. This includes menu navigation, settings,
|
|
* account interactions, descriptive text, etc.
|
|
*/
|
|
export const starterSelectUiHandler: SimpleTranslationEntries = {
|
|
"confirmStartTeam": "使用這些寶可夢開始嗎?",
|
|
"invalidParty": "This is not a valid starting party!",
|
|
"gen1": "I",
|
|
"gen2": "II",
|
|
"gen3": "III",
|
|
"gen4": "IV",
|
|
"gen5": "V",
|
|
"gen6": "VI",
|
|
"gen7": "VII",
|
|
"gen8": "VIII",
|
|
"gen9": "IX",
|
|
"growthRate": "成長速度:",
|
|
"ability": "特性:",
|
|
"passive": "被動:",
|
|
"nature": "性格:",
|
|
"eggMoves": "孵化招式",
|
|
"start": "開始",
|
|
"addToParty": "加入隊伍",
|
|
"toggleIVs": "查看個體值",
|
|
"manageMoves": "管理技能",
|
|
"manageNature": "管理性格",
|
|
"useCandies": "使用糖果",
|
|
"selectNature": "選擇性格",
|
|
"selectMoveSwapOut": "選擇想要替換走的招式",
|
|
"selectMoveSwapWith": "選擇想要替換成的招式",
|
|
"unlockPassive": "解鎖被動",
|
|
"reduceCost": "降低花費",
|
|
"sameSpeciesEgg": "買蛋",
|
|
"cycleShiny": ": 閃光",
|
|
"cycleForm": ": 形態",
|
|
"cycleGender": ": 性別",
|
|
"cycleAbility": ": 特性",
|
|
"cycleNature": ": 性格",
|
|
"cycleVariant": ": 變種",
|
|
"enablePassive": "啟用被動",
|
|
"disablePassive": "禁用被動",
|
|
"locked": "未解鎖",
|
|
"disabled": "已禁用",
|
|
"uncaught": "未捕獲"
|
|
};
|