import { AchievementTranslationEntries } from "#app/plugins/i18n.js"; // Achievement translations for the when the player character is male export const PGMachv: AchievementTranslationEntries = { "Achievements": { name: "Logros", }, "Locked": { name: "Bloqueado", }, "MoneyAchv": { description: "Acumula un total de ₽{{moneyAmount}}.", }, "10K_MONEY": { name: "Ahorrador", }, "100K_MONEY": { name: "Rico", }, "1M_MONEY": { name: "Millonario", }, "10M_MONEY": { name: "Elusión Fiscal", }, "DamageAchv": { description: "Inflige {{damageAmount}} daño en un solo golpe.", }, "250_DMG": { name: "Golpe Maestro", }, "1000_DMG": { name: "Golpe Devastador", }, "2500_DMG": { name: "¡Eso es un montón de daño!", }, "10000_DMG": { name: "One Punch Man", }, "HealAchv": { description: "Cura {{healAmount}} {{HP}} de una, con un movimiento, habilidad o objeto equipado.", }, "250_HEAL": { name: "Sanador Novato", }, "1000_HEAL": { name: "Gran Sanador", }, "2500_HEAL": { name: "Clérigo", }, "10000_HEAL": { name: "Centro Pokémon", }, "LevelAchv": { description: "Sube a un Pokémon al nivel {{level}}.", }, "LV_100": { name: "¡Pero espera, aún hay mas!", }, "LV_250": { name: "Élite", }, "LV_1000": { name: "Supera tus límites", }, "RibbonAchv": { description: "Acumula un total de {{ribbonAmount}} Cintas.", }, "10_RIBBONS": { name: "Campeón Liga Pokémon", }, "25_RIBBONS": { name: "Campeón Liga Super", }, "50_RIBBONS": { name: "Campeón Liga Ultra", }, "75_RIBBONS": { name: "Campeón Liga Rogue", }, "100_RIBBONS": { name: "Campeón Liga Master", }, "TRANSFER_MAX_BATTLE_STAT": { name: "Trabajo en Equipo", description: "Haz relevo a otro miembro del equipo con al menos una estadística al máximo.", }, "MAX_FRIENDSHIP": { name: "Amistad Total", description: "Alcanza con un Pokémon la amistad al máximo.", }, "MEGA_EVOLVE": { name: "Megamorfosis", description: "Megaevoluciona a un Pokémon.", }, "GIGANTAMAX": { name: "Criatura Colosal", description: "Haz Gigantamax a un Pokémon.", }, "TERASTALLIZE": { name: "Entusiasta del STAB", description: "Teracristaliza a un Pokémon.", }, "STELLAR_TERASTALLIZE": { name: "El Tipo Oculto", description: "Teracristaliza a un Pokémon al tipo Astral.", }, "SPLICE": { name: "Infinite Fusion", description: "Fusiona dos Pokémon con la Punta ADN.", }, "MINI_BLACK_HOLE": { name: "Devorador de Objetos", description: "Adquiere un Mini Agujero Negro.", }, "CATCH_MYTHICAL": { name: "Singular", description: "Captura a un Pokémon Singular.", }, "CATCH_SUB_LEGENDARY": { name: "(Sub)Legendario", description: "Captura a un Pokémon Sublegendario.", }, "CATCH_LEGENDARY": { name: "Legendario", description: "Captura a un Pokémon Legendario.", }, "SEE_SHINY": { name: "Shiny", description: "Encuentra a un Pokémon Shiny salvaje.", }, "SHINY_PARTY": { name: "Eso es dedicación", description: "Tener un equipo completo de Pokémon shiny.", }, "HATCH_MYTHICAL": { name: "Huevo Singular", description: "Hacer eclosionar un Pokémon Singular de un huevo.", }, "HATCH_SUB_LEGENDARY": { name: "Huevo Sublegendario", description: "Hacer eclosionar un Pokémon Sublegendario de un huevo.", }, "HATCH_LEGENDARY": { name: "Huevo Legendario", description: "Hacer eclosionar un Pokémon Legendario de un huevo.", }, "HATCH_SHINY": { name: "Huevo Shiny", description: "Hacer eclosionar un Pokémon Shiny de un huevo.", }, "HIDDEN_ABILITY": { name: "Potencial Oculto", description: "Captura un Pokémon con una habilidad oculta.", }, "PERFECT_IVS": { name: "Certificado de Autenticidad", description: "Consigue IVs perfectos en un Pokémon.", }, "CLASSIC_VICTORY": { name: "Imbatible", description: "Completa el juego en modo clásico.", }, "MONO_GEN_ONE": { name: "The Original Rival", description: "Complete the generation one only challenge.", }, "MONO_GEN_TWO": { name: "Generation 1.5", description: "Complete the generation two only challenge.", }, "MONO_GEN_THREE": { name: "Too much water?", description: "Complete the generation three only challenge.", }, "MONO_GEN_FOUR": { name: "Is she really the hardest?", description: "Complete the generation four only challenge.", }, "MONO_GEN_FIVE": { name: "All Original", description: "Complete the generation five only challenge.", }, "MONO_GEN_SIX": { name: "Almost Royalty", description: "Complete the generation six only challenge.", }, "MONO_GEN_SEVEN": { name: "Only Technically", description: "Complete the generation seven only challenge.", }, "MONO_GEN_EIGHT": { name: "A Champion Time!", description: "Complete the generation eight only challenge.", }, "MONO_GEN_NINE": { name: "She was going easy on you", description: "Complete the generation nine only challenge.", }, "MonoType": { description: "Complete the {{type}} monotype challenge.", }, "MONO_NORMAL": { name: "Mono NORMAL", }, "MONO_FIGHTING": { name: "I Know Kung Fu", }, "MONO_FLYING": { name: "Mono FLYING", }, "MONO_POISON": { name: "Kanto's Favourite", }, "MONO_GROUND": { name: "Mono GROUND", }, "MONO_ROCK": { name: "Brock Hard", }, "MONO_BUG": { name: "Sting Like A Beedrill", }, "MONO_GHOST": { name: "Who you gonna call?", }, "MONO_STEEL": { name: "Mono STEEL", }, "MONO_FIRE": { name: "Mono FIRE", }, "MONO_WATER": { name: "When It Rains, It Pours", }, "MONO_GRASS": { name: "Mono GRASS", }, "MONO_ELECTRIC": { name: "Mono ELECTRIC", }, "MONO_PSYCHIC": { name: "Mono PSYCHIC", }, "MONO_ICE": { name: "Mono ICE", }, "MONO_DRAGON": { name: "Mono DRAGON", }, "MONO_DARK": { name: "It's just a phase", }, "MONO_FAIRY": { name: "Mono FAIRY", }, } as const; // Achievement translations for the when the player character is female (it for now uses the same translations as the male version) export const PGFachv: AchievementTranslationEntries = PGMachv;