mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +00:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
|
||
|
export const arenaFlyout: SimpleTranslationEntries = {
|
||
|
// Title
|
||
|
"activeBattleEffects": "Efeitos de Batalha Ativos",
|
||
|
"player": "Jogador",
|
||
|
"neutral": "Neutro",
|
||
|
"enemy": "Inimigo",
|
||
|
|
||
|
// WeatherType
|
||
|
"sunny": "Ensolarado",
|
||
|
"rain": "Chuva",
|
||
|
"sandstorm": "Tempestade de Areia",
|
||
|
"hail": "Granizo",
|
||
|
"snow": "Neve",
|
||
|
"fog": "Névoa",
|
||
|
"heavyRain": "Chuva Forte",
|
||
|
"harshSun": "Sol Forte",
|
||
|
"strongWinds": "Ventos Fortes",
|
||
|
|
||
|
// TerrainType
|
||
|
"misty": "Terreno Enevoado",
|
||
|
"electric": "Terreno Elétrico",
|
||
|
"grassy": "Terreno de Planta",
|
||
|
"psychic": "Terreno Psíquico",
|
||
|
|
||
|
// ArenaTagType
|
||
|
"mudSport": "Mud Sport",
|
||
|
"waterSport": "Water Sport",
|
||
|
"spikes": "Spikes",
|
||
|
"toxicSpikes": "Toxic Spikes",
|
||
|
"mist": "Mist",
|
||
|
"futureSight": "Future Sight",
|
||
|
"doomDesire": "Doom Desire",
|
||
|
"wish": "Wish",
|
||
|
"stealthRock": "Stealth Rock",
|
||
|
"stickyWeb": "Sticky Web",
|
||
|
"trickRoom": "Trick Room",
|
||
|
"gravity": "Gravity",
|
||
|
"reflect": "Reflect",
|
||
|
"lightScreen": "Light Screen",
|
||
|
"auroraVeil": "Aurora Veil",
|
||
|
"quickGuard": "Quick Guard",
|
||
|
"wideGuard": "Wide Guard",
|
||
|
"matBlock": "Mat Block",
|
||
|
"craftyShield": "Crafty Shield",
|
||
|
"tailwind": "Tailwind",
|
||
|
"happyHour": "Happy Hour",
|
||
|
};
|