[QoL] Update Normal -> Not Shiny. Remove no pokerus option (#3402)

This commit is contained in:
Leo Kim 2024-08-07 23:24:45 +09:00 committed by GitHub
parent 0ef329e8eb
commit c186d53f3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,7 @@ export const filterBar: SimpleTranslationEntries = {
"miscFilter": "Misc", "miscFilter": "Misc",
"sortFilter": "Sort", "sortFilter": "Sort",
"all": "All", "all": "All",
"normal": "Normal", "normal": "Not Shiny",
"uncaught": "Uncaught", "uncaught": "Uncaught",
"passive": "Passive", "passive": "Passive",
"passiveUnlocked": "Passive Unlocked", "passiveUnlocked": "Passive Unlocked",

View File

@ -467,7 +467,6 @@ export default class StarterSelectUiHandler extends MessageUiHandler {
const pokerusLabels = [ const pokerusLabels = [
new DropDownLabel(i18next.t("filterBar:pokerus"), undefined, DropDownState.OFF), new DropDownLabel(i18next.t("filterBar:pokerus"), undefined, DropDownState.OFF),
new DropDownLabel(i18next.t("filterBar:hasPokerus"), undefined, DropDownState.ON), new DropDownLabel(i18next.t("filterBar:hasPokerus"), undefined, DropDownState.ON),
new DropDownLabel(i18next.t("filterBar:noPokerus"), undefined, DropDownState.EXCLUDE),
]; ];
const miscOptions = [ const miscOptions = [
new DropDownOption(this.scene, "WIN", winLabels), new DropDownOption(this.scene, "WIN", winLabels),