New ptBR localization (#1028)

* Some translations (battle, modifier-type, trainer)

* More translations and fixes

* Minor fixes

* finished translations

* minor fix

* removed tera type
This commit is contained in:
José Ricardo Fleury Oliveira 2024-05-17 12:39:13 -03:00 committed by GitHub
parent 09b820161f
commit 8c21bdc0a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 388 additions and 314 deletions

View File

@ -0,0 +1,5 @@
import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const abilityTriggers: SimpleTranslationEntries = {
'blockRecoilDamage' : `{{abilityName}} de {{pokemonName}}\nprotegeu-o do dano de recuo!`,
} as const;

View File

@ -1,10 +1,10 @@
import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const battleMessageUiHandler: SimpleTranslationEntries = {
"ivBest": "Best",
"ivFantastic": "Fantastic",
"ivVeryGood": "Very Good",
"ivPrettyGood": "Pretty Good",
"ivDecent": "Decent",
"ivNoGood": "No Good",
"ivBest": "Melhor",
"ivFantastic": "Fantástico",
"ivVeryGood": "Muito Bom",
"ivPrettyGood": "Bom",
"ivDecent": "Regular",
"ivNoGood": "Ruim",
} as const;

View File

@ -3,13 +3,13 @@ import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const battle: SimpleTranslationEntries = {
"bossAppeared": "{{bossName}} apareceu.",
"trainerAppeared": "{{trainerName}}\nquer batalhar!",
"trainerAppearedDouble": "{{trainerName}}\nwould like to battle!",
"trainerAppearedDouble": "{{trainerName}}\nquerem batalhar!",
"singleWildAppeared": "Um {{pokemonName}} selvagem apareceu!",
"multiWildAppeared": "Um {{pokemonName1}} e um {{pokemonName2}} selvagens\napareceram!",
"playerComeBack": "{{pokemonName}}, retorne!",
"trainerComeBack": "{{trainerName}} retirou {{pokemonName}} da batalha!",
"playerGo": "{{pokemonName}}, eu escolho você!",
"trainerGo": "{{trainerName}} enviou {{pokemonName}}!",
"trainerGo": "{{trainerName}} escolheu {{pokemonName}}!",
"switchQuestion": "Quer trocar\nde {{pokemonName}}?",
"trainerDefeated": "Você derrotou\n{{trainerName}}!",
"pokemonCaught": "{{pokemonName}} foi capturado!",

View File

@ -2,47 +2,47 @@ import { BerryTranslationEntries } from "#app/plugins/i18n";
export const berry: BerryTranslationEntries = {
"SITRUS": {
name: "Sitrus Berry",
effect: "Restores 25% HP if HP is below 50%",
name: "Fruta Sitrus",
effect: "Restaura 25% dos PS se os PS estiverem abaixo de 50%",
},
"LUM": {
name: "Lum Berry",
effect: "Cures any non-volatile status condition and confusion",
name: "Fruta Lum",
effect: "Cura qualquer mudança de estado ou confusão",
},
"ENIGMA": {
name: "Enigma Berry",
effect: "Restores 25% HP if hit by a super effective move",
name: "Fruta Enigma",
effect: "Restaura 25% dos PS se atingido por um golpe supereficaz",
},
"LIECHI": {
name: "Liechi Berry",
effect: "Raises Attack if HP is below 25%",
name: "Fruta Liechi",
effect: "Aumenta o Ataque se os PS estiverem abaixo de 25%",
},
"GANLON": {
name: "Ganlon Berry",
effect: "Raises Defense if HP is below 25%",
name: "Fruta Ganlon",
effect: "Aumenta a Defesa se os PS estiverem abaixo de 25%",
},
"PETAYA": {
name: "Petaya Berry",
effect: "Raises Sp. Atk if HP is below 25%",
name: "Fruta Petaya",
effect: "Aumenta o Ataque Especial se os PS estiverem abaixo de 25%",
},
"APICOT": {
name: "Apicot Berry",
effect: "Raises Sp. Def if HP is below 25%",
name: "Fruta Apicot",
effect: "Aumenta a Defesa Especial se os PS estiverem abaixo de 25%",
},
"SALAC": {
name: "Salac Berry",
effect: "Raises Speed if HP is below 25%",
name: "Fruta Salac",
effect: "Aumenta a Velocidade se os PS estiverem abaixo de 25%",
},
"LANSAT": {
name: "Lansat Berry",
effect: "Raises critical hit ratio if HP is below 25%",
name: "Fruta Lansat",
effect: "Aumenta a chance de acerto crítico se os PS estiverem abaixo de 25%",
},
"STARF": {
name: "Starf Berry",
effect: "Sharply raises a random stat if HP is below 25%",
name: "Fruta Starf",
effect: "Aumenta drasticamente um atributo aleatório se os PS estiverem abaixo de 25%",
},
"LEPPA": {
name: "Leppa Berry",
effect: "Restores 10 PP to a move if its PP reaches 0",
name: "Fruta Leppa",
effect: "Restaura 10 PP de um movimento se seus PP acabarem",
},
} as const;

View File

@ -1,6 +1,8 @@
import { ability } from "./ability";
import { abilityTriggers } from "./ability-trigger";
import { battle } from "./battle";
import { commandUiHandler } from "./command-ui-handler";
import { egg } from "./egg";
import { fightUiHandler } from "./fight-ui-handler";
import { growth } from "./growth";
import { menu } from "./menu";
@ -11,16 +13,20 @@ import { nature } from "./nature";
import { pokeball } from "./pokeball";
import { pokemon } from "./pokemon";
import { pokemonInfo } from "./pokemon-info";
import { splashMessages } from "./splash-messages";
import { starterSelectUiHandler } from "./starter-select-ui-handler";
import { titles, trainerClasses, trainerNames } from "./trainers";
import { tutorial } from "./tutorial";
import { weather } from "./weather";
import { berry } from "./berry";
export const ptBrConfig = {
export const ptBrConfig = {
ability: ability,
abilityTriggers: abilityTriggers,
battle: battle,
commandUiHandler: commandUiHandler,
egg: egg,
fightUiHandler: fightUiHandler,
menuUiHandler: menuUiHandler,
menu: menu,
@ -29,10 +35,14 @@ export const ptBrConfig = {
pokemonInfo: pokemonInfo,
pokemon: pokemon,
starterSelectUiHandler: starterSelectUiHandler,
titles: titles,
trainerClasses: trainerClasses,
trainerNames: trainerNames,
tutorial: tutorial,
splashMessages: splashMessages,
nature: nature,
growth: growth,
weather: weather,
modifierType: modifierType,
berry: berry,
}
}

21
src/locales/pt_BR/egg.ts Normal file
View File

@ -0,0 +1,21 @@
import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const egg: SimpleTranslationEntries = {
"egg": "Ovo",
"greatTier": "Raro",
"ultraTier": "Épico",
"masterTier": "Lendário",
"defaultTier": "Comum",
"hatchWavesMessageSoon": "Barulhos podem ser ouvidos vindo de dentro! Vai chocar em breve!",
"hatchWavesMessageClose": "Parece se mover ocasionalmente. Pode estar perto de chocar.",
"hatchWavesMessageNotClose": "O que vai nascer disso? Não parece estar perto de chocar.",
"hatchWavesMessageLongTime": "Parece que este ovo vai demorar bastante para chocar.",
"gachaTypeLegendary": "Chance de Lendário Aumentada",
"gachaTypeMove": "Chance de Movimento de Ovo Raro Aumentada",
"gachaTypeShiny": "Chance de Shiny Aumentada",
"selectMachine": "Escolha uma máquina.",
"notEnoughVouchers": "Você não tem vouchers suficientes!",
"tooManyEggs": "Você já tem muitos ovos!",
"pull": "Prêmio",
"pulls": "Prêmios"
} as const;

View File

@ -4,384 +4,384 @@ export const modifierType: ModifierTypeTranslationEntries = {
ModifierType: {
"AddPokeballModifierType": {
name: "{{modifierCount}}x {{pokeballName}}",
description: "Receive {{pokeballName}} x{{modifierCount}} (Inventory: {{pokeballAmount}}) \nCatch Rate: {{catchRate}}",
description: "Ganhe x{{modifierCount}} {{pokeballName}} (Mochila: {{pokeballAmount}}) \nChance de captura: {{catchRate}}",
},
"AddVoucherModifierType": {
name: "{{modifierCount}}x {{voucherTypeName}}",
description: "Receive {{voucherTypeName}} x{{modifierCount}}",
description: "Ganhe x{{modifierCount}} {{voucherTypeName}}",
},
"PokemonHeldItemModifierType": {
extra: {
"inoperable": "{{pokemonName}} can't take\nthis item!",
"tooMany": "{{pokemonName}} has too many\nof this item!",
"inoperable": "{{pokemonName}} não pode\nsegurar esse item!",
"tooMany": "{{pokemonName}} tem muitos\nmuitos deste item!",
}
},
"PokemonHpRestoreModifierType": {
description: "Restores {{restorePoints}} HP or {{restorePercent}}% HP for one Pokémon, whichever is higher",
description: "Restaura {{restorePoints}} PS ou {{restorePercent}}% PS de um Pokémon, o que for maior",
extra: {
"fully": "Fully restores HP for one Pokémon",
"fullyWithStatus": "Fully restores HP for one Pokémon and heals any status ailment",
"fully": "Restaura totalmente os PS de um Pokémon",
"fullyWithStatus": "Restaura totalmente os PS de um Pokémon e cura qualquer mudança de estado",
}
},
"PokemonReviveModifierType": {
description: "Revives one Pokémon and restores {{restorePercent}}% HP",
description: "Reanima um Pokémon e restaura {{restorePercent}}% PS",
},
"PokemonStatusHealModifierType": {
description: "Heals any status ailment for one Pokémon",
description: "Cura uma mudança de estado de um Pokémon",
},
"PokemonPpRestoreModifierType": {
description: "Restores {{restorePoints}} PP for one Pokémon move",
description: "Restaura {{restorePoints}} PP para um movimento de um Pokémon",
extra: {
"fully": "Restores all PP for one Pokémon move",
"fully": "Restaura todos os PP para um movimento de um Pokémon",
}
},
"PokemonAllMovePpRestoreModifierType": {
description: "Restores {{restorePoints}} PP for all of one Pokémon's moves",
description: "Restaura {{restorePoints}} PP para todos os movimentos de um Pokémon",
extra: {
"fully": "Restores all PP for all of one Pokémon's moves",
"fully": "Restaura todos os PP para todos os movimentos de um Pokémon",
}
},
"PokemonPpUpModifierType": {
description: "Permanently increases PP for one Pokémon move by {{upPoints}} for every 5 maximum PP (maximum 3)",
description: "Aumenta permanentemente os PP para o movimento de um Pokémon em {{upPoints}} para cada 5 PP máximos (máximo 3)",
},
"PokemonNatureChangeModifierType": {
name: "{{natureName}} Mint",
description: "Changes a Pokémon's nature to {{natureName}} and permanently unlocks the nature for the starter.",
description: "Muda a natureza de um Pokémon para {{natureName}} e a desbloqueia permanentemente para seu inicial",
},
"DoubleBattleChanceBoosterModifierType": {
description: "Doubles the chance of an encounter being a double battle for {{battleCount}} battles",
description: "Dobra as chances de encontrar uma batalha em dupla por {{battleCount}} batalhas",
},
"TempBattleStatBoosterModifierType": {
description: "Increases the {{tempBattleStatName}} of all party members by 1 stage for 5 battles",
description: "Aumenta o atributo de {{tempBattleStatName}} para todos os membros da equipe por 5 batalhas",
},
"AttackTypeBoosterModifierType": {
description: "Increases the power of a Pokémon's {{moveType}}-type moves by 20%",
description: "Aumenta o poder dos ataques do tipo {{moveType}} de um Pokémon em 20%",
},
"PokemonLevelIncrementModifierType": {
description: "Increases a Pokémon's level by 1",
description: "Aumenta em 1 o nível de um Pokémon",
},
"AllPokemonLevelIncrementModifierType": {
description: "Increases all party members' level by 1",
description: "Aumenta em 1 os níveis de todos os Pokémon",
},
"PokemonBaseStatBoosterModifierType": {
description: "Increases the holder's base {{statName}} by 10%. The higher your IVs, the higher the stack limit.",
description: "Aumenta o atributo base de {{statName}} em 10%. Quanto maior os IVs, maior o limite de aumento",
},
"AllPokemonFullHpRestoreModifierType": {
description: "Restores 100% HP for all Pokémon",
description: "Restaura totalmente os PS de todos os Pokémon",
},
"AllPokemonFullReviveModifierType": {
description: "Revives all fainted Pokémon, fully restoring HP",
description: "Reanima todos os Pokémon, restaurando totalmente seus PS",
},
"MoneyRewardModifierType": {
description: "Grants a {{moneyMultiplier}} amount of money (₽{{moneyAmount}})",
description: "Garante uma quantidade {{moneyMultiplier}} de dinheiro (₽{{moneyAmount}})",
extra: {
"small": "small",
"moderate": "moderate",
"large": "large",
"small": "pequena",
"moderate": "moderada",
"large": "grande",
},
},
"ExpBoosterModifierType": {
description: "Increases gain of EXP. Points by {{boostPercent}}%",
description: "Aumenta o ganho de pontos de experiência em {{boostPercent}}%",
},
"PokemonExpBoosterModifierType": {
description: "Increases the holder's gain of EXP. Points by {{boostPercent}}%",
description: "Aumenta o ganho de pontos de experiência de quem segura em {{boostPercent}}%",
},
"PokemonFriendshipBoosterModifierType": {
description: "Increases friendship gain per victory by 50%",
description: "Aumenta o ganho de amizade por vitória em 50%",
},
"PokemonMoveAccuracyBoosterModifierType": {
description: "Increases move accuracy by {{accuracyAmount}} (maximum 100)",
description: "Aumenta a precisão dos movimentos em {{accuracyAmount}} (máximo 100)",
},
"PokemonMultiHitModifierType": {
description: "Attacks hit one additional time at the cost of a 60/75/82.5% power reduction per stack respectively",
description: "Ataques acertam uma vez adicional ao custo de uma redução de poder de 60/75/82.5% por item, respectivamente",
},
"TmModifierType": {
name: "TM{{moveId}} - {{moveName}}",
description: "Teach {{moveName}} to a Pokémon",
description: "Ensina {{moveName}} a um Pokémon",
},
"EvolutionItemModifierType": {
description: "Causes certain Pokémon to evolve",
description: "Faz certos Pokémon evoluírem",
},
"FormChangeItemModifierType": {
description: "Causes certain Pokémon to change form",
description: "Faz certos Pokémon mudarem de forma",
},
"FusePokemonModifierType": {
description: "Combines two Pokémon (transfers Ability, splits base stats and types, shares move pool)",
description: "Combina dois Pokémon (transfere Habilidade, divide os atributos base e tipos, compartilha os movimentos)",
},
"TerastallizeModifierType": {
name: "{{teraType}} Tera Shard",
description: "{{teraType}} Terastallizes the holder for up to 10 battles",
name: "{{teraType}} Fragmento Tera",
description: "{{teraType}} Terastaliza um Pokémon por até 10 batalhas",
},
"ContactHeldItemTransferChanceModifierType": {
description: "Upon attacking, there is a {{chancePercent}}% chance the foe's held item will be stolen",
description: "Quando atacar, tem {{chancePercent}}% de chance de roubar um item do oponente",
},
"TurnHeldItemTransferModifierType": {
description: "Every turn, the holder acquires one held item from the foe",
description: "Todo turno, o Pokémon ganha um item aleatório do oponente",
},
"EnemyAttackStatusEffectChanceModifierType": {
description: "Adds a {{chancePercent}}% chance to inflict {{statusEffect}} with attack moves",
description: "Ganha {{chancePercent}}% de chance de infligir {{statusEffect}} com ataques",
},
"EnemyEndureChanceModifierType": {
description: "Adds a {{chancePercent}}% chance of enduring a hit",
description: "Ganha {{chancePercent}}% de chance de sobreviver a um ataque que o faria desmaiar",
},
"RARE_CANDY": { name: "Rare Candy" },
"RARER_CANDY": { name: "Rarer Candy" },
"RARE_CANDY": { name: "Doce Raro" },
"RARER_CANDY": { name: "Doce Raríssimo" },
"MEGA_BRACELET": { name: "Mega Bracelet", description: "Mega Stones become available" },
"DYNAMAX_BAND": { name: "Dynamax Band", description: "Max Mushrooms become available" },
"TERA_ORB": { name: "Tera Orb", description: "Tera Shards become available" },
"MEGA_BRACELET": { name: "Mega Bracelete", description: "Mega Stones become available" },
"DYNAMAX_BAND": { name: "Bracelete Dynamax", description: "Max Mushrooms become available" },
"TERA_ORB": { name: "Orbe Tera", description: "Fragmentos Tera ficam disponíveis" },
"MAP": { name: "Map", description: "Allows you to choose your destination at a crossroads" },
"MAP": { name: "Mapa", description: "Permite escolher a próxima rota" },
"POTION": { name: "Potion" },
"SUPER_POTION": { name: "Super Potion" },
"HYPER_POTION": { name: "Hyper Potion" },
"MAX_POTION": { name: "Max Potion" },
"FULL_RESTORE": { name: "Full Restore" },
"POTION": { name: "Poção" },
"SUPER_POTION": { name: "Super Poção" },
"HYPER_POTION": { name: "Hiper Poção" },
"MAX_POTION": { name: "Poção Máxima" },
"FULL_RESTORE": { name: "Restaurador" },
"REVIVE": { name: "Revive" },
"MAX_REVIVE": { name: "Max Revive" },
"REVIVE": { name: "Reanimador" },
"MAX_REVIVE": { name: "Reanimador Máximo" },
"FULL_HEAL": { name: "Full Heal" },
"FULL_HEAL": { name: "Cura Total" },
"SACRED_ASH": { name: "Sacred Ash" },
"SACRED_ASH": { name: "Cinza Sagrada" },
"REVIVER_SEED": { name: "Reviver Seed", description: "Revives the holder for 1/2 HP upon fainting" },
"REVIVER_SEED": { name: "Semente Reanimadora", description: "Após desmaiar, reanima com 50% de PS" },
"ETHER": { name: "Ether" },
"MAX_ETHER": { name: "Max Ether" },
"ETHER": { name: "Éter" },
"MAX_ETHER": { name: "Éter Máximo" },
"ELIXIR": { name: "Elixir" },
"MAX_ELIXIR": { name: "Max Elixir" },
"MAX_ELIXIR": { name: "Elixir Máximo" },
"PP_UP": { name: "PP Up" },
"PP_MAX": { name: "PP Max" },
"PP_UP": { name: "Mais PP" },
"PP_MAX": { name: "PP Máximo" },
"LURE": { name: "Lure" },
"SUPER_LURE": { name: "Super Lure" },
"MAX_LURE": { name: "Max Lure" },
"LURE": { name: "Incenso" },
"SUPER_LURE": { name: "Super Incenso" },
"MAX_LURE": { name: "Incenso Máximo" },
"MEMORY_MUSHROOM": { name: "Memory Mushroom", description: "Recall one Pokémon's forgotten move" },
"MEMORY_MUSHROOM": { name: "Cogumemória", description: "Relembra um movimento esquecido" },
"EXP_SHARE": { name: "EXP. All", description: "Non-participants receive 20% of a single participant's EXP. Points" },
"EXP_BALANCE": { name: "EXP. Balance", description: "Weighs EXP. Points received from battles towards lower-leveled party members" },
"EXP_SHARE": { name: "Compart. de Exp.", description: "Distribui pontos de experiência para todos os membros da equipe" },
"EXP_BALANCE": { name: "Balanceador de Exp.", description: "Distribui pontos de experiência principalmente para os Pokémon mais fracos" },
"OVAL_CHARM": { name: "Oval Charm", description: "When multiple Pokémon participate in a battle, each gets an extra 10% of the total EXP" },
"OVAL_CHARM": { name: "Amuleto Oval", description: "Quando vários Pokémon participam de uma batalha, cada um recebe 10% extra de pontos de experiência" },
"EXP_CHARM": { name: "EXP. Charm" },
"SUPER_EXP_CHARM": { name: "Super EXP. Charm" },
"GOLDEN_EXP_CHARM": { name: "Golden EXP. Charm" },
"EXP_CHARM": { name: "Amuleto de Exp." },
"SUPER_EXP_CHARM": { name: "Super Amuleto de Exp." },
"GOLDEN_EXP_CHARM": { name: "Amuleto de Exp. Dourado" },
"LUCKY_EGG": { name: "Lucky Egg" },
"GOLDEN_EGG": { name: "Golden Egg" },
"LUCKY_EGG": { name: "Ovo da Sorte" },
"GOLDEN_EGG": { name: "Ovo Dourado" },
"SOOTHE_BELL": { name: "Soothe Bell" },
"SOOTHE_BELL": { name: "Guizo" },
"SOUL_DEW": { name: "Soul Dew", description: "Increases the influence of a Pokémon's nature on its stats by 10% (additive)" },
"SOUL_DEW": { name: "Joia da Alma", description: "Aumenta a influência da natureza de um Pokémon em seus atributos em 10% (cumulativo)" },
"NUGGET": { name: "Nugget" },
"BIG_NUGGET": { name: "Big Nugget" },
"RELIC_GOLD": { name: "Relic Gold" },
"NUGGET": { name: "Pepita" },
"BIG_NUGGET": { name: "Pepita Grande" },
"RELIC_GOLD": { name: "Relíquia de Ouro" },
"AMULET_COIN": { name: "Amulet Coin", description: "Increases money rewards by 20%" },
"GOLDEN_PUNCH": { name: "Golden Punch", description: "Grants 50% of damage inflicted as money" },
"COIN_CASE": { name: "Coin Case", description: "After every 10th battle, receive 10% of your money in interest" },
"AMULET_COIN": { name: "Moeda Amuleto", description: "Aumenta a recompensa de dinheiro em 50%" },
"GOLDEN_PUNCH": { name: "Soco Dourado", description: "Concede 50% do dano causado em dinheiro" },
"COIN_CASE": { name: "Moedeira", description: "Após cada 10ª batalha, recebe 10% de seu dinheiro em juros" },
"LOCK_CAPSULE": { name: "Lock Capsule", description: "Allows you to lock item rarities when rerolling items" },
"LOCK_CAPSULE": { name: "Cápsula de Travamento", description: "Permite que você trave raridades de itens ao rolar novamente" },
"GRIP_CLAW": { name: "Grip Claw" },
"WIDE_LENS": { name: "Wide Lens" },
"GRIP_CLAW": { name: "Garra-Aperto" },
"WIDE_LENS": { name: "Lente Ampla" },
"MULTI_LENS": { name: "Multi Lens" },
"MULTI_LENS": { name: "Multi Lentes" },
"HEALING_CHARM": { name: "Healing Charm", description: "Increases the effectiveness of HP restoring moves and items by 10% (excludes Revives)" },
"CANDY_JAR": { name: "Candy Jar", description: "Increases the number of levels added by Rare Candy items by 1" },
"HEALING_CHARM": { name: "Amuleto de Cura", description: "Aumenta a eficácia dos movimentos e itens que restauram PS em 10% (exceto Reanimador)" },
"CANDY_JAR": { name: "Pote de Doces", description: "Aumenta o número de níveis adicionados pelo Doce Raro em 1" },
"BERRY_POUCH": { name: "Berry Pouch", description: "Adds a 25% chance that a used berry will not be consumed" },
"BERRY_POUCH": { name: "Bolsa de Berries", description: "Adiciona uma chance de 25% de que uma berry usada não seja consumida" },
"FOCUS_BAND": { name: "Focus Band", description: "Adds a 10% chance to survive with 1 HP after being damaged enough to faint" },
"FOCUS_BAND": { name: "Bandana", description: "Adiciona uma chance de 10% de sobreviver com 1 PS após ser danificado o suficiente para desmaiar" },
"QUICK_CLAW": { name: "Quick Claw", description: "Adds a 10% chance to move first regardless of speed (after priority)" },
"QUICK_CLAW": { name: "Garra Rápida", description: "Adiciona uma chance de 10% de atacar primeiro, ignorando sua velocidade (após prioridades)" },
"KINGS_ROCK": { name: "King's Rock", description: "Adds a 10% chance an attack move will cause the opponent to flinch" },
"KINGS_ROCK": { name: "Pedra do Rei", description: "Adiciona uma chance de 10% de movimentos fazerem o oponente hesitar" },
"LEFTOVERS": { name: "Leftovers", description: "Heals 1/16 of a Pokémon's maximum HP every turn" },
"SHELL_BELL": { name: "Shell Bell", description: "Heals 1/8 of a Pokémon's dealt damage" },
"LEFTOVERS": { name: "Sobras", description: "Cura 1/16 dos PS máximos de um Pokémon a cada turno" },
"SHELL_BELL": { name: "Concha-Sino", description: "Cura 1/8 do dano causado por um Pokémon" },
"BATON": { name: "Baton", description: "Allows passing along effects when switching Pokémon, which also bypasses traps" },
"BATON": { name: "Bastão", description: "Permite passar mudanças de atributo ao trocar Pokémon, ignorando armadilhas" },
"SHINY_CHARM": { name: "Shiny Charm", description: "Dramatically increases the chance of a wild Pokémon being Shiny" },
"ABILITY_CHARM": { name: "Ability Charm", description: "Dramatically increases the chance of a wild Pokémon having a Hidden Ability" },
"SHINY_CHARM": { name: "Amuleto Brilhante", description: "Aumenta drasticamente a chance de um Pokémon selvagem ser Shiny" },
"ABILITY_CHARM": { name: "Amuleto de Habilidade", description: "Aumenta drasticamente a chance de um Pokémon selvagem ter uma Habilidade Oculta" },
"IV_SCANNER": { name: "IV Scanner", description: "Allows scanning the IVs of wild Pokémon. 2 IVs are revealed per stack. The best IVs are shown first" },
"IV_SCANNER": { name: "Scanner de IVs", description: "Permite escanear os IVs de Pokémon selvagens. 2 IVs são revelados por item. Os melhores IVs são mostrados primeiro" },
"DNA_SPLICERS": { name: "DNA Splicers" },
"DNA_SPLICERS": { name: "Splicer de DNA" },
"MINI_BLACK_HOLE": { name: "Mini Black Hole" },
"MINI_BLACK_HOLE": { name: "Mini Buraco Negro" },
"GOLDEN_POKEBALL": { name: "Golden Poké Ball", description: "Adds 1 extra item option at the end of every battle" },
"GOLDEN_POKEBALL": { name: "Poké Bola Dourada", description: "Adiciona 1 opção de item extra ao final de cada batalha" },
"ENEMY_DAMAGE_BOOSTER": { name: "Damage Token", description: "Increases damage by 5%" },
"ENEMY_DAMAGE_REDUCTION": { name: "Protection Token", description: "Reduces incoming damage by 2.5%" },
"ENEMY_HEAL": { name: "Recovery Token", description: "Heals 2% of max HP every turn" },
"ENEMY_ATTACK_POISON_CHANCE": { name: "Poison Token" },
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Paralyze Token" },
"ENEMY_ATTACK_SLEEP_CHANCE": { name: "Sleep Token" },
"ENEMY_ATTACK_FREEZE_CHANCE": { name: "Freeze Token" },
"ENEMY_ATTACK_BURN_CHANCE": { name: "Burn Token" },
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Full Heal Token", description: "Adds a 10% chance every turn to heal a status condition" },
"ENEMY_ENDURE_CHANCE": { name: "Endure Token" },
"ENEMY_FUSED_CHANCE": { name: "Fusion Token", description: "Adds a 1% chance that a wild Pokémon will be a fusion" },
"ENEMY_DAMAGE_BOOSTER": { name: "Token de Dano", description: "Aumenta o dano em 5%" },
"ENEMY_DAMAGE_REDUCTION": { name: "Token de Proteção", description: "Reduz o dano recebido em 2,5%" },
"ENEMY_HEAL": { name: "Token de Recuperação", description: "Cura 2% dos PS máximos a cada turno" },
"ENEMY_ATTACK_POISON_CHANCE": { name: "Token de Veneno" },
"ENEMY_ATTACK_PARALYZE_CHANCE": { name: "Token de Paralisia" },
"ENEMY_ATTACK_SLEEP_CHANCE": { name: "Token de Sono" },
"ENEMY_ATTACK_FREEZE_CHANCE": { name: "Token de Congelamento" },
"ENEMY_ATTACK_BURN_CHANCE": { name: "Token de Queimadura" },
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Token de Cura Total", description: "Adiciona uma chance de 10% a cada turno de curar uma condição de status" },
"ENEMY_ENDURE_CHANCE": { name: "Token de Persistência" },
"ENEMY_FUSED_CHANCE": { name: "Token de Fusão", description: "Adiciona uma chance de 1% de que um Pokémon selvagem seja uma fusão" },
},
TempBattleStatBoosterItem: {
"x_attack": "X Attack",
"x_defense": "X Defense",
"x_sp_atk": "X Sp. Atk",
"x_sp_def": "X Sp. Def",
"x_speed": "X Speed",
"x_accuracy": "X Accuracy",
"dire_hit": "Dire Hit",
"x_attack": "Ataque X",
"x_defense": "Defesa X",
"x_sp_atk": "Ataque Esp. X",
"x_sp_def": "Defesa Esp. X",
"x_speed": "Velocidade X",
"x_accuracy": "Precisão X",
"dire_hit": "Direto",
},
AttackTypeBoosterItem: {
"silk_scarf": "Silk Scarf",
"black_belt": "Black Belt",
"sharp_beak": "Sharp Beak",
"poison_barb": "Poison Barb",
"soft_sand": "Soft Sand",
"hard_stone": "Hard Stone",
"silver_powder": "Silver Powder",
"spell_tag": "Spell Tag",
"metal_coat": "Metal Coat",
"charcoal": "Charcoal",
"mystic_water": "Mystic Water",
"miracle_seed": "Miracle Seed",
"magnet": "Magnet",
"twisted_spoon": "Twisted Spoon",
"never_melt_ice": "Never-Melt Ice",
"dragon_fang": "Dragon Fang",
"black_glasses": "Black Glasses",
"fairy_feather": "Fairy Feather",
"silk_scarf": "Lenço de Seda",
"black_belt": "Faixa Preta",
"sharp_beak": "Bico Afiado",
"poison_barb": "Farpa Venenosa",
"soft_sand": "Areia Macia",
"hard_stone": "Pedra Dura",
"silver_powder": "Pó de Prata",
"spell_tag": "Talismã de Feitiço",
"metal_coat": "Revestimento Metálico",
"charcoal": "Carvão",
"mystic_water": "Água Mística",
"miracle_seed": "Semente Milagrosa",
"magnet": "Ímã",
"twisted_spoon": "Colher Torcida",
"never_melt_ice": "Gelo Eterno",
"dragon_fang": "Presa de Dragão",
"black_glasses": "Óculos Escuros",
"fairy_feather": "Pena de Fada",
},
BaseStatBoosterItem: {
"hp_up": "HP Up",
"protein": "Protein",
"iron": "Iron",
"calcium": "Calcium",
"zinc": "Zinc",
"carbos": "Carbos",
"hp_up": "Mais PS",
"protein": "Proteína",
"iron": "Ferro",
"calcium": "Cálcio",
"zinc": "Zinco",
"carbos": "Carboidrato",
},
EvolutionItem: {
"NONE": "None",
"LINKING_CORD": "Linking Cord",
"SUN_STONE": "Sun Stone",
"MOON_STONE": "Moon Stone",
"LEAF_STONE": "Leaf Stone",
"FIRE_STONE": "Fire Stone",
"WATER_STONE": "Water Stone",
"THUNDER_STONE": "Thunder Stone",
"ICE_STONE": "Ice Stone",
"DUSK_STONE": "Dusk Stone",
"DAWN_STONE": "Dawn Stone",
"SHINY_STONE": "Shiny Stone",
"CRACKED_POT": "Cracked Pot",
"SWEET_APPLE": "Sweet Apple",
"TART_APPLE": "Tart Apple",
"STRAWBERRY_SWEET": "Strawberry Sweet",
"UNREMARKABLE_TEACUP": "Unremarkable Teacup",
"LINKING_CORD": "Cabo de Conexão",
"SUN_STONE": "Pedra do Sol",
"MOON_STONE": "Pedra da Lua",
"LEAF_STONE": "Pedra da Folha",
"FIRE_STONE": "Pedra do Fogo",
"WATER_STONE": "Pedra da Água",
"THUNDER_STONE": "Pedra do Trovão",
"ICE_STONE": "Pedra do Gelo",
"DUSK_STONE": "Pedra do Crepúsculo",
"DAWN_STONE": "Pedra da Alvorada",
"SHINY_STONE": "Pedra Brilhante",
"CRACKED_POT": "Vaso Quebrado",
"SWEET_APPLE": "Maçã Doce",
"TART_APPLE": "Maçã Azeda",
"STRAWBERRY_SWEET": "Doce de Morango",
"UNREMARKABLE_TEACUP": "Xícara Comum",
"CHIPPED_POT": "Chipped Pot",
"BLACK_AUGURITE": "Black Augurite",
"GALARICA_CUFF": "Galarica Cuff",
"GALARICA_WREATH": "Galarica Wreath",
"PEAT_BLOCK": "Peat Block",
"AUSPICIOUS_ARMOR": "Auspicious Armor",
"MALICIOUS_ARMOR": "Malicious Armor",
"MASTERPIECE_TEACUP": "Masterpiece Teacup",
"METAL_ALLOY": "Metal Alloy",
"SCROLL_OF_DARKNESS": "Scroll Of Darkness",
"SCROLL_OF_WATERS": "Scroll Of Waters",
"SYRUPY_APPLE": "Syrupy Apple",
"CHIPPED_POT": "Pote Lascado",
"BLACK_AUGURITE": "Mineral Negro",
"GALARICA_CUFF": "Bracelete de Galar",
"GALARICA_WREATH": "Coroa de Galar",
"PEAT_BLOCK": "Bloco de Turfa",
"AUSPICIOUS_ARMOR": "Armadura Prometida",
"MALICIOUS_ARMOR": "Armadura Maldita",
"MASTERPIECE_TEACUP": "Xícara Excepcional",
"METAL_ALLOY": "Liga de Metal",
"SCROLL_OF_DARKNESS": "Pergaminho da Escuridão",
"SCROLL_OF_WATERS": "Pergaminho da Água",
"SYRUPY_APPLE": "Xarope de Maçã",
},
FormChangeItem: {
"NONE": "None",
"ABOMASITE": "Abomasite",
"ABSOLITE": "Absolite",
"AERODACTYLITE": "Aerodactylite",
"AGGRONITE": "Aggronite",
"ALAKAZITE": "Alakazite",
"ALTARIANITE": "Altarianite",
"AMPHAROSITE": "Ampharosite",
"AUDINITE": "Audinite",
"BANETTITE": "Banettite",
"BEEDRILLITE": "Beedrillite",
"BLASTOISINITE": "Blastoisinite",
"BLAZIKENITE": "Blazikenite",
"CAMERUPTITE": "Cameruptite",
"CHARIZARDITE_X": "Charizardite X",
"CHARIZARDITE_Y": "Charizardite Y",
"DIANCITE": "Diancite",
"GALLADITE": "Galladite",
"GARCHOMPITE": "Garchompite",
"GARDEVOIRITE": "Gardevoirite",
"GENGARITE": "Gengarite",
"GLALITITE": "Glalitite",
"GYARADOSITE": "Gyaradosite",
"HERACRONITE": "Heracronite",
"HOUNDOOMINITE": "Houndoominite",
"KANGASKHANITE": "Kangaskhanite",
"LATIASITE": "Latiasite",
"LATIOSITE": "Latiosite",
"LOPUNNITE": "Lopunnite",
"LUCARIONITE": "Lucarionite",
"MANECTITE": "Manectite",
"MAWILITE": "Mawilite",
"MEDICHAMITE": "Medichamite",
"METAGROSSITE": "Metagrossite",
"MEWTWONITE_X": "Mewtwonite X",
"MEWTWONITE_Y": "Mewtwonite Y",
"PIDGEOTITE": "Pidgeotite",
"PINSIRITE": "Pinsirite",
"RAYQUAZITE": "Rayquazite",
"SABLENITE": "Sablenite",
"SALAMENCITE": "Salamencite",
"SCEPTILITE": "Sceptilite",
"SCIZORITE": "Scizorite",
"SHARPEDONITE": "Sharpedonite",
"SLOWBRONITE": "Slowbronite",
"STEELIXITE": "Steelixite",
"SWAMPERTITE": "Swampertite",
"TYRANITARITE": "Tyranitarite",
"VENUSAURITE": "Venusaurite",
"ABOMASITE": "Abomasita",
"ABSOLITE": "Absolita",
"AERODACTYLITE": "Aerodactylita",
"AGGRONITE": "Aggronita",
"ALAKAZITE": "Alakazita",
"ALTARIANITE": "Altarianita",
"AMPHAROSITE": "Ampharosita",
"AUDINITE": "Audinita",
"BANETTITE": "Banettita",
"BEEDRILLITE": "Beedrillita",
"BLASTOISINITE": "Blastoisinita",
"BLAZIKENITE": "Blazikenita",
"CAMERUPTITE": "Cameruptita",
"CHARIZARDITE X": "Charizardita X",
"CHARIZARDITE Y": "Charizardita Y",
"DIANCITE": "Diancita",
"GALLADITE": "Galladita",
"GARCHOMPITE": "Garchompita",
"GARDEVOIRITE": "Gardevoirita",
"GENGARITE": "Gengarita",
"GLALITITE": "Glalitita",
"GYARADOSITE": "Gyaradosita",
"HERACRONITE": "Heracronita",
"HOUNDOOMINITE": "Houndoominita",
"KANGASKHANITE": "Kangaskhanita",
"LATIASITE": "Latiasita",
"LATIOSITE": "Latiosita",
"LOPUNNITE": "Lopunnita",
"LUCARIONITE": "Lucarionita",
"MANECTITE": "Manectita",
"MAWILITE": "Mawilita",
"MEDICHAMITE": "Medichamita",
"METAGROSSITE": "Metagrossita",
"MEWTWONITE X": "Mewtwonita X",
"MEWTWONITE Y": "Mewtwonita Y",
"PIDGEOTITE": "Pidgeotita",
"PINSIRITE": "Pinsirita",
"SABLENITE": "Sablenita",
"RAYQUAZITE": "Rayquazita",
"SALAMENCITE": "Salamencita",
"SCEPTILITE": "Sceptilita",
"SCIZORITE": "Scizorita",
"SHARPEDONITE": "Sharpedonita",
"SLOWBRONITE": "Slowbronita",
"STEELIXITE": "Steelixita",
"SWAMPERTITE": "Swampertita",
"TYRANITARITE": "Tyranitarita",
"VENUSAURITE": "Venusaurita",
"BLUE_ORB": "Blue Orb",
"RED_ORB": "Red Orb",
"SHARP_METEORITE": "Sharp Meteorite",
"HARD_METEORITE": "Hard Meteorite",
"SMOOTH_METEORITE": "Smooth Meteorite",
"ADAMANT_CRYSTAL": "Adamant Crystal",
"LUSTROUS_ORB": "Lustrous Orb",
"GRISEOUS_CORE": "Griseous Core",
"REVEAL_GLASS": "Reveal Glass",
"GRACIDEA": "Gracidea",
"MAX_MUSHROOMS": "Max Mushrooms",
"DARK_STONE": "Dark Stone",
"LIGHT_STONE": "Light Stone",
"PRISON_BOTTLE": "Prison Bottle",
"N_LUNARIZER": "N Lunarizer",
"N_SOLARIZER": "N Solarizer",
"RUSTED_SWORD": "Rusted Sword",
"RUSTED_SHIELD": "Rusted Shield",
"ICY_REINS_OF_UNITY": "Icy Reins Of Unity",
"SHADOW_REINS_OF_UNITY": "Shadow Reins Of Unity",
"WELLSPRING_MASK": "Wellspring Mask",
"HEARTHFLAME_MASK": "Hearthflame Mask",
"CORNERSTONE_MASK": "Cornerstone Mask",
"SHOCK_DRIVE": "Shock Drive",
"BURN_DRIVE": "Burn Drive",
"CHILL_DRIVE": "Chill Drive",
"DOUSE_DRIVE": "Douse Drive",
"BLUE_ORB": "Orbe Azul",
"RED_ORB": "Orbe Vermelha",
"SHARP_METEORITE": "Meteorito Afiado",
"HARD_METEORITE": "Meteorito Duro",
"SMOOTH_METEORITE": " Meteorito Liso",
"ADAMANT_CRYSTAL": "Cristal Adamante",
"LUSTROUS_ORB": "Orbe Pérola",
"GRISEOUS_CORE": "Núcleo Platinado",
"REVEAL_GLASS": "Espelho da Verdade",
"GRACIDEA": "Gracídea",
"MAX_MUSHROOMS": "Cogumax",
"DARK_STONE": "Pedra das Trevas",
"LIGHT_STONE": "Pedra da Luz",
"PRISON_BOTTLE": "Garrafa Prisão",
"N_LUNARIZER": "Lunarizador N",
"N_SOLARIZER": "Solarizador N",
"RUSTED_SWORD": "Espada Enferrujada",
"RUSTED_SHIELD": "Escudo Enferrujado",
"ICY_REINS_OF_UNITY": "Rédeas de Gelo da União",
"SHADOW_REINS_OF_UNITY": "Rédeas Sombrias da União",
"WELLSPRING_MASK": "Máscara Nascente",
"HEARTHFLAME_MASK": "Máscara Fornalha",
"CORNERSTONE_MASK": "Máscara Alicerce",
"SHOCK_DRIVE": "MagneDisco",
"BURN_DRIVE": "IgneDisco",
"CHILL_DRIVE": "CrioDisco",
"DOUSE_DRIVE": "HidroDisco",
},
} as const;

View File

@ -3583,7 +3583,7 @@ export const move: MoveTranslationEntries = {
},
"revivalBlessing": {
name: "Revival Blessing",
effect: "O usuário concede uma bênção amorosa, revivendo um Pokémon da equipe que tenha desmaiado e restaurando metade do máximo de PS desse Pokémon."
effect: "O usuário concede uma bênção amorosa, reanimando um Pokémon da equipe que tenha desmaiado e restaurando metade do máximo de PS desse Pokémon."
},
"saltCure": {
name: "Salt Cure",

View File

@ -4,7 +4,7 @@ export const pokeball: SimpleTranslationEntries = {
"pokeBall": "Poké Bola",
"greatBall": "Grande Bola",
"ultraBall": "Ultra Bola",
"rogueBall": "Rogue Bola",
"masterBall": "Master Bola",
"luxuryBall": "Bola de Luxo",
"rogueBall": "Bola Rogue",
"masterBall": "Bole Mestra",
"luxuryBall": "Bola Luxo",
} as const;

View File

@ -0,0 +1,37 @@
import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const splashMessages: SimpleTranslationEntries = {
"battlesWon": "Batalhas Ganhas!",
"joinTheDiscord": "Junte-se ao Discord!",
"infiniteLevels": "Níveis Infinitos!",
"everythingStacks": "Tudo Acumula!",
"optionalSaveScumming": "Você Pode Dar F5!",
"biomes": "35 Biomas!",
"openSource": "Código Aberto!",
"playWithSpeed": "Jogue na Velocidade 5x!",
"liveBugTesting": "Testamos os Bugs Ao Vivo!",
"heavyInfluence": "Grande Influência de RoR2!",
"pokemonRiskAndPokemonRain": "Pokémon Risk e Pokémon Rain!",
"nowWithMoreSalt": "O Choro é Livre!",
"infiniteFusionAtHome": "Infinite Fusion da Shopee!",
"brokenEggMoves": "Mov. de Ovo Apelões!",
"magnificent": "Magnífico!",
"mubstitute": "Mubstituto!",
"thatsCrazy": "Que Doidera!",
"oranceJuice": "Suco de Laranja!",
"questionableBalancing": "Balanceamento Questionável!",
"coolShaders": "Shader Maneiros!",
"aiFree": "Livre de IA!",
"suddenDifficultySpikes": "Ficou Difícil do Nada!",
"basedOnAnUnfinishedFlashGame": "Baseado num Jogo Online Inacabado!",
"moreAddictiveThanIntended": "Mais Viciante do que Planejado!",
"mostlyConsistentSeeds": "Consistente (na Maioria das Vezes)!",
"achievementPointsDontDoAnything": "Pontos de Conquista Não Fazem Nada!",
"youDoNotStartAtLevel": "Você Não Começa no Nível 2000!",
"dontTalkAboutTheManaphyEggIncident": "Não Fale do Incidente do Ovo de Manaphy!",
"alsoTryPokengine": "Também Jogue Pokéngine!",
"alsoTryEmeraldRogue": "Também Jogue Emerald Rogue!",
"alsoTryRadicalRed": "Também Jogue Radical Red!",
"eeveeExpo": "Eevee Expo!",
"ynoproject": "YNOproject!",
} as const;

View File

@ -16,10 +16,10 @@ export const titles: SimpleTranslationEntries = {
export const trainerClasses: SimpleTranslationEntries = {
"ace_trainer": "Trinador Ás",
"ace_trainer_female": "Trinadora Ás",
"ace_duo": "Ace Duo",
"ace_duo": "Dupla Ás",
"artist": "Artista",
"artist_female": "Artista",
"backpackers": "Backpackers",
"backpackers": "Mochileiros",
"backers": "Torcedores",
"backpacker": "Mochileiro",
"backpacker_female": "Mochileira",
@ -31,36 +31,36 @@ export const trainerClasses: SimpleTranslationEntries = {
"black_belt": "Faixa Preta",
"breeder": "Criador",
"breeder_female": "Criadora",
"breeders": "Breeders",
"breeders": "Criadores",
"clerk": "Funcionário",
"clerk_female": "Funcionária",
"colleagues": "Colleagues",
"crush_kin": "Crush Kin",
"colleagues": "Funcionários",
"crush_kin": "Casal Lutador",
"cyclist": "Ciclista",
"cyclist_female": "Ciclista",
"cyclists": "Cyclists",
"cyclists": "Ciclistas",
"dancer": "Dançarino",
"dancer_female": "Dançarina",
"depot_agent": "Ferroviário",
"doctor": "Doutor",
"doctor_female": "Doutora",
"fisherman": "Pescador",
"fisherman_female": "Pescadora",
"gentleman": "Gentleman",
"fishermen": "Pescador",
"fishermen_female": "Pescadora",
"gentleman": "Cavalheiro",
"guitarist": "Guitarrista",
"guitarist_female": "Guitarrista",
"harlequin": "Arlequim",
"hiker": "Montanhista",
"hooligans": "Bandoleiro",
"hoopster": "Jogador de basquete",
"infielder": "Jogador de baseball",
"hoopster": "Jogador de Basquete",
"infielder": "Jogador de Baseball",
"janitor": "Faxineiro",
"lady": "Dama",
"lass": "Senhorita",
"linebacker": "Zagueiro",
"maid": "Doméstica",
"madame": "Madame",
"medical_team": "Medical Team",
"medical_team": "Equipe Médica",
"musician": "Músico",
"hex_maniac": "Ocultista",
"nurse": "Enfermeira",
@ -68,48 +68,48 @@ export const trainerClasses: SimpleTranslationEntries = {
"officer": "Policial",
"parasol_lady": "Moça de Sombrinha",
"pilot": "Piloto",
"pokefan": "Pokefã",
"pokefan_family": "Poké Fan Family",
"poké_fan": "Pokefã",
"poké_fan_family": "Família Pokefã",
"preschooler": "Menino do Prezinho",
"preschooler_female": "Menina do Prezinho",
"preschoolers": "Preschoolers",
"preschoolers": "Alunos do Prezinho",
"psychic": "Médium",
"psychic_female": "Médium",
"psychics": "Psychics",
"pokémon_ranger": "Pokémon Ranger",
"pokémon_rangers": "Pokémon Ranger",
"psychics": "Médiuns",
"pokémon_ranger": "Guarda Pokémon",
"pokémon_rangers": "Guardas Pokémon",
"ranger": "Guarda",
"restaurant_staff": "Restaurant Staff",
"rich": "Rich",
"rich_female": "Rich",
"rich_boy": "Rich Boy",
"rich_couple": "Rich Couple",
"rich_kid": "Rich Kid",
"rich_kid_female": "Rich Kid",
"rich_kids": "Rich Kids",
"restaurant_staff": "Equipe do Restaurante",
"rich": "Burguês",
"rich_female": "Burguesa",
"rich_boy": "Riquinho",
"rich_couple": "Casal Burguês",
"rich_kid": "Garoto Rico",
"rich_kid_female": "Garota Rica",
"rich_kids": "Garotos Ricos",
"roughneck": "Arruaceiro",
"scientist": "Cientista",
"scientist_female": "Cientista",
"scientists": "Scientists",
"scientists": "Cientistas",
"smasher": "Tenista",
"snow_worker": "Operário da Neve",
"snow_worker_female": "Operária da Neve",
"striker": "Atacante",
"school_kid": "Estudante",
"school_kid_female": "Estudante",
"school_kids": "School Kids",
"school_kids": "Estudantes",
"swimmer": "Nadador",
"swimmer_female": "Nadadora",
"swimmers": "Swimmers",
"swimmers": "Nadadores",
"twins": "Gêmeos",
"veteran": "Veterano",
"veteran_female": "Veterana",
"veteran_duo": "Veteran Duo",
"veteran_duo": "Dupla Veterana",
"waiter": "Garçom",
"waitress": "Garçonete",
"worker": "Operário",
"worker_female": "Operária",
"workers": "Workers",
"workers": "Operários",
"youngster": "Jovem",
} as const;

View File

@ -21,6 +21,7 @@ import { weather } from "./weather";
import { battleMessageUiHandler } from "./battle-message-ui-handler";
import { berry } from "./berry";
export const zhCnConfig = {
ability: ability,
abilityTriggers: abilityTriggers,