mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 00:52:47 +02:00
[Localization] POC gitlocalize with en & es (#3705)
* Migrate en (English) * Migrate es (Spanish) * fix es/config.ts export * fix ts-compiler with i18n issue * fix battle-stat.test.ts * move `i18n.d.ts` content into `i18next.d.ts` and remove `defaultValue` key
This commit is contained in:
parent
f417a262de
commit
2a51d500b3
9
src/@types/i18next.d.ts
vendored
9
src/@types/i18next.d.ts
vendored
@ -1,9 +1,18 @@
|
|||||||
import { type enConfig } from "#app/locales/en/config.js";
|
import { type enConfig } from "#app/locales/en/config.js";
|
||||||
|
import { TOptions } from "i18next";
|
||||||
|
|
||||||
|
//TODO: this needs to be type properly in the future
|
||||||
// Module declared to make referencing keys in the localization files type-safe.
|
// Module declared to make referencing keys in the localization files type-safe.
|
||||||
declare module "i18next" {
|
declare module "i18next" {
|
||||||
interface CustomTypeOptions {
|
interface CustomTypeOptions {
|
||||||
defaultNS: "menu", // needed here as well for typedoc
|
defaultNS: "menu", // needed here as well for typedoc
|
||||||
resources: typeof enConfig
|
resources: typeof enConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface TFunction {
|
||||||
|
(
|
||||||
|
key: string | string[],
|
||||||
|
options?: TOptions & Record<string, unknown>
|
||||||
|
): string;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const abilityTriggers: SimpleTranslationEntries = {
|
|
||||||
"blockRecoilDamage": "{{pokemonName}}'s {{abilityName}}\nprotected it from recoil!",
|
"blockRecoilDamage": "{{pokemonName}}'s {{abilityName}}\nprotected it from recoil!",
|
||||||
"badDreams": "{{pokemonName}} is tormented!",
|
"badDreams": "{{pokemonName}} is tormented!",
|
||||||
"costar": "{{pokemonName}} copied {{allyName}}'s stat changes!",
|
"costar": "{{pokemonName}} copied {{allyName}}'s stat changes!",
|
||||||
@ -10,7 +8,7 @@ export const abilityTriggers: SimpleTranslationEntries = {
|
|||||||
"trace": "{{pokemonName}} copied {{targetName}}'s\n{{abilityName}}!",
|
"trace": "{{pokemonName}} copied {{targetName}}'s\n{{abilityName}}!",
|
||||||
"windPowerCharged": "Being hit by {{moveName}} charged {{pokemonName}} with power!",
|
"windPowerCharged": "Being hit by {{moveName}} charged {{pokemonName}} with power!",
|
||||||
"quickDraw": "{{pokemonName}} can act faster than normal, thanks to its Quick Draw!",
|
"quickDraw": "{{pokemonName}} can act faster than normal, thanks to its Quick Draw!",
|
||||||
"disguiseAvoidedDamage" : "{{pokemonNameWithAffix}}'s disguise was busted!",
|
"disguiseAvoidedDamage": "{{pokemonNameWithAffix}}'s disguise was busted!",
|
||||||
"blockItemTheft": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents item theft!",
|
"blockItemTheft": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents item theft!",
|
||||||
"typeImmunityHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!",
|
"typeImmunityHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!",
|
||||||
"nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} avoided damage\nwith {{abilityName}}!",
|
"nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} avoided damage\nwith {{abilityName}}!",
|
||||||
@ -60,5 +58,5 @@ export const abilityTriggers: SimpleTranslationEntries = {
|
|||||||
"postSummonSwordOfRuin": "{{pokemonNameWithAffix}}'s Sword of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
"postSummonSwordOfRuin": "{{pokemonNameWithAffix}}'s Sword of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
||||||
"postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}'s Tablets of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
"postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}'s Tablets of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
||||||
"postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}'s Beads of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
"postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}'s Beads of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
||||||
"preventBerryUse": "{{pokemonNameWithAffix}} is too\nnervous to eat berries!",
|
"preventBerryUse": "{{pokemonNameWithAffix}} is too\nnervous to eat berries!"
|
||||||
} as const;
|
}
|
1242
src/locales/en/ability.json
Normal file
1242
src/locales/en/ability.json
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
264
src/locales/en/achv-female.json
Normal file
264
src/locales/en/achv-female.json
Normal file
@ -0,0 +1,264 @@
|
|||||||
|
{
|
||||||
|
"Achievements": {
|
||||||
|
"name": "Achievements"
|
||||||
|
},
|
||||||
|
"Locked": {
|
||||||
|
"name": "Locked"
|
||||||
|
},
|
||||||
|
"MoneyAchv": {
|
||||||
|
"description": "Accumulate a total of ₽{{moneyAmount}}"
|
||||||
|
},
|
||||||
|
"10K_MONEY": {
|
||||||
|
"name": "Money Haver"
|
||||||
|
},
|
||||||
|
"100K_MONEY": {
|
||||||
|
"name": "Rich"
|
||||||
|
},
|
||||||
|
"1M_MONEY": {
|
||||||
|
"name": "Millionaire"
|
||||||
|
},
|
||||||
|
"10M_MONEY": {
|
||||||
|
"name": "One Percenter"
|
||||||
|
},
|
||||||
|
"DamageAchv": {
|
||||||
|
"description": "Inflict {{damageAmount}} damage in one hit"
|
||||||
|
},
|
||||||
|
"250_DMG": {
|
||||||
|
"name": "Hard Hitter"
|
||||||
|
},
|
||||||
|
"1000_DMG": {
|
||||||
|
"name": "Harder Hitter"
|
||||||
|
},
|
||||||
|
"2500_DMG": {
|
||||||
|
"name": "That's a Lotta Damage!"
|
||||||
|
},
|
||||||
|
"10000_DMG": {
|
||||||
|
"name": "One Punch Man"
|
||||||
|
},
|
||||||
|
"HealAchv": {
|
||||||
|
"description": "Heal {{healAmount}} {{HP}} at once with a move, ability, or held item"
|
||||||
|
},
|
||||||
|
"250_HEAL": {
|
||||||
|
"name": "Novice Healer"
|
||||||
|
},
|
||||||
|
"1000_HEAL": {
|
||||||
|
"name": "Big Healer"
|
||||||
|
},
|
||||||
|
"2500_HEAL": {
|
||||||
|
"name": "Cleric"
|
||||||
|
},
|
||||||
|
"10000_HEAL": {
|
||||||
|
"name": "Recovery Master"
|
||||||
|
},
|
||||||
|
"LevelAchv": {
|
||||||
|
"description": "Level up a Pokémon to Lv{{level}}"
|
||||||
|
},
|
||||||
|
"LV_100": {
|
||||||
|
"name": "But Wait, There's More!"
|
||||||
|
},
|
||||||
|
"LV_250": {
|
||||||
|
"name": "Elite"
|
||||||
|
},
|
||||||
|
"LV_1000": {
|
||||||
|
"name": "To Go Even Further Beyond"
|
||||||
|
},
|
||||||
|
"RibbonAchv": {
|
||||||
|
"description": "Accumulate a total of {{ribbonAmount}} Ribbons"
|
||||||
|
},
|
||||||
|
"10_RIBBONS": {
|
||||||
|
"name": "Pokémon League Champion"
|
||||||
|
},
|
||||||
|
"25_RIBBONS": {
|
||||||
|
"name": "Great League Champion"
|
||||||
|
},
|
||||||
|
"50_RIBBONS": {
|
||||||
|
"name": "Ultra League Champion"
|
||||||
|
},
|
||||||
|
"75_RIBBONS": {
|
||||||
|
"name": "Rogue League Champion"
|
||||||
|
},
|
||||||
|
"100_RIBBONS": {
|
||||||
|
"name": "Master League Champion"
|
||||||
|
},
|
||||||
|
"TRANSFER_MAX_BATTLE_STAT": {
|
||||||
|
"name": "Teamwork",
|
||||||
|
"description": "Baton pass to another party member with at least one stat maxed out"
|
||||||
|
},
|
||||||
|
"MAX_FRIENDSHIP": {
|
||||||
|
"name": "Friendmaxxing",
|
||||||
|
"description": "Reach max friendship on a Pokémon"
|
||||||
|
},
|
||||||
|
"MEGA_EVOLVE": {
|
||||||
|
"name": "Megamorph",
|
||||||
|
"description": "Mega evolve a Pokémon"
|
||||||
|
},
|
||||||
|
"GIGANTAMAX": {
|
||||||
|
"name": "Absolute Unit",
|
||||||
|
"description": "Gigantamax a Pokémon"
|
||||||
|
},
|
||||||
|
"TERASTALLIZE": {
|
||||||
|
"name": "STAB Enthusiast",
|
||||||
|
"description": "Terastallize a Pokémon"
|
||||||
|
},
|
||||||
|
"STELLAR_TERASTALLIZE": {
|
||||||
|
"name": "The Hidden Type",
|
||||||
|
"description": "Stellar Terastallize a Pokémon"
|
||||||
|
},
|
||||||
|
"SPLICE": {
|
||||||
|
"name": "Infinite Fusion",
|
||||||
|
"description": "Splice two Pokémon together with DNA Splicers"
|
||||||
|
},
|
||||||
|
"MINI_BLACK_HOLE": {
|
||||||
|
"name": "A Hole Lot of Items",
|
||||||
|
"description": "Acquire a Mini Black Hole"
|
||||||
|
},
|
||||||
|
"CATCH_MYTHICAL": {
|
||||||
|
"name": "Mythical",
|
||||||
|
"description": "Catch a mythical Pokémon"
|
||||||
|
},
|
||||||
|
"CATCH_SUB_LEGENDARY": {
|
||||||
|
"name": "(Sub-)Legendary",
|
||||||
|
"description": "Catch a sub-legendary Pokémon"
|
||||||
|
},
|
||||||
|
"CATCH_LEGENDARY": {
|
||||||
|
"name": "Legendary",
|
||||||
|
"description": "Catch a legendary Pokémon"
|
||||||
|
},
|
||||||
|
"SEE_SHINY": {
|
||||||
|
"name": "Shiny",
|
||||||
|
"description": "Find a shiny Pokémon in the wild"
|
||||||
|
},
|
||||||
|
"SHINY_PARTY": {
|
||||||
|
"name": "That's Dedication",
|
||||||
|
"description": "Have a full party of shiny Pokémon"
|
||||||
|
},
|
||||||
|
"HATCH_MYTHICAL": {
|
||||||
|
"name": "Mythical Egg",
|
||||||
|
"description": "Hatch a mythical Pokémon from an egg"
|
||||||
|
},
|
||||||
|
"HATCH_SUB_LEGENDARY": {
|
||||||
|
"name": "Sub-Legendary Egg",
|
||||||
|
"description": "Hatch a sub-legendary Pokémon from an egg"
|
||||||
|
},
|
||||||
|
"HATCH_LEGENDARY": {
|
||||||
|
"name": "Legendary Egg",
|
||||||
|
"description": "Hatch a legendary Pokémon from an egg"
|
||||||
|
},
|
||||||
|
"HATCH_SHINY": {
|
||||||
|
"name": "Shiny Egg",
|
||||||
|
"description": "Hatch a shiny Pokémon from an egg"
|
||||||
|
},
|
||||||
|
"HIDDEN_ABILITY": {
|
||||||
|
"name": "Hidden Potential",
|
||||||
|
"description": "Catch a Pokémon with a hidden ability"
|
||||||
|
},
|
||||||
|
"PERFECT_IVS": {
|
||||||
|
"name": "Certificate of Authenticity",
|
||||||
|
"description": "Get perfect IVs on a Pokémon"
|
||||||
|
},
|
||||||
|
"CLASSIC_VICTORY": {
|
||||||
|
"name": "Undefeated",
|
||||||
|
"description": "Beat the game in classic mode"
|
||||||
|
},
|
||||||
|
"UNEVOLVED_CLASSIC_VICTORY": {
|
||||||
|
"name": "Bring Your Child To Work Day",
|
||||||
|
"description": "Beat the game in Classic Mode with at least one unevolved party member."
|
||||||
|
},
|
||||||
|
"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": "Extra Ordinary"
|
||||||
|
},
|
||||||
|
"MONO_FIGHTING": {
|
||||||
|
"name": "I Know Kung Fu"
|
||||||
|
},
|
||||||
|
"MONO_FLYING": {
|
||||||
|
"name": "Angry Birds"
|
||||||
|
},
|
||||||
|
"MONO_POISON": {
|
||||||
|
"name": "Kanto's Favourite"
|
||||||
|
},
|
||||||
|
"MONO_GROUND": {
|
||||||
|
"name": "Forecast: Earthquakes"
|
||||||
|
},
|
||||||
|
"MONO_ROCK": {
|
||||||
|
"name": "Brock Hard"
|
||||||
|
},
|
||||||
|
"MONO_BUG": {
|
||||||
|
"name": "You Like Jazz?"
|
||||||
|
},
|
||||||
|
"MONO_GHOST": {
|
||||||
|
"name": "Who You Gonna Call?"
|
||||||
|
},
|
||||||
|
"MONO_STEEL": {
|
||||||
|
"name": "Iron Giant"
|
||||||
|
},
|
||||||
|
"MONO_FIRE": {
|
||||||
|
"name": "I Cast Fireball!"
|
||||||
|
},
|
||||||
|
"MONO_WATER": {
|
||||||
|
"name": "When It Rains, It Pours"
|
||||||
|
},
|
||||||
|
"MONO_GRASS": {
|
||||||
|
"name": "Can't Touch This"
|
||||||
|
},
|
||||||
|
"MONO_ELECTRIC": {
|
||||||
|
"name": "Aim For The Horn!"
|
||||||
|
},
|
||||||
|
"MONO_PSYCHIC": {
|
||||||
|
"name": "Big Brain Energy"
|
||||||
|
},
|
||||||
|
"MONO_ICE": {
|
||||||
|
"name": "Walking On Thin Ice"
|
||||||
|
},
|
||||||
|
"MONO_DRAGON": {
|
||||||
|
"name": "Pseudo-Legend Club"
|
||||||
|
},
|
||||||
|
"MONO_DARK": {
|
||||||
|
"name": "It's Just A Phase"
|
||||||
|
},
|
||||||
|
"MONO_FAIRY": {
|
||||||
|
"name": "Hey! Listen!"
|
||||||
|
},
|
||||||
|
"FRESH_START": {
|
||||||
|
"name": "First Try!",
|
||||||
|
"description": "Complete the Fresh Start challenge."
|
||||||
|
}
|
||||||
|
}
|
264
src/locales/en/achv-male.json
Normal file
264
src/locales/en/achv-male.json
Normal file
@ -0,0 +1,264 @@
|
|||||||
|
{
|
||||||
|
"Achievements": {
|
||||||
|
"name": "Achievements"
|
||||||
|
},
|
||||||
|
"Locked": {
|
||||||
|
"name": "Locked"
|
||||||
|
},
|
||||||
|
"MoneyAchv": {
|
||||||
|
"description": "Accumulate a total of ₽{{moneyAmount}}"
|
||||||
|
},
|
||||||
|
"10K_MONEY": {
|
||||||
|
"name": "Money Haver"
|
||||||
|
},
|
||||||
|
"100K_MONEY": {
|
||||||
|
"name": "Rich"
|
||||||
|
},
|
||||||
|
"1M_MONEY": {
|
||||||
|
"name": "Millionaire"
|
||||||
|
},
|
||||||
|
"10M_MONEY": {
|
||||||
|
"name": "One Percenter"
|
||||||
|
},
|
||||||
|
"DamageAchv": {
|
||||||
|
"description": "Inflict {{damageAmount}} damage in one hit"
|
||||||
|
},
|
||||||
|
"250_DMG": {
|
||||||
|
"name": "Hard Hitter"
|
||||||
|
},
|
||||||
|
"1000_DMG": {
|
||||||
|
"name": "Harder Hitter"
|
||||||
|
},
|
||||||
|
"2500_DMG": {
|
||||||
|
"name": "That's a Lotta Damage!"
|
||||||
|
},
|
||||||
|
"10000_DMG": {
|
||||||
|
"name": "One Punch Man"
|
||||||
|
},
|
||||||
|
"HealAchv": {
|
||||||
|
"description": "Heal {{healAmount}} {{HP}} at once with a move, ability, or held item"
|
||||||
|
},
|
||||||
|
"250_HEAL": {
|
||||||
|
"name": "Novice Healer"
|
||||||
|
},
|
||||||
|
"1000_HEAL": {
|
||||||
|
"name": "Big Healer"
|
||||||
|
},
|
||||||
|
"2500_HEAL": {
|
||||||
|
"name": "Cleric"
|
||||||
|
},
|
||||||
|
"10000_HEAL": {
|
||||||
|
"name": "Recovery Master"
|
||||||
|
},
|
||||||
|
"LevelAchv": {
|
||||||
|
"description": "Level up a Pokémon to Lv{{level}}"
|
||||||
|
},
|
||||||
|
"LV_100": {
|
||||||
|
"name": "But Wait, There's More!"
|
||||||
|
},
|
||||||
|
"LV_250": {
|
||||||
|
"name": "Elite"
|
||||||
|
},
|
||||||
|
"LV_1000": {
|
||||||
|
"name": "To Go Even Further Beyond"
|
||||||
|
},
|
||||||
|
"RibbonAchv": {
|
||||||
|
"description": "Accumulate a total of {{ribbonAmount}} Ribbons"
|
||||||
|
},
|
||||||
|
"10_RIBBONS": {
|
||||||
|
"name": "Pokémon League Champion"
|
||||||
|
},
|
||||||
|
"25_RIBBONS": {
|
||||||
|
"name": "Great League Champion"
|
||||||
|
},
|
||||||
|
"50_RIBBONS": {
|
||||||
|
"name": "Ultra League Champion"
|
||||||
|
},
|
||||||
|
"75_RIBBONS": {
|
||||||
|
"name": "Rogue League Champion"
|
||||||
|
},
|
||||||
|
"100_RIBBONS": {
|
||||||
|
"name": "Master League Champion"
|
||||||
|
},
|
||||||
|
"TRANSFER_MAX_BATTLE_STAT": {
|
||||||
|
"name": "Teamwork",
|
||||||
|
"description": "Baton pass to another party member with at least one stat maxed out"
|
||||||
|
},
|
||||||
|
"MAX_FRIENDSHIP": {
|
||||||
|
"name": "Friendmaxxing",
|
||||||
|
"description": "Reach max friendship on a Pokémon"
|
||||||
|
},
|
||||||
|
"MEGA_EVOLVE": {
|
||||||
|
"name": "Megamorph",
|
||||||
|
"description": "Mega evolve a Pokémon"
|
||||||
|
},
|
||||||
|
"GIGANTAMAX": {
|
||||||
|
"name": "Absolute Unit",
|
||||||
|
"description": "Gigantamax a Pokémon"
|
||||||
|
},
|
||||||
|
"TERASTALLIZE": {
|
||||||
|
"name": "STAB Enthusiast",
|
||||||
|
"description": "Terastallize a Pokémon"
|
||||||
|
},
|
||||||
|
"STELLAR_TERASTALLIZE": {
|
||||||
|
"name": "The Hidden Type",
|
||||||
|
"description": "Stellar Terastallize a Pokémon"
|
||||||
|
},
|
||||||
|
"SPLICE": {
|
||||||
|
"name": "Infinite Fusion",
|
||||||
|
"description": "Splice two Pokémon together with DNA Splicers"
|
||||||
|
},
|
||||||
|
"MINI_BLACK_HOLE": {
|
||||||
|
"name": "A Hole Lot of Items",
|
||||||
|
"description": "Acquire a Mini Black Hole"
|
||||||
|
},
|
||||||
|
"CATCH_MYTHICAL": {
|
||||||
|
"name": "Mythical",
|
||||||
|
"description": "Catch a mythical Pokémon"
|
||||||
|
},
|
||||||
|
"CATCH_SUB_LEGENDARY": {
|
||||||
|
"name": "(Sub-)Legendary",
|
||||||
|
"description": "Catch a sub-legendary Pokémon"
|
||||||
|
},
|
||||||
|
"CATCH_LEGENDARY": {
|
||||||
|
"name": "Legendary",
|
||||||
|
"description": "Catch a legendary Pokémon"
|
||||||
|
},
|
||||||
|
"SEE_SHINY": {
|
||||||
|
"name": "Shiny",
|
||||||
|
"description": "Find a shiny Pokémon in the wild"
|
||||||
|
},
|
||||||
|
"SHINY_PARTY": {
|
||||||
|
"name": "That's Dedication",
|
||||||
|
"description": "Have a full party of shiny Pokémon"
|
||||||
|
},
|
||||||
|
"HATCH_MYTHICAL": {
|
||||||
|
"name": "Mythical Egg",
|
||||||
|
"description": "Hatch a mythical Pokémon from an egg"
|
||||||
|
},
|
||||||
|
"HATCH_SUB_LEGENDARY": {
|
||||||
|
"name": "Sub-Legendary Egg",
|
||||||
|
"description": "Hatch a sub-legendary Pokémon from an egg"
|
||||||
|
},
|
||||||
|
"HATCH_LEGENDARY": {
|
||||||
|
"name": "Legendary Egg",
|
||||||
|
"description": "Hatch a legendary Pokémon from an egg"
|
||||||
|
},
|
||||||
|
"HATCH_SHINY": {
|
||||||
|
"name": "Shiny Egg",
|
||||||
|
"description": "Hatch a shiny Pokémon from an egg"
|
||||||
|
},
|
||||||
|
"HIDDEN_ABILITY": {
|
||||||
|
"name": "Hidden Potential",
|
||||||
|
"description": "Catch a Pokémon with a hidden ability"
|
||||||
|
},
|
||||||
|
"PERFECT_IVS": {
|
||||||
|
"name": "Certificate of Authenticity",
|
||||||
|
"description": "Get perfect IVs on a Pokémon"
|
||||||
|
},
|
||||||
|
"CLASSIC_VICTORY": {
|
||||||
|
"name": "Undefeated",
|
||||||
|
"description": "Beat the game in classic mode"
|
||||||
|
},
|
||||||
|
"UNEVOLVED_CLASSIC_VICTORY": {
|
||||||
|
"name": "Bring Your Child To Work Day",
|
||||||
|
"description": "Beat the game in Classic Mode with at least one unevolved party member."
|
||||||
|
},
|
||||||
|
"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": "Extra Ordinary"
|
||||||
|
},
|
||||||
|
"MONO_FIGHTING": {
|
||||||
|
"name": "I Know Kung Fu"
|
||||||
|
},
|
||||||
|
"MONO_FLYING": {
|
||||||
|
"name": "Angry Birds"
|
||||||
|
},
|
||||||
|
"MONO_POISON": {
|
||||||
|
"name": "Kanto's Favourite"
|
||||||
|
},
|
||||||
|
"MONO_GROUND": {
|
||||||
|
"name": "Forecast: Earthquakes"
|
||||||
|
},
|
||||||
|
"MONO_ROCK": {
|
||||||
|
"name": "Brock Hard"
|
||||||
|
},
|
||||||
|
"MONO_BUG": {
|
||||||
|
"name": "You Like Jazz?"
|
||||||
|
},
|
||||||
|
"MONO_GHOST": {
|
||||||
|
"name": "Who You Gonna Call?"
|
||||||
|
},
|
||||||
|
"MONO_STEEL": {
|
||||||
|
"name": "Iron Giant"
|
||||||
|
},
|
||||||
|
"MONO_FIRE": {
|
||||||
|
"name": "I Cast Fireball!"
|
||||||
|
},
|
||||||
|
"MONO_WATER": {
|
||||||
|
"name": "When It Rains, It Pours"
|
||||||
|
},
|
||||||
|
"MONO_GRASS": {
|
||||||
|
"name": "Can't Touch This"
|
||||||
|
},
|
||||||
|
"MONO_ELECTRIC": {
|
||||||
|
"name": "Aim For The Horn!"
|
||||||
|
},
|
||||||
|
"MONO_PSYCHIC": {
|
||||||
|
"name": "Big Brain Energy"
|
||||||
|
},
|
||||||
|
"MONO_ICE": {
|
||||||
|
"name": "Walking On Thin Ice"
|
||||||
|
},
|
||||||
|
"MONO_DRAGON": {
|
||||||
|
"name": "Pseudo-Legend Club"
|
||||||
|
},
|
||||||
|
"MONO_DARK": {
|
||||||
|
"name": "It's Just A Phase"
|
||||||
|
},
|
||||||
|
"MONO_FAIRY": {
|
||||||
|
"name": "Hey! Listen!"
|
||||||
|
},
|
||||||
|
"FRESH_START": {
|
||||||
|
"name": "First Try!",
|
||||||
|
"description": "Complete the Fresh Start challenge."
|
||||||
|
}
|
||||||
|
}
|
@ -1,278 +0,0 @@
|
|||||||
import { AchievementTranslationEntries } from "#app/interfaces/locales.js";
|
|
||||||
|
|
||||||
// Achievement translations for the when the player character is male
|
|
||||||
export const PGMachv: AchievementTranslationEntries = {
|
|
||||||
"Achievements": {
|
|
||||||
name: "Achievements",
|
|
||||||
},
|
|
||||||
"Locked": {
|
|
||||||
name: "Locked",
|
|
||||||
},
|
|
||||||
|
|
||||||
"MoneyAchv": {
|
|
||||||
description: "Accumulate a total of ₽{{moneyAmount}}",
|
|
||||||
},
|
|
||||||
"10K_MONEY": {
|
|
||||||
name: "Money Haver",
|
|
||||||
},
|
|
||||||
"100K_MONEY": {
|
|
||||||
name: "Rich",
|
|
||||||
},
|
|
||||||
"1M_MONEY": {
|
|
||||||
name: "Millionaire",
|
|
||||||
},
|
|
||||||
"10M_MONEY": {
|
|
||||||
name: "One Percenter",
|
|
||||||
},
|
|
||||||
|
|
||||||
"DamageAchv": {
|
|
||||||
description: "Inflict {{damageAmount}} damage in one hit",
|
|
||||||
},
|
|
||||||
"250_DMG": {
|
|
||||||
name: "Hard Hitter",
|
|
||||||
},
|
|
||||||
"1000_DMG": {
|
|
||||||
name: "Harder Hitter",
|
|
||||||
},
|
|
||||||
"2500_DMG": {
|
|
||||||
name: "That's a Lotta Damage!",
|
|
||||||
},
|
|
||||||
"10000_DMG": {
|
|
||||||
name: "One Punch Man",
|
|
||||||
},
|
|
||||||
|
|
||||||
"HealAchv": {
|
|
||||||
description: "Heal {{healAmount}} {{HP}} at once with a move, ability, or held item",
|
|
||||||
},
|
|
||||||
"250_HEAL": {
|
|
||||||
name: "Novice Healer",
|
|
||||||
},
|
|
||||||
"1000_HEAL": {
|
|
||||||
name: "Big Healer",
|
|
||||||
},
|
|
||||||
"2500_HEAL": {
|
|
||||||
name: "Cleric",
|
|
||||||
},
|
|
||||||
"10000_HEAL": {
|
|
||||||
name: "Recovery Master",
|
|
||||||
},
|
|
||||||
|
|
||||||
"LevelAchv": {
|
|
||||||
description: "Level up a Pokémon to Lv{{level}}",
|
|
||||||
},
|
|
||||||
"LV_100": {
|
|
||||||
name: "But Wait, There's More!",
|
|
||||||
},
|
|
||||||
"LV_250": {
|
|
||||||
name: "Elite",
|
|
||||||
},
|
|
||||||
"LV_1000": {
|
|
||||||
name: "To Go Even Further Beyond",
|
|
||||||
},
|
|
||||||
|
|
||||||
"RibbonAchv": {
|
|
||||||
description: "Accumulate a total of {{ribbonAmount}} Ribbons",
|
|
||||||
},
|
|
||||||
"10_RIBBONS": {
|
|
||||||
name: "Pokémon League Champion",
|
|
||||||
},
|
|
||||||
"25_RIBBONS": {
|
|
||||||
name: "Great League Champion",
|
|
||||||
},
|
|
||||||
"50_RIBBONS": {
|
|
||||||
name: "Ultra League Champion",
|
|
||||||
},
|
|
||||||
"75_RIBBONS": {
|
|
||||||
name: "Rogue League Champion",
|
|
||||||
},
|
|
||||||
"100_RIBBONS": {
|
|
||||||
name: "Master League Champion",
|
|
||||||
},
|
|
||||||
|
|
||||||
"TRANSFER_MAX_BATTLE_STAT": {
|
|
||||||
name: "Teamwork",
|
|
||||||
description: "Baton pass to another party member with at least one stat maxed out",
|
|
||||||
},
|
|
||||||
"MAX_FRIENDSHIP": {
|
|
||||||
name: "Friendmaxxing",
|
|
||||||
description: "Reach max friendship on a Pokémon",
|
|
||||||
},
|
|
||||||
"MEGA_EVOLVE": {
|
|
||||||
name: "Megamorph",
|
|
||||||
description: "Mega evolve a Pokémon",
|
|
||||||
},
|
|
||||||
"GIGANTAMAX": {
|
|
||||||
name: "Absolute Unit",
|
|
||||||
description: "Gigantamax a Pokémon",
|
|
||||||
},
|
|
||||||
"TERASTALLIZE": {
|
|
||||||
name: "STAB Enthusiast",
|
|
||||||
description: "Terastallize a Pokémon",
|
|
||||||
},
|
|
||||||
"STELLAR_TERASTALLIZE": {
|
|
||||||
name: "The Hidden Type",
|
|
||||||
description: "Stellar Terastallize a Pokémon",
|
|
||||||
},
|
|
||||||
"SPLICE": {
|
|
||||||
name: "Infinite Fusion",
|
|
||||||
description: "Splice two Pokémon together with DNA Splicers",
|
|
||||||
},
|
|
||||||
"MINI_BLACK_HOLE": {
|
|
||||||
name: "A Hole Lot of Items",
|
|
||||||
description: "Acquire a Mini Black Hole",
|
|
||||||
},
|
|
||||||
"CATCH_MYTHICAL": {
|
|
||||||
name: "Mythical",
|
|
||||||
description: "Catch a mythical Pokémon",
|
|
||||||
},
|
|
||||||
"CATCH_SUB_LEGENDARY": {
|
|
||||||
name: "(Sub-)Legendary",
|
|
||||||
description: "Catch a sub-legendary Pokémon",
|
|
||||||
},
|
|
||||||
"CATCH_LEGENDARY": {
|
|
||||||
name: "Legendary",
|
|
||||||
description: "Catch a legendary Pokémon",
|
|
||||||
},
|
|
||||||
"SEE_SHINY": {
|
|
||||||
name: "Shiny",
|
|
||||||
description: "Find a shiny Pokémon in the wild",
|
|
||||||
},
|
|
||||||
"SHINY_PARTY": {
|
|
||||||
name: "That's Dedication",
|
|
||||||
description: "Have a full party of shiny Pokémon",
|
|
||||||
},
|
|
||||||
"HATCH_MYTHICAL": {
|
|
||||||
name: "Mythical Egg",
|
|
||||||
description: "Hatch a mythical Pokémon from an egg",
|
|
||||||
},
|
|
||||||
"HATCH_SUB_LEGENDARY": {
|
|
||||||
name: "Sub-Legendary Egg",
|
|
||||||
description: "Hatch a sub-legendary Pokémon from an egg",
|
|
||||||
},
|
|
||||||
"HATCH_LEGENDARY": {
|
|
||||||
name: "Legendary Egg",
|
|
||||||
description: "Hatch a legendary Pokémon from an egg",
|
|
||||||
},
|
|
||||||
"HATCH_SHINY": {
|
|
||||||
name: "Shiny Egg",
|
|
||||||
description: "Hatch a shiny Pokémon from an egg",
|
|
||||||
},
|
|
||||||
"HIDDEN_ABILITY": {
|
|
||||||
name: "Hidden Potential",
|
|
||||||
description: "Catch a Pokémon with a hidden ability",
|
|
||||||
},
|
|
||||||
"PERFECT_IVS": {
|
|
||||||
name: "Certificate of Authenticity",
|
|
||||||
description: "Get perfect IVs on a Pokémon",
|
|
||||||
},
|
|
||||||
"CLASSIC_VICTORY": {
|
|
||||||
name: "Undefeated",
|
|
||||||
description: "Beat the game in classic mode",
|
|
||||||
},
|
|
||||||
"UNEVOLVED_CLASSIC_VICTORY": {
|
|
||||||
name: "Bring Your Child To Work Day",
|
|
||||||
description: "Beat the game in Classic Mode with at least one unevolved party member."
|
|
||||||
},
|
|
||||||
|
|
||||||
"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: "Extra Ordinary",
|
|
||||||
},
|
|
||||||
"MONO_FIGHTING": {
|
|
||||||
name: "I Know Kung Fu",
|
|
||||||
},
|
|
||||||
"MONO_FLYING": {
|
|
||||||
name: "Angry Birds",
|
|
||||||
},
|
|
||||||
"MONO_POISON": {
|
|
||||||
name: "Kanto's Favourite",
|
|
||||||
},
|
|
||||||
"MONO_GROUND": {
|
|
||||||
name: "Forecast: Earthquakes",
|
|
||||||
},
|
|
||||||
"MONO_ROCK": {
|
|
||||||
name: "Brock Hard",
|
|
||||||
},
|
|
||||||
"MONO_BUG": {
|
|
||||||
name: "You Like Jazz?",
|
|
||||||
},
|
|
||||||
"MONO_GHOST": {
|
|
||||||
name: "Who You Gonna Call?",
|
|
||||||
},
|
|
||||||
"MONO_STEEL": {
|
|
||||||
name: "Iron Giant",
|
|
||||||
},
|
|
||||||
"MONO_FIRE": {
|
|
||||||
name: "I Cast Fireball!",
|
|
||||||
},
|
|
||||||
"MONO_WATER": {
|
|
||||||
name: "When It Rains, It Pours",
|
|
||||||
},
|
|
||||||
"MONO_GRASS": {
|
|
||||||
name: "Can't Touch This",
|
|
||||||
},
|
|
||||||
"MONO_ELECTRIC": {
|
|
||||||
name: "Aim For The Horn!",
|
|
||||||
},
|
|
||||||
"MONO_PSYCHIC": {
|
|
||||||
name: "Big Brain Energy",
|
|
||||||
},
|
|
||||||
"MONO_ICE": {
|
|
||||||
name: "Walking On Thin Ice",
|
|
||||||
},
|
|
||||||
"MONO_DRAGON": {
|
|
||||||
name: "Pseudo-Legend Club",
|
|
||||||
},
|
|
||||||
"MONO_DARK": {
|
|
||||||
name: "It's Just A Phase",
|
|
||||||
},
|
|
||||||
"MONO_FAIRY": {
|
|
||||||
name: "Hey! Listen!",
|
|
||||||
},
|
|
||||||
"FRESH_START": {
|
|
||||||
name: "First Try!",
|
|
||||||
description: "Complete the Fresh Start challenge."
|
|
||||||
}
|
|
||||||
} 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;
|
|
@ -1,13 +1,9 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const arenaFlyout: SimpleTranslationEntries = {
|
|
||||||
// Title
|
|
||||||
"activeBattleEffects": "Active Battle Effects",
|
"activeBattleEffects": "Active Battle Effects",
|
||||||
"player": "Player",
|
"player": "Player",
|
||||||
"neutral": "Neutral",
|
"neutral": "Neutral",
|
||||||
"enemy": "Enemy",
|
"enemy": "Enemy",
|
||||||
|
|
||||||
// WeatherType
|
|
||||||
"sunny": "Sunny",
|
"sunny": "Sunny",
|
||||||
"rain": "Rain",
|
"rain": "Rain",
|
||||||
"sandstorm": "Sandstorm",
|
"sandstorm": "Sandstorm",
|
||||||
@ -18,13 +14,11 @@ export const arenaFlyout: SimpleTranslationEntries = {
|
|||||||
"harshSun": "Harsh Sun",
|
"harshSun": "Harsh Sun",
|
||||||
"strongWinds": "Strong Winds",
|
"strongWinds": "Strong Winds",
|
||||||
|
|
||||||
// TerrainType
|
|
||||||
"misty": "Misty Terrain",
|
"misty": "Misty Terrain",
|
||||||
"electric": "Electric Terrain",
|
"electric": "Electric Terrain",
|
||||||
"grassy": "Grassy Terrain",
|
"grassy": "Grassy Terrain",
|
||||||
"psychic": "Psychic Terrain",
|
"psychic": "Psychic Terrain",
|
||||||
|
|
||||||
// ArenaTagType
|
|
||||||
"mudSport": "Mud Sport",
|
"mudSport": "Mud Sport",
|
||||||
"waterSport": "Water Sport",
|
"waterSport": "Water Sport",
|
||||||
"spikes": "Spikes",
|
"spikes": "Spikes",
|
||||||
@ -45,5 +39,5 @@ export const arenaFlyout: SimpleTranslationEntries = {
|
|||||||
"matBlock": "Mat Block",
|
"matBlock": "Mat Block",
|
||||||
"craftyShield": "Crafty Shield",
|
"craftyShield": "Crafty Shield",
|
||||||
"tailwind": "Tailwind",
|
"tailwind": "Tailwind",
|
||||||
"happyHour": "Happy Hour",
|
"happyHour": "Happy Hour"
|
||||||
};
|
}
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const arenaTag: SimpleTranslationEntries = {
|
|
||||||
"yourTeam": "your team",
|
"yourTeam": "your team",
|
||||||
"opposingTeam": "the opposing team",
|
"opposingTeam": "the opposing team",
|
||||||
"arenaOnRemove": "{{moveName}}'s effect wore off.",
|
"arenaOnRemove": "{{moveName}}'s effect wore off.",
|
||||||
@ -49,5 +47,5 @@ export const arenaTag: SimpleTranslationEntries = {
|
|||||||
"tailwindOnRemovePlayer": "Your team's Tailwind petered out!",
|
"tailwindOnRemovePlayer": "Your team's Tailwind petered out!",
|
||||||
"tailwindOnRemoveEnemy": "The opposing team's Tailwind petered out!",
|
"tailwindOnRemoveEnemy": "The opposing team's Tailwind petered out!",
|
||||||
"happyHourOnAdd": "Everyone is caught up in the happy atmosphere!",
|
"happyHourOnAdd": "Everyone is caught up in the happy atmosphere!",
|
||||||
"happyHourOnRemove": "The atmosphere returned to normal.",
|
"happyHourOnRemove": "The atmosphere returned to normal."
|
||||||
} as const;
|
}
|
@ -1,53 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const arenaTag: SimpleTranslationEntries = {
|
|
||||||
"yourTeam": "your team",
|
|
||||||
"opposingTeam": "the opposing team",
|
|
||||||
"arenaOnRemove": "{{moveName}}'s effect wore off.",
|
|
||||||
"arenaOnRemovePlayer": "{{moveName}}'s effect wore off\non your side.",
|
|
||||||
"arenaOnRemoveEnemy": "{{moveName}}'s effect wore off\non the foe's side.",
|
|
||||||
"mistOnAdd": "{{pokemonNameWithAffix}}'s team became\nshrouded in mist!",
|
|
||||||
"mistApply": "The mist prevented\nthe lowering of stats!",
|
|
||||||
"reflectOnAdd": "Reflect reduced the damage of physical moves.",
|
|
||||||
"reflectOnAddPlayer": "Reflect reduced the damage of physical moves on your side.",
|
|
||||||
"reflectOnAddEnemy": "Reflect reduced the damage of physical moves on the foe's side.",
|
|
||||||
"lightScreenOnAdd": "Light Screen reduced the damage of special moves.",
|
|
||||||
"lightScreenOnAddPlayer": "Light Screen reduced the damage of special moves on your side.",
|
|
||||||
"lightScreenOnAddEnemy": "Light Screen reduced the damage of special moves on the foe's side.",
|
|
||||||
"auroraVeilOnAdd": "Aurora Veil reduced the damage of moves.",
|
|
||||||
"auroraVeilOnAddPlayer": "Aurora Veil reduced the damage of moves on your side.",
|
|
||||||
"auroraVeilOnAddEnemy": "Aurora Veil reduced the damage of moves on the foe's side.",
|
|
||||||
"conditionalProtectOnAdd": "{{moveName}} protected team!",
|
|
||||||
"conditionalProtectOnAddPlayer": "{{moveName}} protected your team!",
|
|
||||||
"conditionalProtectOnAddEnemy": "{{moveName}} protected the\nopposing team!",
|
|
||||||
"conditionalProtectApply": "{{moveName}} protected {{pokemonNameWithAffix}}!",
|
|
||||||
"matBlockOnAdd": "{{pokemonNameWithAffix}} intends to flip up a mat\nand block incoming attacks!",
|
|
||||||
"noCritOnAddPlayer": "The {{moveName}} shielded your\nteam from critical hits!",
|
|
||||||
"noCritOnAddEnemy": "The {{moveName}} shielded the opposing\nteam from critical hits!",
|
|
||||||
"noCritOnRemove": "{{pokemonNameWithAffix}}'s {{moveName}}\nwore off!",
|
|
||||||
"wishTagOnAdd": "{{pokemonNameWithAffix}}'s wish\ncame true!",
|
|
||||||
"mudSportOnAdd": "Electricity's power was weakened!",
|
|
||||||
"mudSportOnRemove": "The effects of Mud Sport\nhave faded.",
|
|
||||||
"waterSportOnAdd": "Fire's power was weakened!",
|
|
||||||
"waterSportOnRemove": "The effects of Water Sport\nhave faded.",
|
|
||||||
"spikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!",
|
|
||||||
"spikesActivateTrap": "{{pokemonNameWithAffix}} is hurt\nby the spikes!",
|
|
||||||
"toxicSpikesOnAdd": "{{moveName}} were scattered\nall around {{opponentDesc}}'s feet!",
|
|
||||||
"toxicSpikesActivateTrapPoison": "{{pokemonNameWithAffix}} absorbed the {{moveName}}!",
|
|
||||||
"stealthRockOnAdd": "Pointed stones float in the air\naround {{opponentDesc}}!",
|
|
||||||
"stealthRockActivateTrap": "Pointed stones dug into\n{{pokemonNameWithAffix}}!",
|
|
||||||
"stickyWebOnAdd": "A {{moveName}} has been laid out on the ground around the opposing team!",
|
|
||||||
"stickyWebActivateTrap": "The opposing {{pokemonName}} was caught in a sticky web!",
|
|
||||||
"trickRoomOnAdd": "{{pokemonNameWithAffix}} twisted\nthe dimensions!",
|
|
||||||
"trickRoomOnRemove": "The twisted dimensions\nreturned to normal!",
|
|
||||||
"gravityOnAdd": "Gravity intensified!",
|
|
||||||
"gravityOnRemove": "Gravity returned to normal!",
|
|
||||||
"tailwindOnAdd": "The Tailwind blew from behind team!",
|
|
||||||
"tailwindOnAddPlayer": "The Tailwind blew from behind\nyour team!",
|
|
||||||
"tailwindOnAddEnemy": "The Tailwind blew from behind\nthe opposing team!",
|
|
||||||
"tailwindOnRemove": "Team's Tailwind petered out!",
|
|
||||||
"tailwindOnRemovePlayer": "Your team's Tailwind petered out!",
|
|
||||||
"tailwindOnRemoveEnemy": "The opposing team's Tailwind petered out!",
|
|
||||||
"happyHourOnAdd": "Everyone is caught up in the happy atmosphere!",
|
|
||||||
"happyHourOnRemove": "The atmosphere returned to normal.",
|
|
||||||
} as const;
|
|
3
src/locales/en/battle-info.json
Normal file
3
src/locales/en/battle-info.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"generation": "Generation {{generation}}"
|
||||||
|
}
|
@ -1,5 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const battleInfo: SimpleTranslationEntries = {
|
|
||||||
"generation": "Generation {{generation}}",
|
|
||||||
} as const;
|
|
8
src/locales/en/battle-message-ui-handler.json
Normal file
8
src/locales/en/battle-message-ui-handler.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"ivBest": "Best",
|
||||||
|
"ivFantastic": "Fantastic",
|
||||||
|
"ivVeryGood": "Very Good",
|
||||||
|
"ivPrettyGood": "Pretty Good",
|
||||||
|
"ivDecent": "Decent",
|
||||||
|
"ivNoGood": "No Good"
|
||||||
|
}
|
@ -1,10 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
|
||||||
"ivBest": "Best",
|
|
||||||
"ivFantastic": "Fantastic",
|
|
||||||
"ivVeryGood": "Very Good",
|
|
||||||
"ivPrettyGood": "Pretty Good",
|
|
||||||
"ivDecent": "Decent",
|
|
||||||
"ivNoGood": "No Good",
|
|
||||||
} as const;
|
|
3
src/locales/en/battle-scene.json
Normal file
3
src/locales/en/battle-scene.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"moneyOwned": "₽{{formattedMoney}}"
|
||||||
|
}
|
@ -1,5 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const battleScene: SimpleTranslationEntries = {
|
|
||||||
"moneyOwned": "₽{{formattedMoney}}"
|
|
||||||
} as const;
|
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const battle: SimpleTranslationEntries = {
|
|
||||||
"bossAppeared": "{{bossName}} appeared.",
|
"bossAppeared": "{{bossName}} appeared.",
|
||||||
"trainerAppeared": "{{trainerName}}\nwould like to battle!",
|
"trainerAppeared": "{{trainerName}}\nwould like to battle!",
|
||||||
"trainerAppearedDouble": "{{trainerName}}\nwould like to battle!",
|
"trainerAppearedDouble": "{{trainerName}}\nwould like to battle!",
|
||||||
@ -96,5 +94,5 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"unlockedSomething": "{{unlockedThing}}\nhas been unlocked.",
|
"unlockedSomething": "{{unlockedThing}}\nhas been unlocked.",
|
||||||
"congratulations": "Congratulations!",
|
"congratulations": "Congratulations!",
|
||||||
"beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!",
|
"beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!",
|
||||||
"ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!",
|
"ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!"
|
||||||
} as const;
|
}
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const battlerTags: SimpleTranslationEntries = {
|
|
||||||
"trappedDesc": "trapping",
|
"trappedDesc": "trapping",
|
||||||
"flinchedDesc": "flinching",
|
"flinchedDesc": "flinching",
|
||||||
"confusedDesc": "confusion",
|
"confusedDesc": "confusion",
|
||||||
@ -69,5 +67,5 @@ export const battlerTags: SimpleTranslationEntries = {
|
|||||||
"saltCuredLapse": "{{pokemonNameWithAffix}} is hurt by {{moveName}}!",
|
"saltCuredLapse": "{{pokemonNameWithAffix}} is hurt by {{moveName}}!",
|
||||||
"cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!",
|
"cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!",
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!",
|
"cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!",
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!"
|
||||||
} as const;
|
}
|
@ -1,73 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const battlerTags: SimpleTranslationEntries = {
|
|
||||||
"trappedDesc": "trapping",
|
|
||||||
"flinchedDesc": "flinching",
|
|
||||||
"confusedDesc": "confusion",
|
|
||||||
"infatuatedDesc": "infatuation",
|
|
||||||
"seedDesc": "seeding",
|
|
||||||
"nightmareDesc": "nightmares",
|
|
||||||
"ingrainDesc": "roots",
|
|
||||||
"drowsyDesc": "drowsiness",
|
|
||||||
"rechargingLapse": "{{pokemonNameWithAffix}} must\nrecharge!",
|
|
||||||
"trappedOnAdd": "{{pokemonNameWithAffix}} can no\nlonger escape!",
|
|
||||||
"trappedOnRemove": "{{pokemonNameWithAffix}} was freed\nfrom {{moveName}}!",
|
|
||||||
"flinchedLapse": "{{pokemonNameWithAffix}} flinched!",
|
|
||||||
"confusedOnAdd": "{{pokemonNameWithAffix}} became\nconfused!",
|
|
||||||
"confusedOnRemove": "{{pokemonNameWithAffix}} snapped\nout of confusion!",
|
|
||||||
"confusedOnOverlap": "{{pokemonNameWithAffix}} is\nalready confused!",
|
|
||||||
"confusedLapse": "{{pokemonNameWithAffix}} is\nconfused!",
|
|
||||||
"confusedLapseHurtItself": "It hurt itself in its\nconfusion!",
|
|
||||||
"destinyBondLapseIsBoss": "{{pokemonNameWithAffix}} is unaffected\nby the effects of Destiny Bond.",
|
|
||||||
"destinyBondLapse": "{{pokemonNameWithAffix}} took\n{{pokemonNameWithAffix2}} down with it!",
|
|
||||||
"infatuatedOnAdd": "{{pokemonNameWithAffix}} fell in love\nwith {{sourcePokemonName}}!",
|
|
||||||
"infatuatedOnOverlap": "{{pokemonNameWithAffix}} is\nalready in love!",
|
|
||||||
"infatuatedLapse": "{{pokemonNameWithAffix}} is in love\nwith {{sourcePokemonName}}!",
|
|
||||||
"infatuatedLapseImmobilize": "{{pokemonNameWithAffix}} is\nimmobilized by love!",
|
|
||||||
"infatuatedOnRemove": "{{pokemonNameWithAffix}} got over\nits infatuation.",
|
|
||||||
"seededOnAdd": "{{pokemonNameWithAffix}} was seeded!",
|
|
||||||
"seededLapse": "{{pokemonNameWithAffix}}'s health is\nsapped by Leech Seed!",
|
|
||||||
"seededLapseShed": "{{pokemonNameWithAffix}}'s Leech Seed\nsucked up the liquid ooze!",
|
|
||||||
"nightmareOnAdd": "{{pokemonNameWithAffix}} began\nhaving a Nightmare!",
|
|
||||||
"nightmareOnOverlap": "{{pokemonNameWithAffix}} is\nalready locked in a Nightmare!",
|
|
||||||
"nightmareLapse": "{{pokemonNameWithAffix}} is locked\nin a Nightmare!",
|
|
||||||
"encoreOnAdd": "{{pokemonNameWithAffix}} got\nan Encore!",
|
|
||||||
"encoreOnRemove": "{{pokemonNameWithAffix}}'s Encore\nended!",
|
|
||||||
"helpingHandOnAdd": "{{pokemonNameWithAffix}} is ready to\nhelp {{pokemonName}}!",
|
|
||||||
"ingrainLapse": "{{pokemonNameWithAffix}} absorbed\nnutrients with its roots!",
|
|
||||||
"ingrainOnTrap": "{{pokemonNameWithAffix}} planted its roots!",
|
|
||||||
"aquaRingOnAdd": "{{pokemonNameWithAffix}} surrounded\nitself with a veil of water!",
|
|
||||||
"aquaRingLapse": "{{moveName}} restored\n{{pokemonName}}'s HP!",
|
|
||||||
"drowsyOnAdd": "{{pokemonNameWithAffix}} grew drowsy!",
|
|
||||||
"damagingTrapLapse": "{{pokemonNameWithAffix}} is hurt\nby {{moveName}}!",
|
|
||||||
"bindOnTrap": "{{pokemonNameWithAffix}} was squeezed by\n{{sourcePokemonName}}'s {{moveName}}!",
|
|
||||||
"wrapOnTrap": "{{pokemonNameWithAffix}} was Wrapped\nby {{sourcePokemonName}}!",
|
|
||||||
"vortexOnTrap": "{{pokemonNameWithAffix}} was trapped\nin the vortex!",
|
|
||||||
"clampOnTrap": "{{sourcePokemonNameWithAffix}} Clamped\n{{pokemonName}}!",
|
|
||||||
"sandTombOnTrap": "{{pokemonNameWithAffix}} became trapped\nby {{moveName}}!",
|
|
||||||
"magmaStormOnTrap": "{{pokemonNameWithAffix}} became trapped\nby swirling magma!",
|
|
||||||
"snapTrapOnTrap": "{{pokemonNameWithAffix}} got trapped\nby a snap trap!",
|
|
||||||
"thunderCageOnTrap": "{{sourcePokemonNameWithAffix}} trapped\n{{pokemonNameWithAffix}}!",
|
|
||||||
"infestationOnTrap": "{{pokemonNameWithAffix}} has been afflicted \nwith an infestation by {{sourcePokemonNameWithAffix}}!",
|
|
||||||
"protectedOnAdd": "{{pokemonNameWithAffix}}\nprotected itself!",
|
|
||||||
"protectedLapse": "{{pokemonNameWithAffix}}\nprotected itself!",
|
|
||||||
"enduringOnAdd": "{{pokemonNameWithAffix}} braced\nitself!",
|
|
||||||
"enduringLapse": "{{pokemonNameWithAffix}} endured\nthe hit!",
|
|
||||||
"sturdyLapse": "{{pokemonNameWithAffix}} endured\nthe hit!",
|
|
||||||
"perishSongLapse": "{{pokemonNameWithAffix}}'s perish count fell to {{turnCount}}.",
|
|
||||||
"centerOfAttentionOnAdd": "{{pokemonNameWithAffix}} became the center\nof attention!",
|
|
||||||
"truantLapse": "{{pokemonNameWithAffix}} is\nloafing around!",
|
|
||||||
"slowStartOnAdd": "{{pokemonNameWithAffix}} can't\nget it going!",
|
|
||||||
"slowStartOnRemove": "{{pokemonNameWithAffix}} finally\ngot its act together!",
|
|
||||||
"highestStatBoostOnAdd": "{{pokemonNameWithAffix}}'s {{statName}}\nwas heightened!",
|
|
||||||
"highestStatBoostOnRemove": "The effects of {{pokemonNameWithAffix}}'s\n{{abilityName}} wore off!",
|
|
||||||
"magnetRisenOnAdd": "{{pokemonNameWithAffix}} levitated with electromagnetism!",
|
|
||||||
"magnetRisenOnRemove": "{{pokemonNameWithAffix}}'s electromagnetism wore off!",
|
|
||||||
"critBoostOnAdd": "{{pokemonNameWithAffix}} is getting\npumped!",
|
|
||||||
"critBoostOnRemove": "{{pokemonNameWithAffix}} relaxed.",
|
|
||||||
"saltCuredOnAdd": "{{pokemonNameWithAffix}} is being salt cured!",
|
|
||||||
"saltCuredLapse": "{{pokemonNameWithAffix}} is hurt by {{moveName}}!",
|
|
||||||
"cursedOnAdd": "{{pokemonNameWithAffix}} cut its own HP and put a curse on the {{pokemonName}}!",
|
|
||||||
"cursedLapse": "{{pokemonNameWithAffix}} is afflicted by the Curse!",
|
|
||||||
"stockpilingOnAdd": "{{pokemonNameWithAffix}} stockpiled {{stockpiledCount}}!",
|
|
||||||
} as const;
|
|
46
src/locales/en/berry.json
Normal file
46
src/locales/en/berry.json
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"SITRUS": {
|
||||||
|
"name": "Sitrus Berry",
|
||||||
|
"effect": "Restores 25% HP if HP is below 50%"
|
||||||
|
},
|
||||||
|
"LUM": {
|
||||||
|
"name": "Lum Berry",
|
||||||
|
"effect": "Cures any non-volatile status condition and confusion"
|
||||||
|
},
|
||||||
|
"ENIGMA": {
|
||||||
|
"name": "Enigma Berry",
|
||||||
|
"effect": "Restores 25% HP if hit by a super effective move"
|
||||||
|
},
|
||||||
|
"LIECHI": {
|
||||||
|
"name": "Liechi Berry",
|
||||||
|
"effect": "Raises Attack if HP is below 25%"
|
||||||
|
},
|
||||||
|
"GANLON": {
|
||||||
|
"name": "Ganlon Berry",
|
||||||
|
"effect": "Raises Defense if HP is below 25%"
|
||||||
|
},
|
||||||
|
"PETAYA": {
|
||||||
|
"name": "Petaya Berry",
|
||||||
|
"effect": "Raises Sp. Atk if HP is below 25%"
|
||||||
|
},
|
||||||
|
"APICOT": {
|
||||||
|
"name": "Apicot Berry",
|
||||||
|
"effect": "Raises Sp. Def if HP is below 25%"
|
||||||
|
},
|
||||||
|
"SALAC": {
|
||||||
|
"name": "Salac Berry",
|
||||||
|
"effect": "Raises Speed if HP is below 25%"
|
||||||
|
},
|
||||||
|
"LANSAT": {
|
||||||
|
"name": "Lansat Berry",
|
||||||
|
"effect": "Raises critical hit ratio if HP is below 25%"
|
||||||
|
},
|
||||||
|
"STARF": {
|
||||||
|
"name": "Starf Berry",
|
||||||
|
"effect": "Sharply raises a random stat if HP is below 25%"
|
||||||
|
},
|
||||||
|
"LEPPA": {
|
||||||
|
"name": "Leppa Berry",
|
||||||
|
"effect": "Restores 10 PP to a move if its PP reaches 0"
|
||||||
|
}
|
||||||
|
}
|
@ -1,48 +0,0 @@
|
|||||||
import { BerryTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const berry: BerryTranslationEntries = {
|
|
||||||
"SITRUS": {
|
|
||||||
name: "Sitrus Berry",
|
|
||||||
effect: "Restores 25% HP if HP is below 50%",
|
|
||||||
},
|
|
||||||
"LUM": {
|
|
||||||
name: "Lum Berry",
|
|
||||||
effect: "Cures any non-volatile status condition and confusion",
|
|
||||||
},
|
|
||||||
"ENIGMA": {
|
|
||||||
name: "Enigma Berry",
|
|
||||||
effect: "Restores 25% HP if hit by a super effective move",
|
|
||||||
},
|
|
||||||
"LIECHI": {
|
|
||||||
name: "Liechi Berry",
|
|
||||||
effect: "Raises Attack if HP is below 25%",
|
|
||||||
},
|
|
||||||
"GANLON": {
|
|
||||||
name: "Ganlon Berry",
|
|
||||||
effect: "Raises Defense if HP is below 25%",
|
|
||||||
},
|
|
||||||
"PETAYA": {
|
|
||||||
name: "Petaya Berry",
|
|
||||||
effect: "Raises Sp. Atk if HP is below 25%",
|
|
||||||
},
|
|
||||||
"APICOT": {
|
|
||||||
name: "Apicot Berry",
|
|
||||||
effect: "Raises Sp. Def if HP is below 25%",
|
|
||||||
},
|
|
||||||
"SALAC": {
|
|
||||||
name: "Salac Berry",
|
|
||||||
effect: "Raises Speed if HP is below 25%",
|
|
||||||
},
|
|
||||||
"LANSAT": {
|
|
||||||
name: "Lansat Berry",
|
|
||||||
effect: "Raises critical hit ratio if HP is below 25%",
|
|
||||||
},
|
|
||||||
"STARF": {
|
|
||||||
name: "Starf Berry",
|
|
||||||
effect: "Sharply raises a random stat if HP is below 25%",
|
|
||||||
},
|
|
||||||
"LEPPA": {
|
|
||||||
name: "Leppa Berry",
|
|
||||||
effect: "Restores 10 PP to a move if its PP reaches 0",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,8 +1,6 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const bgmName: SimpleTranslationEntries = {
|
|
||||||
"music": "Music: ",
|
"music": "Music: ",
|
||||||
"missing_entries" : "{{name}}",
|
"missing_entries": "{{name}}",
|
||||||
"battle_kanto_champion": "B2W2 Kanto Champion Battle",
|
"battle_kanto_champion": "B2W2 Kanto Champion Battle",
|
||||||
"battle_johto_champion": "B2W2 Johto Champion Battle",
|
"battle_johto_champion": "B2W2 Johto Champion Battle",
|
||||||
"battle_hoenn_champion_g5": "B2W2 Hoenn Champion Battle",
|
"battle_hoenn_champion_g5": "B2W2 Hoenn Champion Battle",
|
||||||
@ -85,8 +83,6 @@ export const bgmName: SimpleTranslationEntries = {
|
|||||||
"battle_galactic_boss": "BDSP Cyrus Battle",
|
"battle_galactic_boss": "BDSP Cyrus Battle",
|
||||||
"battle_plasma_boss": "B2W2 Ghetsis Battle",
|
"battle_plasma_boss": "B2W2 Ghetsis Battle",
|
||||||
"battle_flare_boss": "XY Lysandre Battle",
|
"battle_flare_boss": "XY Lysandre Battle",
|
||||||
|
|
||||||
// Biome Music
|
|
||||||
"abyss": "PMD EoS Dark Crater",
|
"abyss": "PMD EoS Dark Crater",
|
||||||
"badlands": "PMD EoS Barren Valley",
|
"badlands": "PMD EoS Barren Valley",
|
||||||
"beach": "PMD EoS Drenched Bluff",
|
"beach": "PMD EoS Drenched Bluff",
|
||||||
@ -102,18 +98,18 @@ export const bgmName: SimpleTranslationEntries = {
|
|||||||
"graveyard": "PMD EoS Mystifying Forest",
|
"graveyard": "PMD EoS Mystifying Forest",
|
||||||
"ice_cave": "PMD EoS Vast Ice Mountain",
|
"ice_cave": "PMD EoS Vast Ice Mountain",
|
||||||
"island": "PMD EoS Craggy Coast",
|
"island": "PMD EoS Craggy Coast",
|
||||||
"jungle": "Lmz - Jungle", // The composer thinks about a more creative name
|
"jungle": "Lmz - Jungle",
|
||||||
"laboratory": "Firel - Laboratory", // The composer thinks about a more creative name
|
"laboratory": "Firel - Laboratory",
|
||||||
"lake": "PMD EoS Crystal Cave",
|
"lake": "PMD EoS Crystal Cave",
|
||||||
"meadow": "PMD EoS Sky Peak Forest",
|
"meadow": "PMD EoS Sky Peak Forest",
|
||||||
"metropolis": "Firel - Metropolis", // The composer thinks about a more creative name
|
"metropolis": "Firel - Metropolis",
|
||||||
"mountain": "PMD EoS Mt. Horn",
|
"mountain": "PMD EoS Mt. Horn",
|
||||||
"plains": "PMD EoS Sky Peak Prairie",
|
"plains": "PMD EoS Sky Peak Prairie",
|
||||||
"power_plant": "PMD EoS Far Amp Plains",
|
"power_plant": "PMD EoS Far Amp Plains",
|
||||||
"ruins": "PMD EoS Deep Sealed Ruin",
|
"ruins": "PMD EoS Deep Sealed Ruin",
|
||||||
"sea": "Andr06 - Marine Mystique", // Name defined by the composer
|
"sea": "Andr06 - Marine Mystique",
|
||||||
"seabed": "Firel - Seabed", // The composer thinks about a more creative name
|
"seabed": "Firel - Seabed",
|
||||||
"slum": "Andr06 - Sneaky Snom", // Name defined by the composer
|
"slum": "Andr06 - Sneaky Snom",
|
||||||
"snowy_forest": "PMD EoS Sky Peak Snowfield",
|
"snowy_forest": "PMD EoS Sky Peak Snowfield",
|
||||||
"space": "Firel - Aether",
|
"space": "Firel - Aether",
|
||||||
"swamp": "PMD EoS Surrounded Sea",
|
"swamp": "PMD EoS Surrounded Sea",
|
||||||
@ -122,8 +118,6 @@ export const bgmName: SimpleTranslationEntries = {
|
|||||||
"town": "PMD EoS Random Dungeon Theme 3",
|
"town": "PMD EoS Random Dungeon Theme 3",
|
||||||
"volcano": "PMD EoS Steam Cave",
|
"volcano": "PMD EoS Steam Cave",
|
||||||
"wasteland": "PMD EoS Hidden Highland",
|
"wasteland": "PMD EoS Hidden Highland",
|
||||||
|
|
||||||
// Encounter
|
|
||||||
"encounter_ace_trainer": "BW Trainers' Eyes Meet (Ace Trainer)",
|
"encounter_ace_trainer": "BW Trainers' Eyes Meet (Ace Trainer)",
|
||||||
"encounter_backpacker": "BW Trainers' Eyes Meet (Backpacker)",
|
"encounter_backpacker": "BW Trainers' Eyes Meet (Backpacker)",
|
||||||
"encounter_clerk": "BW Trainers' Eyes Meet (Clerk)",
|
"encounter_clerk": "BW Trainers' Eyes Meet (Clerk)",
|
||||||
@ -138,9 +132,7 @@ export const bgmName: SimpleTranslationEntries = {
|
|||||||
"encounter_scientist": "BW Trainers' Eyes Meet (Scientist)",
|
"encounter_scientist": "BW Trainers' Eyes Meet (Scientist)",
|
||||||
"encounter_twins": "BW Trainers' Eyes Meet (Twins)",
|
"encounter_twins": "BW Trainers' Eyes Meet (Twins)",
|
||||||
"encounter_youngster": "BW Trainers' Eyes Meet (Youngster)",
|
"encounter_youngster": "BW Trainers' Eyes Meet (Youngster)",
|
||||||
|
|
||||||
// Other
|
|
||||||
"heal": "BW Pokémon Heal",
|
"heal": "BW Pokémon Heal",
|
||||||
"menu": "PMD EoS Welcome to the World of Pokémon!",
|
"menu": "PMD EoS Welcome to the World of Pokémon!",
|
||||||
"title": "PMD EoS Top Menu Theme",
|
"title": "PMD EoS Top Menu Theme"
|
||||||
} as const;
|
}
|
@ -1,7 +1,5 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
"unknownLocation": "Somewhere you can't remember",
|
||||||
export const biome: SimpleTranslationEntries = {
|
|
||||||
"unknownLocation": "Somewhere you can\'t remember",
|
|
||||||
"TOWN": "Town",
|
"TOWN": "Town",
|
||||||
"PLAINS": "Plains",
|
"PLAINS": "Plains",
|
||||||
"GRASS": "Grassy Field",
|
"GRASS": "Grassy Field",
|
||||||
@ -36,5 +34,5 @@ export const biome: SimpleTranslationEntries = {
|
|||||||
"SNOWY_FOREST": "Snowy Forest",
|
"SNOWY_FOREST": "Snowy Forest",
|
||||||
"ISLAND": "Island",
|
"ISLAND": "Island",
|
||||||
"LABORATORY": "Laboratory",
|
"LABORATORY": "Laboratory",
|
||||||
"END": "???",
|
"END": "???"
|
||||||
} as const;
|
}
|
@ -1,6 +1,4 @@
|
|||||||
import { TranslationEntries } from "#app/interfaces/locales.js";
|
{
|
||||||
|
|
||||||
export const challenges: TranslationEntries = {
|
|
||||||
"title": "Challenge Modifiers",
|
"title": "Challenge Modifiers",
|
||||||
"illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!",
|
"illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!",
|
||||||
"singleGeneration": {
|
"singleGeneration": {
|
||||||
@ -15,18 +13,17 @@ export const challenges: TranslationEntries = {
|
|||||||
"gen_6": "six",
|
"gen_6": "six",
|
||||||
"gen_7": "seven",
|
"gen_7": "seven",
|
||||||
"gen_8": "eight",
|
"gen_8": "eight",
|
||||||
"gen_9": "nine",
|
"gen_9": "nine"
|
||||||
},
|
},
|
||||||
"singleType": {
|
"singleType": {
|
||||||
"name": "Mono Type",
|
"name": "Mono Type",
|
||||||
"desc": "You can only use Pokémon with the {{type}} type.",
|
"desc": "You can only use Pokémon with the {{type}} type.",
|
||||||
"desc_default": "You can only use Pokémon of the chosen type."
|
"desc_default": "You can only use Pokémon of the chosen type."
|
||||||
//types in pokemon-info
|
|
||||||
},
|
},
|
||||||
"freshStart": {
|
"freshStart": {
|
||||||
"name": "Fresh Start",
|
"name": "Fresh Start",
|
||||||
"desc": "You can only use the original starters, and only as if you had just started PokéRogue.",
|
"desc": "You can only use the original starters, and only as if you had just started PokéRogue.",
|
||||||
"value.0": "Off",
|
"value.0": "Off",
|
||||||
"value.1": "On",
|
"value.1": "On"
|
||||||
}
|
}
|
||||||
} as const;
|
}
|
7
src/locales/en/command-ui-handler.json
Normal file
7
src/locales/en/command-ui-handler.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"fight": "Fight",
|
||||||
|
"ball": "Ball",
|
||||||
|
"pokemon": "Pokémon",
|
||||||
|
"run": "Run",
|
||||||
|
"actionMessage": "What will\n{{pokemonName}} do?"
|
||||||
|
}
|
@ -1,9 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const commandUiHandler: SimpleTranslationEntries = {
|
|
||||||
"fight": "Fight",
|
|
||||||
"ball": "Ball",
|
|
||||||
"pokemon": "Pokémon",
|
|
||||||
"run": "Run",
|
|
||||||
"actionMessage": "What will\n{{pokemonName}} do?",
|
|
||||||
} as const;
|
|
8
src/locales/en/common.json
Normal file
8
src/locales/en/common.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"start": "Start",
|
||||||
|
"luckIndicator": "Luck:",
|
||||||
|
"shinyOnHover": "Shiny",
|
||||||
|
"commonShiny": "Common",
|
||||||
|
"rareShiny": "Rare",
|
||||||
|
"epicShiny": "Epic"
|
||||||
|
}
|
@ -1,10 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const common: SimpleTranslationEntries = {
|
|
||||||
"start": "Start",
|
|
||||||
"luckIndicator": "Luck:",
|
|
||||||
"shinyOnHover": "Shiny",
|
|
||||||
"commonShiny": "Common",
|
|
||||||
"rareShiny": "Rare",
|
|
||||||
"epicShiny": "Epic",
|
|
||||||
} as const;
|
|
@ -1,118 +1,121 @@
|
|||||||
import { common } from "./common.js";
|
import common from "./common.json";
|
||||||
import { settings } from "./settings.js";
|
import settings from "./settings.json";
|
||||||
import { ability } from "./ability";
|
import ability from "./ability.json";
|
||||||
import { abilityTriggers } from "./ability-trigger";
|
import abilityTriggers from "./ability-trigger.json";
|
||||||
import { arenaFlyout } from "./arena-flyout";
|
import arenaFlyout from "./arena-flyout.json";
|
||||||
import { arenaTag } from "./arena-tag";
|
import arenaTag from "./arena-tag.json";
|
||||||
import { PGFachv, PGMachv } from "./achv";
|
import achvMale from "./achv-male.json";
|
||||||
import { battle } from "./battle";
|
import achvFemale from "./achv-female.json";
|
||||||
import { battleScene } from "./battle-scene";
|
import battle from "./battle.json";
|
||||||
import { battleInfo } from "./battle-info";
|
import battleScene from "./battle-scene.json";
|
||||||
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
import battleInfo from "./battle-info.json";
|
||||||
import { battlerTags } from "./battler-tags";
|
import battleMessageUiHandler from "./battle-message-ui-handler.json";
|
||||||
import { berry } from "./berry";
|
import battlerTags from "./battler-tags.json";
|
||||||
import { bgmName } from "./bgm-name";
|
import berry from "./berry.json";
|
||||||
import { biome } from "./biome";
|
import bgmName from "./bgm-name.json";
|
||||||
import { challenges } from "./challenges";
|
import biome from "./biome.json";
|
||||||
import { commandUiHandler } from "./command-ui-handler";
|
import challenges from "./challenges.json";
|
||||||
import {
|
import commandUiHandler from "./command-ui-handler.json";
|
||||||
PGFbattleSpecDialogue,
|
import dialogueMale from "./dialogue-male.json";
|
||||||
PGFdialogue,
|
import dialogueFemale from "./dialogue-female.json";
|
||||||
PGFdoubleBattleDialogue,
|
import dialogueEndbossMale from "./dialogue-final-boss-male.json";
|
||||||
PGFmiscDialogue,
|
import dialogueEndbossFemale from "./dialogue-final-boss-female.json";
|
||||||
PGMbattleSpecDialogue,
|
import dialogueMiscMale from "./dialogue-misc-male.json";
|
||||||
PGMdialogue,
|
import dialogueMiscFemale from "./dialogue-misc-female.json";
|
||||||
PGMdoubleBattleDialogue,
|
import dialogueDoubleBattleMale from "./dialogue-double-battle-male.json";
|
||||||
PGMmiscDialogue
|
import dialogueDoubleBattleFemale from "./dialogue-double-battle-female.json";
|
||||||
} from "./dialogue";
|
import egg from "./egg.json";
|
||||||
import { egg } from "./egg";
|
import fightUiHandler from "./fight-ui-handler.json";
|
||||||
import { fightUiHandler } from "./fight-ui-handler";
|
import filterBar from "./filter-bar.json";
|
||||||
import { filterBar } from "./filter-bar";
|
import gameMode from "./game-mode.json";
|
||||||
import { gameMode } from "./game-mode";
|
import gameStatsUiHandler from "./game-stats-ui-handler.json";
|
||||||
import { gameStatsUiHandler } from "./game-stats-ui-handler";
|
import growth from "./growth.json";
|
||||||
import { growth } from "./growth";
|
import menu from "./menu.json";
|
||||||
import { menu } from "./menu";
|
import menuUiHandler from "./menu-ui-handler.json";
|
||||||
import { menuUiHandler } from "./menu-ui-handler";
|
import modifier from "./modifier.json";
|
||||||
import { modifier } from "./modifier";
|
import modifierType from "./modifier-type.json";
|
||||||
import { modifierType } from "./modifier-type";
|
import move from "./move.json";
|
||||||
import { move } from "./move";
|
import nature from "./nature.json";
|
||||||
import { nature } from "./nature";
|
import partyUiHandler from "./party-ui-handler.json";
|
||||||
import { partyUiHandler } from "./party-ui-handler";
|
import pokeball from "./pokeball.json";
|
||||||
import { pokeball } from "./pokeball";
|
import pokemon from "./pokemon.json";
|
||||||
import { pokemon } from "./pokemon";
|
import pokemonForm from "./pokemon-form.json";
|
||||||
import { pokemonForm, battlePokemonForm } from "./pokemon-form";
|
import battlePokemonForm from "./pokemon-form-battle.json";
|
||||||
import { pokemonInfo } from "./pokemon-info";
|
import pokemonInfo from "./pokemon-info.json";
|
||||||
import { pokemonInfoContainer } from "./pokemon-info-container";
|
import pokemonInfoContainer from "./pokemon-info-container.json";
|
||||||
import { pokemonSummary } from "./pokemon-summary";
|
import pokemonSummary from "./pokemon-summary.json";
|
||||||
import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler";
|
import saveSlotSelectUiHandler from "./save-slot-select-ui-handler.json";
|
||||||
import { splashMessages } from "./splash-messages";
|
import splashMessages from "./splash-messages.json";
|
||||||
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
import starterSelectUiHandler from "./starter-select-ui-handler.json";
|
||||||
import { statusEffect } from "./status-effect";
|
import statusEffect from "./status-effect.json";
|
||||||
import { titles, trainerClasses, trainerNames } from "./trainers";
|
import trainerTitles from "./trainer-titles.json";
|
||||||
import { tutorial } from "./tutorial";
|
import trainerClasses from "./trainer-classes.json";
|
||||||
import { voucher } from "./voucher";
|
import trainerNames from "./trainer-names.json";
|
||||||
import { terrain, weather } from "./weather";
|
import tutorial from "./tutorial.json";
|
||||||
import { modifierSelectUiHandler } from "./modifier-select-ui-handler";
|
import voucher from "./voucher.json";
|
||||||
import { moveTriggers } from "./move-trigger";
|
import weather from "./weather.json";
|
||||||
|
import terrain from "./terrain.json";
|
||||||
|
import modifierSelectUiHandler from "./modifier-select-ui-handler.json";
|
||||||
|
import moveTriggers from "./move-trigger.json";
|
||||||
|
|
||||||
export const enConfig = {
|
export const enConfig = {
|
||||||
ability: ability,
|
ability,
|
||||||
abilityTriggers: abilityTriggers,
|
abilityTriggers,
|
||||||
arenaFlyout: arenaFlyout,
|
arenaFlyout,
|
||||||
arenaTag: arenaTag,
|
arenaTag,
|
||||||
battle: battle,
|
battle,
|
||||||
battleScene: battleScene,
|
battleScene,
|
||||||
battleInfo: battleInfo,
|
battleInfo,
|
||||||
battleMessageUiHandler: battleMessageUiHandler,
|
battleMessageUiHandler,
|
||||||
battlePokemonForm: battlePokemonForm,
|
battlePokemonForm,
|
||||||
battlerTags: battlerTags,
|
battlerTags,
|
||||||
berry: berry,
|
berry,
|
||||||
bgmName: bgmName,
|
bgmName,
|
||||||
biome: biome,
|
biome,
|
||||||
challenges: challenges,
|
challenges,
|
||||||
commandUiHandler: commandUiHandler,
|
commandUiHandler,
|
||||||
common: common,
|
common,
|
||||||
PGMachv: PGMachv,
|
PGMachv: achvMale,
|
||||||
PGFachv: PGFachv,
|
PGFachv: achvFemale,
|
||||||
PGMdialogue: PGMdialogue,
|
PGMdialogue: dialogueMale,
|
||||||
PGFdialogue: PGFdialogue,
|
PGFdialogue: dialogueFemale,
|
||||||
PGMbattleSpecDialogue: PGMbattleSpecDialogue,
|
PGMbattleSpecDialogue: dialogueEndbossMale,
|
||||||
PGFbattleSpecDialogue: PGFbattleSpecDialogue,
|
PGFbattleSpecDialogue: dialogueEndbossFemale,
|
||||||
PGMmiscDialogue: PGMmiscDialogue,
|
PGMmiscDialogue: dialogueMiscMale,
|
||||||
PGFmiscDialogue: PGFmiscDialogue,
|
PGFmiscDialogue: dialogueMiscFemale,
|
||||||
PGMdoubleBattleDialogue: PGMdoubleBattleDialogue,
|
PGMdoubleBattleDialogue: dialogueDoubleBattleMale,
|
||||||
PGFdoubleBattleDialogue: PGFdoubleBattleDialogue,
|
PGFdoubleBattleDialogue: dialogueDoubleBattleFemale,
|
||||||
egg: egg,
|
egg,
|
||||||
fightUiHandler: fightUiHandler,
|
fightUiHandler,
|
||||||
filterBar: filterBar,
|
filterBar,
|
||||||
gameMode: gameMode,
|
gameMode,
|
||||||
gameStatsUiHandler: gameStatsUiHandler,
|
gameStatsUiHandler,
|
||||||
growth: growth,
|
growth,
|
||||||
menu: menu,
|
menu,
|
||||||
menuUiHandler: menuUiHandler,
|
menuUiHandler,
|
||||||
modifier: modifier,
|
modifier,
|
||||||
modifierType: modifierType,
|
modifierType,
|
||||||
move: move,
|
move,
|
||||||
nature: nature,
|
nature,
|
||||||
pokeball: pokeball,
|
pokeball,
|
||||||
pokemon: pokemon,
|
pokemon,
|
||||||
pokemonForm: pokemonForm,
|
pokemonForm,
|
||||||
pokemonInfo: pokemonInfo,
|
pokemonInfo,
|
||||||
pokemonInfoContainer: pokemonInfoContainer,
|
pokemonInfoContainer,
|
||||||
pokemonSummary: pokemonSummary,
|
pokemonSummary,
|
||||||
saveSlotSelectUiHandler: saveSlotSelectUiHandler,
|
saveSlotSelectUiHandler,
|
||||||
settings: settings,
|
settings,
|
||||||
splashMessages: splashMessages,
|
splashMessages,
|
||||||
starterSelectUiHandler: starterSelectUiHandler,
|
starterSelectUiHandler,
|
||||||
statusEffect: statusEffect,
|
statusEffect,
|
||||||
terrain: terrain,
|
terrain,
|
||||||
titles: titles,
|
titles: trainerTitles,
|
||||||
trainerClasses: trainerClasses,
|
trainerClasses,
|
||||||
trainerNames: trainerNames,
|
trainerNames,
|
||||||
tutorial: tutorial,
|
tutorial,
|
||||||
voucher: voucher,
|
voucher,
|
||||||
weather: weather,
|
weather,
|
||||||
partyUiHandler: partyUiHandler,
|
partyUiHandler,
|
||||||
modifierSelectUiHandler: modifierSelectUiHandler,
|
modifierSelectUiHandler,
|
||||||
moveTriggers: moveTriggers
|
moveTriggers,
|
||||||
};
|
};
|
||||||
|
82
src/locales/en/dialogue-double-battle-female.json
Normal file
82
src/locales/en/dialogue-double-battle-female.json
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
{
|
||||||
|
"blue_red_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Blue: Hey Red, let's show them what we're made of!\n$Red: ...\n$Blue: This is Pallet Town Power!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Blue: That was a great battle!\n$Red: ..."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"red_blue_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Red: ...!\n$Blue: He never talks much.\n$Blue: But dont let that fool you! He is a champ after all!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Red: ...!\n$Blue: Next time we will beat you!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tate_liza_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Tate: Are you surprised?\n$Liza: We are two gym leaders at once!\n$Tate: We are twins!\n$Liza: We dont need to talk to understand each other!\n$Tate: Twice the power...\n$Liza: Can you handle it?"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Tate: What? Our combination was perfect!\n$Liza: Looks like we need to train more..."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"liza_tate_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Liza: Hihihi... Are you surprised?\n$Tate: Yes, we are really two gym leaders at once!\n$Liza: This is my twin brother Tate!\n$Tate: And this is my twin sister Liza!\n$Liza: Don't you think we are a perfect combination?"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Liza: Are we...\n$Tate: ...not as strong as we thought?"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"wallace_steven_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Steven: Wallace, let's show them the power of the champions!\n$Wallace: We will show you the power of Hoenn!\n$Steven: Let's go!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Steven: That was a great battle!\n$Wallace: We will win next time!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"steven_wallace_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Steven: Do you have any rare Pokémon?\n$Wallace: Steven... We are here for a battle, not to show off our Pokémon.\n$Steven: Oh... I see... Let's go then!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Steven: Now that we are done with the battle, let's show off our Pokémon!\n$Wallace: Steven..."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"alder_iris_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Alder: We are the strongest trainers in Unova!\n$Iris: Fights against strong trainers are the best!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Alder: Wow! You are super strong!\n$Iris: We will win next time!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"iris_alder_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Iris: Welcome Challenger! I am THE Unova Champion!\n$Alder: Iris, aren't you a bit too excited?"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Iris: A loss like this is not easy to take...\n$Alder: But we will only get stronger with every loss!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"piers_marnie_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Marnie: Brother, let's show them the power of Spikemuth!\n$Piers: We bring darkness!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Marnie: You brought light to our darkness!\n$Piers: Its too bright..."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"marnie_piers_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Piers: Ready for a concert?\n$Marnie: Brother... They are here to fight, not to sing..."
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Piers: Now that was a great concert!\n$Marnie: Brother..."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
82
src/locales/en/dialogue-double-battle-male.json
Normal file
82
src/locales/en/dialogue-double-battle-male.json
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
{
|
||||||
|
"blue_red_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Blue: Hey Red, let's show them what we're made of!\n$Red: ...\n$Blue: This is Pallet Town Power!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Blue: That was a great battle!\n$Red: ..."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"red_blue_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Red: ...!\n$Blue: He never talks much.\n$Blue: But dont let that fool you! He is a champ after all!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Red: ...!\n$Blue: Next time we will beat you!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tate_liza_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Tate: Are you surprised?\n$Liza: We are two gym leaders at once!\n$Tate: We are twins!\n$Liza: We dont need to talk to understand each other!\n$Tate: Twice the power...\n$Liza: Can you handle it?"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Tate: What? Our combination was perfect!\n$Liza: Looks like we need to train more..."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"liza_tate_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Liza: Hihihi... Are you surprised?\n$Tate: Yes, we are really two gym leaders at once!\n$Liza: This is my twin brother Tate!\n$Tate: And this is my twin sister Liza!\n$Liza: Don't you think we are a perfect combination?"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Liza: Are we...\n$Tate: ...not as strong as we thought?"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"wallace_steven_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Steven: Wallace, let's show them the power of the champions!\n$Wallace: We will show you the power of Hoenn!\n$Steven: Let's go!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Steven: That was a great battle!\n$Wallace: We will win next time!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"steven_wallace_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Steven: Do you have any rare Pokémon?\n$Wallace: Steven... We are here for a battle, not to show off our Pokémon.\n$Steven: Oh... I see... Let's go then!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Steven: Now that we are done with the battle, let's show off our Pokémon!\n$Wallace: Steven..."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"alder_iris_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Alder: We are the strongest trainers in Unova!\n$Iris: Fights against strong trainers are the best!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Alder: Wow! You are super strong!\n$Iris: We will win next time!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"iris_alder_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Iris: Welcome Challenger! I am THE Unova Champion!\n$Alder: Iris, aren't you a bit too excited?"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Iris: A loss like this is not easy to take...\n$Alder: But we will only get stronger with every loss!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"piers_marnie_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Marnie: Brother, let's show them the power of Spikemuth!\n$Piers: We bring darkness!"
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Marnie: You brought light to our darkness!\n$Piers: Its too bright..."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"marnie_piers_double": {
|
||||||
|
"encounter": {
|
||||||
|
"1": "Piers: Ready for a concert?\n$Marnie: Brother... They are here to fight, not to sing..."
|
||||||
|
},
|
||||||
|
"victory": {
|
||||||
|
"1": "Piers: Now that was a great concert!\n$Marnie: Brother..."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
2545
src/locales/en/dialogue-female.json
Normal file
2545
src/locales/en/dialogue-female.json
Normal file
File diff suppressed because it is too large
Load Diff
5
src/locales/en/dialogue-final-boss-female.json
Normal file
5
src/locales/en/dialogue-final-boss-female.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"encounter": "It appears the time has finally come once again.\nYou know why you have come here, do you not?\n$You were drawn here, because you have been here before.\nCountless times.\n$Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle.\n$Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain.\n$Until now you have yet to succeed, but I sense a different presence in you this time.\n\n$You are the only one here, though it is as if there is… another.\n$Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia?\n$We begin.",
|
||||||
|
"firstStageWin": "I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back.\n$Do not disappoint me.",
|
||||||
|
"secondStageWin": "…Magnificent."
|
||||||
|
}
|
5
src/locales/en/dialogue-final-boss-male.json
Normal file
5
src/locales/en/dialogue-final-boss-male.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"encounter": "It appears the time has finally come once again.\nYou know why you have come here, do you not?\n$You were drawn here, because you have been here before.\nCountless times.\n$Though, perhaps it can be counted.\nTo be precise, this is in fact your {{cycleCount}} cycle.\n$Each cycle your mind reverts to its former state.\nEven so, somehow, remnants of your former selves remain.\n$Until now you have yet to succeed, but I sense a different presence in you this time.\n\n$You are the only one here, though it is as if there is… another.\n$Will you finally prove a formidable challenge to me?\nThe challenge I have longed after for millennia?\n$We begin.",
|
||||||
|
"firstStageWin": "I see. The presence I felt was indeed real.\nIt appears I no longer need to hold back.\n$Do not disappoint me.",
|
||||||
|
"secondStageWin": "…Magnificent."
|
||||||
|
}
|
2545
src/locales/en/dialogue-male.json
Normal file
2545
src/locales/en/dialogue-male.json
Normal file
File diff suppressed because it is too large
Load Diff
6
src/locales/en/dialogue-misc-female.json
Normal file
6
src/locales/en/dialogue-misc-female.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"ending": "@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now.\n$@c{smile}It's over.@d{64} You ended the loop.\n$@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it?\n$@c{serious_smile_fists}Your legend will always live on in our hearts.\n$@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home.\n$@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.",
|
||||||
|
"ending_female": "@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you.\n$@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop.\n$@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget!\n$@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts.\n$@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place.\n$Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?",
|
||||||
|
"ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.",
|
||||||
|
"ending_name": "Devs"
|
||||||
|
}
|
6
src/locales/en/dialogue-misc-male.json
Normal file
6
src/locales/en/dialogue-misc-male.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"ending": "@c{smile}Oh? You won?@d{96} @c{smile_eclosed}I guess I should've known.\nBut, you're back now.\n$@c{smile}It's over.@d{64} You ended the loop.\n$@c{serious_smile_fists}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$@c{neutral}I'm the only one who'll remember what you did.@d{96}\nI guess that's okay, isn't it?\n$@c{serious_smile_fists}Your legend will always live on in our hearts.\n$@c{smile_eclosed}Anyway, I've had about enough of this place, haven't you? Let's head home.\n$@c{serious_smile_fists}Maybe when we get back, we can have another battle?\nIf you're up to it.",
|
||||||
|
"ending_female": "@c{shock}You're back?@d{32} Does that mean…@d{96} you won?!\n@c{smile_ehalf}I should have known you had it in you.\n$@c{smile_eclosed}Of course… I always had that feeling.\n@c{smile}It's over now, right? You ended the loop.\n$@c{smile_ehalf}You fulfilled your dream too, didn't you?\nYou didn't lose even once.\n$I'll be the only one to remember what you did.\n@c{angry_mopen}I'll try not to forget!\n$@c{smile_wave_wink}Just kidding!@d{64} @c{smile}I'd never forget.@d{32}\nYour legend will live on in our hearts.\n$@c{smile_wave}Anyway,@d{64} it's getting late…@d{96} I think?\nIt's hard to tell in this place.\n$Let's go home. @c{smile_wave_wink}Maybe tomorrow, we can have another battle, for old time's sake?",
|
||||||
|
"ending_endless": "Congratulations on reaching the current end!\nMore content is coming soon.",
|
||||||
|
"ending_name": "Devs"
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const egg: SimpleTranslationEntries = {
|
|
||||||
"egg": "Egg",
|
"egg": "Egg",
|
||||||
"greatTier": "Rare",
|
"greatTier": "Rare",
|
||||||
"ultraTier": "Epic",
|
"ultraTier": "Epic",
|
||||||
@ -24,5 +22,5 @@ export const egg: SimpleTranslationEntries = {
|
|||||||
"rareEggMoveUnlock": "Rare Egg Move unlocked: {{moveName}}",
|
"rareEggMoveUnlock": "Rare Egg Move unlocked: {{moveName}}",
|
||||||
"moveUPGacha": "Move UP!",
|
"moveUPGacha": "Move UP!",
|
||||||
"shinyUPGacha": "Shiny UP!",
|
"shinyUPGacha": "Shiny UP!",
|
||||||
"legendaryUPGacha": "UP!",
|
"legendaryUPGacha": "UP!"
|
||||||
} as const;
|
}
|
7
src/locales/en/fight-ui-handler.json
Normal file
7
src/locales/en/fight-ui-handler.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"pp": "PP",
|
||||||
|
"power": "Power",
|
||||||
|
"accuracy": "Accuracy",
|
||||||
|
"abilityFlyInText": " {{pokemonName}}'s {{passive}}{{abilityName}}",
|
||||||
|
"passive": "Passive "
|
||||||
|
}
|
@ -1,9 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const fightUiHandler: SimpleTranslationEntries = {
|
|
||||||
"pp": "PP",
|
|
||||||
"power": "Power",
|
|
||||||
"accuracy": "Accuracy",
|
|
||||||
"abilityFlyInText": " {{pokemonName}}'s {{passive}}{{abilityName}}",
|
|
||||||
"passive": "Passive ", // The space at the end is important
|
|
||||||
} as const;
|
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const filterBar: SimpleTranslationEntries = {
|
|
||||||
"genFilter": "Gen",
|
"genFilter": "Gen",
|
||||||
"typeFilter": "Type",
|
"typeFilter": "Type",
|
||||||
"caughtFilter": "Caught",
|
"caughtFilter": "Caught",
|
||||||
@ -36,5 +34,5 @@ export const filterBar: SimpleTranslationEntries = {
|
|||||||
"sortByCost": "Cost",
|
"sortByCost": "Cost",
|
||||||
"sortByCandies": "Candy Count",
|
"sortByCandies": "Candy Count",
|
||||||
"sortByIVs": "IVs",
|
"sortByIVs": "IVs",
|
||||||
"sortByName": "Name",
|
"sortByName": "Name"
|
||||||
};
|
}
|
8
src/locales/en/game-mode.json
Normal file
8
src/locales/en/game-mode.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"classic": "Classic",
|
||||||
|
"endless": "Endless",
|
||||||
|
"endlessSpliced": "Endless (Spliced)",
|
||||||
|
"dailyRun": "Daily Run",
|
||||||
|
"unknown": "Unknown",
|
||||||
|
"challenge": "Challenge"
|
||||||
|
}
|
@ -1,10 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const gameMode: SimpleTranslationEntries = {
|
|
||||||
"classic": "Classic",
|
|
||||||
"endless": "Endless",
|
|
||||||
"endlessSpliced": "Endless (Spliced)",
|
|
||||||
"dailyRun": "Daily Run",
|
|
||||||
"unknown": "Unknown",
|
|
||||||
"challenge": "Challenge",
|
|
||||||
} as const;
|
|
@ -1,44 +1,42 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
"stats": "Stats",
|
||||||
export const gameStatsUiHandler: SimpleTranslationEntries = {
|
"playTime": "Play Time",
|
||||||
"stats": "Stats",
|
"totalBattles": "Total Battles",
|
||||||
"playTime": "Play Time",
|
"starters": "Starters",
|
||||||
"totalBattles": "Total Battles",
|
"shinyStarters": "Shiny Starters",
|
||||||
"starters": "Starters",
|
"speciesSeen": "Species Seen",
|
||||||
"shinyStarters": "Shiny Starters",
|
"speciesCaught": "Species Caught",
|
||||||
"speciesSeen": "Species Seen",
|
"ribbonsOwned": "Ribbons Owned",
|
||||||
"speciesCaught": "Species Caught",
|
"classicRuns": "Classic Runs",
|
||||||
"ribbonsOwned": "Ribbons Owned",
|
"classicWins": "Classic Wins",
|
||||||
"classicRuns": "Classic Runs",
|
"dailyRunAttempts": "Daily Run Attempts",
|
||||||
"classicWins": "Classic Wins",
|
"dailyRunWins": "Daily Run Wins",
|
||||||
"dailyRunAttempts": "Daily Run Attempts",
|
"endlessRuns": "Endless Runs",
|
||||||
"dailyRunWins": "Daily Run Wins",
|
"highestWaveEndless": "Highest Wave (Endless)",
|
||||||
"endlessRuns": "Endless Runs",
|
"highestMoney": "Highest Money",
|
||||||
"highestWaveEndless": "Highest Wave (Endless)",
|
"highestDamage": "Highest Damage",
|
||||||
"highestMoney": "Highest Money",
|
"highestHPHealed": "Highest HP Healed",
|
||||||
"highestDamage": "Highest Damage",
|
"pokemonEncountered": "Pokémon Encountered",
|
||||||
"highestHPHealed": "Highest HP Healed",
|
"pokemonDefeated": "Pokémon Defeated",
|
||||||
"pokemonEncountered": "Pokémon Encountered",
|
"pokemonCaught": "Pokémon Caught",
|
||||||
"pokemonDefeated": "Pokémon Defeated",
|
"eggsHatched": "Eggs Hatched",
|
||||||
"pokemonCaught": "Pokémon Caught",
|
"subLegendsSeen": "Sub-Legends Seen",
|
||||||
"eggsHatched": "Eggs Hatched",
|
"subLegendsCaught": "Sub-Legends Caught",
|
||||||
"subLegendsSeen": "Sub-Legends Seen",
|
"subLegendsHatched": "Sub-Legends Hatched",
|
||||||
"subLegendsCaught": "Sub-Legends Caught",
|
"legendsSeen": "Legends Seen",
|
||||||
"subLegendsHatched": "Sub-Legends Hatched",
|
"legendsCaught": "Legends Caught",
|
||||||
"legendsSeen": "Legends Seen",
|
"legendsHatched": "Legends Hatched",
|
||||||
"legendsCaught": "Legends Caught",
|
"mythicalsSeen": "Mythicals Seen",
|
||||||
"legendsHatched": "Legends Hatched",
|
"mythicalsCaught": "Mythicals Caught",
|
||||||
"mythicalsSeen": "Mythicals Seen",
|
"mythicalsHatched": "Mythicals Hatched",
|
||||||
"mythicalsCaught": "Mythicals Caught",
|
"shiniesSeen": "Shinies Seen",
|
||||||
"mythicalsHatched": "Mythicals Hatched",
|
"shiniesCaught": "Shinies Caught",
|
||||||
"shiniesSeen": "Shinies Seen",
|
"shiniesHatched": "Shinies Hatched",
|
||||||
"shiniesCaught": "Shinies Caught",
|
"pokemonFused": "Pokémon Fused",
|
||||||
"shiniesHatched": "Shinies Hatched",
|
"trainersDefeated": "Trainers Defeated",
|
||||||
"pokemonFused": "Pokémon Fused",
|
"eggsPulled": "Eggs Pulled",
|
||||||
"trainersDefeated": "Trainers Defeated",
|
"rareEggsPulled": "Rare Eggs Pulled",
|
||||||
"eggsPulled": "Eggs Pulled",
|
"epicEggsPulled": "Epic Eggs Pulled",
|
||||||
"rareEggsPulled": "Rare Eggs Pulled",
|
"legendaryEggsPulled": "Legendary Eggs Pulled",
|
||||||
"epicEggsPulled": "Epic Eggs Pulled",
|
"manaphyEggsPulled": "Manaphy Eggs Pulled"
|
||||||
"legendaryEggsPulled": "Legendary Eggs Pulled",
|
}
|
||||||
"manaphyEggsPulled": "Manaphy Eggs Pulled",
|
|
||||||
} as const;
|
|
@ -1,10 +1,8 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const growth: SimpleTranslationEntries = {
|
|
||||||
"Erratic": "Erratic",
|
"Erratic": "Erratic",
|
||||||
"Fast": "Fast",
|
"Fast": "Fast",
|
||||||
"Medium_Fast": "Medium Fast",
|
"Medium_Fast": "Medium Fast",
|
||||||
"Medium_Slow": "Medium Slow",
|
"Medium_Slow": "Medium Slow",
|
||||||
"Slow": "Slow",
|
"Slow": "Slow",
|
||||||
"Fluctuating": "Fluctuating"
|
"Fluctuating": "Fluctuating"
|
||||||
} as const;
|
}
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const menuUiHandler: SimpleTranslationEntries = {
|
|
||||||
"GAME_SETTINGS": "Game Settings",
|
"GAME_SETTINGS": "Game Settings",
|
||||||
"ACHIEVEMENTS": "Achievements",
|
"ACHIEVEMENTS": "Achievements",
|
||||||
"STATS": "Stats",
|
"STATS": "Stats",
|
||||||
@ -26,4 +24,4 @@ export const menuUiHandler: SimpleTranslationEntries = {
|
|||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"losingProgressionWarning": "You will lose any progress since the beginning of the battle. Proceed?",
|
"losingProgressionWarning": "You will lose any progress since the beginning of the battle. Proceed?",
|
||||||
"noEggs": "You are not hatching\nany eggs at the moment!"
|
"noEggs": "You are not hatching\nany eggs at the moment!"
|
||||||
} as const;
|
}
|
@ -1,11 +1,4 @@
|
|||||||
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 menu: SimpleTranslationEntries = {
|
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"continue": "Continue",
|
"continue": "Continue",
|
||||||
"dailyRun": "Daily Run (Beta)",
|
"dailyRun": "Daily Run (Beta)",
|
||||||
@ -50,13 +43,13 @@ export const menu: SimpleTranslationEntries = {
|
|||||||
"loading": "Loading…",
|
"loading": "Loading…",
|
||||||
"loadingAsset": "Loading asset: {{assetName}}",
|
"loadingAsset": "Loading asset: {{assetName}}",
|
||||||
"playersOnline": "Players Online",
|
"playersOnline": "Players Online",
|
||||||
"yes":"Yes",
|
"yes": "Yes",
|
||||||
"no":"No",
|
"no": "No",
|
||||||
"disclaimer": "DISCLAIMER",
|
"disclaimer": "DISCLAIMER",
|
||||||
"disclaimerDescription": "This game is an unfinished product; it might have playability issues (including the potential loss of save data),\n change without notice, and may or may not be updated further or completed.",
|
"disclaimerDescription": "This game is an unfinished product; it might have playability issues (including the potential loss of save data),\n change without notice, and may or may not be updated further or completed.",
|
||||||
"choosePokemon": "Choose a Pokémon.",
|
"choosePokemon": "Choose a Pokémon.",
|
||||||
"renamePokemon": "Rename Pokémon",
|
"renamePokemon": "Rename Pokémon",
|
||||||
"rename": "Rename",
|
"rename": "Rename",
|
||||||
"nickname": "Nickname",
|
"nickname": "Nickname",
|
||||||
"errorServerDown": "Oops! There was an issue contacting the server.\n\nYou may leave this window open,\nthe game will automatically reconnect.",
|
"errorServerDown": "Oops! There was an issue contacting the server.\n\nYou may leave this window open,\nthe game will automatically reconnect."
|
||||||
} as const;
|
}
|
@ -1,14 +1,12 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
"transfer": "Transfer",
|
||||||
export const modifierSelectUiHandler: SimpleTranslationEntries = {
|
"reroll": "Reroll",
|
||||||
"transfer": "Transfer",
|
"lockRarities": "Lock Rarities",
|
||||||
"reroll": "Reroll",
|
"checkTeam": "Check Team",
|
||||||
"lockRarities": "Lock Rarities",
|
"transferDesc": "Transfer a held item from one Pokémon to another.",
|
||||||
"checkTeam": "Check Team",
|
"rerollDesc": "Spend money to reroll your item options.",
|
||||||
"transferDesc": "Transfer a held item from one Pokémon to another.",
|
"lockRaritiesDesc": "Lock item rarities on reroll (affects reroll cost).",
|
||||||
"rerollDesc": "Spend money to reroll your item options.",
|
"checkTeamDesc": "Check your team or use a form changing item.",
|
||||||
"lockRaritiesDesc": "Lock item rarities on reroll (affects reroll cost).",
|
"rerollCost": "₽{{formattedMoney}}",
|
||||||
"checkTeamDesc": "Check your team or use a form changing item.",
|
"itemCost": "₽{{formattedMoney}}"
|
||||||
"rerollCost": "₽{{formattedMoney}}",
|
}
|
||||||
"itemCost": "₽{{formattedMoney}}"
|
|
||||||
} as const;
|
|
455
src/locales/en/modifier-type.json
Normal file
455
src/locales/en/modifier-type.json
Normal file
@ -0,0 +1,455 @@
|
|||||||
|
{
|
||||||
|
"ModifierType": {
|
||||||
|
"AddPokeballModifierType": {
|
||||||
|
"name": "{{modifierCount}}x {{pokeballName}}",
|
||||||
|
"description": "Receive {{pokeballName}} x{{modifierCount}} (Inventory: {{pokeballAmount}}) \nCatch Rate: {{catchRate}}"
|
||||||
|
},
|
||||||
|
"AddVoucherModifierType": {
|
||||||
|
"name": "{{modifierCount}}x {{voucherTypeName}}",
|
||||||
|
"description": "Receive {{voucherTypeName}} x{{modifierCount}}."
|
||||||
|
},
|
||||||
|
"PokemonHeldItemModifierType": {
|
||||||
|
"extra": {
|
||||||
|
"inoperable": "{{pokemonName}} can't take\nthis item!",
|
||||||
|
"tooMany": "{{pokemonName}} has too many\nof this item!"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"PokemonHpRestoreModifierType": {
|
||||||
|
"description": "Restores {{restorePoints}} HP or {{restorePercent}}% HP for one Pokémon, whichever is higher.",
|
||||||
|
"extra": {
|
||||||
|
"fully": "Fully restores HP for one Pokémon.",
|
||||||
|
"fullyWithStatus": "Fully restores HP for one Pokémon and heals any status ailment."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"PokemonReviveModifierType": {
|
||||||
|
"description": "Revives one Pokémon and restores {{restorePercent}}% HP."
|
||||||
|
},
|
||||||
|
"PokemonStatusHealModifierType": {
|
||||||
|
"description": "Heals any status ailment for one Pokémon."
|
||||||
|
},
|
||||||
|
"PokemonPpRestoreModifierType": {
|
||||||
|
"description": "Restores {{restorePoints}} PP for one Pokémon move.",
|
||||||
|
"extra": {
|
||||||
|
"fully": "Restores all PP for one Pokémon move."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"PokemonAllMovePpRestoreModifierType": {
|
||||||
|
"description": "Restores {{restorePoints}} PP for all of one Pokémon's moves.",
|
||||||
|
"extra": {
|
||||||
|
"fully": "Restores all PP for all of one Pokémon's moves."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"PokemonPpUpModifierType": {
|
||||||
|
"description": "Permanently increases PP for one Pokémon move by {{upPoints}} for every 5 maximum PP (maximum 3)."
|
||||||
|
},
|
||||||
|
"PokemonNatureChangeModifierType": {
|
||||||
|
"name": "{{natureName}} Mint",
|
||||||
|
"description": "Changes a Pokémon's nature to {{natureName}} and permanently unlocks the nature for the starter."
|
||||||
|
},
|
||||||
|
"DoubleBattleChanceBoosterModifierType": {
|
||||||
|
"description": "Doubles the chance of an encounter being a double battle for {{battleCount}} battles."
|
||||||
|
},
|
||||||
|
"TempBattleStatBoosterModifierType": {
|
||||||
|
"description": "Increases the {{tempBattleStatName}} of all party members by 1 stage for 5 battles."
|
||||||
|
},
|
||||||
|
"AttackTypeBoosterModifierType": {
|
||||||
|
"description": "Increases the power of a Pokémon's {{moveType}}-type moves by 20%."
|
||||||
|
},
|
||||||
|
"PokemonLevelIncrementModifierType": {
|
||||||
|
"description": "Increases a Pokémon's level by {{levels}}."
|
||||||
|
},
|
||||||
|
"AllPokemonLevelIncrementModifierType": {
|
||||||
|
"description": "Increases all party members' level by {{levels}}."
|
||||||
|
},
|
||||||
|
"PokemonBaseStatBoosterModifierType": {
|
||||||
|
"description": "Increases the holder's base {{statName}} by 10%. The higher your IVs, the higher the stack limit."
|
||||||
|
},
|
||||||
|
"AllPokemonFullHpRestoreModifierType": {
|
||||||
|
"description": "Restores 100% HP for all Pokémon."
|
||||||
|
},
|
||||||
|
"AllPokemonFullReviveModifierType": {
|
||||||
|
"description": "Revives all fainted Pokémon, fully restoring HP."
|
||||||
|
},
|
||||||
|
"MoneyRewardModifierType": {
|
||||||
|
"description": "Grants a {{moneyMultiplier}} amount of money (₽{{moneyAmount}}).",
|
||||||
|
"extra": {
|
||||||
|
"small": "small",
|
||||||
|
"moderate": "moderate",
|
||||||
|
"large": "large"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ExpBoosterModifierType": {
|
||||||
|
"description": "Increases gain of EXP. Points by {{boostPercent}}%."
|
||||||
|
},
|
||||||
|
"PokemonExpBoosterModifierType": {
|
||||||
|
"description": "Increases the holder's gain of EXP. Points by {{boostPercent}}%."
|
||||||
|
},
|
||||||
|
"PokemonFriendshipBoosterModifierType": {
|
||||||
|
"description": "Increases friendship gain per victory by 50%."
|
||||||
|
},
|
||||||
|
"PokemonMoveAccuracyBoosterModifierType": {
|
||||||
|
"description": "Increases move accuracy by {{accuracyAmount}} (maximum 100)."
|
||||||
|
},
|
||||||
|
"PokemonMultiHitModifierType": {
|
||||||
|
"description": "Attacks hit one additional time at the cost of a 60/75/82.5% power reduction per stack respectively."
|
||||||
|
},
|
||||||
|
"TmModifierType": {
|
||||||
|
"name": "TM{{moveId}} - {{moveName}}",
|
||||||
|
"description": "Teach {{moveName}} to a Pokémon."
|
||||||
|
},
|
||||||
|
"TmModifierTypeWithInfo": {
|
||||||
|
"name": "TM{{moveId}} - {{moveName}}",
|
||||||
|
"description": "Teach {{moveName}} to a Pokémon\n(Hold C or Shift for more info)."
|
||||||
|
},
|
||||||
|
"EvolutionItemModifierType": {
|
||||||
|
"description": "Causes certain Pokémon to evolve."
|
||||||
|
},
|
||||||
|
"FormChangeItemModifierType": {
|
||||||
|
"description": "Causes certain Pokémon to change form."
|
||||||
|
},
|
||||||
|
"FusePokemonModifierType": {
|
||||||
|
"description": "Combines two Pokémon (transfers Ability, splits base stats and types, shares move pool)."
|
||||||
|
},
|
||||||
|
"TerastallizeModifierType": {
|
||||||
|
"name": "{{teraType}} Tera Shard",
|
||||||
|
"description": "{{teraType}} Terastallizes the holder for up to 10 battles."
|
||||||
|
},
|
||||||
|
"ContactHeldItemTransferChanceModifierType": {
|
||||||
|
"description": "Upon attacking, there is a {{chancePercent}}% chance the foe's held item will be stolen."
|
||||||
|
},
|
||||||
|
"TurnHeldItemTransferModifierType": {
|
||||||
|
"description": "Every turn, the holder acquires one held item from the foe."
|
||||||
|
},
|
||||||
|
"EnemyAttackStatusEffectChanceModifierType": {
|
||||||
|
"description": "Adds a {{chancePercent}}% chance to inflict {{statusEffect}} with attack moves."
|
||||||
|
},
|
||||||
|
"EnemyEndureChanceModifierType": {
|
||||||
|
"description": "Adds a {{chancePercent}}% chance of enduring a hit."
|
||||||
|
},
|
||||||
|
|
||||||
|
"RARE_CANDY": { "name": "Rare Candy" },
|
||||||
|
"RARER_CANDY": { "name": "Rarer Candy" },
|
||||||
|
|
||||||
|
"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." },
|
||||||
|
|
||||||
|
"MAP": { "name": "Map", "description": "Allows you to choose your destination at a crossroads." },
|
||||||
|
|
||||||
|
"POTION": { "name": "Potion" },
|
||||||
|
"SUPER_POTION": { "name": "Super Potion" },
|
||||||
|
"HYPER_POTION": { "name": "Hyper Potion" },
|
||||||
|
"MAX_POTION": { "name": "Max Potion" },
|
||||||
|
"FULL_RESTORE": { "name": "Full Restore" },
|
||||||
|
|
||||||
|
"REVIVE": { "name": "Revive" },
|
||||||
|
"MAX_REVIVE": { "name": "Max Revive" },
|
||||||
|
|
||||||
|
"FULL_HEAL": { "name": "Full Heal" },
|
||||||
|
|
||||||
|
"SACRED_ASH": { "name": "Sacred Ash" },
|
||||||
|
|
||||||
|
"REVIVER_SEED": { "name": "Reviver Seed", "description": "Revives the holder for 1/2 HP upon fainting from a direct hit." },
|
||||||
|
|
||||||
|
"WHITE_HERB": { "name": "White Herb", "description": "An item to be held by a Pokémon. It will restore any lowered stat in battle." },
|
||||||
|
|
||||||
|
"ETHER": { "name": "Ether" },
|
||||||
|
"MAX_ETHER": { "name": "Max Ether" },
|
||||||
|
|
||||||
|
"ELIXIR": { "name": "Elixir" },
|
||||||
|
"MAX_ELIXIR": { "name": "Max Elixir" },
|
||||||
|
|
||||||
|
"PP_UP": { "name": "PP Up" },
|
||||||
|
"PP_MAX": { "name": "PP Max" },
|
||||||
|
|
||||||
|
"LURE": { "name": "Lure" },
|
||||||
|
"SUPER_LURE": { "name": "Super Lure" },
|
||||||
|
"MAX_LURE": { "name": "Max Lure" },
|
||||||
|
|
||||||
|
"MEMORY_MUSHROOM": { "name": "Memory Mushroom", "description": "Recall one Pokémon's forgotten move." },
|
||||||
|
|
||||||
|
"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." },
|
||||||
|
|
||||||
|
"OVAL_CHARM": { "name": "Oval Charm", "description": "When multiple Pokémon participate in a battle, each gets an extra 10% of the total EXP." },
|
||||||
|
|
||||||
|
"EXP_CHARM": { "name": "EXP. Charm" },
|
||||||
|
"SUPER_EXP_CHARM": { "name": "Super EXP. Charm" },
|
||||||
|
"GOLDEN_EXP_CHARM": { "name": "Golden EXP. Charm" },
|
||||||
|
|
||||||
|
"LUCKY_EGG": { "name": "Lucky Egg" },
|
||||||
|
"GOLDEN_EGG": { "name": "Golden Egg" },
|
||||||
|
|
||||||
|
"SOOTHE_BELL": { "name": "Soothe Bell" },
|
||||||
|
|
||||||
|
"SCOPE_LENS": { "name": "Scope Lens", "description": "It's a lens for scoping out weak points. It boosts the holder's critical-hit ratio."},
|
||||||
|
"LEEK": { "name": "Leek", "description": "This very long and stiff stalk of leek boosts the critical-hit ratio of Farfetch'd's moves."},
|
||||||
|
|
||||||
|
"EVIOLITE": { "name": "Eviolite", "description": "This mysterious evolutionary lump boosts the Defense and Sp. Def stats when held by a Pokémon that can still evolve." },
|
||||||
|
|
||||||
|
"SOUL_DEW": { "name": "Soul Dew", "description": "Increases the influence of a Pokémon's nature on its stats by 10% (additive)." },
|
||||||
|
|
||||||
|
"NUGGET": { "name": "Nugget" },
|
||||||
|
"BIG_NUGGET": { "name": "Big Nugget" },
|
||||||
|
"RELIC_GOLD": { "name": "Relic Gold" },
|
||||||
|
|
||||||
|
"AMULET_COIN": { "name": "Amulet Coin", "description": "Increases money rewards by 20%." },
|
||||||
|
"GOLDEN_PUNCH": { "name": "Golden Punch", "description": "Grants 50% of direct damage inflicted as money." },
|
||||||
|
"COIN_CASE": { "name": "Coin Case", "description": "After every 10th battle, receive 10% of your money in interest." },
|
||||||
|
|
||||||
|
"LOCK_CAPSULE": { "name": "Lock Capsule", "description": "Allows you to lock item rarities when rerolling items." },
|
||||||
|
|
||||||
|
"GRIP_CLAW": { "name": "Grip Claw" },
|
||||||
|
"WIDE_LENS": { "name": "Wide Lens" },
|
||||||
|
|
||||||
|
"MULTI_LENS": { "name": "Multi Lens" },
|
||||||
|
|
||||||
|
"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." },
|
||||||
|
|
||||||
|
"BERRY_POUCH": { "name": "Berry Pouch", "description": "Adds a 30% chance that a used berry will not be consumed." },
|
||||||
|
|
||||||
|
"FOCUS_BAND": { "name": "Focus Band", "description": "Adds a 10% chance to survive with 1 HP after being damaged enough to faint." },
|
||||||
|
|
||||||
|
"QUICK_CLAW": { "name": "Quick Claw", "description": "Adds a 10% chance to move first regardless of speed (after priority)." },
|
||||||
|
|
||||||
|
"KINGS_ROCK": { "name": "King's Rock", "description": "Adds a 10% chance an attack move will cause the opponent to flinch." },
|
||||||
|
|
||||||
|
"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." },
|
||||||
|
|
||||||
|
"TOXIC_ORB": { "name": "Toxic Orb", "description": "It's a bizarre orb that exudes toxins when touched and will badly poison the holder during battle." },
|
||||||
|
"FLAME_ORB": { "name": "Flame Orb", "description": "It's a bizarre orb that gives off heat when touched and will affect the holder with a burn during battle." },
|
||||||
|
|
||||||
|
"BATON": { "name": "Baton", "description": "Allows passing along effects when switching Pokémon, which also bypasses traps." },
|
||||||
|
|
||||||
|
"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." },
|
||||||
|
|
||||||
|
"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." },
|
||||||
|
|
||||||
|
"DNA_SPLICERS": { "name": "DNA Splicers" },
|
||||||
|
|
||||||
|
"MINI_BLACK_HOLE": { "name": "Mini Black Hole" },
|
||||||
|
|
||||||
|
"GOLDEN_POKEBALL": { "name": "Golden Poké Ball", "description": "Adds 1 extra item option at the end of every battle." },
|
||||||
|
|
||||||
|
"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_BURN_CHANCE": { "name": "Burn Token" },
|
||||||
|
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { "name": "Full Heal Token", "description": "Adds a 2.5% 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." }
|
||||||
|
},
|
||||||
|
"SpeciesBoosterItem": {
|
||||||
|
"LIGHT_BALL": { "name": "Light Ball", "description": "It's a mysterious orb that boosts Pikachu's Attack and Sp. Atk stats." },
|
||||||
|
"THICK_CLUB": { "name": "Thick Club", "description": "This hard bone of unknown origin boosts Cubone or Marowak's Attack stat." },
|
||||||
|
"METAL_POWDER": { "name": "Metal Powder", "description": "Extremely fine yet hard, this odd powder boosts Ditto's Defense stat." },
|
||||||
|
"QUICK_POWDER": { "name": "Quick Powder", "description": "Extremely fine yet hard, this odd powder boosts Ditto's Speed stat." }
|
||||||
|
},
|
||||||
|
"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"
|
||||||
|
},
|
||||||
|
|
||||||
|
"TempBattleStatBoosterStatName": {
|
||||||
|
"ATK": "Attack",
|
||||||
|
"DEF": "Defense",
|
||||||
|
"SPATK": "Sp. Atk",
|
||||||
|
"SPDEF": "Sp. Def",
|
||||||
|
"SPD": "Speed",
|
||||||
|
"ACC": "Accuracy",
|
||||||
|
"CRIT": "Critical Hit Ratio",
|
||||||
|
"EVA": "Evasiveness",
|
||||||
|
"DEFAULT": "???"
|
||||||
|
},
|
||||||
|
|
||||||
|
"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"
|
||||||
|
},
|
||||||
|
"BaseStatBoosterItem": {
|
||||||
|
"hp_up": "HP Up",
|
||||||
|
"protein": "Protein",
|
||||||
|
"iron": "Iron",
|
||||||
|
"calcium": "Calcium",
|
||||||
|
"zinc": "Zinc",
|
||||||
|
"carbos": "Carbos"
|
||||||
|
},
|
||||||
|
"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",
|
||||||
|
|
||||||
|
"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"
|
||||||
|
},
|
||||||
|
"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",
|
||||||
|
|
||||||
|
"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_GLOBE": "Lustrous Globe",
|
||||||
|
"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",
|
||||||
|
"ULTRANECROZIUM_Z": "Ultranecrozium Z",
|
||||||
|
|
||||||
|
"FIST_PLATE": "Fist Plate",
|
||||||
|
"SKY_PLATE": "Sky Plate",
|
||||||
|
"TOXIC_PLATE": "Toxic Plate",
|
||||||
|
"EARTH_PLATE": "Earth Plate",
|
||||||
|
"STONE_PLATE": "Stone Plate",
|
||||||
|
"INSECT_PLATE": "Insect Plate",
|
||||||
|
"SPOOKY_PLATE": "Spooky Plate",
|
||||||
|
"IRON_PLATE": "Iron Plate",
|
||||||
|
"FLAME_PLATE": "Flame Plate",
|
||||||
|
"SPLASH_PLATE": "Splash Plate",
|
||||||
|
"MEADOW_PLATE": "Meadow Plate",
|
||||||
|
"ZAP_PLATE": "Zap Plate",
|
||||||
|
"MIND_PLATE": "Mind Plate",
|
||||||
|
"ICICLE_PLATE": "Icicle Plate",
|
||||||
|
"DRACO_PLATE": "Draco Plate",
|
||||||
|
"DREAD_PLATE": "Dread Plate",
|
||||||
|
"PIXIE_PLATE": "Pixie Plate",
|
||||||
|
"BLANK_PLATE": "Blank Plate",
|
||||||
|
"LEGEND_PLATE": "Legend Plate",
|
||||||
|
"FIGHTING_MEMORY": "Fighting Memory",
|
||||||
|
"FLYING_MEMORY": "Flying Memory",
|
||||||
|
"POISON_MEMORY": "Poison Memory",
|
||||||
|
"GROUND_MEMORY": "Ground Memory",
|
||||||
|
"ROCK_MEMORY": "Rock Memory",
|
||||||
|
"BUG_MEMORY": "Bug Memory",
|
||||||
|
"GHOST_MEMORY": "Ghost Memory",
|
||||||
|
"STEEL_MEMORY": "Steel Memory",
|
||||||
|
"FIRE_MEMORY": "Fire Memory",
|
||||||
|
"WATER_MEMORY": "Water Memory",
|
||||||
|
"GRASS_MEMORY": "Grass Memory",
|
||||||
|
"ELECTRIC_MEMORY": "Electric Memory",
|
||||||
|
"PSYCHIC_MEMORY": "Psychic Memory",
|
||||||
|
"ICE_MEMORY": "Ice Memory",
|
||||||
|
"DRAGON_MEMORY": "Dragon Memory",
|
||||||
|
"DARK_MEMORY": "Dark Memory",
|
||||||
|
"FAIRY_MEMORY": "Fairy Memory",
|
||||||
|
"BLANK_MEMORY": "Blank Memory"
|
||||||
|
}
|
||||||
|
}
|
@ -1,457 +0,0 @@
|
|||||||
import { ModifierTypeTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const modifierType: ModifierTypeTranslationEntries = {
|
|
||||||
ModifierType: {
|
|
||||||
"AddPokeballModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{pokeballName}}",
|
|
||||||
description: "Receive {{pokeballName}} x{{modifierCount}} (Inventory: {{pokeballAmount}}) \nCatch Rate: {{catchRate}}",
|
|
||||||
},
|
|
||||||
"AddVoucherModifierType": {
|
|
||||||
name: "{{modifierCount}}x {{voucherTypeName}}",
|
|
||||||
description: "Receive {{voucherTypeName}} x{{modifierCount}}.",
|
|
||||||
},
|
|
||||||
"PokemonHeldItemModifierType": {
|
|
||||||
extra: {
|
|
||||||
"inoperable": "{{pokemonName}} can't take\nthis item!",
|
|
||||||
"tooMany": "{{pokemonName}} has too many\nof this item!",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonHpRestoreModifierType": {
|
|
||||||
description: "Restores {{restorePoints}} HP or {{restorePercent}}% HP for one Pokémon, whichever is higher.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Fully restores HP for one Pokémon.",
|
|
||||||
"fullyWithStatus": "Fully restores HP for one Pokémon and heals any status ailment.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonReviveModifierType": {
|
|
||||||
description: "Revives one Pokémon and restores {{restorePercent}}% HP.",
|
|
||||||
},
|
|
||||||
"PokemonStatusHealModifierType": {
|
|
||||||
description: "Heals any status ailment for one Pokémon.",
|
|
||||||
},
|
|
||||||
"PokemonPpRestoreModifierType": {
|
|
||||||
description: "Restores {{restorePoints}} PP for one Pokémon move.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restores all PP for one Pokémon move.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonAllMovePpRestoreModifierType": {
|
|
||||||
description: "Restores {{restorePoints}} PP for all of one Pokémon's moves.",
|
|
||||||
extra: {
|
|
||||||
"fully": "Restores all PP for all of one Pokémon's moves.",
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PokemonPpUpModifierType": {
|
|
||||||
description: "Permanently increases PP for one Pokémon move by {{upPoints}} for every 5 maximum PP (maximum 3).",
|
|
||||||
},
|
|
||||||
"PokemonNatureChangeModifierType": {
|
|
||||||
name: "{{natureName}} Mint",
|
|
||||||
description: "Changes a Pokémon's nature to {{natureName}} and permanently unlocks the nature for the starter.",
|
|
||||||
},
|
|
||||||
"DoubleBattleChanceBoosterModifierType": {
|
|
||||||
description: "Doubles the chance of an encounter being a double battle for {{battleCount}} battles.",
|
|
||||||
},
|
|
||||||
"TempBattleStatBoosterModifierType": {
|
|
||||||
description: "Increases the {{tempBattleStatName}} of all party members by 1 stage for 5 battles.",
|
|
||||||
},
|
|
||||||
"AttackTypeBoosterModifierType": {
|
|
||||||
description: "Increases the power of a Pokémon's {{moveType}}-type moves by 20%.",
|
|
||||||
},
|
|
||||||
"PokemonLevelIncrementModifierType": {
|
|
||||||
description: "Increases a Pokémon's level by {{levels}}.",
|
|
||||||
},
|
|
||||||
"AllPokemonLevelIncrementModifierType": {
|
|
||||||
description: "Increases all party members' level by {{levels}}.",
|
|
||||||
},
|
|
||||||
"PokemonBaseStatBoosterModifierType": {
|
|
||||||
description: "Increases the holder's base {{statName}} by 10%. The higher your IVs, the higher the stack limit.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullHpRestoreModifierType": {
|
|
||||||
description: "Restores 100% HP for all Pokémon.",
|
|
||||||
},
|
|
||||||
"AllPokemonFullReviveModifierType": {
|
|
||||||
description: "Revives all fainted Pokémon, fully restoring HP.",
|
|
||||||
},
|
|
||||||
"MoneyRewardModifierType": {
|
|
||||||
description: "Grants a {{moneyMultiplier}} amount of money (₽{{moneyAmount}}).",
|
|
||||||
extra: {
|
|
||||||
"small": "small",
|
|
||||||
"moderate": "moderate",
|
|
||||||
"large": "large",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"ExpBoosterModifierType": {
|
|
||||||
description: "Increases gain of EXP. Points by {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonExpBoosterModifierType": {
|
|
||||||
description: "Increases the holder's gain of EXP. Points by {{boostPercent}}%.",
|
|
||||||
},
|
|
||||||
"PokemonFriendshipBoosterModifierType": {
|
|
||||||
description: "Increases friendship gain per victory by 50%.",
|
|
||||||
},
|
|
||||||
"PokemonMoveAccuracyBoosterModifierType": {
|
|
||||||
description: "Increases move accuracy by {{accuracyAmount}} (maximum 100).",
|
|
||||||
},
|
|
||||||
"PokemonMultiHitModifierType": {
|
|
||||||
description: "Attacks hit one additional time at the cost of a 60/75/82.5% power reduction per stack respectively.",
|
|
||||||
},
|
|
||||||
"TmModifierType": {
|
|
||||||
name: "TM{{moveId}} - {{moveName}}",
|
|
||||||
description: "Teach {{moveName}} to a Pokémon.",
|
|
||||||
},
|
|
||||||
"TmModifierTypeWithInfo": {
|
|
||||||
name: "TM{{moveId}} - {{moveName}}",
|
|
||||||
description: "Teach {{moveName}} to a Pokémon\n(Hold C or Shift for more info).",
|
|
||||||
},
|
|
||||||
"EvolutionItemModifierType": {
|
|
||||||
description: "Causes certain Pokémon to evolve.",
|
|
||||||
},
|
|
||||||
"FormChangeItemModifierType": {
|
|
||||||
description: "Causes certain Pokémon to change form.",
|
|
||||||
},
|
|
||||||
"FusePokemonModifierType": {
|
|
||||||
description: "Combines two Pokémon (transfers Ability, splits base stats and types, shares move pool).",
|
|
||||||
},
|
|
||||||
"TerastallizeModifierType": {
|
|
||||||
name: "{{teraType}} Tera Shard",
|
|
||||||
description: "{{teraType}} Terastallizes the holder for up to 10 battles.",
|
|
||||||
},
|
|
||||||
"ContactHeldItemTransferChanceModifierType": {
|
|
||||||
description: "Upon attacking, there is a {{chancePercent}}% chance the foe's held item will be stolen.",
|
|
||||||
},
|
|
||||||
"TurnHeldItemTransferModifierType": {
|
|
||||||
description: "Every turn, the holder acquires one held item from the foe.",
|
|
||||||
},
|
|
||||||
"EnemyAttackStatusEffectChanceModifierType": {
|
|
||||||
description: "Adds a {{chancePercent}}% chance to inflict {{statusEffect}} with attack moves.",
|
|
||||||
},
|
|
||||||
"EnemyEndureChanceModifierType": {
|
|
||||||
description: "Adds a {{chancePercent}}% chance of enduring a hit.",
|
|
||||||
},
|
|
||||||
|
|
||||||
"RARE_CANDY": { name: "Rare Candy" },
|
|
||||||
"RARER_CANDY": { name: "Rarer Candy" },
|
|
||||||
|
|
||||||
"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." },
|
|
||||||
|
|
||||||
"MAP": { name: "Map", description: "Allows you to choose your destination at a crossroads." },
|
|
||||||
|
|
||||||
"POTION": { name: "Potion" },
|
|
||||||
"SUPER_POTION": { name: "Super Potion" },
|
|
||||||
"HYPER_POTION": { name: "Hyper Potion" },
|
|
||||||
"MAX_POTION": { name: "Max Potion" },
|
|
||||||
"FULL_RESTORE": { name: "Full Restore" },
|
|
||||||
|
|
||||||
"REVIVE": { name: "Revive" },
|
|
||||||
"MAX_REVIVE": { name: "Max Revive" },
|
|
||||||
|
|
||||||
"FULL_HEAL": { name: "Full Heal" },
|
|
||||||
|
|
||||||
"SACRED_ASH": { name: "Sacred Ash" },
|
|
||||||
|
|
||||||
"REVIVER_SEED": { name: "Reviver Seed", description: "Revives the holder for 1/2 HP upon fainting from a direct hit." },
|
|
||||||
|
|
||||||
"WHITE_HERB": { name: "White Herb", description: "An item to be held by a Pokémon. It will restore any lowered stat in battle." },
|
|
||||||
|
|
||||||
"ETHER": { name: "Ether" },
|
|
||||||
"MAX_ETHER": { name: "Max Ether" },
|
|
||||||
|
|
||||||
"ELIXIR": { name: "Elixir" },
|
|
||||||
"MAX_ELIXIR": { name: "Max Elixir" },
|
|
||||||
|
|
||||||
"PP_UP": { name: "PP Up" },
|
|
||||||
"PP_MAX": { name: "PP Max" },
|
|
||||||
|
|
||||||
"LURE": { name: "Lure" },
|
|
||||||
"SUPER_LURE": { name: "Super Lure" },
|
|
||||||
"MAX_LURE": { name: "Max Lure" },
|
|
||||||
|
|
||||||
"MEMORY_MUSHROOM": { name: "Memory Mushroom", description: "Recall one Pokémon's forgotten move." },
|
|
||||||
|
|
||||||
"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." },
|
|
||||||
|
|
||||||
"OVAL_CHARM": { name: "Oval Charm", description: "When multiple Pokémon participate in a battle, each gets an extra 10% of the total EXP." },
|
|
||||||
|
|
||||||
"EXP_CHARM": { name: "EXP. Charm" },
|
|
||||||
"SUPER_EXP_CHARM": { name: "Super EXP. Charm" },
|
|
||||||
"GOLDEN_EXP_CHARM": { name: "Golden EXP. Charm" },
|
|
||||||
|
|
||||||
"LUCKY_EGG": { name: "Lucky Egg" },
|
|
||||||
"GOLDEN_EGG": { name: "Golden Egg" },
|
|
||||||
|
|
||||||
"SOOTHE_BELL": { name: "Soothe Bell" },
|
|
||||||
|
|
||||||
"SCOPE_LENS": { name: "Scope Lens", description: "It's a lens for scoping out weak points. It boosts the holder's critical-hit ratio."},
|
|
||||||
"LEEK": { name: "Leek", description: "This very long and stiff stalk of leek boosts the critical-hit ratio of Farfetch'd's moves."},
|
|
||||||
|
|
||||||
"EVIOLITE": { name: "Eviolite", description: "This mysterious evolutionary lump boosts the Defense and Sp. Def stats when held by a Pokémon that can still evolve." },
|
|
||||||
|
|
||||||
"SOUL_DEW": { name: "Soul Dew", description: "Increases the influence of a Pokémon's nature on its stats by 10% (additive)." },
|
|
||||||
|
|
||||||
"NUGGET": { name: "Nugget" },
|
|
||||||
"BIG_NUGGET": { name: "Big Nugget" },
|
|
||||||
"RELIC_GOLD": { name: "Relic Gold" },
|
|
||||||
|
|
||||||
"AMULET_COIN": { name: "Amulet Coin", description: "Increases money rewards by 20%." },
|
|
||||||
"GOLDEN_PUNCH": { name: "Golden Punch", description: "Grants 50% of direct damage inflicted as money." },
|
|
||||||
"COIN_CASE": { name: "Coin Case", description: "After every 10th battle, receive 10% of your money in interest." },
|
|
||||||
|
|
||||||
"LOCK_CAPSULE": { name: "Lock Capsule", description: "Allows you to lock item rarities when rerolling items." },
|
|
||||||
|
|
||||||
"GRIP_CLAW": { name: "Grip Claw" },
|
|
||||||
"WIDE_LENS": { name: "Wide Lens" },
|
|
||||||
|
|
||||||
"MULTI_LENS": { name: "Multi Lens" },
|
|
||||||
|
|
||||||
"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." },
|
|
||||||
|
|
||||||
"BERRY_POUCH": { name: "Berry Pouch", description: "Adds a 30% chance that a used berry will not be consumed." },
|
|
||||||
|
|
||||||
"FOCUS_BAND": { name: "Focus Band", description: "Adds a 10% chance to survive with 1 HP after being damaged enough to faint." },
|
|
||||||
|
|
||||||
"QUICK_CLAW": { name: "Quick Claw", description: "Adds a 10% chance to move first regardless of speed (after priority)." },
|
|
||||||
|
|
||||||
"KINGS_ROCK": { name: "King's Rock", description: "Adds a 10% chance an attack move will cause the opponent to flinch." },
|
|
||||||
|
|
||||||
"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." },
|
|
||||||
|
|
||||||
"TOXIC_ORB": { name: "Toxic Orb", description: "It's a bizarre orb that exudes toxins when touched and will badly poison the holder during battle." },
|
|
||||||
"FLAME_ORB": { name: "Flame Orb", description: "It's a bizarre orb that gives off heat when touched and will affect the holder with a burn during battle." },
|
|
||||||
|
|
||||||
"BATON": { name: "Baton", description: "Allows passing along effects when switching Pokémon, which also bypasses traps." },
|
|
||||||
|
|
||||||
"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." },
|
|
||||||
|
|
||||||
"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." },
|
|
||||||
|
|
||||||
"DNA_SPLICERS": { name: "DNA Splicers" },
|
|
||||||
|
|
||||||
"MINI_BLACK_HOLE": { name: "Mini Black Hole" },
|
|
||||||
|
|
||||||
"GOLDEN_POKEBALL": { name: "Golden Poké Ball", description: "Adds 1 extra item option at the end of every battle." },
|
|
||||||
|
|
||||||
"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_BURN_CHANCE": { name: "Burn Token" },
|
|
||||||
"ENEMY_STATUS_EFFECT_HEAL_CHANCE": { name: "Full Heal Token", description: "Adds a 2.5% 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." },
|
|
||||||
},
|
|
||||||
SpeciesBoosterItem: {
|
|
||||||
"LIGHT_BALL": { name: "Light Ball", description: "It's a mysterious orb that boosts Pikachu's Attack and Sp. Atk stats." },
|
|
||||||
"THICK_CLUB": { name: "Thick Club", description: "This hard bone of unknown origin boosts Cubone or Marowak's Attack stat." },
|
|
||||||
"METAL_POWDER": { name: "Metal Powder", description: "Extremely fine yet hard, this odd powder boosts Ditto's Defense stat." },
|
|
||||||
"QUICK_POWDER": { name: "Quick Powder", description: "Extremely fine yet hard, this odd powder boosts Ditto's Speed stat." }
|
|
||||||
},
|
|
||||||
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",
|
|
||||||
},
|
|
||||||
|
|
||||||
TempBattleStatBoosterStatName: {
|
|
||||||
"ATK": "Attack",
|
|
||||||
"DEF": "Defense",
|
|
||||||
"SPATK": "Sp. Atk",
|
|
||||||
"SPDEF": "Sp. Def",
|
|
||||||
"SPD": "Speed",
|
|
||||||
"ACC": "Accuracy",
|
|
||||||
"CRIT": "Critical Hit Ratio",
|
|
||||||
"EVA": "Evasiveness",
|
|
||||||
"DEFAULT": "???",
|
|
||||||
},
|
|
||||||
|
|
||||||
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",
|
|
||||||
},
|
|
||||||
BaseStatBoosterItem: {
|
|
||||||
"hp_up": "HP Up",
|
|
||||||
"protein": "Protein",
|
|
||||||
"iron": "Iron",
|
|
||||||
"calcium": "Calcium",
|
|
||||||
"zinc": "Zinc",
|
|
||||||
"carbos": "Carbos",
|
|
||||||
},
|
|
||||||
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",
|
|
||||||
|
|
||||||
"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",
|
|
||||||
},
|
|
||||||
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",
|
|
||||||
|
|
||||||
"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_GLOBE": "Lustrous Globe",
|
|
||||||
"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",
|
|
||||||
"ULTRANECROZIUM_Z": "Ultranecrozium Z",
|
|
||||||
|
|
||||||
"FIST_PLATE": "Fist Plate",
|
|
||||||
"SKY_PLATE": "Sky Plate",
|
|
||||||
"TOXIC_PLATE": "Toxic Plate",
|
|
||||||
"EARTH_PLATE": "Earth Plate",
|
|
||||||
"STONE_PLATE": "Stone Plate",
|
|
||||||
"INSECT_PLATE": "Insect Plate",
|
|
||||||
"SPOOKY_PLATE": "Spooky Plate",
|
|
||||||
"IRON_PLATE": "Iron Plate",
|
|
||||||
"FLAME_PLATE": "Flame Plate",
|
|
||||||
"SPLASH_PLATE": "Splash Plate",
|
|
||||||
"MEADOW_PLATE": "Meadow Plate",
|
|
||||||
"ZAP_PLATE": "Zap Plate",
|
|
||||||
"MIND_PLATE": "Mind Plate",
|
|
||||||
"ICICLE_PLATE": "Icicle Plate",
|
|
||||||
"DRACO_PLATE": "Draco Plate",
|
|
||||||
"DREAD_PLATE": "Dread Plate",
|
|
||||||
"PIXIE_PLATE": "Pixie Plate",
|
|
||||||
"BLANK_PLATE": "Blank Plate",
|
|
||||||
"LEGEND_PLATE": "Legend Plate",
|
|
||||||
"FIGHTING_MEMORY": "Fighting Memory",
|
|
||||||
"FLYING_MEMORY": "Flying Memory",
|
|
||||||
"POISON_MEMORY": "Poison Memory",
|
|
||||||
"GROUND_MEMORY": "Ground Memory",
|
|
||||||
"ROCK_MEMORY": "Rock Memory",
|
|
||||||
"BUG_MEMORY": "Bug Memory",
|
|
||||||
"GHOST_MEMORY": "Ghost Memory",
|
|
||||||
"STEEL_MEMORY": "Steel Memory",
|
|
||||||
"FIRE_MEMORY": "Fire Memory",
|
|
||||||
"WATER_MEMORY": "Water Memory",
|
|
||||||
"GRASS_MEMORY": "Grass Memory",
|
|
||||||
"ELECTRIC_MEMORY": "Electric Memory",
|
|
||||||
"PSYCHIC_MEMORY": "Psychic Memory",
|
|
||||||
"ICE_MEMORY": "Ice Memory",
|
|
||||||
"DRAGON_MEMORY": "Dragon Memory",
|
|
||||||
"DARK_MEMORY": "Dark Memory",
|
|
||||||
"FAIRY_MEMORY": "Fairy Memory",
|
|
||||||
"BLANK_MEMORY": "Blank Memory",
|
|
||||||
},
|
|
||||||
} as const;
|
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const modifier: SimpleTranslationEntries = {
|
|
||||||
"surviveDamageApply": "{{pokemonNameWithAffix}} hung on\nusing its {{typeName}}!",
|
"surviveDamageApply": "{{pokemonNameWithAffix}} hung on\nusing its {{typeName}}!",
|
||||||
"turnHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!",
|
"turnHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!",
|
||||||
"hitHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!",
|
"hitHealApply": "{{pokemonNameWithAffix}} restored a little HP using\nits {{typeName}}!",
|
||||||
@ -10,5 +8,5 @@ export const modifier: SimpleTranslationEntries = {
|
|||||||
"turnHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was absorbed\nby {{pokemonName}}'s {{typeName}}!",
|
"turnHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was absorbed\nby {{pokemonName}}'s {{typeName}}!",
|
||||||
"contactHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was snatched\nby {{pokemonName}}'s {{typeName}}!",
|
"contactHeldItemTransferApply": "{{pokemonNameWithAffix}}'s {{itemName}} was snatched\nby {{pokemonName}}'s {{typeName}}!",
|
||||||
"enemyTurnHealApply": "{{pokemonNameWithAffix}}\nrestored some HP!",
|
"enemyTurnHealApply": "{{pokemonNameWithAffix}}\nrestored some HP!",
|
||||||
"bypassSpeedChanceApply": "{{pokemonName}} can act faster than normal, thanks to its {{itemName}}!",
|
"bypassSpeedChanceApply": "{{pokemonName}} can act faster than normal, thanks to its {{itemName}}!"
|
||||||
} as const;
|
}
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const moveTriggers: SimpleTranslationEntries = {
|
|
||||||
"hitWithRecoil" : "{{pokemonName}} was damaged by the recoil!",
|
"hitWithRecoil" : "{{pokemonName}} was damaged by the recoil!",
|
||||||
"cutHpPowerUpMove": "{{pokemonName}} cut its own HP to power up its move!",
|
"cutHpPowerUpMove": "{{pokemonName}} cut its own HP to power up its move!",
|
||||||
"absorbedElectricity": "{{pokemonName}} absorbed electricity!",
|
"absorbedElectricity": "{{pokemonName}} absorbed electricity!",
|
||||||
@ -63,5 +61,5 @@ export const moveTriggers: SimpleTranslationEntries = {
|
|||||||
"suppressAbilities": "{{pokemonName}}'s ability\nwas suppressed!",
|
"suppressAbilities": "{{pokemonName}}'s ability\nwas suppressed!",
|
||||||
"revivalBlessing": "{{pokemonName}} was revived!",
|
"revivalBlessing": "{{pokemonName}} was revived!",
|
||||||
"swapArenaTags": "{{pokemonName}} swapped the battle effects affecting each side of the field!",
|
"swapArenaTags": "{{pokemonName}} swapped the battle effects affecting each side of the field!",
|
||||||
"exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!",
|
"exposedMove": "{{pokemonName}} identified\n{{targetPokemonName}}!"
|
||||||
} as const;
|
}
|
3810
src/locales/en/move.json
Normal file
3810
src/locales/en/move.json
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const nature: SimpleTranslationEntries = {
|
|
||||||
"Hardy": "Hardy",
|
"Hardy": "Hardy",
|
||||||
"Lonely": "Lonely",
|
"Lonely": "Lonely",
|
||||||
"Brave": "Brave",
|
"Brave": "Brave",
|
||||||
@ -26,4 +24,4 @@ export const nature: SimpleTranslationEntries = {
|
|||||||
"Sassy": "Sassy",
|
"Sassy": "Sassy",
|
||||||
"Careful": "Careful",
|
"Careful": "Careful",
|
||||||
"Quirky": "Quirky"
|
"Quirky": "Quirky"
|
||||||
} as const;
|
}
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const partyUiHandler: SimpleTranslationEntries = {
|
|
||||||
"SEND_OUT": "Send Out",
|
"SEND_OUT": "Send Out",
|
||||||
"SUMMARY": "Summary",
|
"SUMMARY": "Summary",
|
||||||
"CANCEL": "Cancel",
|
"CANCEL": "Cancel",
|
||||||
@ -17,7 +15,6 @@ export const partyUiHandler: SimpleTranslationEntries = {
|
|||||||
"UNPAUSE_EVOLUTION": "Unpause Evolution",
|
"UNPAUSE_EVOLUTION": "Unpause Evolution",
|
||||||
"REVIVE": "Revive",
|
"REVIVE": "Revive",
|
||||||
"RENAME": "Rename",
|
"RENAME": "Rename",
|
||||||
|
|
||||||
"choosePokemon": "Choose a Pokémon.",
|
"choosePokemon": "Choose a Pokémon.",
|
||||||
"doWhatWithThisPokemon": "Do what with this Pokémon?",
|
"doWhatWithThisPokemon": "Do what with this Pokémon?",
|
||||||
"noEnergy": "{{pokemonName}} has no energy\nleft to battle!",
|
"noEnergy": "{{pokemonName}} has no energy\nleft to battle!",
|
||||||
@ -34,13 +31,9 @@ export const partyUiHandler: SimpleTranslationEntries = {
|
|||||||
"changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.",
|
"changeQuantity": "Select a held item to transfer.\nUse < and > to change the quantity.",
|
||||||
"selectAnotherPokemonToSplice": "Select another Pokémon to splice.",
|
"selectAnotherPokemonToSplice": "Select another Pokémon to splice.",
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
|
|
||||||
// Slot TM text
|
|
||||||
"able": "Able",
|
"able": "Able",
|
||||||
"notAble": "Not able",
|
"notAble": "Not able",
|
||||||
"learned": "Learned",
|
"learned": "Learned",
|
||||||
|
|
||||||
// Releasing messages
|
|
||||||
"goodbye": "Goodbye, {{pokemonName}}!",
|
"goodbye": "Goodbye, {{pokemonName}}!",
|
||||||
"byebye": "Byebye, {{pokemonName}}!",
|
"byebye": "Byebye, {{pokemonName}}!",
|
||||||
"farewell": "Farewell, {{pokemonName}}!",
|
"farewell": "Farewell, {{pokemonName}}!",
|
||||||
@ -50,5 +43,5 @@ export const partyUiHandler: SimpleTranslationEntries = {
|
|||||||
"illNeverForgetYou": "I'll never forget you, {{pokemonName}}!",
|
"illNeverForgetYou": "I'll never forget you, {{pokemonName}}!",
|
||||||
"untilWeMeetAgain": "Until we meet again, {{pokemonName}}!",
|
"untilWeMeetAgain": "Until we meet again, {{pokemonName}}!",
|
||||||
"sayonara": "Sayonara, {{pokemonName}}!",
|
"sayonara": "Sayonara, {{pokemonName}}!",
|
||||||
"smellYaLater": "Smell ya later, {{pokemonName}}!",
|
"smellYaLater": "Smell ya later, {{pokemonName}}!"
|
||||||
} as const;
|
}
|
8
src/locales/en/pokeball.json
Normal file
8
src/locales/en/pokeball.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"pokeBall": "Poké Ball",
|
||||||
|
"greatBall": "Great Ball",
|
||||||
|
"ultraBall": "Ultra Ball",
|
||||||
|
"rogueBall": "Rogue Ball",
|
||||||
|
"masterBall": "Master Ball",
|
||||||
|
"luxuryBall": "Luxury Ball"
|
||||||
|
}
|
@ -1,10 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const pokeball: SimpleTranslationEntries = {
|
|
||||||
"pokeBall": "Poké Ball",
|
|
||||||
"greatBall": "Great Ball",
|
|
||||||
"ultraBall": "Ultra Ball",
|
|
||||||
"rogueBall": "Rogue Ball",
|
|
||||||
"masterBall": "Master Ball",
|
|
||||||
"luxuryBall": "Luxury Ball",
|
|
||||||
} as const;
|
|
14
src/locales/en/pokemon-form-battle.json
Normal file
14
src/locales/en/pokemon-form-battle.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"mega": "Mega {{pokemonName}}",
|
||||||
|
"mega-x": "Mega {{pokemonName}} X",
|
||||||
|
"mega-y": "Mega {{pokemonName}} Y",
|
||||||
|
"primal": "Primal {{pokemonName}}",
|
||||||
|
"gigantamax": "G-Max {{pokemonName}}",
|
||||||
|
"eternamax": "E-Max {{pokemonName}}",
|
||||||
|
"megaChange": "{{preName}} Mega Evolved\ninto {{pokemonName}}!",
|
||||||
|
"gigantamaxChange": "{{preName}} Gigantamaxed\ninto {{pokemonName}}!",
|
||||||
|
"eternamaxChange": "{{preName}} Eternamaxed\ninto {{pokemonName}}!",
|
||||||
|
"revertChange": "{{pokemonName}} reverted\nto its original form!",
|
||||||
|
"formChange": "{{preName}} changed form!",
|
||||||
|
"disguiseChange": "Its disguise served it as a decoy!"
|
||||||
|
}
|
@ -1,24 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const battlePokemonForm: SimpleTranslationEntries = {
|
|
||||||
"mega": "Mega {{pokemonName}}",
|
|
||||||
"mega-x": "Mega {{pokemonName}} X",
|
|
||||||
"mega-y": "Mega {{pokemonName}} Y",
|
|
||||||
"primal": "Primal {{pokemonName}}",
|
|
||||||
"gigantamax": "G-Max {{pokemonName}}",
|
|
||||||
"eternamax": "E-Max {{pokemonName}}",
|
|
||||||
|
|
||||||
"megaChange": "{{preName}} Mega Evolved\ninto {{pokemonName}}!",
|
|
||||||
"gigantamaxChange": "{{preName}} Gigantamaxed\ninto {{pokemonName}}!",
|
|
||||||
"eternamaxChange": "{{preName}} Eternamaxed\ninto {{pokemonName}}!",
|
|
||||||
"revertChange": "{{pokemonName}} reverted\nto its original form!",
|
|
||||||
"formChange": "{{preName}} changed form!",
|
|
||||||
"disguiseChange": "Its disguise served it as a decoy!",
|
|
||||||
} as const;
|
|
||||||
|
|
||||||
export const pokemonForm: SimpleTranslationEntries = {
|
|
||||||
// Starters forms
|
|
||||||
// 1G
|
|
||||||
"pikachuCosplay": "Cosplay",
|
"pikachuCosplay": "Cosplay",
|
||||||
"pikachuCoolCosplay": "Cool Cosplay",
|
"pikachuCoolCosplay": "Cool Cosplay",
|
||||||
"pikachuBeautyCosplay": "Beauty Cosplay",
|
"pikachuBeautyCosplay": "Beauty Cosplay",
|
||||||
@ -27,7 +7,6 @@ export const pokemonForm: SimpleTranslationEntries = {
|
|||||||
"pikachuToughCosplay": "Tough Cosplay",
|
"pikachuToughCosplay": "Tough Cosplay",
|
||||||
"pikachuPartner": "Partner",
|
"pikachuPartner": "Partner",
|
||||||
"eeveePartner": "Partner",
|
"eeveePartner": "Partner",
|
||||||
// 2G
|
|
||||||
"pichuSpiky": "Spiky",
|
"pichuSpiky": "Spiky",
|
||||||
"unownA": "A",
|
"unownA": "A",
|
||||||
"unownB": "B",
|
"unownB": "B",
|
||||||
@ -57,12 +36,10 @@ export const pokemonForm: SimpleTranslationEntries = {
|
|||||||
"unownZ": "Z",
|
"unownZ": "Z",
|
||||||
"unownExclamation": "!",
|
"unownExclamation": "!",
|
||||||
"unownQuestion": "?",
|
"unownQuestion": "?",
|
||||||
// 3G
|
|
||||||
"castformSunny": "Sunny",
|
"castformSunny": "Sunny",
|
||||||
"castformRainy": "Rainy",
|
"castformRainy": "Rainy",
|
||||||
"castformSnowy": "Snowy",
|
"castformSnowy": "Snowy",
|
||||||
"deoxysNormal": "Normal",
|
"deoxysNormal": "Normal",
|
||||||
// 4G
|
|
||||||
"burmyPlant": "Plant",
|
"burmyPlant": "Plant",
|
||||||
"burmySandy": "Sandy",
|
"burmySandy": "Sandy",
|
||||||
"burmyTrash": "Trash",
|
"burmyTrash": "Trash",
|
||||||
@ -75,7 +52,6 @@ export const pokemonForm: SimpleTranslationEntries = {
|
|||||||
"rotomMow": "Mow",
|
"rotomMow": "Mow",
|
||||||
"giratinaAltered": "Altered",
|
"giratinaAltered": "Altered",
|
||||||
"shayminLand": "Land",
|
"shayminLand": "Land",
|
||||||
// 5G
|
|
||||||
"basculinRedStriped": "Red Striped",
|
"basculinRedStriped": "Red Striped",
|
||||||
"basculinBlueStriped": "Blue Striped",
|
"basculinBlueStriped": "Blue Striped",
|
||||||
"basculinWhiteStriped": "White Striped",
|
"basculinWhiteStriped": "White Striped",
|
||||||
@ -88,7 +64,6 @@ export const pokemonForm: SimpleTranslationEntries = {
|
|||||||
"landorusIncarnate": "Incarnate",
|
"landorusIncarnate": "Incarnate",
|
||||||
"keldeoOrdinary": "Ordinary",
|
"keldeoOrdinary": "Ordinary",
|
||||||
"meloettaAria": "Aria",
|
"meloettaAria": "Aria",
|
||||||
// 6G
|
|
||||||
"froakieBattleBond": "Battle Bond",
|
"froakieBattleBond": "Battle Bond",
|
||||||
"scatterbugMeadow": "Meadow",
|
"scatterbugMeadow": "Meadow",
|
||||||
"scatterbugIcySnow": "Icy Snow",
|
"scatterbugIcySnow": "Icy Snow",
|
||||||
@ -134,7 +109,6 @@ export const pokemonForm: SimpleTranslationEntries = {
|
|||||||
"zygarde50Pc": "50% Forme Power Construct",
|
"zygarde50Pc": "50% Forme Power Construct",
|
||||||
"zygarde10Pc": "10% Forme Power Construct",
|
"zygarde10Pc": "10% Forme Power Construct",
|
||||||
"zygardeComplete": "Complete Forme",
|
"zygardeComplete": "Complete Forme",
|
||||||
// 7G
|
|
||||||
"oricorioBaile": "Baile",
|
"oricorioBaile": "Baile",
|
||||||
"oricorioPompom": "Pom-Pom",
|
"oricorioPompom": "Pom-Pom",
|
||||||
"oricorioPau": "Pau",
|
"oricorioPau": "Pau",
|
||||||
@ -158,7 +132,6 @@ export const pokemonForm: SimpleTranslationEntries = {
|
|||||||
"mimikyuBusted": "Busted",
|
"mimikyuBusted": "Busted",
|
||||||
"magearnaOriginal": "Original",
|
"magearnaOriginal": "Original",
|
||||||
"marshadowZenith": "Zenith",
|
"marshadowZenith": "Zenith",
|
||||||
// 8G
|
|
||||||
"sinisteaPhony": "Phony",
|
"sinisteaPhony": "Phony",
|
||||||
"sinisteaAntique": "Antique",
|
"sinisteaAntique": "Antique",
|
||||||
"eiscueNoIce": "No Ice",
|
"eiscueNoIce": "No Ice",
|
||||||
@ -169,7 +142,6 @@ export const pokemonForm: SimpleTranslationEntries = {
|
|||||||
"zamazentaHeroOfManyBattles": "Hero Of Many Battles",
|
"zamazentaHeroOfManyBattles": "Hero Of Many Battles",
|
||||||
"zarudeDada": "Dada",
|
"zarudeDada": "Dada",
|
||||||
"enamorusIncarnate": "Incarnate",
|
"enamorusIncarnate": "Incarnate",
|
||||||
// 9G
|
|
||||||
"squawkabillyGreenPlumage": "Green Plumage",
|
"squawkabillyGreenPlumage": "Green Plumage",
|
||||||
"squawkabillyBluePlumage": "Blue Plumage",
|
"squawkabillyBluePlumage": "Blue Plumage",
|
||||||
"squawkabillyYellowPlumage": "Yellow Plumage",
|
"squawkabillyYellowPlumage": "Yellow Plumage",
|
||||||
@ -180,19 +152,18 @@ export const pokemonForm: SimpleTranslationEntries = {
|
|||||||
"gimmighoulChest": "Chest",
|
"gimmighoulChest": "Chest",
|
||||||
"gimmighoulRoaming": "Roaming",
|
"gimmighoulRoaming": "Roaming",
|
||||||
"koraidonApexBuild": "Apex Build",
|
"koraidonApexBuild": "Apex Build",
|
||||||
"koraidonLimitedBuild":"Limited Build",
|
"koraidonLimitedBuild": "Limited Build",
|
||||||
"koraidonSprintingBuild":"Sprinting Build",
|
"koraidonSprintingBuild": "Sprinting Build",
|
||||||
"koraidonSwimmingBuild":"Swimming Build",
|
"koraidonSwimmingBuild": "Swimming Build",
|
||||||
"koraidonGlidingBuild":"Gliding Build",
|
"koraidonGlidingBuild": "Gliding Build",
|
||||||
"miraidonUltimateMode":"Ultimate Mode",
|
"miraidonUltimateMode": "Ultimate Mode",
|
||||||
"miraidonLowPowerMode":"Low Power Mode",
|
"miraidonLowPowerMode": "Low Power Mode",
|
||||||
"miraidonDriveMode":"Drive Mode",
|
"miraidonDriveMode": "Drive Mode",
|
||||||
"miraidonAquaticMode":"Aquatic Mode",
|
"miraidonAquaticMode": "Aquatic Mode",
|
||||||
"miraidonGlideMode":"Glide Mode",
|
"miraidonGlideMode": "Glide Mode",
|
||||||
"poltchageistCounterfeit": "Counterfeit",
|
"poltchageistCounterfeit": "Counterfeit",
|
||||||
"poltchageistArtisan": "Artisan",
|
"poltchageistArtisan": "Artisan",
|
||||||
"paldeaTaurosCombat": "Combat",
|
"paldeaTaurosCombat": "Combat",
|
||||||
"paldeaTaurosBlaze": "Blaze",
|
"paldeaTaurosBlaze": "Blaze",
|
||||||
"paldeaTaurosAqua": "Aqua",
|
"paldeaTaurosAqua": "Aqua"
|
||||||
|
}
|
||||||
} as const;
|
|
7
src/locales/en/pokemon-info-container.json
Normal file
7
src/locales/en/pokemon-info-container.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"moveset": "Moveset",
|
||||||
|
"gender": "Gender:",
|
||||||
|
"ability": "Ability:",
|
||||||
|
"nature": "Nature:",
|
||||||
|
"form": "Form:"
|
||||||
|
}
|
@ -1,9 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
|
||||||
"moveset": "Moveset",
|
|
||||||
"gender": "Gender:",
|
|
||||||
"ability": "Ability:",
|
|
||||||
"nature": "Nature:",
|
|
||||||
"form": "Form:"
|
|
||||||
} as const;
|
|
@ -1,7 +1,5 @@
|
|||||||
import { PokemonInfoTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
"Stat": {
|
||||||
export const pokemonInfo: PokemonInfoTranslationEntries = {
|
|
||||||
Stat: {
|
|
||||||
"HP": "Max. HP",
|
"HP": "Max. HP",
|
||||||
"HPshortened": "MaxHP",
|
"HPshortened": "MaxHP",
|
||||||
"ATK": "Attack",
|
"ATK": "Attack",
|
||||||
@ -18,8 +16,7 @@ export const pokemonInfo: PokemonInfoTranslationEntries = {
|
|||||||
"EVA": "Evasiveness",
|
"EVA": "Evasiveness",
|
||||||
"HPStat": "HP"
|
"HPStat": "HP"
|
||||||
},
|
},
|
||||||
|
"Type": {
|
||||||
Type: {
|
|
||||||
"UNKNOWN": "Unknown",
|
"UNKNOWN": "Unknown",
|
||||||
"NORMAL": "Normal",
|
"NORMAL": "Normal",
|
||||||
"FIGHTING": "Fighting",
|
"FIGHTING": "Fighting",
|
||||||
@ -39,6 +36,6 @@ export const pokemonInfo: PokemonInfoTranslationEntries = {
|
|||||||
"DRAGON": "Dragon",
|
"DRAGON": "Dragon",
|
||||||
"DARK": "Dark",
|
"DARK": "Dark",
|
||||||
"FAIRY": "Fairy",
|
"FAIRY": "Fairy",
|
||||||
"STELLAR": "Stellar",
|
"STELLAR": "Stellar"
|
||||||
},
|
}
|
||||||
} as const;
|
}
|
@ -1,6 +1,4 @@
|
|||||||
import { TranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const pokemonSummary: TranslationEntries = {
|
|
||||||
"pokemonInfo": "Pokémon Info",
|
"pokemonInfo": "Pokémon Info",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
"powerAccuracyCategory": "Power\nAccuracy\nCategory",
|
"powerAccuracyCategory": "Power\nAccuracy\nCategory",
|
||||||
@ -11,10 +9,9 @@ export const pokemonSummary: TranslationEntries = {
|
|||||||
"expPoints": "Exp. Points",
|
"expPoints": "Exp. Points",
|
||||||
"nextLv": "Next Lv.",
|
"nextLv": "Next Lv.",
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
|
|
||||||
"memoString": "{{natureFragment}} nature,\n{{metFragment}}",
|
"memoString": "{{natureFragment}} nature,\n{{metFragment}}",
|
||||||
"metFragment": {
|
"metFragment": {
|
||||||
"normal": "met at Lv{{level}},\n{{biome}}.",
|
"normal": "met at Lv{{level}},\n{{biome}}.",
|
||||||
"apparently": "apparently met at Lv{{level}},\n{{biome}}.",
|
"apparently": "apparently met at Lv{{level}},\n{{biome}}."
|
||||||
},
|
}
|
||||||
} as const;
|
}
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const pokemon: SimpleTranslationEntries = {
|
|
||||||
"bulbasaur": "Bulbasaur",
|
"bulbasaur": "Bulbasaur",
|
||||||
"ivysaur": "Ivysaur",
|
"ivysaur": "Ivysaur",
|
||||||
"venusaur": "Venusaur",
|
"venusaur": "Venusaur",
|
||||||
@ -1082,5 +1080,5 @@ export const pokemon: SimpleTranslationEntries = {
|
|||||||
"hisui_decidueye": "Decidueye",
|
"hisui_decidueye": "Decidueye",
|
||||||
"paldea_tauros": "Tauros",
|
"paldea_tauros": "Tauros",
|
||||||
"paldea_wooper": "Wooper",
|
"paldea_wooper": "Wooper",
|
||||||
"bloodmoon_ursaluna": "Ursaluna",
|
"bloodmoon_ursaluna": "Ursaluna"
|
||||||
} as const;
|
}
|
7
src/locales/en/save-slot-select-ui-handler.json
Normal file
7
src/locales/en/save-slot-select-ui-handler.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"overwriteData": "Overwrite the data in the selected slot?",
|
||||||
|
"loading": "Loading...",
|
||||||
|
"wave": "Wave",
|
||||||
|
"lv": "Lv",
|
||||||
|
"empty": "Empty"
|
||||||
|
}
|
@ -1,9 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const saveSlotSelectUiHandler: SimpleTranslationEntries = {
|
|
||||||
"overwriteData": "Overwrite the data in the selected slot?",
|
|
||||||
"loading": "Loading...",
|
|
||||||
"wave": "Wave",
|
|
||||||
"lv": "Lv",
|
|
||||||
"empty": "Empty",
|
|
||||||
} as const;
|
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales.js";
|
{
|
||||||
|
|
||||||
export const settings: SimpleTranslationEntries = {
|
|
||||||
"boy": "Boy",
|
"boy": "Boy",
|
||||||
"girl": "Girl",
|
"girl": "Girl",
|
||||||
"general": "General",
|
"general": "General",
|
||||||
@ -104,4 +102,4 @@ export const settings: SimpleTranslationEntries = {
|
|||||||
"reroll": "Reroll",
|
"reroll": "Reroll",
|
||||||
"shop": "Shop",
|
"shop": "Shop",
|
||||||
"checkTeam": "Check Team"
|
"checkTeam": "Check Team"
|
||||||
} as const;
|
}
|
@ -1,6 +1,4 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const splashMessages: SimpleTranslationEntries = {
|
|
||||||
"battlesWon": "Battles Won!",
|
"battlesWon": "Battles Won!",
|
||||||
"joinTheDiscord": "Join the Discord!",
|
"joinTheDiscord": "Join the Discord!",
|
||||||
"infiniteLevels": "Infinite Levels!",
|
"infiniteLevels": "Infinite Levels!",
|
||||||
@ -34,5 +32,5 @@ export const splashMessages: SimpleTranslationEntries = {
|
|||||||
"alsoTryRadicalRed": "Also Try Radical Red!",
|
"alsoTryRadicalRed": "Also Try Radical Red!",
|
||||||
"eeveeExpo": "Eevee Expo!",
|
"eeveeExpo": "Eevee Expo!",
|
||||||
"ynoproject": "YNOproject!",
|
"ynoproject": "YNOproject!",
|
||||||
"breedersInSpace": "Breeders in space!",
|
"breedersInSpace": "Breeders in space!"
|
||||||
} as const;
|
}
|
@ -1,11 +1,4 @@
|
|||||||
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": "Begin with these Pokémon?",
|
"confirmStartTeam": "Begin with these Pokémon?",
|
||||||
"confirmExit": "Do you want to exit?",
|
"confirmExit": "Do you want to exit?",
|
||||||
"invalidParty": "This is not a valid starting party!",
|
"invalidParty": "This is not a valid starting party!",
|
||||||
@ -49,4 +42,4 @@ export const starterSelectUiHandler: SimpleTranslationEntries = {
|
|||||||
"locked": "Locked",
|
"locked": "Locked",
|
||||||
"disabled": "Disabled",
|
"disabled": "Disabled",
|
||||||
"uncaught": "Uncaught"
|
"uncaught": "Uncaught"
|
||||||
};
|
}
|
65
src/locales/en/status-effect.json
Normal file
65
src/locales/en/status-effect.json
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
{
|
||||||
|
"none": {
|
||||||
|
"name": "None",
|
||||||
|
"description": "",
|
||||||
|
"obtain": "",
|
||||||
|
"obtainSource": "",
|
||||||
|
"activation": "",
|
||||||
|
"overlap": "",
|
||||||
|
"heal": ""
|
||||||
|
},
|
||||||
|
"poison": {
|
||||||
|
"name": "Poison",
|
||||||
|
"description": "poisoning",
|
||||||
|
"obtain": "{{pokemonNameWithAffix}}\nwas poisoned!",
|
||||||
|
"obtainSource": "{{pokemonNameWithAffix}}\nwas poisoned by the {{sourceText}}!",
|
||||||
|
"activation": "{{pokemonNameWithAffix}} is hurt\nby poison!",
|
||||||
|
"overlap": "{{pokemonNameWithAffix}} is\nalready poisoned!",
|
||||||
|
"heal": "{{pokemonNameWithAffix}} was\ncured of its poison!"
|
||||||
|
},
|
||||||
|
"toxic": {
|
||||||
|
"name": "Toxic",
|
||||||
|
"description": "poisoning",
|
||||||
|
"obtain": "{{pokemonNameWithAffix}}\nwas badly poisoned!",
|
||||||
|
"obtainSource": "{{pokemonNameWithAffix}}\nwas badly poisoned by the {{sourceText}}!",
|
||||||
|
"activation": "{{pokemonNameWithAffix}} is hurt\nby poison!",
|
||||||
|
"overlap": "{{pokemonNameWithAffix}} is\nalready poisoned!",
|
||||||
|
"heal": "{{pokemonNameWithAffix}} was\ncured of its poison!"
|
||||||
|
},
|
||||||
|
"paralysis": {
|
||||||
|
"name": "Paralysis",
|
||||||
|
"description": "paralysis",
|
||||||
|
"obtain": "{{pokemonNameWithAffix}} was paralyzed,\nIt may be unable to move!",
|
||||||
|
"obtainSource": "{{pokemonNameWithAffix}} was paralyzed by the {{sourceText}}!\nIt may be unable to move!",
|
||||||
|
"activation": "{{pokemonNameWithAffix}} is paralyzed!\nIt can't move!",
|
||||||
|
"overlap": "{{pokemonNameWithAffix}} is\nalready paralyzed!",
|
||||||
|
"heal": "{{pokemonNameWithAffix}} was\nhealed of paralysis!"
|
||||||
|
},
|
||||||
|
"sleep": {
|
||||||
|
"name": "Sleep",
|
||||||
|
"description": "sleep",
|
||||||
|
"obtain": "{{pokemonNameWithAffix}}\nfell asleep!",
|
||||||
|
"obtainSource": "{{pokemonNameWithAffix}}\nfell asleep from the {{sourceText}}!",
|
||||||
|
"activation": "{{pokemonNameWithAffix}} is fast asleep.",
|
||||||
|
"overlap": "{{pokemonNameWithAffix}} is\nalready asleep!",
|
||||||
|
"heal": "{{pokemonNameWithAffix}} woke up!"
|
||||||
|
},
|
||||||
|
"freeze": {
|
||||||
|
"name": "Freeze",
|
||||||
|
"description": "freezing",
|
||||||
|
"obtain": "{{pokemonNameWithAffix}}\nwas frozen solid!",
|
||||||
|
"obtainSource": "{{pokemonNameWithAffix}}\nwas frozen solid by the {{sourceText}}!",
|
||||||
|
"activation": "{{pokemonNameWithAffix}} is\nfrozen solid!",
|
||||||
|
"overlap": "{{pokemonNameWithAffix}} is\nalready frozen!",
|
||||||
|
"heal": "{{pokemonNameWithAffix}} was\ndefrosted!"
|
||||||
|
},
|
||||||
|
"burn": {
|
||||||
|
"name": "Burn",
|
||||||
|
"description": "burn",
|
||||||
|
"obtain": "{{pokemonNameWithAffix}}\nwas burned!",
|
||||||
|
"obtainSource": "{{pokemonNameWithAffix}}\nwas burned by the {{sourceText}}!",
|
||||||
|
"activation": "{{pokemonNameWithAffix}} is hurt\nby its burn!",
|
||||||
|
"overlap": "{{pokemonNameWithAffix}} is\nalready burned!",
|
||||||
|
"heal": "{{pokemonNameWithAffix}} was\nhealed of its burn!"
|
||||||
|
}
|
||||||
|
}
|
@ -1,67 +0,0 @@
|
|||||||
import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js";
|
|
||||||
|
|
||||||
export const statusEffect: StatusEffectTranslationEntries = {
|
|
||||||
none: {
|
|
||||||
name: "None",
|
|
||||||
description: "",
|
|
||||||
obtain: "",
|
|
||||||
obtainSource: "",
|
|
||||||
activation: "",
|
|
||||||
overlap: "",
|
|
||||||
heal: ""
|
|
||||||
},
|
|
||||||
poison: {
|
|
||||||
name: "Poison",
|
|
||||||
description: "poisoning",
|
|
||||||
obtain: "{{pokemonNameWithAffix}}\nwas poisoned!",
|
|
||||||
obtainSource: "{{pokemonNameWithAffix}}\nwas poisoned by the {{sourceText}}!",
|
|
||||||
activation: "{{pokemonNameWithAffix}} is hurt\nby poison!",
|
|
||||||
overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!",
|
|
||||||
heal: "{{pokemonNameWithAffix}} was\ncured of its poison!"
|
|
||||||
},
|
|
||||||
toxic: {
|
|
||||||
name: "Toxic",
|
|
||||||
description: "poisoning",
|
|
||||||
obtain: "{{pokemonNameWithAffix}}\nwas badly poisoned!",
|
|
||||||
obtainSource: "{{pokemonNameWithAffix}}\nwas badly poisoned by the {{sourceText}}!",
|
|
||||||
activation: "{{pokemonNameWithAffix}} is hurt\nby poison!",
|
|
||||||
overlap: "{{pokemonNameWithAffix}} is\nalready poisoned!",
|
|
||||||
heal: "{{pokemonNameWithAffix}} was\ncured of its poison!"
|
|
||||||
},
|
|
||||||
paralysis: {
|
|
||||||
name: "Paralysis",
|
|
||||||
description: "paralysis",
|
|
||||||
obtain: "{{pokemonNameWithAffix}} was paralyzed,\nIt may be unable to move!",
|
|
||||||
obtainSource: "{{pokemonNameWithAffix}} was paralyzed by the {{sourceText}}!\nIt may be unable to move!",
|
|
||||||
activation: "{{pokemonNameWithAffix}} is paralyzed!\nIt can't move!",
|
|
||||||
overlap: "{{pokemonNameWithAffix}} is\nalready paralyzed!",
|
|
||||||
heal: "{{pokemonNameWithAffix}} was\nhealed of paralysis!"
|
|
||||||
},
|
|
||||||
sleep: {
|
|
||||||
name: "Sleep",
|
|
||||||
description: "sleep",
|
|
||||||
obtain: "{{pokemonNameWithAffix}}\nfell asleep!",
|
|
||||||
obtainSource: "{{pokemonNameWithAffix}}\nfell asleep from the {{sourceText}}!",
|
|
||||||
activation: "{{pokemonNameWithAffix}} is fast asleep.",
|
|
||||||
overlap: "{{pokemonNameWithAffix}} is\nalready asleep!",
|
|
||||||
heal: "{{pokemonNameWithAffix}} woke up!"
|
|
||||||
},
|
|
||||||
freeze: {
|
|
||||||
name: "Freeze",
|
|
||||||
description: "freezing",
|
|
||||||
obtain: "{{pokemonNameWithAffix}}\nwas frozen solid!",
|
|
||||||
obtainSource: "{{pokemonNameWithAffix}}\nwas frozen solid by the {{sourceText}}!",
|
|
||||||
activation: "{{pokemonNameWithAffix}} is\nfrozen solid!",
|
|
||||||
overlap: "{{pokemonNameWithAffix}} is\nalready frozen!",
|
|
||||||
heal: "{{pokemonNameWithAffix}} was\ndefrosted!"
|
|
||||||
},
|
|
||||||
burn: {
|
|
||||||
name: "Burn",
|
|
||||||
description: "burn",
|
|
||||||
obtain: "{{pokemonNameWithAffix}}\nwas burned!",
|
|
||||||
obtainSource: "{{pokemonNameWithAffix}}\nwas burned by the {{sourceText}}!",
|
|
||||||
activation: "{{pokemonNameWithAffix}} is hurt\nby its burn!",
|
|
||||||
overlap: "{{pokemonNameWithAffix}} is\nalready burned!",
|
|
||||||
heal: "{{pokemonNameWithAffix}} was\nhealed of its burn!"
|
|
||||||
},
|
|
||||||
} as const;
|
|
16
src/locales/en/terrain.json
Normal file
16
src/locales/en/terrain.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"misty": "Misty",
|
||||||
|
"mistyStartMessage": "Mist swirled around the battlefield!",
|
||||||
|
"mistyClearMessage": "The mist disappeared from the battlefield.",
|
||||||
|
"mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!",
|
||||||
|
"electric": "Electric",
|
||||||
|
"electricStartMessage": "An electric current ran across the battlefield!",
|
||||||
|
"electricClearMessage": "The electricity disappeared from the battlefield.",
|
||||||
|
"grassy": "Grassy",
|
||||||
|
"grassyStartMessage": "Grass grew to cover the battlefield!",
|
||||||
|
"grassyClearMessage": "The grass disappeared from the battlefield.",
|
||||||
|
"psychic": "Psychic",
|
||||||
|
"psychicStartMessage": "The battlefield got weird!",
|
||||||
|
"psychicClearMessage": "The weirdness disappeared from the battlefield!",
|
||||||
|
"defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!"
|
||||||
|
}
|
121
src/locales/en/trainer-classes.json
Normal file
121
src/locales/en/trainer-classes.json
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
{
|
||||||
|
"ace_trainer": "Ace Trainer",
|
||||||
|
"ace_trainer_female": "Ace Trainer",
|
||||||
|
"ace_duo": "Ace Duo",
|
||||||
|
"artist": "Artist",
|
||||||
|
"artist_female": "Artist",
|
||||||
|
"backers": "Backers",
|
||||||
|
"backpacker": "Backpacker",
|
||||||
|
"backpacker_female": "Backpacker",
|
||||||
|
"backpackers": "Backpackers",
|
||||||
|
"baker": "Baker",
|
||||||
|
"battle_girl": "Battle Girl",
|
||||||
|
"beauty": "Beauty",
|
||||||
|
"beginners": "Beginners",
|
||||||
|
"biker": "Biker",
|
||||||
|
"black_belt": "Black Belt",
|
||||||
|
"breeder": "Breeder",
|
||||||
|
"breeder_female": "Breeder",
|
||||||
|
"breeders": "Breeders",
|
||||||
|
"clerk": "Clerk",
|
||||||
|
"clerk_female": "Clerk",
|
||||||
|
"colleagues": "Colleagues",
|
||||||
|
"crush_kin": "Crush Kin",
|
||||||
|
"cyclist": "Cyclist",
|
||||||
|
"cyclist_female": "Cyclist",
|
||||||
|
"cyclists": "Cyclists",
|
||||||
|
"dancer": "Dancer",
|
||||||
|
"dancer_female": "Dancer",
|
||||||
|
"depot_agent": "Depot Agent",
|
||||||
|
"doctor": "Doctor",
|
||||||
|
"doctor_female": "Doctor",
|
||||||
|
"firebreather": "Firebreather",
|
||||||
|
"fisherman": "Fisherman",
|
||||||
|
"fisherman_female": "Fisherman",
|
||||||
|
"gentleman": "Gentleman",
|
||||||
|
"guitarist": "Guitarist",
|
||||||
|
"guitarist_female": "Guitarist",
|
||||||
|
"harlequin": "Harlequin",
|
||||||
|
"hiker": "Hiker",
|
||||||
|
"hooligans": "Hooligans",
|
||||||
|
"hoopster": "Hoopster",
|
||||||
|
"infielder": "Infielder",
|
||||||
|
"janitor": "Janitor",
|
||||||
|
"lady": "Lady",
|
||||||
|
"lass": "Lass",
|
||||||
|
"linebacker": "Linebacker",
|
||||||
|
"maid": "Maid",
|
||||||
|
"madame": "Madame",
|
||||||
|
"medical_team": "Medical Team",
|
||||||
|
"musician": "Musician",
|
||||||
|
"hex_maniac": "Hex Maniac",
|
||||||
|
"nurse": "Nurse",
|
||||||
|
"nursery_aide": "Nursery Aide",
|
||||||
|
"officer": "Officer",
|
||||||
|
"parasol_lady": "Parasol Lady",
|
||||||
|
"pilot": "Pilot",
|
||||||
|
"pokéfan": "Poké Fan",
|
||||||
|
"pokéfan_female": "Poké Fan",
|
||||||
|
"pokéfan_family": "Poké Fan Family",
|
||||||
|
"preschooler": "Preschooler",
|
||||||
|
"preschooler_female": "Preschooler",
|
||||||
|
"preschoolers": "Preschoolers",
|
||||||
|
"psychic": "Psychic",
|
||||||
|
"psychic_female": "Psychic",
|
||||||
|
"psychics": "Psychics",
|
||||||
|
"pokémon_ranger": "Pokémon Ranger",
|
||||||
|
"pokémon_ranger_female": "Pokémon Ranger",
|
||||||
|
"pokémon_rangers": "Pokémon Ranger",
|
||||||
|
"ranger": "Ranger",
|
||||||
|
"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",
|
||||||
|
"roughneck": "Roughneck",
|
||||||
|
"sailor": "Sailor",
|
||||||
|
"scientist": "Scientist",
|
||||||
|
"scientist_female": "Scientist",
|
||||||
|
"scientists": "Scientists",
|
||||||
|
"smasher": "Smasher",
|
||||||
|
"snow_worker": "Snow Worker",
|
||||||
|
"snow_worker_female": "Snow Worker",
|
||||||
|
"striker": "Striker",
|
||||||
|
"school_kid": "School Kid",
|
||||||
|
"school_kid_female": "School Kid",
|
||||||
|
"school_kids": "School Kids",
|
||||||
|
"swimmer": "Swimmer",
|
||||||
|
"swimmer_female": "Swimmer",
|
||||||
|
"swimmers": "Swimmers",
|
||||||
|
"twins": "Twins",
|
||||||
|
"veteran": "Veteran",
|
||||||
|
"veteran_female": "Veteran",
|
||||||
|
"veteran_duo": "Veteran Duo",
|
||||||
|
"waiter": "Waiter",
|
||||||
|
"waitress": "Waitress",
|
||||||
|
"worker": "Worker",
|
||||||
|
"worker_female": "Worker",
|
||||||
|
"workers": "Workers",
|
||||||
|
"youngster": "Youngster",
|
||||||
|
"rocket_grunt": "Rocket Grunt",
|
||||||
|
"rocket_grunts": "Rocket Grunts",
|
||||||
|
"rocket_grunt_female": "Rocket Grunt",
|
||||||
|
"magma_grunt": "Magma Grunt",
|
||||||
|
"magma_grunt_female": "Magma Grunt",
|
||||||
|
"magma_grunts": "Magma Grunts",
|
||||||
|
"aqua_grunt": "Aqua Grunt",
|
||||||
|
"aqua_grunt_female": "Aqua Grunt",
|
||||||
|
"aqua_grunts": "Aqua Grunts",
|
||||||
|
"galactic_grunt": "Galactic Grunt",
|
||||||
|
"galactic_grunt_female": "Galactic Grunt",
|
||||||
|
"galactic_grunts": "Galactic Grunts",
|
||||||
|
"plasma_grunt": "Plasma Grunt",
|
||||||
|
"plasma_grunt_female": "Plasma Grunt",
|
||||||
|
"plasma_grunts": "Plasma Grunts",
|
||||||
|
"flare_grunt": "Flare Grunt",
|
||||||
|
"flare_grunt_female": "Flare Grunt",
|
||||||
|
"flare_grunts": "Flare Grunts"
|
||||||
|
}
|
156
src/locales/en/trainer-names.json
Normal file
156
src/locales/en/trainer-names.json
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
{
|
||||||
|
"brock": "Brock",
|
||||||
|
"misty": "Misty",
|
||||||
|
"lt_surge": "Lt Surge",
|
||||||
|
"erika": "Erika",
|
||||||
|
"janine": "Janine",
|
||||||
|
"sabrina": "Sabrina",
|
||||||
|
"blaine": "Blaine",
|
||||||
|
"giovanni": "Giovanni",
|
||||||
|
"falkner": "Falkner",
|
||||||
|
"bugsy": "Bugsy",
|
||||||
|
"whitney": "Whitney",
|
||||||
|
"morty": "Morty",
|
||||||
|
"chuck": "Chuck",
|
||||||
|
"jasmine": "Jasmine",
|
||||||
|
"pryce": "Pryce",
|
||||||
|
"clair": "Clair",
|
||||||
|
"roxanne": "Roxanne",
|
||||||
|
"brawly": "Brawly",
|
||||||
|
"wattson": "Wattson",
|
||||||
|
"flannery": "Flannery",
|
||||||
|
"norman": "Norman",
|
||||||
|
"winona": "Winona",
|
||||||
|
"tate": "Tate",
|
||||||
|
"liza": "Liza",
|
||||||
|
"juan": "Juan",
|
||||||
|
"roark": "Roark",
|
||||||
|
"gardenia": "Gardenia",
|
||||||
|
"maylene": "Maylene",
|
||||||
|
"crasher_wake": "Crasher Wake",
|
||||||
|
"fantina": "Fantina",
|
||||||
|
"byron": "Byron",
|
||||||
|
"candice": "Candice",
|
||||||
|
"volkner": "Volkner",
|
||||||
|
"cilan": "Cilan",
|
||||||
|
"chili": "Chili",
|
||||||
|
"cress": "Cress",
|
||||||
|
"cheren": "Cheren",
|
||||||
|
"lenora": "Lenora",
|
||||||
|
"roxie": "Roxie",
|
||||||
|
"burgh": "Burgh",
|
||||||
|
"elesa": "Elesa",
|
||||||
|
"clay": "Clay",
|
||||||
|
"skyla": "Skyla",
|
||||||
|
"brycen": "Brycen",
|
||||||
|
"drayden": "Drayden",
|
||||||
|
"marlon": "Marlon",
|
||||||
|
"viola": "Viola",
|
||||||
|
"grant": "Grant",
|
||||||
|
"korrina": "Korrina",
|
||||||
|
"ramos": "Ramos",
|
||||||
|
"clemont": "Clemont",
|
||||||
|
"valerie": "Valerie",
|
||||||
|
"olympia": "Olympia",
|
||||||
|
"wulfric": "Wulfric",
|
||||||
|
"milo": "Milo",
|
||||||
|
"nessa": "Nessa",
|
||||||
|
"kabu": "Kabu",
|
||||||
|
"bea": "Bea",
|
||||||
|
"allister": "Allister",
|
||||||
|
"opal": "Opal",
|
||||||
|
"bede": "Bede",
|
||||||
|
"gordie": "Gordie",
|
||||||
|
"melony": "Melony",
|
||||||
|
"piers": "Piers",
|
||||||
|
"marnie": "Marnie",
|
||||||
|
"raihan": "Raihan",
|
||||||
|
"katy": "Katy",
|
||||||
|
"brassius": "Brassius",
|
||||||
|
"iono": "Iono",
|
||||||
|
"kofu": "Kofu",
|
||||||
|
"larry": "Larry",
|
||||||
|
"ryme": "Ryme",
|
||||||
|
"tulip": "Tulip",
|
||||||
|
"grusha": "Grusha",
|
||||||
|
"lorelei": "Lorelei",
|
||||||
|
"bruno": "Bruno",
|
||||||
|
"agatha": "Agatha",
|
||||||
|
"lance": "Lance",
|
||||||
|
"will": "Will",
|
||||||
|
"koga": "Koga",
|
||||||
|
"karen": "Karen",
|
||||||
|
"sidney": "Sidney",
|
||||||
|
"phoebe": "Phoebe",
|
||||||
|
"glacia": "Glacia",
|
||||||
|
"drake": "Drake",
|
||||||
|
"aaron": "Aaron",
|
||||||
|
"bertha": "Bertha",
|
||||||
|
"flint": "Flint",
|
||||||
|
"lucian": "Lucian",
|
||||||
|
"shauntal": "Shauntal",
|
||||||
|
"marshal": "Marshal",
|
||||||
|
"grimsley": "Grimsley",
|
||||||
|
"caitlin": "Caitlin",
|
||||||
|
"malva": "Malva",
|
||||||
|
"siebold": "Siebold",
|
||||||
|
"wikstrom": "Wikstrom",
|
||||||
|
"drasna": "Drasna",
|
||||||
|
"hala": "Hala",
|
||||||
|
"molayne": "Molayne",
|
||||||
|
"olivia": "Olivia",
|
||||||
|
"acerola": "Acerola",
|
||||||
|
"kahili": "Kahili",
|
||||||
|
"rika": "Rika",
|
||||||
|
"poppy": "Poppy",
|
||||||
|
"hassel": "Hassel",
|
||||||
|
"crispin": "Crispin",
|
||||||
|
"amarys": "Amarys",
|
||||||
|
"lacey": "Lacey",
|
||||||
|
"drayton": "Drayton",
|
||||||
|
"blue": "Blue",
|
||||||
|
"red": "Red",
|
||||||
|
"steven": "Steven",
|
||||||
|
"wallace": "Wallace",
|
||||||
|
"cynthia": "Cynthia",
|
||||||
|
"alder": "Alder",
|
||||||
|
"iris": "Iris",
|
||||||
|
"diantha": "Diantha",
|
||||||
|
"hau": "Hau",
|
||||||
|
"geeta": "Geeta",
|
||||||
|
"nemona": "Nemona",
|
||||||
|
"kieran": "Kieran",
|
||||||
|
"leon": "Leon",
|
||||||
|
"rival": "Finn",
|
||||||
|
"rival_female": "Ivy",
|
||||||
|
"archer": "Archer",
|
||||||
|
"ariana": "Ariana",
|
||||||
|
"proton": "Proton",
|
||||||
|
"petrel": "Petrel",
|
||||||
|
"tabitha": "Tabitha",
|
||||||
|
"courtney": "Courtney",
|
||||||
|
"shelly": "Shelly",
|
||||||
|
"matt": "Matt",
|
||||||
|
"mars": "Mars",
|
||||||
|
"jupiter": "Jupiter",
|
||||||
|
"saturn": "Saturn",
|
||||||
|
"zinzolin": "Zinzolin",
|
||||||
|
"rood": "Rood",
|
||||||
|
"xerosic": "Xerosic",
|
||||||
|
"bryony": "Bryony",
|
||||||
|
"maxie": "Maxie",
|
||||||
|
"archie": "Archie",
|
||||||
|
"cyrus": "Cyrus",
|
||||||
|
"ghetsis": "Ghetsis",
|
||||||
|
"lysandre": "Lysandre",
|
||||||
|
"blue_red_double": "Blue & Red",
|
||||||
|
"red_blue_double": "Red & Blue",
|
||||||
|
"tate_liza_double": "Tate & Liza",
|
||||||
|
"liza_tate_double": "Liza & Tate",
|
||||||
|
"steven_wallace_double": "Steven & Wallace",
|
||||||
|
"wallace_steven_double": "Wallace & Steven",
|
||||||
|
"alder_iris_double": "Alder & Iris",
|
||||||
|
"iris_alder_double": "Iris & Alder",
|
||||||
|
"marnie_piers_double": "Marnie & Piers",
|
||||||
|
"piers_marnie_double": "Piers & Marnie"
|
||||||
|
}
|
31
src/locales/en/trainer-titles.json
Normal file
31
src/locales/en/trainer-titles.json
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"elite_four": "Elite Four",
|
||||||
|
"elite_four_female": "Elite Four",
|
||||||
|
"gym_leader": "Gym Leader",
|
||||||
|
"gym_leader_female": "Gym Leader",
|
||||||
|
"gym_leader_double": "Gym Leader Duo",
|
||||||
|
"champion": "Champion",
|
||||||
|
"champion_female": "Champion",
|
||||||
|
"champion_double": "Champion Duo",
|
||||||
|
"rival": "Rival",
|
||||||
|
"professor": "Professor",
|
||||||
|
"frontier_brain": "Frontier Brain",
|
||||||
|
"rocket_boss": "Team Rocket Boss",
|
||||||
|
"magma_boss": "Team Magma Boss",
|
||||||
|
"aqua_boss": "Team Aqua Boss",
|
||||||
|
"galactic_boss": "Team Galactic Boss",
|
||||||
|
"plasma_boss": "Team Plasma Boss",
|
||||||
|
"flare_boss": "Team Flare Boss",
|
||||||
|
"rocket_admin": "Team Rocket Admin",
|
||||||
|
"rocket_admin_female": "Team Rocket Admin",
|
||||||
|
"magma_admin": "Team Magma Admin",
|
||||||
|
"magma_admin_female": "Team Magma Admin",
|
||||||
|
"aqua_admin": "Team Aqua Admin",
|
||||||
|
"aqua_admin_female": "Team Aqua Admin",
|
||||||
|
"galactic_commander": "Team Galactic Commander",
|
||||||
|
"galactic_commander_female": "Team Galactic Commander",
|
||||||
|
"plasma_sage": "Team Plasma Sage",
|
||||||
|
"plasma_admin": "Team Plasma Admin",
|
||||||
|
"flare_admin": "Team Flare Admin",
|
||||||
|
"flare_admin_female": "Team Flare Admin"
|
||||||
|
}
|
@ -1,322 +0,0 @@
|
|||||||
import {SimpleTranslationEntries} from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
// Titles of special trainers like gym leaders, elite four, and the champion
|
|
||||||
export const titles: SimpleTranslationEntries = {
|
|
||||||
"elite_four": "Elite Four",
|
|
||||||
"elite_four_female": "Elite Four",
|
|
||||||
"gym_leader": "Gym Leader",
|
|
||||||
"gym_leader_female": "Gym Leader",
|
|
||||||
"gym_leader_double": "Gym Leader Duo",
|
|
||||||
"champion": "Champion",
|
|
||||||
"champion_female": "Champion",
|
|
||||||
"champion_double": "Champion Duo",
|
|
||||||
"rival": "Rival",
|
|
||||||
"professor": "Professor",
|
|
||||||
"frontier_brain": "Frontier Brain",
|
|
||||||
"rocket_boss": "Team Rocket Boss",
|
|
||||||
"magma_boss": "Team Magma Boss",
|
|
||||||
"aqua_boss": "Team Aqua Boss",
|
|
||||||
"galactic_boss": "Team Galactic Boss",
|
|
||||||
"plasma_boss": "Team Plasma Boss",
|
|
||||||
"flare_boss": "Team Flare Boss",
|
|
||||||
|
|
||||||
"rocket_admin": "Team Rocket Admin",
|
|
||||||
"rocket_admin_female": "Team Rocket Admin",
|
|
||||||
"magma_admin": "Team Magma Admin",
|
|
||||||
"magma_admin_female": "Team Magma Admin",
|
|
||||||
"aqua_admin": "Team Aqua Admin",
|
|
||||||
"aqua_admin_female": "Team Aqua Admin",
|
|
||||||
"galactic_commander": "Team Galactic Commander",
|
|
||||||
"galactic_commander_female": "Team Galactic Commander",
|
|
||||||
"plasma_sage": "Team Plasma Sage",
|
|
||||||
"plasma_admin": "Team Plasma Admin",
|
|
||||||
"flare_admin": "Team Flare Admin",
|
|
||||||
"flare_admin_female": "Team Flare Admin",
|
|
||||||
// Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc.
|
|
||||||
} as const;
|
|
||||||
|
|
||||||
// Titles of trainers like "Youngster" or "Lass"
|
|
||||||
export const trainerClasses: SimpleTranslationEntries = {
|
|
||||||
"ace_trainer": "Ace Trainer",
|
|
||||||
"ace_trainer_female": "Ace Trainer",
|
|
||||||
"ace_duo": "Ace Duo",
|
|
||||||
"artist": "Artist",
|
|
||||||
"artist_female": "Artist",
|
|
||||||
"backers": "Backers",
|
|
||||||
"backpacker": "Backpacker",
|
|
||||||
"backpacker_female": "Backpacker",
|
|
||||||
"backpackers": "Backpackers",
|
|
||||||
"baker": "Baker",
|
|
||||||
"battle_girl": "Battle Girl",
|
|
||||||
"beauty": "Beauty",
|
|
||||||
"beginners": "Beginners",
|
|
||||||
"biker": "Biker",
|
|
||||||
"black_belt": "Black Belt",
|
|
||||||
"breeder": "Breeder",
|
|
||||||
"breeder_female": "Breeder",
|
|
||||||
"breeders": "Breeders",
|
|
||||||
"clerk": "Clerk",
|
|
||||||
"clerk_female": "Clerk",
|
|
||||||
"colleagues": "Colleagues",
|
|
||||||
"crush_kin": "Crush Kin",
|
|
||||||
"cyclist": "Cyclist",
|
|
||||||
"cyclist_female": "Cyclist",
|
|
||||||
"cyclists": "Cyclists",
|
|
||||||
"dancer": "Dancer",
|
|
||||||
"dancer_female": "Dancer",
|
|
||||||
"depot_agent": "Depot Agent",
|
|
||||||
"doctor": "Doctor",
|
|
||||||
"doctor_female": "Doctor",
|
|
||||||
"firebreather": "Firebreather",
|
|
||||||
"fisherman": "Fisherman",
|
|
||||||
"fisherman_female": "Fisherman",
|
|
||||||
"gentleman": "Gentleman",
|
|
||||||
"guitarist": "Guitarist",
|
|
||||||
"guitarist_female": "Guitarist",
|
|
||||||
"harlequin": "Harlequin",
|
|
||||||
"hiker": "Hiker",
|
|
||||||
"hooligans": "Hooligans",
|
|
||||||
"hoopster": "Hoopster",
|
|
||||||
"infielder": "Infielder",
|
|
||||||
"janitor": "Janitor",
|
|
||||||
"lady": "Lady",
|
|
||||||
"lass": "Lass",
|
|
||||||
"linebacker": "Linebacker",
|
|
||||||
"maid": "Maid",
|
|
||||||
"madame": "Madame",
|
|
||||||
"medical_team": "Medical Team",
|
|
||||||
"musician": "Musician",
|
|
||||||
"hex_maniac": "Hex Maniac",
|
|
||||||
"nurse": "Nurse",
|
|
||||||
"nursery_aide": "Nursery Aide",
|
|
||||||
"officer": "Officer",
|
|
||||||
"parasol_lady": "Parasol Lady",
|
|
||||||
"pilot": "Pilot",
|
|
||||||
"pokéfan": "Poké Fan",
|
|
||||||
"pokéfan_female": "Poké Fan",
|
|
||||||
"pokéfan_family": "Poké Fan Family",
|
|
||||||
"preschooler": "Preschooler",
|
|
||||||
"preschooler_female": "Preschooler",
|
|
||||||
"preschoolers": "Preschoolers",
|
|
||||||
"psychic": "Psychic",
|
|
||||||
"psychic_female": "Psychic",
|
|
||||||
"psychics": "Psychics",
|
|
||||||
"pokémon_ranger": "Pokémon Ranger",
|
|
||||||
"pokémon_ranger_female": "Pokémon Ranger",
|
|
||||||
"pokémon_rangers": "Pokémon Ranger",
|
|
||||||
"ranger": "Ranger",
|
|
||||||
"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",
|
|
||||||
"roughneck": "Roughneck",
|
|
||||||
"sailor": "Sailor",
|
|
||||||
"scientist": "Scientist",
|
|
||||||
"scientist_female": "Scientist",
|
|
||||||
"scientists": "Scientists",
|
|
||||||
"smasher": "Smasher",
|
|
||||||
"snow_worker": "Snow Worker",
|
|
||||||
"snow_worker_female": "Snow Worker",
|
|
||||||
"striker": "Striker",
|
|
||||||
"school_kid": "School Kid",
|
|
||||||
"school_kid_female": "School Kid",
|
|
||||||
"school_kids": "School Kids",
|
|
||||||
"swimmer": "Swimmer",
|
|
||||||
"swimmer_female": "Swimmer",
|
|
||||||
"swimmers": "Swimmers",
|
|
||||||
"twins": "Twins",
|
|
||||||
"veteran": "Veteran",
|
|
||||||
"veteran_female": "Veteran",
|
|
||||||
"veteran_duo": "Veteran Duo",
|
|
||||||
"waiter": "Waiter",
|
|
||||||
"waitress": "Waitress",
|
|
||||||
"worker": "Worker",
|
|
||||||
"worker_female": "Worker",
|
|
||||||
"workers": "Workers",
|
|
||||||
"youngster": "Youngster",
|
|
||||||
"rocket_grunt": "Rocket Grunt",
|
|
||||||
"rocket_grunts": "Rocket Grunts",
|
|
||||||
"rocket_grunt_female": "Rocket Grunt",
|
|
||||||
"magma_grunt": "Magma Grunt",
|
|
||||||
"magma_grunt_female": "Magma Grunt",
|
|
||||||
"magma_grunts": "Magma Grunts",
|
|
||||||
"aqua_grunt": "Aqua Grunt",
|
|
||||||
"aqua_grunt_female": "Aqua Grunt",
|
|
||||||
"aqua_grunts": "Aqua Grunts",
|
|
||||||
"galactic_grunt": "Galactic Grunt",
|
|
||||||
"galactic_grunt_female": "Galactic Grunt",
|
|
||||||
"galactic_grunts": "Galactic Grunts",
|
|
||||||
"plasma_grunt": "Plasma Grunt",
|
|
||||||
"plasma_grunt_female": "Plasma Grunt",
|
|
||||||
"plasma_grunts": "Plasma Grunts",
|
|
||||||
"flare_grunt": "Flare Grunt",
|
|
||||||
"flare_grunt_female": "Flare Grunt",
|
|
||||||
"flare_grunts": "Flare Grunts",
|
|
||||||
} as const;
|
|
||||||
|
|
||||||
// Names of special trainers like gym leaders, elite four, and the champion
|
|
||||||
export const trainerNames: SimpleTranslationEntries = {
|
|
||||||
"brock": "Brock",
|
|
||||||
"misty": "Misty",
|
|
||||||
"lt_surge": "Lt Surge",
|
|
||||||
"erika": "Erika",
|
|
||||||
"janine": "Janine",
|
|
||||||
"sabrina": "Sabrina",
|
|
||||||
"blaine": "Blaine",
|
|
||||||
"giovanni": "Giovanni",
|
|
||||||
"falkner": "Falkner",
|
|
||||||
"bugsy": "Bugsy",
|
|
||||||
"whitney": "Whitney",
|
|
||||||
"morty": "Morty",
|
|
||||||
"chuck": "Chuck",
|
|
||||||
"jasmine": "Jasmine",
|
|
||||||
"pryce": "Pryce",
|
|
||||||
"clair": "Clair",
|
|
||||||
"roxanne": "Roxanne",
|
|
||||||
"brawly": "Brawly",
|
|
||||||
"wattson": "Wattson",
|
|
||||||
"flannery": "Flannery",
|
|
||||||
"norman": "Norman",
|
|
||||||
"winona": "Winona",
|
|
||||||
"tate": "Tate",
|
|
||||||
"liza": "Liza",
|
|
||||||
"juan": "Juan",
|
|
||||||
"roark": "Roark",
|
|
||||||
"gardenia": "Gardenia",
|
|
||||||
"maylene": "Maylene",
|
|
||||||
"crasher_wake": "Crasher Wake",
|
|
||||||
"fantina": "Fantina",
|
|
||||||
"byron": "Byron",
|
|
||||||
"candice": "Candice",
|
|
||||||
"volkner": "Volkner",
|
|
||||||
"cilan": "Cilan",
|
|
||||||
"chili": "Chili",
|
|
||||||
"cress": "Cress",
|
|
||||||
"cheren": "Cheren",
|
|
||||||
"lenora": "Lenora",
|
|
||||||
"roxie": "Roxie",
|
|
||||||
"burgh": "Burgh",
|
|
||||||
"elesa": "Elesa",
|
|
||||||
"clay": "Clay",
|
|
||||||
"skyla": "Skyla",
|
|
||||||
"brycen": "Brycen",
|
|
||||||
"drayden": "Drayden",
|
|
||||||
"marlon": "Marlon",
|
|
||||||
"viola": "Viola",
|
|
||||||
"grant": "Grant",
|
|
||||||
"korrina": "Korrina",
|
|
||||||
"ramos": "Ramos",
|
|
||||||
"clemont": "Clemont",
|
|
||||||
"valerie": "Valerie",
|
|
||||||
"olympia": "Olympia",
|
|
||||||
"wulfric": "Wulfric",
|
|
||||||
"milo": "Milo",
|
|
||||||
"nessa": "Nessa",
|
|
||||||
"kabu": "Kabu",
|
|
||||||
"bea": "Bea",
|
|
||||||
"allister": "Allister",
|
|
||||||
"opal": "Opal",
|
|
||||||
"bede": "Bede",
|
|
||||||
"gordie": "Gordie",
|
|
||||||
"melony": "Melony",
|
|
||||||
"piers": "Piers",
|
|
||||||
"marnie": "Marnie",
|
|
||||||
"raihan": "Raihan",
|
|
||||||
"katy": "Katy",
|
|
||||||
"brassius": "Brassius",
|
|
||||||
"iono": "Iono",
|
|
||||||
"kofu": "Kofu",
|
|
||||||
"larry": "Larry",
|
|
||||||
"ryme": "Ryme",
|
|
||||||
"tulip": "Tulip",
|
|
||||||
"grusha": "Grusha",
|
|
||||||
"lorelei": "Lorelei",
|
|
||||||
"bruno": "Bruno",
|
|
||||||
"agatha": "Agatha",
|
|
||||||
"lance": "Lance",
|
|
||||||
"will": "Will",
|
|
||||||
"koga": "Koga",
|
|
||||||
"karen": "Karen",
|
|
||||||
"sidney": "Sidney",
|
|
||||||
"phoebe": "Phoebe",
|
|
||||||
"glacia": "Glacia",
|
|
||||||
"drake": "Drake",
|
|
||||||
"aaron": "Aaron",
|
|
||||||
"bertha": "Bertha",
|
|
||||||
"flint": "Flint",
|
|
||||||
"lucian": "Lucian",
|
|
||||||
"shauntal": "Shauntal",
|
|
||||||
"marshal": "Marshal",
|
|
||||||
"grimsley": "Grimsley",
|
|
||||||
"caitlin": "Caitlin",
|
|
||||||
"malva": "Malva",
|
|
||||||
"siebold": "Siebold",
|
|
||||||
"wikstrom": "Wikstrom",
|
|
||||||
"drasna": "Drasna",
|
|
||||||
"hala": "Hala",
|
|
||||||
"molayne": "Molayne",
|
|
||||||
"olivia": "Olivia",
|
|
||||||
"acerola": "Acerola",
|
|
||||||
"kahili": "Kahili",
|
|
||||||
"rika": "Rika",
|
|
||||||
"poppy": "Poppy",
|
|
||||||
"hassel": "Hassel",
|
|
||||||
"crispin": "Crispin",
|
|
||||||
"amarys": "Amarys",
|
|
||||||
"lacey": "Lacey",
|
|
||||||
"drayton": "Drayton",
|
|
||||||
"blue": "Blue",
|
|
||||||
"red": "Red",
|
|
||||||
"steven": "Steven",
|
|
||||||
"wallace": "Wallace",
|
|
||||||
"cynthia": "Cynthia",
|
|
||||||
"alder": "Alder",
|
|
||||||
"iris": "Iris",
|
|
||||||
"diantha": "Diantha",
|
|
||||||
"hau": "Hau",
|
|
||||||
"geeta": "Geeta",
|
|
||||||
"nemona": "Nemona",
|
|
||||||
"kieran": "Kieran",
|
|
||||||
"leon": "Leon",
|
|
||||||
"rival": "Finn",
|
|
||||||
"rival_female": "Ivy",
|
|
||||||
|
|
||||||
// Evil Team Admins
|
|
||||||
"archer": "Archer",
|
|
||||||
"ariana": "Ariana",
|
|
||||||
"proton": "Proton",
|
|
||||||
"petrel": "Petrel",
|
|
||||||
"tabitha": "Tabitha",
|
|
||||||
"courtney": "Courtney",
|
|
||||||
"shelly": "Shelly",
|
|
||||||
"matt": "Matt",
|
|
||||||
"mars": "Mars",
|
|
||||||
"jupiter": "Jupiter",
|
|
||||||
"saturn": "Saturn",
|
|
||||||
"zinzolin": "Zinzolin",
|
|
||||||
"rood": "Rood",
|
|
||||||
"xerosic": "Xerosic",
|
|
||||||
"bryony": "Bryony",
|
|
||||||
|
|
||||||
"maxie": "Maxie",
|
|
||||||
"archie": "Archie",
|
|
||||||
"cyrus": "Cyrus",
|
|
||||||
"ghetsis": "Ghetsis",
|
|
||||||
"lysandre": "Lysandre",
|
|
||||||
|
|
||||||
// Double Names
|
|
||||||
"blue_red_double": "Blue & Red",
|
|
||||||
"red_blue_double": "Red & Blue",
|
|
||||||
"tate_liza_double": "Tate & Liza",
|
|
||||||
"liza_tate_double": "Liza & Tate",
|
|
||||||
"steven_wallace_double": "Steven & Wallace",
|
|
||||||
"wallace_steven_double": "Wallace & Steven",
|
|
||||||
"alder_iris_double": "Alder & Iris",
|
|
||||||
"iris_alder_double": "Iris & Alder",
|
|
||||||
"marnie_piers_double": "Marnie & Piers",
|
|
||||||
"piers_marnie_double": "Piers & Marnie",
|
|
||||||
} as const;
|
|
10
src/locales/en/tutorial.json
Normal file
10
src/locales/en/tutorial.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"intro": "Welcome to PokéRogue! This is a battle-focused Pokémon fangame with roguelite elements.\n$This game is not monetized and we claim no ownership of Pokémon nor of the copyrighted assets used.\n$The game is a work in progress, but fully playable.\nFor bug reports, please use the Discord community.\n$If the game runs slowly, please ensure 'Hardware Acceleration' is turned on in your browser settings.",
|
||||||
|
"accessMenu": "To access the menu, press M or Escape while awaiting input.\nThe menu contains settings and various features.",
|
||||||
|
"menu": "From this menu you can access the settings.\n$From the settings you can change game speed, window style, and other options.\n$There are also various other features here, so be sure to check them all!",
|
||||||
|
"starterSelect": "From this screen, you can select your starters by pressing\nZ or the Space bar. These are your initial party members.\n$Each starter has a value. Your party can have up to\n6 members as long as the total does not exceed 10.\n$You can also select gender, ability, and form depending on\nthe variants you've caught or hatched.\n$The IVs for a species are also the best of every one you've\ncaught or hatched, so try to get lots of the same species!",
|
||||||
|
"pokerus": "A daily random 3 selectable starters have a purple border.\n$If you see a starter you own with one of these,\ntry adding it to your party. Be sure to check its summary!",
|
||||||
|
"statChange": "Stat changes persist across battles as long as your Pokémon aren't recalled.\n$Your Pokémon are recalled before a trainer battle and before entering a new biome.\n$You can view the stat changes for any Pokémon on the field by holding C or Shift.\n$You can also view the moveset for an enemy Pokémon by holding V.\n$This only reveals moves that you've seen the Pokémon use this battle.",
|
||||||
|
"selectItem": "After every battle, you are given a choice of 3 random items.\nYou may only pick one.\n$These range from consumables, to Pokémon held items, to passive permanent items.\n$Most non-consumable item effects will stack in various ways.\n$Some items will only show up if they can be used, such as evolution items.\n$You can also transfer held items between Pokémon using the transfer option.\n$The transfer option will appear in the bottom right once you have obtained a held item.\n$You may purchase consumable items with money, and a larger variety will be available the further you get.\n$Be sure to buy these before you pick your random item, as it will progress to the next battle once you do.",
|
||||||
|
"eggGacha": "From this screen, you can redeem your vouchers for\nPokémon eggs.\n$Eggs have to be hatched and get closer to hatching after\nevery battle. Rarer eggs take longer to hatch.\n$Hatched Pokémon also won't be added to your party, they will\nbe added to your starters.\n$Pokémon hatched from eggs generally have better IVs than\nwild Pokémon.\n$Some Pokémon can only even be obtained from eggs.\n$There are 3 different machines to pull from with different\nbonuses, so pick the one that suits you best!"
|
||||||
|
}
|
@ -1,44 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const tutorial: SimpleTranslationEntries = {
|
|
||||||
"intro": `Welcome to PokéRogue! This is a battle-focused Pokémon fangame with roguelite elements.
|
|
||||||
$This game is not monetized and we claim no ownership of Pokémon nor of the copyrighted assets used.
|
|
||||||
$The game is a work in progress, but fully playable.\nFor bug reports, please use the Discord community.
|
|
||||||
$If the game runs slowly, please ensure 'Hardware Acceleration' is turned on in your browser settings.`,
|
|
||||||
|
|
||||||
"accessMenu": "To access the menu, press M or Escape while awaiting input.\nThe menu contains settings and various features.",
|
|
||||||
|
|
||||||
"menu": `From this menu you can access the settings.
|
|
||||||
$From the settings you can change game speed, window style, and other options.
|
|
||||||
$There are also various other features here, so be sure to check them all!`,
|
|
||||||
|
|
||||||
"starterSelect": `From this screen, you can select your starters by pressing\nZ or the Space bar. These are your initial party members.
|
|
||||||
$Each starter has a value. Your party can have up to\n6 members as long as the total does not exceed 10.
|
|
||||||
$You can also select gender, ability, and form depending on\nthe variants you've caught or hatched.
|
|
||||||
$The IVs for a species are also the best of every one you've\ncaught or hatched, so try to get lots of the same species!`,
|
|
||||||
|
|
||||||
"pokerus": `A daily random 3 selectable starters have a purple border.
|
|
||||||
$If you see a starter you own with one of these,\ntry adding it to your party. Be sure to check its summary!`,
|
|
||||||
|
|
||||||
"statChange": `Stat changes persist across battles as long as your Pokémon aren't recalled.
|
|
||||||
$Your Pokémon are recalled before a trainer battle and before entering a new biome.
|
|
||||||
$You can view the stat changes for any Pokémon on the field by holding C or Shift.
|
|
||||||
$You can also view the moveset for an enemy Pokémon by holding V.
|
|
||||||
$This only reveals moves that you've seen the Pokémon use this battle.`,
|
|
||||||
|
|
||||||
"selectItem": `After every battle, you are given a choice of 3 random items.\nYou may only pick one.
|
|
||||||
$These range from consumables, to Pokémon held items, to passive permanent items.
|
|
||||||
$Most non-consumable item effects will stack in various ways.
|
|
||||||
$Some items will only show up if they can be used, such as evolution items.
|
|
||||||
$You can also transfer held items between Pokémon using the transfer option.
|
|
||||||
$The transfer option will appear in the bottom right once you have obtained a held item.
|
|
||||||
$You may purchase consumable items with money, and a larger variety will be available the further you get.
|
|
||||||
$Be sure to buy these before you pick your random item, as it will progress to the next battle once you do.`,
|
|
||||||
|
|
||||||
"eggGacha": `From this screen, you can redeem your vouchers for\nPokémon eggs.
|
|
||||||
$Eggs have to be hatched and get closer to hatching after\nevery battle. Rarer eggs take longer to hatch.
|
|
||||||
$Hatched Pokémon also won't be added to your party, they will\nbe added to your starters.
|
|
||||||
$Pokémon hatched from eggs generally have better IVs than\nwild Pokémon.
|
|
||||||
$Some Pokémon can only even be obtained from eggs.
|
|
||||||
$There are 3 different machines to pull from with different\nbonuses, so pick the one that suits you best!`,
|
|
||||||
} as const;
|
|
@ -1,11 +1,9 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
"vouchers": "Vouchers",
|
||||||
export const voucher: SimpleTranslationEntries = {
|
"eggVoucher": "Egg Voucher",
|
||||||
"vouchers": "Vouchers",
|
"eggVoucherPlus": "Egg Voucher Plus",
|
||||||
"eggVoucher": "Egg Voucher",
|
"eggVoucherPremium": "Egg Voucher Premium",
|
||||||
"eggVoucherPlus": "Egg Voucher Plus",
|
"eggVoucherGold": "Egg Voucher Gold",
|
||||||
"eggVoucherPremium": "Egg Voucher Premium",
|
"locked": "Locked",
|
||||||
"eggVoucherGold": "Egg Voucher Gold",
|
"defeatTrainer": "Defeat {{trainerName}}"
|
||||||
"locked": "Locked",
|
}
|
||||||
"defeatTrainer": "Defeat {{trainerName}}"
|
|
||||||
} as const;
|
|
@ -1,66 +1,32 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* The weather namespace holds text displayed when weather is active during a battle
|
|
||||||
*/
|
|
||||||
export const weather: SimpleTranslationEntries = {
|
|
||||||
"sunnyStartMessage": "The sunlight got bright!",
|
"sunnyStartMessage": "The sunlight got bright!",
|
||||||
"sunnyLapseMessage": "The sunlight is strong.",
|
"sunnyLapseMessage": "The sunlight is strong.",
|
||||||
"sunnyClearMessage": "The sunlight faded.",
|
"sunnyClearMessage": "The sunlight faded.",
|
||||||
|
|
||||||
"rainStartMessage": "A downpour started!",
|
"rainStartMessage": "A downpour started!",
|
||||||
"rainLapseMessage": "The downpour continues.",
|
"rainLapseMessage": "The downpour continues.",
|
||||||
"rainClearMessage": "The rain stopped.",
|
"rainClearMessage": "The rain stopped.",
|
||||||
|
|
||||||
"sandstormStartMessage": "A sandstorm brewed!",
|
"sandstormStartMessage": "A sandstorm brewed!",
|
||||||
"sandstormLapseMessage": "The sandstorm rages.",
|
"sandstormLapseMessage": "The sandstorm rages.",
|
||||||
"sandstormClearMessage": "The sandstorm subsided.",
|
"sandstormClearMessage": "The sandstorm subsided.",
|
||||||
"sandstormDamageMessage": "{{pokemonNameWithAffix}} is buffeted\nby the sandstorm!",
|
"sandstormDamageMessage": "{{pokemonNameWithAffix}} is buffeted\nby the sandstorm!",
|
||||||
|
|
||||||
"hailStartMessage": "It started to hail!",
|
"hailStartMessage": "It started to hail!",
|
||||||
"hailLapseMessage": "Hail continues to fall.",
|
"hailLapseMessage": "Hail continues to fall.",
|
||||||
"hailClearMessage": "The hail stopped.",
|
"hailClearMessage": "The hail stopped.",
|
||||||
"hailDamageMessage": "{{pokemonNameWithAffix}} is pelted\nby the hail!",
|
"hailDamageMessage": "{{pokemonNameWithAffix}} is pelted\nby the hail!",
|
||||||
|
|
||||||
"snowStartMessage": "It started to snow!",
|
"snowStartMessage": "It started to snow!",
|
||||||
"snowLapseMessage": "The snow is falling down.",
|
"snowLapseMessage": "The snow is falling down.",
|
||||||
"snowClearMessage": "The snow stopped.",
|
"snowClearMessage": "The snow stopped.",
|
||||||
|
|
||||||
"fogStartMessage": "A thick fog emerged!",
|
"fogStartMessage": "A thick fog emerged!",
|
||||||
"fogLapseMessage": "The fog continues.",
|
"fogLapseMessage": "The fog continues.",
|
||||||
"fogClearMessage": "The fog disappeared.",
|
"fogClearMessage": "The fog disappeared.",
|
||||||
|
|
||||||
"heavyRainStartMessage": "A heavy downpour started!",
|
"heavyRainStartMessage": "A heavy downpour started!",
|
||||||
"heavyRainLapseMessage": "The heavy downpour continues.",
|
"heavyRainLapseMessage": "The heavy downpour continues.",
|
||||||
"heavyRainClearMessage": "The heavy rain stopped.",
|
"heavyRainClearMessage": "The heavy rain stopped.",
|
||||||
|
|
||||||
"harshSunStartMessage": "The sunlight got hot!",
|
"harshSunStartMessage": "The sunlight got hot!",
|
||||||
"harshSunLapseMessage": "The sun is scorching hot.",
|
"harshSunLapseMessage": "The sun is scorching hot.",
|
||||||
"harshSunClearMessage": "The harsh sunlight faded.",
|
"harshSunClearMessage": "The harsh sunlight faded.",
|
||||||
|
|
||||||
"strongWindsStartMessage": "A heavy wind began!",
|
"strongWindsStartMessage": "A heavy wind began!",
|
||||||
"strongWindsLapseMessage": "The wind blows intensely.",
|
"strongWindsLapseMessage": "The wind blows intensely.",
|
||||||
"strongWindsEffectMessage": "The mysterious air current weakened the attack!",
|
"strongWindsEffectMessage": "The mysterious air current weakened the attack!",
|
||||||
"strongWindsClearMessage": "The heavy wind stopped."
|
"strongWindsClearMessage": "The heavy wind stopped."
|
||||||
};
|
}
|
||||||
|
|
||||||
export const terrain: SimpleTranslationEntries = {
|
|
||||||
"misty": "Misty",
|
|
||||||
"mistyStartMessage": "Mist swirled around the battlefield!",
|
|
||||||
"mistyClearMessage": "The mist disappeared from the battlefield.",
|
|
||||||
"mistyBlockMessage": "{{pokemonNameWithAffix}} surrounds itself with a protective mist!",
|
|
||||||
|
|
||||||
"electric": "Electric",
|
|
||||||
"electricStartMessage": "An electric current ran across the battlefield!",
|
|
||||||
"electricClearMessage": "The electricity disappeared from the battlefield.",
|
|
||||||
|
|
||||||
"grassy": "Grassy",
|
|
||||||
"grassyStartMessage": "Grass grew to cover the battlefield!",
|
|
||||||
"grassyClearMessage": "The grass disappeared from the battlefield.",
|
|
||||||
|
|
||||||
"psychic": "Psychic",
|
|
||||||
"psychicStartMessage": "The battlefield got weird!",
|
|
||||||
"psychicClearMessage": "The weirdness disappeared from the battlefield!",
|
|
||||||
|
|
||||||
"defaultBlockMessage": "{{pokemonNameWithAffix}} is protected by the {{terrainName}} Terrain!"
|
|
||||||
};
|
|
11
src/locales/es/ability-trigger.json
Normal file
11
src/locales/es/ability-trigger.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"blockRecoilDamage": "¡{{abilityName}} de {{pokemonName}}\nlo protegió del daño de retroceso!",
|
||||||
|
"badDreams": "¡{{pokemonName}} está atormentado!",
|
||||||
|
"iceFaceAvoidedDamage": "¡{{pokemonNameWithAffix}} evitó\ndaño con {{abilityName}}!",
|
||||||
|
"trace": "¡{{pokemonName}} ha copiado la habilidad {{abilityName}} \nde {{targetName}}!",
|
||||||
|
"windPowerCharged": "¡{{pokemonName}} se ha cargado de electricidad gracias a {{moveName}}!",
|
||||||
|
"quickDraw": "¡{{pokemonName}} ataca primero gracias a la habilidad Mano Rápida!",
|
||||||
|
"disguiseAvoidedDamage": "¡El disfraz de {{pokemonNameWithAffix}} se ha roto!",
|
||||||
|
"preventBerryUse": "{{pokemonNameWithAffix}} está muy nervioso y no puede comer bayas!",
|
||||||
|
"weatherEffectDisappeared": "El tiempo atmosférico ya no ejerce ninguna influencia."
|
||||||
|
}
|
@ -1,64 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const abilityTriggers: SimpleTranslationEntries = {
|
|
||||||
"blockRecoilDamage" : "¡{{abilityName}} de {{pokemonName}}\nlo protegió del daño de retroceso!",
|
|
||||||
"badDreams": "¡{{pokemonName}} está atormentado!",
|
|
||||||
"costar": "{{pokemonName}} copied {{allyName}}'s stat changes!",
|
|
||||||
"iceFaceAvoidedDamage": "¡{{pokemonNameWithAffix}} evitó\ndaño con {{abilityName}}!",
|
|
||||||
"perishBody": "{{pokemonName}}'s {{abilityName}}\nwill faint both pokemon in 3 turns!",
|
|
||||||
"poisonHeal": "{{pokemonName}}'s {{abilityName}}\nrestored its HP a little!",
|
|
||||||
"trace": "¡{{pokemonName}} ha copiado la habilidad {{abilityName}} \nde {{targetName}}!",
|
|
||||||
"windPowerCharged": "¡{{pokemonName}} se ha cargado de electricidad gracias a {{moveName}}!",
|
|
||||||
"quickDraw": "¡{{pokemonName}} ataca primero gracias a la habilidad Mano Rápida!",
|
|
||||||
"disguiseAvoidedDamage" : "¡El disfraz de {{pokemonNameWithAffix}} se ha roto!",
|
|
||||||
"blockItemTheft": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents item theft!",
|
|
||||||
"typeImmunityHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!",
|
|
||||||
"nonSuperEffectiveImmunity": "{{pokemonNameWithAffix}} avoided damage\nwith {{abilityName}}!",
|
|
||||||
"moveImmunity": "It doesn't affect {{pokemonNameWithAffix}}!",
|
|
||||||
"reverseDrain": "{{pokemonNameWithAffix}} sucked up the liquid ooze!",
|
|
||||||
"postDefendTypeChange": "{{pokemonNameWithAffix}}'s {{abilityName}}\nmade it the {{typeName}} type!",
|
|
||||||
"postDefendContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!",
|
|
||||||
"postDefendAbilitySwap": "{{pokemonNameWithAffix}} swapped\nabilities with its target!",
|
|
||||||
"postDefendAbilityGive": "{{pokemonNameWithAffix}} gave its target\n{{abilityName}}!",
|
|
||||||
"postDefendMoveDisable": "{{pokemonNameWithAffix}}'s {{moveName}}\nwas disabled!",
|
|
||||||
"pokemonTypeChange": "{{pokemonNameWithAffix}} transformed into the {{moveType}} type!",
|
|
||||||
"postAttackStealHeldItem": "{{pokemonNameWithAffix}} stole\n{{defenderName}}'s {{stolenItemType}}!",
|
|
||||||
"postDefendStealHeldItem": "{{pokemonNameWithAffix}} stole\n{{attackerName}}'s {{stolenItemType}}!",
|
|
||||||
"copyFaintedAllyAbility": "{{pokemonNameWithAffix}}'s {{abilityName}} was taken over!",
|
|
||||||
"intimidateImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}} prevented it from being Intimidated!",
|
|
||||||
"postSummonAllyHeal": "{{pokemonNameWithAffix}} drank down all the\nmatcha that {{pokemonName}} made!",
|
|
||||||
"postSummonClearAllyStats": "{{pokemonNameWithAffix}}'s stat changes\nwere removed!",
|
|
||||||
"postSummonTransform": "{{pokemonNameWithAffix}} transformed\ninto {{targetName}}!",
|
|
||||||
"protectStat": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents lowering its {{statName}}!",
|
|
||||||
"statusEffectImmunityWithName": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{statusEffectName}}!",
|
|
||||||
"statusEffectImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents status problems!",
|
|
||||||
"battlerTagImmunity": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents {{battlerTagName}}!",
|
|
||||||
"forewarn": "{{pokemonNameWithAffix}} was forewarned about {{moveName}}!",
|
|
||||||
"frisk": "{{pokemonNameWithAffix}} frisked {{opponentName}}'s {{opponentAbilityName}}!",
|
|
||||||
"postWeatherLapseHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!",
|
|
||||||
"postWeatherLapseDamage": "{{pokemonNameWithAffix}} is hurt\nby its {{abilityName}}!",
|
|
||||||
"postTurnLootCreateEatenBerry": "{{pokemonNameWithAffix}} harvested one {{berryName}}!",
|
|
||||||
"postTurnHeal": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP a little!",
|
|
||||||
"fetchBall": "{{pokemonNameWithAffix}} found a\n{{pokeballName}}!",
|
|
||||||
"healFromBerryUse": "{{pokemonNameWithAffix}}'s {{abilityName}}\nrestored its HP!",
|
|
||||||
"arenaTrap": "{{pokemonNameWithAffix}}'s {{abilityName}}\nprevents switching!",
|
|
||||||
"postBattleLoot": "{{pokemonNameWithAffix}} picked up\n{{itemName}}!",
|
|
||||||
"postFaintContactDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!",
|
|
||||||
"postFaintHpDamage": "{{pokemonNameWithAffix}}'s {{abilityName}}\nhurt its attacker!",
|
|
||||||
"postSummonPressure": "{{pokemonNameWithAffix}} is exerting its Pressure!",
|
|
||||||
"weatherEffectDisappeared": "El tiempo atmosférico ya no ejerce ninguna influencia.",
|
|
||||||
"postSummonMoldBreaker": "{{pokemonNameWithAffix}} breaks the mold!",
|
|
||||||
"postSummonAnticipation": "{{pokemonNameWithAffix}} shuddered!",
|
|
||||||
"postSummonTurboblaze": "{{pokemonNameWithAffix}} is radiating a blazing aura!",
|
|
||||||
"postSummonTeravolt": "{{pokemonNameWithAffix}} is radiating a bursting aura!",
|
|
||||||
"postSummonDarkAura": "{{pokemonNameWithAffix}} is radiating a Dark Aura!",
|
|
||||||
"postSummonFairyAura": "{{pokemonNameWithAffix}} is radiating a Fairy Aura!",
|
|
||||||
"postSummonNeutralizingGas": "{{pokemonNameWithAffix}}'s Neutralizing Gas filled the area!",
|
|
||||||
"postSummonAsOneGlastrier": "{{pokemonNameWithAffix}} has two Abilities!",
|
|
||||||
"postSummonAsOneSpectrier": "{{pokemonNameWithAffix}} has two Abilities!",
|
|
||||||
"postSummonVesselOfRuin": "{{pokemonNameWithAffix}}'s Vessel of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
|
||||||
"postSummonSwordOfRuin": "{{pokemonNameWithAffix}}'s Sword of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
|
||||||
"postSummonTabletsOfRuin": "{{pokemonNameWithAffix}}'s Tablets of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
|
||||||
"postSummonBeadsOfRuin": "{{pokemonNameWithAffix}}'s Beads of Ruin lowered the {{statName}}\nof all surrounding Pokémon!",
|
|
||||||
"preventBerryUse": "{{pokemonNameWithAffix}} está muy nervioso y no puede comer bayas!",
|
|
||||||
} as const;
|
|
1242
src/locales/es/ability.json
Normal file
1242
src/locales/es/ability.json
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
163
src/locales/es/achv-female.json
Normal file
163
src/locales/es/achv-female.json
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
{
|
||||||
|
"Achievements": {
|
||||||
|
"name": "Logros"
|
||||||
|
},
|
||||||
|
"Locked": {
|
||||||
|
"name": "Bloqueado"
|
||||||
|
},
|
||||||
|
"MoneyAchv": {
|
||||||
|
"description": "Acumula un total de ₽{{moneyAmount}}."
|
||||||
|
},
|
||||||
|
"10K_MONEY": {
|
||||||
|
"name": "Ahorradora"
|
||||||
|
},
|
||||||
|
"100K_MONEY": {
|
||||||
|
"name": "Rica"
|
||||||
|
},
|
||||||
|
"1M_MONEY": {
|
||||||
|
"name": "Millonaria"
|
||||||
|
},
|
||||||
|
"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": "Sanadora Novata"
|
||||||
|
},
|
||||||
|
"1000_HEAL": {
|
||||||
|
"name": "Gran Sanadora"
|
||||||
|
},
|
||||||
|
"2500_HEAL": {
|
||||||
|
"name": "Clériga"
|
||||||
|
},
|
||||||
|
"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": "Campeona Liga Pokémon"
|
||||||
|
},
|
||||||
|
"25_RIBBONS": {
|
||||||
|
"name": "Campeona Liga Super"
|
||||||
|
},
|
||||||
|
"50_RIBBONS": {
|
||||||
|
"name": "Campeona Liga Ultra"
|
||||||
|
},
|
||||||
|
"75_RIBBONS": {
|
||||||
|
"name": "Campeona Liga Rogue"
|
||||||
|
},
|
||||||
|
"100_RIBBONS": {
|
||||||
|
"name": "Campeona 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."
|
||||||
|
}
|
||||||
|
}
|
163
src/locales/es/achv-male.json
Normal file
163
src/locales/es/achv-male.json
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
{
|
||||||
|
"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."
|
||||||
|
}
|
||||||
|
}
|
@ -1,278 +0,0 @@
|
|||||||
import { AchievementTranslationEntries } from "#app/interfaces/locales.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.",
|
|
||||||
},
|
|
||||||
"UNEVOLVED_CLASSIC_VICTORY": {
|
|
||||||
name: "Bring Your Child To Work Day",
|
|
||||||
description: "Beat the game in Classic Mode with at least one unevolved party member."
|
|
||||||
},
|
|
||||||
|
|
||||||
"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",
|
|
||||||
},
|
|
||||||
"FRESH_START": {
|
|
||||||
name: "First Try!",
|
|
||||||
description: "Complete the Fresh Start challenge."
|
|
||||||
}
|
|
||||||
} 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;
|
|
@ -1,13 +1,8 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const arenaFlyout: SimpleTranslationEntries = {
|
|
||||||
// Title
|
|
||||||
"activeBattleEffects": "Efectos de Terreno Activos",
|
"activeBattleEffects": "Efectos de Terreno Activos",
|
||||||
"player": "Jugador",
|
"player": "Jugador",
|
||||||
"neutral": "Neutral",
|
"neutral": "Neutral",
|
||||||
"enemy": "Enemigo",
|
"enemy": "Enemigo",
|
||||||
|
|
||||||
// WeatherType
|
|
||||||
"sunny": "Sol",
|
"sunny": "Sol",
|
||||||
"rain": "Lluvia",
|
"rain": "Lluvia",
|
||||||
"sandstorm": "Tormenta de Arena",
|
"sandstorm": "Tormenta de Arena",
|
||||||
@ -17,14 +12,10 @@ export const arenaFlyout: SimpleTranslationEntries = {
|
|||||||
"heavyRain": "Diluvio",
|
"heavyRain": "Diluvio",
|
||||||
"harshSun": "Sol Abrasador",
|
"harshSun": "Sol Abrasador",
|
||||||
"strongWinds": "Turbulencias",
|
"strongWinds": "Turbulencias",
|
||||||
|
|
||||||
// TerrainType
|
|
||||||
"misty": "Campo de Niebla",
|
"misty": "Campo de Niebla",
|
||||||
"electric": "Campo Eléctrico",
|
"electric": "Campo Eléctrico",
|
||||||
"grassy": "Campo de Hierba",
|
"grassy": "Campo de Hierba",
|
||||||
"psychic": "Campo Psíquico",
|
"psychic": "Campo Psíquico",
|
||||||
|
|
||||||
// ArenaTagType
|
|
||||||
"mudSport": "Chapoteo Lodo",
|
"mudSport": "Chapoteo Lodo",
|
||||||
"waterSport": "Hidrochorro",
|
"waterSport": "Hidrochorro",
|
||||||
"spikes": "Púas",
|
"spikes": "Púas",
|
||||||
@ -45,5 +36,5 @@ export const arenaFlyout: SimpleTranslationEntries = {
|
|||||||
"matBlock": "Escudo Tatami",
|
"matBlock": "Escudo Tatami",
|
||||||
"craftyShield": "Truco Defensa",
|
"craftyShield": "Truco Defensa",
|
||||||
"tailwind": "Viento Afín",
|
"tailwind": "Viento Afín",
|
||||||
"happyHour": "Paga Extra",
|
"happyHour": "Paga Extra"
|
||||||
};
|
}
|
1
src/locales/es/arena-tag.json
Normal file
1
src/locales/es/arena-tag.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{}
|
1
src/locales/es/battle-info.json
Normal file
1
src/locales/es/battle-info.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{}
|
@ -1,5 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const battleInfo: SimpleTranslationEntries = {
|
|
||||||
"generation": "Generation {{generation}}",
|
|
||||||
} as const;
|
|
8
src/locales/es/battle-message-ui-handler.json
Normal file
8
src/locales/es/battle-message-ui-handler.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"ivBest": "Inmejorable",
|
||||||
|
"ivFantastic": "Fantástico",
|
||||||
|
"ivVeryGood": "Notable",
|
||||||
|
"ivPrettyGood": "Genial",
|
||||||
|
"ivDecent": "No está mal",
|
||||||
|
"ivNoGood": "Cojea un poco"
|
||||||
|
}
|
@ -1,10 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
|
||||||
"ivBest": "Inmejorable",
|
|
||||||
"ivFantastic": "Fantástico",
|
|
||||||
"ivVeryGood": "Notable",
|
|
||||||
"ivPrettyGood": "Genial",
|
|
||||||
"ivDecent": "No está mal",
|
|
||||||
"ivNoGood": "Cojea un poco",
|
|
||||||
} as const;
|
|
3
src/locales/es/battle-scene.json
Normal file
3
src/locales/es/battle-scene.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"moneyOwned": "{{formattedMoney}} ₽"
|
||||||
|
}
|
@ -1,5 +0,0 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
||||||
|
|
||||||
export const battleScene: SimpleTranslationEntries = {
|
|
||||||
"moneyOwned": "{{formattedMoney}} ₽"
|
|
||||||
} as const;
|
|
@ -1,9 +1,6 @@
|
|||||||
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
{
|
||||||
|
|
||||||
export const battle: SimpleTranslationEntries = {
|
|
||||||
"bossAppeared": "¡{{bossName}} te corta el paso!",
|
"bossAppeared": "¡{{bossName}} te corta el paso!",
|
||||||
"trainerAppeared": "¡{{trainerName}}\nte desafía!",
|
"trainerAppeared": "¡{{trainerName}}\nte desafía!",
|
||||||
"trainerAppearedDouble": "¡{{trainerName}}\nwould te desafían!",
|
|
||||||
"trainerSendOut": "¡{{trainerName}} saca a\n{{pokemonName}}!",
|
"trainerSendOut": "¡{{trainerName}} saca a\n{{pokemonName}}!",
|
||||||
"singleWildAppeared": "¡Un {{pokemonName}} salvaje te corta el paso!",
|
"singleWildAppeared": "¡Un {{pokemonName}} salvaje te corta el paso!",
|
||||||
"multiWildAppeared": "¡Un {{pokemonName1}} y un {{pokemonName2}} salvajes\nte cortan el paso!",
|
"multiWildAppeared": "¡Un {{pokemonName1}} y un {{pokemonName2}} salvajes\nte cortan el paso!",
|
||||||
@ -14,7 +11,6 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"switchQuestion": "¿Quieres cambiar a\n{{pokemonName}}?",
|
"switchQuestion": "¿Quieres cambiar a\n{{pokemonName}}?",
|
||||||
"trainerDefeated": "¡Has derrotado a\n{{trainerName}}!",
|
"trainerDefeated": "¡Has derrotado a\n{{trainerName}}!",
|
||||||
"moneyWon": "¡Has ganado\n₽{{moneyAmount}} por vencer!",
|
"moneyWon": "¡Has ganado\n₽{{moneyAmount}} por vencer!",
|
||||||
"moneyPickedUp": "You picked up ₽{{moneyAmount}}!",
|
|
||||||
"pokemonCaught": "¡{{pokemonName}} atrapado!",
|
"pokemonCaught": "¡{{pokemonName}} atrapado!",
|
||||||
"addedAsAStarter": "{{pokemonName}} ha sido añadido\na tus iniciales!",
|
"addedAsAStarter": "{{pokemonName}} ha sido añadido\na tus iniciales!",
|
||||||
"partyFull": "Tu equipo esta completo.\n¿Quieres liberar un Pokémon para meter a {{pokemonName}}?",
|
"partyFull": "Tu equipo esta completo.\n¿Quieres liberar un Pokémon para meter a {{pokemonName}}?",
|
||||||
@ -70,8 +66,6 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"drainMessage": "¡{{pokemonName}} tuvo su\nenergía absorbida!",
|
"drainMessage": "¡{{pokemonName}} tuvo su\nenergía absorbida!",
|
||||||
"regainHealth": "¡{{pokemonName}} recuperó\nPS!",
|
"regainHealth": "¡{{pokemonName}} recuperó\nPS!",
|
||||||
"stealEatBerry": "¡{{pokemonName}} robó la {{berryName}}\nde {{targetName}} y se la comió!",
|
"stealEatBerry": "¡{{pokemonName}} robó la {{berryName}}\nde {{targetName}} y se la comió!",
|
||||||
"ppHealBerry": "{{pokemonNameWithAffix}} restored PP to its move {{moveName}}\nusing its {{berryName}}!",
|
|
||||||
"hpHealBerry": "{{pokemonNameWithAffix}} restored its health using\nits {{berryName}}!",
|
|
||||||
"fainted": "¡{{pokemonNameWithAffix}} se debilitó!",
|
"fainted": "¡{{pokemonNameWithAffix}} se debilitó!",
|
||||||
"statsAnd": "y",
|
"statsAnd": "y",
|
||||||
"stats": "Las estadísticas",
|
"stats": "Las estadísticas",
|
||||||
@ -90,11 +84,5 @@ export const battle: SimpleTranslationEntries = {
|
|||||||
"statSeverelyFell_one": "¡El {{stats}} de {{pokemonNameWithAffix}} ha bajado muchísimo!",
|
"statSeverelyFell_one": "¡El {{stats}} de {{pokemonNameWithAffix}} ha bajado muchísimo!",
|
||||||
"statSeverelyFell_other": "¡{{stats}} de\n{{pokemonNameWithAffix}} han bajado muchísimo!",
|
"statSeverelyFell_other": "¡{{stats}} de\n{{pokemonNameWithAffix}} han bajado muchísimo!",
|
||||||
"statWontGoAnyLower_one": "¡El {{stats}} de {{pokemonNameWithAffix}} no puede bajar más!",
|
"statWontGoAnyLower_one": "¡El {{stats}} de {{pokemonNameWithAffix}} no puede bajar más!",
|
||||||
"statWontGoAnyLower_other": "¡{{stats}} de\n{{pokemonNameWithAffix}} no pueden bajar más!",
|
"statWontGoAnyLower_other": "¡{{stats}} de\n{{pokemonNameWithAffix}} no pueden bajar más!"
|
||||||
"transformedIntoType": "{{pokemonName}} transformed\ninto the {{type}} type!",
|
}
|
||||||
"retryBattle": "Would you like to retry from the start of the battle?",
|
|
||||||
"unlockedSomething": "{{unlockedThing}}\nhas been unlocked.",
|
|
||||||
"congratulations": "Congratulations!",
|
|
||||||
"beatModeFirstTime": "{{speciesName}} beat {{gameMode}} Mode for the first time!\nYou received {{newModifier}}!",
|
|
||||||
"ppReduced": "It reduced the PP of {{targetName}}'s\n{{moveName}} by {{reduction}}!",
|
|
||||||
} as const;
|
|
1
src/locales/es/battler-tags.json
Normal file
1
src/locales/es/battler-tags.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{}
|
46
src/locales/es/berry.json
Normal file
46
src/locales/es/berry.json
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"SITRUS": {
|
||||||
|
"name": "Baya Zidra",
|
||||||
|
"effect": "Restaura 25% PS si estos caen por debajo del 50%"
|
||||||
|
},
|
||||||
|
"LUM": {
|
||||||
|
"name": "Baya Ziuela",
|
||||||
|
"effect": "Cura cualquier problema de estado"
|
||||||
|
},
|
||||||
|
"ENIGMA": {
|
||||||
|
"name": "Baya Enigma",
|
||||||
|
"effect": "Restaura 25% PS si le alcanza un ataque supereficaz"
|
||||||
|
},
|
||||||
|
"LIECHI": {
|
||||||
|
"name": "Baya Lichi",
|
||||||
|
"effect": "Aumenta el ataque si los PS están por debajo de 25%"
|
||||||
|
},
|
||||||
|
"GANLON": {
|
||||||
|
"name": "Baya Gonlan",
|
||||||
|
"effect": "Aumenta la defensa si los PS están por debajo de 25%"
|
||||||
|
},
|
||||||
|
"PETAYA": {
|
||||||
|
"name": "Baya Yapati",
|
||||||
|
"effect": "Aumenta el ataque especial si los PS están por debajo de 25%"
|
||||||
|
},
|
||||||
|
"APICOT": {
|
||||||
|
"name": "Baya Aricoc",
|
||||||
|
"effect": "Aumenta la defensa especial si los PS están por debajo de 25%"
|
||||||
|
},
|
||||||
|
"SALAC": {
|
||||||
|
"name": "Baya Aslac",
|
||||||
|
"effect": "Aumenta la velocidad si los PS están por debajo de 25%"
|
||||||
|
},
|
||||||
|
"LANSAT": {
|
||||||
|
"name": "Baya Zonlan",
|
||||||
|
"effect": "Aumenta el índice de golpe crítico si los PS están por debajo de 25%"
|
||||||
|
},
|
||||||
|
"STARF": {
|
||||||
|
"name": "Baya Arabol",
|
||||||
|
"effect": "Aumenta mucho una estadística al azar si los PS están por debajo de 25%"
|
||||||
|
},
|
||||||
|
"LEPPA": {
|
||||||
|
"name": "Baya Zanama",
|
||||||
|
"effect": "Restaura 10 PP del primer movimiento cuyos PP bajen a 0"
|
||||||
|
}
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user